/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,800&display=swap");

:root {
  --white-color: #fff;
  --main-color: #1976D2;
  --text-color: #0D47A1;
  --main-font: "Poppins", sans-serif;
  --text-border: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--main-font);
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  margin: 0;
}

.text-grey {
  color: rgb(0, 0, 0, 0.5);
}

.bg-grey {
  background-color: rgba(208, 206, 206, 0.1);
}

/* padding */


.p-10 {
  padding: 10px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-32 {
  padding: 32px !important;
}

.padding-t-2 {
  padding-top: 2px !important;
}

.padding-t-4 {
  padding-top: 4px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.padding-b-2 {
  padding-bottom: 2px !important;
}

.padding-b-4 {
  padding-bottom: 4px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pe-10 {
  padding-right: 10px !important;
}

.pe-16 {
  padding-right: 16px !important;
}

.pe-32 {
  padding-right: 32px !important;
}

.ps-10 {
  padding-left: 10px !important;
}

.ps-16 {
  padding-left: 16px !important;
}

.ps-28 {
  padding-left: 28px !important;
}

.ps-32 {
  padding-left: 32px !important;
}

/* margin */
.m-10 {
  margin: 10px !important;
}

.m-16 {
  margin: 16px !important;
}

.m-32 {
  margin: 32px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-32 {
  margin-top: 32px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.me-10 {
  margin-right: 10px !important;
}

.me-16 {
  margin-right: 16px !important;
}

.me-32 {
  margin-right: 32px;
}

.ms-10 {
  margin-left: 10px !important;
}

.ms-16 {
  margin-left: 16px !important;
}

.ms-32 {
  margin-left: 32px !important;
}

.ms-45 {
  margin-left: 42px !important;
}

/* font-size */
.fs-10 {
  font-size: 10px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.text-color {
  color: var(--text-color) !important;
}

.main-color {
  color: var(--main-color) !important;
}

.main-font {
  font-family: var(--main-font) !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.outline-none {
  outline: none !important;
}

.radius-2 {
  border-radius: 2px !important;
}

.radius-3 {
  border-radius: 3px !important;
}

.radius-4 {
  border-radius: 4px !important;
}

.radius-5 {
  border-radius: 5px !important;
}

.bg-main {
  background-color: var(--main-color) !important;
}

.min-w-50 {
  min-width: 50px !important;
}

.min-w-100 {
  min-width: 100px !important;
}

.min-w-150 {
  min-width: 150px !important;
}

.min-w-200 {
  min-width: 200px !important;
}

.min-w-250 {
  min-width: 250px !important;
}

.min-w-300 {
  min-width: 300px !important;
}

.min-w-350 {
  min-width: 350px !important;
}

.min-w-400 {
  min-width: 400px !important;
}

.min-w-450 {
  min-width: 450px !important;
}

.min-w-500 {
  min-width: 500px !important;
}

/* 
  Button
*/

/* 
  main button
*/
.main-btn {
  outline: none;
  border: 1px solid var(--main-color);
  font-size: 16px;
  background-color: var(--main-color);
  border-radius: 3px;
  color: var(--white-color);
  font-weight: 500;
  cursor: pointer;
  padding: 0 5px;
  transition: all 0.3s ease;
}

.main-btn:hover {
  background-color: #fff2f2;
  color: var(--main-color);
}

/* 
  sub button 
*/
.sub-btn {
  outline: none;
  border: 1px solid var(--main-color);
  font-size: 16px;
  background-color: #fff2f2;
  border-radius: 3px;
  color: var(--main-color);
  font-weight: 500;
  cursor: pointer;
  padding: 0 5px;
}

.sub-btn:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  transition: all 0.3s ease;
}

/* 
  white button  
*/
.white-btn {
  outline: none;
  border: 1px solid #f0f0f0;
  font-size: 16px;
  background-color: #fff;
  border-radius: 3px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  padding: 0 5px;
  transition: all 0.3s ease;
}

.white-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* 
  card product 
*/
.product {
  background-color: var(--white-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product__name {
  font-size: 14px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0px;
}

.product__rate {
  width: 35px;
  height: 15px;
  border: 1px solid #ffb81e;
  background-color: #fff8e4;
}

.product__rate i {
  color: #ffb81e;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* 
  sale product card 
*/
.sale-product .sale-product__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 10px;
}

.sale-product .sale-product__img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sale-product .sale-product__progress--bar {
  width: 80%;
  height: 20px;
  background: rgb(252, 142, 142);
  border-radius: 15px;
}

.sale-product .sale-product__progress--bar>.sale-product__progress--fill {
  width: 40%;
  height: 100%;
  border-radius: 15px 0 0 15px;
  background: linear-gradient(to right, var(--text-color), var(--main-color), rgb(252, 142, 142));
}

.sale-product .sale-product__progress--bar>.sale-product__progress--text {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* 
  modal  
*/
.modal-background {
  background-color: rgb(0, 0, 0, 0.2);
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  min-height: 100vh;
}

.scroll-wrapper {
  /* chiều cao tính: 90vh (max) - header 60px - footer 60px */
  max-height: calc(90vh - 120px);
  overflow-y: auto;
  padding: 16px;
}

.scroll-hidden {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-hidden::-webkit-scrollbar {
  display: none;
}

.modal-ezeshop {
  width: 600px;
  height: 90%;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}

.modal-ezeshop .modal-ezeshop__top {
  height: 60px;
  width: 100%;
  flex-shrink: 0;
}

.modal-ezeshop .modal-ezeshop__main {
  flex: 1;
  overflow-y: auto;
}

.modal-ezeshop .modal-ezeshop__bottom {
  height: 60px;
  width: 100%;
  flex-shrink: 0;
}

/* 
  Checkbox 
*/
.checkbox {
  display: flex;
  border-radius: 3px;
}

.checkbox-label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.checkbox-label input {
  display: none;
}

.checkbox-wrapper {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.checkbox-bg {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  border: 1px solid #9A9A9A;
  background: white;
  transition: all 0.2s ease;
}

.checkbox-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  color: white;
  transform: scale(0);
  transition: all 0.2s ease;
}

.check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.3s ease 0.1s;
}

.checkbox-label input:checked+.checkbox-wrapper .checkbox-bg {
  background: var(--text-color);
  border-color: var(--text-color);
}

.checkbox-label input:checked+.checkbox-wrapper .checkbox-icon {
  transform: scale(1);
}

.checkbox-label input:checked+.checkbox-wrapper .check-path {
  stroke-dashoffset: 0;
}

.checkbox-label:hover .checkbox-wrapper {
  transform: scale(1.05);
}

.checkbox-label:active .checkbox-wrapper {
  transform: scale(0.95);
}

.checkbox-label input:focus+.checkbox-wrapper .checkbox-bg {
  box-shadow: 0 0 0 4px var(--checkbox-bg);
}


/* 
  Spinner 
*/
.spinner-grow {
  width: 10px !important;
  height: 10px !important;
  background-color: var(--main-color) !important;
}

/*
  Message
*/
#message {
  position: fixed;
  top: 32px;
  right: 10px;
  z-index: 99999;
}

.message {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 2px;
  padding: 20px 0;
  border-left: 4px solid;
  box-shadow: 0 5px 8px rgb(0, 0, 0, 0.08);
  margin: auto;
  min-width: 370px;
  max-width: 450px;
  transition: all linear 0.3;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(calc(100% + 32px));
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.message+.message {
  margin-top: 24px;
}

.message--success {
  border-color: #47d864;
}

.message--success .message__icon {
  color: #47d864;
}

.message--info {
  border-color: #2f86eb;
}

.message--info .message__icon {
  color: #2f86eb;
}

.message--warning {
  border-color: #ffc021;
}

.message--warning .message__icon {
  color: #ffc021;
}

.message--error {
  border-color: #ff623d;
}

.message--error .message__icon {
  color: #ff623d;
}

.message__icon {
  font-size: 24px;
}

.message__icon,
.message__close {
  padding: 0 16px;
}

.message_content {
  flex-grow: 1;
}

.message__title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.message__msg {
  font-size: 14px;
  color: #000;
  margin-top: 6px;
  line-height: 1.;
}

.message__close {
  font-size: 20px;
  color: rgb(0, 0, 0, 0.3);
  transition: all linear 0.6;
}

.message__close:hover {
  color: rgb(0, 0, 0, 0.8);
  cursor: pointer;
}


/* Voucher */
.btn-voucher {
  min-width: 110px;
  height: 37px;
}

.box-voucher {
  background-color: #00bfa5;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;

}

.box-voucher img {
  width: 50px;
}

.box-voucher span {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.box-voucher::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 10px;
  height: 100%;
  background: repeating-linear-gradient(#fff 0px,
      #fff 5px,
      transparent 5px,
      transparent 10px);
  border-radius: 50%;
}

.box-voucher__bottom {
  margin: 0 5px;
  height: 8px;
  border: 1px solid #eee;
}

.box-voucher__bottom div {
  width: 100px;
  background-color: #00bfa5;
  height: 8px;
}

.voucher-quantity {
  position: absolute;
  right: -4px;
  top: 5px;
  background-color: #ffeaea;
  border-radius: 30px 0 0 30px;
  font-size: 12px;
  color: #ee4d2d;
  font-weight: 600;
  width: 37px;
  height: 18px;
  text-align: center;
}

.voucher-quantity::after {
  border-bottom: 3px solid transparent;
  border: 3px solid transparent;
  border-bottom-color: #ff9a86;
  content: "";
  height: 0;
  position: absolute;
  right: 2px;
  top: 18px;
  transform: rotate(-45deg) translate(50%, -50%);
  width: 0;
  z-index: 0;
}

.checkbox-voucher {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.checkbox-voucher input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.checkbox-voucher-circle {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #aaa;
  transition: all 0.3s;
}

.checkbox-voucher input[type="checkbox"]:checked~.checkbox-voucher-circle {
  background: var(--text-color);
  border-color: var(--text-color);
}

.checkmark-voucher {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: all 0.3s;
}

.checkbox-voucher input[type="checkbox"]:checked~.checkbox-voucher-circle .checkmark-voucher {
  opacity: 1;
}

.checkmark-voucher-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  transition: stroke-dashoffset 0.3s;
}

.checkbox-voucher input[type="checkbox"]:checked~.checkbox-voucher-circle .checkmark-voucher-circle {
  stroke-dashoffset: 0;
}

.checkmark-voucher-kick {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  transition: stroke-dashoffset 0.3s;
}

.checkbox-voucher input[type="checkbox"]:checked~.checkbox-voucher-circle .checkmark-voucher-kick {
  stroke-dashoffset: 0;
}

/* switch */
/* switch  */
.switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 28px;
}

.switch>input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__slider {
  position: absolute;
  cursor: pointer;
  background-color: #f0f0f0;
  border-radius: 14px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}

.switch__slider::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

.switch input:checked+.switch__slider {
  background-color: #5F0;
}

.switch input:checked+.switch__slider::before {
  transform: translate(37px, -50%);
}

/*
  RADIO
*/
.radio-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}


.radio-input {
  display: none;
}


.radio {
  position: relative;
  width: 18px;
  height: 18px;
  padding: 6px;
  background: #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition:
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  box-shadow:
    inset -1px -2px 7px #ffffff,
    inset 1px 2px 4px #b0b0b0;
}


.radio:focus {
  outline: 1px solid #4b0082;
}

.circle {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.radio-input:checked+.radio .circle {
  background: var(--text-color);
  border: 2px solid #ffffff00;
  transform: scale(1.1);
  outline: 3px solid #f2f3f4;
}

/* 1 line */
.text-truncate-1-line {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Suggest-product */
.suggest-product {
  border-bottom: 4px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 0;
}
/* END Suggest-product */


/* Header */
header {
  width: 100%;
}

header>.background-top-header {
  background-color: var(--main-color);
}

header>.background-bottom-header {
  background-color: var(--text-color);
}

header .header__top {
  /* padding: 0 20px; */
  height: 30px;
}

header .header__bottom {
  /* padding: 0 80px; */

  height: 105px;
}

.auth__profile {
  padding: 10px 0;
}

.auth__profile>.auth__user--avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth__profile>.auth__user--avatar>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth__menu {
  background-color: #fff;
  width: 180px;
  border-radius: 3px;
  top: 37px;
  left: -72px;
  border: 1px solid gainsboro;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity, transform 0.2s ease-in-out;

  z-index: 999;
}

.auth__menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 70%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.user-actions__auth:hover>.auth__menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.user-actions__auth:hover>.auth__menu>.menu__item {
  padding: 10px;
}

.user-actions__auth:hover>.auth__menu>.menu__item:hover {
  background-color: #f8f9fa;
  color: var(--main-color);
}

.user-actions__auth {
  cursor: pointer;
}

.header__bottom>.logo {
  width: 200px;
  height: 60px;
}

.header__bottom>.logo>img {
  width: 100%;
  height: 100%;
}

.header__bottom>.header__bottom--search {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  border-radius: 2px;
  align-items: center;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 3px 0;
}

.header__bottom>.header__bottom--search>input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
}

.header__bottom>.header__bottom--search>button {
  border: none;
  padding: 7px 20px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 2px;
  right: 5px;
}

.header__bottom>.header__bottom--search>button:hover {
  background: var(--text-color);
}

.header__bottom>.header__bottom--search>.nearest-search {
  position: absolute;
  bottom: -25px;
}

.header__bottom--cart {
  position: relative;
}

.header__bottom--cart>.cart__menu {
  position: absolute;
  top: 60px;
  left: -350px;
  background-color: #fff;
  width: 400px;
  border-radius: 3px;
  border: 1px solid gainsboro;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity, transform 0.2s ease-in-out;
  z-index: 999;
}

.header__bottom--cart>.cart__menu::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 1%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.header__bottom--cart:hover>.cart__menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.header__bottom--cart>.cart__menu>span {
  color: #9d9d9d;
}

.cart__menu--product>.product__item>.product__img--name>.img {
  width: 45px;
  height: 45px;
}

.cart__menu--product>.product__item>.product__img--name>.img>img {
  width: 100%;
  height: 100%;
}

.cart__menu--product>.product__item>.price {
  color: var(--text-color);
}

/* Header-mobile */
.header-mobile{
  background: var(--text-color);
  height: 80px;
}

.header-mobile > .header-mobile__search > form {
  width: 100%;
  height: 44px;
  display: flex;
  border-radius: 2px;
  align-items: center;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0 5px 0 20px;
}

.header-mobile > .header-mobile__search > form > input {
  border: none;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.header-mobile > .header-mobile__search > form > button {
  border: none;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 2px;
}
/* Menu-mobile */
.menu-mobile-container{
  z-index: 99999;
}

.menu-mobile {
  height: 80px;
}

.menu-mobile > .menu-mobile__item > a{
  color: rgb(0, 0, 0, 0.6);
}

.menu-mobile > .menu-mobile__item > a.active{
  color: var(--main-color);
}

/* Footer  */
.footer {
  border-bottom: 1px solid rgb(228, 228, 228);
  background-color: #fff !important;
}

.footer .footer__information>.information__regis-mail>form {
  position: relative;
}

.footer .footer__information>.information__regis-mail>form>.input-underline {
  border-bottom: 1px solid gainsboro;
  padding: 0 0 5px 0;
  outline: none;
}

.input-underline>input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 0 0 8px;
}

.footer .footer__payment-shipping-methods .small-img {
  width: 50px;
  height: 23px;
  box-shadow: 0 0 3px rgb(0, 0, 0, 0.3);
  margin: 5px 5px 0 5px;
}

.footer .footer__payment-shipping-methods .small-img img {
  width: 100%;
  height: 100%;
}

.sub-footer {
  height: 50px;
  background-color: #fff;
}

.sub-footer .brand {
  color: var(--text-color);
}

/* Product-detail */
.product-img {
  width: 500px;
  height: 450px;
  object-fit: cover;
}

.thumb-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.thumb-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.thumb-img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  margin: 0 5px;
  flex-shrink: 0;
}

.thumb-img.active {
  border-color: red;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
}

.nav-btn.left {
  left: 0;
}

.nav-btn.right {
  right: 0;
}

.star {
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.star.active {
  color: red;
}

/* Login */
.auth-bg {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    height: 100vh;
  }

  .auth-box {
      max-width: 400px;
      margin: auto;
  }

  .auth-card {
      border-radius: 15px;
  }

  .auth-input {
      border-radius: 10px;
  }

  .auth-btn {
      border-radius: 10px;
  }

  /*shop add product*/
  .box-input-select {
  width: 250px;
  position: relative;
  height: 30px;
}

.box-input-select .input-select {
  width: 100%;
  height: 100%;
  border: 1px solid gainsboro;
  outline: none;
  border-radius: 2px;
  padding: 0px 5px;
}

.box-input-select .input-select::placeholder {
  color: rgb(143, 143, 143);
  font-size: 13px;
  font-weight: 500;
}

.box-input-select .select-content {
  z-index: 999;
  position: absolute;
  width: 100%;

  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  transform: scaleY(0);
  pointer-events: none;
}

.box-input-select .select-content.active {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
}

.box-input-select .select-content > .content__items > .content__item {
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.box-input-select .select-content > .content__items > .content__item:hover {
  background-color: rgb(239, 239, 239);
}

.add-classification-btn {
  border-radius: 2px;
  border: 1px dashed gray;
  color: red;
  background-color: #fff;
  transition: all 0.3s ease;
}

.add-classification-btn:hover {
  background-color: rgb(243, 243, 243);
}

.input-variant {
  width: 200px;
  border: 1px solid gainsboro;
  outline: none;
  border-radius: 2px;
  padding: 3px 5px;
}

.product-classification__variant table {
  white-space: nowrap;
  border: 1px solid rgb(193, 193, 193);
}
.product-classification__variant .variant__top {
  background-color: rgb(237, 237, 237);
  height: 60px;
  width: 100%;
}

.__wrapper {
  min-width: 1200px;
}

.product-classification__variant {
  width: 875px;
  max-width: 100%;
  overflow-x: auto;
}

.product-classification__variant::-webkit-scrollbar {
  display: none;
}

._wrapper {
  display: inline-flex;
  flex-direction: column;
  min-width: 900px;
}

.body__item {
  min-width: 150px;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.top__item {
  height: 100%;
  min-width: 150px;
  flex: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
