/* === General === */

@font-face {
  font-family: "Regular";
  src: url("../fonts/ArbFONTS-Janna-LT-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Bold";
  src: url("../fonts/ArbFONTS-Janna-LT-Bold.ttf");
  font-display: swap;
}

:root {
  font-size: 16px;
  --text-dark-blue: #394553;
  --bg-blue: #4D79FE;
  --orange: #EB8B0F;
  --white: #fff;
}

@media (max-width: 1399.9px) {
  :root {
    font-size: 15px;
  }
}


@media (max-width: 1199.9px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 991.9px) {
  :root {
    font-size: 14px;
  }
}

@media (max-width: 767.9px) {
  :root {
    font-size: 13px;
  }
}

@media (max-width: 575.9px) {
  :root {
    font-size: 12px;
  }
}

* {
  font-family: "Regular";
  box-sizing: border-box;
  margin: 0;
}

*:focus {
  outline: none;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
  display: inline-block;
}

.pointer {
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.btn {
  color: var(--white);
  padding: 0.4rem 2rem;
  border-radius: 0.625rem;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-blue {
  background-color: var(--bg-blue)!important;
  border: 1px solid var(--bg-blue)!important;
}

.btn-red {
  background-color: #F14245;
  border: 1px solid #F14245;
}

.btn-green {
  background-color: #20B690;
  border: 1px solid #20B690;
}

.btn-blue-dark {
  background-color: #233040;
  border: 1px solid #233040;
}

.bg-yellow {
  background-color: #FCBA26;
}

.bg-blue {
  background-color: var(--bg-blue);
}

body {
  background-color: #F5F5F5;
}

body.no-scroll {
  overflow: hidden;
}

/* === loader === */

.loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader img {
  width: auto;
  height: auto;
  max-height: 25vh;
  max-width: 25vw;
}

/* === Customize Container Bootstrap === */

@media (min-width: 1400px) {

  .container,
  .container-xl {
    max-width: calc(100% - 14%);
  }
}

/* === Style Header === */

header {
  background-color: #FFF;
  border-bottom: 2px solid #BAB8B8;
}

header .row>* {
  width: auto;
}

header .logo {
  max-width: 25%;
  display: flex;
  height: 100%;
  border-top: 2px solid #E97A10;
}

header .logo img {
  width: 100%;
  max-height: 100%;
  height: auto;
}

header .search {
  position: relative;
  width: 25%;
}

header .search>div {
  border: 1px solid #DADAD8;
  border-radius: 1.7rem;
  padding: 0.4rem 0.8rem;
  width: 100%;
}

header .search form input {
  font-size: 0.925rem;
  color: var(--text-dark-blue);
}

header .search form input::placeholder {
  color: #BAB8B8;
}

header .search form:not(.advanced-search) input {
  margin: 0 0.625rem;
  border: none;
  width: 100%;
}

header .search form:not(.advanced-search) button {
  background-color: transparent;
  padding: 0;
  border: none;
}

header .search span svg,
header .search button svg {
  width: 1.25rem;
  height: auto;
  transition: 0.3s;
}

header .search span:active svg {
  transform: scale(1.1);
}

header .search span.active svg {
  transform: rotate(180deg);
}

header .search button:hover svg {
  transform: scale(1.1);
}

header .search .advanced-search {
  position: absolute;
  right: 0;
  top: 4.4rem;
  min-width: 125%;
  border: 1px solid #DADAD8;
  border-radius: 0.625rem;
  padding: 1rem;
  z-index: 9;
  background-color: var(--white);
  display: none;
}

html[dir="ltr"] header .search .advanced-search {
  right: unset;
  left: 0;
}

header .search .advanced-search.show {
  display: block;
  animation: fadeIn 0.3s linear;
}

header .search .advanced-search input,
header .search .advanced-search select {
  width: 100%;
  border: 1px solid #BAB8B8;
  border-radius: 0.625rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.925rem;
}

header .search .advanced-search label {
  color: var(--text-dark-blue);
  font-size: 0.925rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.social a {
  margin-inline-end: 1rem;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
}

.social a:hover {
  transform: scale(1.2) rotate(3deg);
}

.social a:last-child {
  margin-inline-end: 0;
}

.social a svg {
  height: 1.25rem;
  width: 1.25rem;
}

.social a svg [fill] {
  fill: #CBCBCB;
  transition: 0.3s;
}

.social a.tiktok:hover svg [fill] {
  fill: #000000;
}

.social a.rss:hover svg [fill] {
  fill: #F26522;
}

.social a.twitter:hover svg [fill] {
  fill: #1AA2F8;
}

.social a.facebook:hover svg [fill] {
  fill: #1092F4;
}

.social a.whats:hover svg [fill] {
  fill: #36E55A;
}

.social a.telegram:hover svg [fill] {
  fill: #34AAEA;
}

.social a.youtube:hover svg [fill] {
  fill: #FE0000;
}

.social a.instagram:hover svg [fill] {
  fill: #CF3FBA;
}

header .lang {
  font-size: 0.75rem;
  color: #233040;
}

@media (max-width: 991.9px) {
  header .search .advanced-search {
    min-width: 100%;
  }

  .social a {
    margin-inline-end: 0.65rem;
  }
}

@media (max-width: 767.9px) {
  header .logo {
    max-width: 35%;
  }

  header .search {
    width: 35%;
  }
}

@media (max-width: 575.9px) {
  header .search {
    width: 50%;
  }
}

/* === Navbar === */

nav {
  background-color: #233040;
  position: sticky;
  z-index: 7;
  top: 0;
}

.open-all-categories {
  background-color: var(--orange);
  color: var(--white);
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 1rem;
  position: relative;
}

.open-all-categories svg {
  width: 1.5rem;
  height: auto;
  margin-inline-end: 0.75rem;
}

/* ===== Menu Category ===== */

.sm {
  z-index: 9;
}

#main-menu ul {
  position: absolute;
  width: auto !important;
  min-width: 10rem !important;
  max-width: unset !important;
  right: 100% !important;
  left: unset !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: var(--white);
}

html[dir="ltr"] #main-menu ul {
  left: 100% !important;
  right: unset !important;
  margin-left: 0 !important;
}

#main-menu ul li a {
  padding: 0.33rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #394553;
}

#main-menu ul li a:hover {
  color: #B95151;
}

#main-menu>li>ul {
  right: 0 !important;
  top: 2.8125rem !important;
  border-radius: 0 0 0.625rem 0.625rem;
}

html[dir="ltr"] #main-menu>li>ul {
  right: unset !important;
  left: 0 !important;
}

#main-menu ul li span:not(.sub-arrow) svg {
  width: auto;
  height: 0.5rem;
  margin-inline-end: 0.33rem;
}

html[dir="ltr"] #main-menu svg {
  transform: rotateY(180deg);
}

#main-menu ul li span:not(.sub-arrow) svg [fill] {
  fill: #BAB8B8;
}

#main-menu .sub-arrow {
  display: inline-flex;
}

#main-menu .sub-arrow svg {
  width: auto;
  height: 0.75rem;
  margin-inline-start: 0.75rem;
  opacity: 0.3;
  transition: 0.3s;
}

#main-menu ul li a:hover .sub-arrow svg {
  opacity: 1;
}

#main-menu a.has-submenu {
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  #main-menu ul {
    white-space: nowrap;
  }
}

html[dir="ltr"] .sm,
html[dir="ltr"] .sm ul,
html[dir="ltr"] .sm li {
  direction: ltr;
  text-align: left;
}

/* ===== Menu Category ===== */

nav .links {
  height: 100%;
}

nav .links a {
  color: #FFFFFF;
  font-size: 1rem;
  transition: 0.2s;
}

nav .links a:hover {
  transform: scale(1.05);
}

nav .links a.active {
  color: #FCBA26;
  border-bottom: 2px solid #FCBA26;
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 0.4rem;
}

nav .links a:last-child {
  margin-inline-end: 0 !important;
}

.open-cart {
  color: #FCBA26;
  font-family: "Bold";
  font-size: 1.125rem;
}

.open-cart .icon,
.favorite .icon {
  position: relative;
}

.open-cart .icon span,
.favorite .icon span {
  position: absolute;
  right: -0.25rem;
  top: -0.25rem;
  background-color: var(--white);
  font-size: 0.55rem;
  width: 1.0625rem;
  height: 1.0625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #233040;
  border: 1px solid #FCBA26;
  font-family: "Bold";
}

html[dir="ltr"] .open-cart .icon span,
html[dir="ltr"] .favorite .icon span {
  right: unset;
  left: -0.25rem;
}

.favorite .icon span {
  position: absolute;
  right: -0.5rem;
}

html[dir="ltr"] .favorite .icon span {
  right: unset;
  left: -0.5rem;
}

.profile {
  color: var(--white);
  font-size: 0.9rem;
}

.open-cart .icon svg,
.favorite .icon svg,
.profile svg {
  height: 1.5rem;
  width: auto;
}

.customPC {
  background-color: #F14245;
  height: 100%;
  padding: 0.25rem 1.25rem;
  color: var(--white);
  font-size: 1rem;
  transition: 0.3s;
}

.customPC svg {
  margin-inline-end: 0.6rem;
  height: 1.25rem;
  width: auto;
  transition: 0.3s;
}

.customPC:hover {
  background-color: #fd4a4d;
}

.customPC:hover svg {
  transform: scale(1.05);
}

.toggle {
  background-color: var(--orange);
  display: flex;
  padding: 0.4rem;
  border-radius: 0.25rem;
}

.toggle svg {
  width: auto;
  height: 1.125rem;
}

.toggle svg [fill] {
  fill: var(--white);
}

/* === Cart === */

.cart {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 25%;
  right: -25%;
  z-index: 11;
  background-color: #FFFFFF;
  transition: 0.3s;
  overflow: auto;
}

html[dir="ltr"] .cart {
  right: unset;
  left: -25%;
}

.cart.show {
  right: 0;
}

html[dir="ltr"] .cart.show {
  right: unset;
  left: 0;
}

.cart+.bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 9;
  display: none;
}

.cart.show+.bg {
  display: block;
  animation: fadeIn 0.2s linear;
}

.cart .header-cart svg {
  height: 1.9rem;
  width: auto;
}

.cart .header-cart .close-cart {
  cursor: pointer;
}

.cart .header-cart .close-cart,
.cart .header-cart .close-cart svg [fill] {
  transition: 0.3s;
}

.cart .header-cart .close-cart:hover {
  transform: scale(1.05);
}

.cart .header-cart .close-cart:hover svg [fill] {
  fill: #F14245;
}

.cart .header-cart span:not(.close-cart) {
  color: #E75B15;
  font-size: 1.3rem;
  font-family: "Bold";
}

.box-product-cart {
  border: 1px solid #DADAD8;
  border-radius: 0.625rem;
  padding: 1.5rem 1.35rem 1.35rem;
  position: relative;
  margin-bottom: 0.625rem;
  transition: 0.3s;
}

.box-product-cart:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.box-product-cart:last-child {
  margin-bottom: 0;
}

.box-product-cart .img {
  width: 30%;
  flex: 0 0 30%;
}

.box-product-cart .img img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.box-product-cart .content {
  width: calc(70% - 0.5rem);
  flex: 0 0 calc(70% - 0.5rem);
}

.box-product-cart .content h4 {
  font-size: 1.125rem;
  line-height: 1.45;
  font-weight: 600;
  color: #233040;
}

.box-product-cart .content .form input,
.box-product-cart .content .form button,
.form-minus-plus input,
.form-minus-plus button {
  width: 2.5rem;
  text-align: center;
  font-size: 1rem;
  border: 1px solid #DADAD8;
  border-radius: 0.3125rem;
  color: #233040;
}

.box-product-cart .content .form button,
.form-minus-plus button {
  width: 1.5rem;
  background-color: #fff;
  transition: 0.1s;
}

.box-product-cart .content .form button:active,
.form-minus-plus button:active {
  transform: scale(1.05);
}

.box-product-cart .content .nums span,
.box-product-cart .content .nums b {
  font-size: 1rem;
  color: #4D79FE;
  font-family: 'Bold';
}

.box-product-cart .content .nums b {
  color: #BAB8B8;
  display: inline-flex;
}

.box-product-cart .content p,
.code-product {
  font-size: 0.75rem;
  color: #394553;
}

.box-product-cart .content p span,
.code-product span {
  color: #B95151;
}

.code-product {
  font-size: 1.25rem;
}

.box-product-cart .delete {
  display: flex;
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  transition: 0.3s;
}

.box-product-cart .delete:hover {
  transform: scale(1.05);
}

.box-product-cart .delete svg [fill] {
  transition: 0.3s;
}

.box-product-cart .delete:hover svg [fill] {
  fill: #F14245;
}

html[dir="ltr"] .box-product-cart .delete {
  left: unset;
  right: 0.7rem;
}

.body-cart {
  height: calc(100vh - 20.6rem);
  overflow: auto;
}

.total-price {
  padding: 1.25rem;
  text-align: center;
  font-size: 1.4rem;
  background-color: #ECF5FF;
}

.total-price b {
  font-family: "Bold";
  font-weight: 700;
  color: #233040;
}

.total-price span {
  font-family: "Bold";
  font-weight: 700;
  color: #4D79FE;
}

.footer-cart a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-family: "Bold";
}

.footer-cart a svg {
  margin-inline-end: 0.5rem;
  height: auto;
  max-height: 2rem;
  width: 2rem;
}

.footer-cart a svg [fill] {
  transition: 0.3s;
}

.footer-cart a.bg-blue {
  border: 1px solid #4D79FE;
}

.footer-cart a.bg-yellow {
  border: 1px solid #FCBA26;
}

.footer-cart a.bg-blue:hover {
  background-color: #FFF;
  color: #4D79FE;
}

.footer-cart a.bg-yellow:hover {
  background-color: #FFF;
  color: #FCBA26;
}

.footer-cart a.bg-blue:hover svg [fill] {
  fill: #4D79FE;
}

.footer-cart a.bg-yellow:hover svg [fill] {
  fill: #FCBA26;
}

/* === Cart === */

@media (min-width: 1399.9px) {
  nav .links {
    margin-inline-start: 2rem !important;
  }

  nav .links a {
    margin-inline-end: 2rem !important;
  }

  .cart {
    width: 30%;
    right: -30%;
  }

  html[dir="ltr"] .cart {
    right: unset;
    left: -30%;
  }
}

@media (max-width: 1199.9px) {
  .cart {
    width: 40%;
    right: -40%;
  }

  html[dir="ltr"] .cart {
    right: unset;
    left: -40%;
  }
}

@media (max-width: 991.9px) {
  .cart {
    width: 50%;
    right: -50%;
  }

  html[dir="ltr"] .cart {
    right: unset;
    left: -50%;
  }

  nav .links {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 50%;
    right: -50%;
    background-color: #233040;
    margin: 0 !important;
    flex-direction: column;
    align-items: flex-start !important;
    padding: 1.5rem;
    z-index: 9;
    transition: 0.3s;
  }

  html[dir="ltr"] nav .links {
    right: unset;
    left: -50%;
  }

  #main-menu>li>ul {
    position: fixed;
    right: 0 !important;
    top: 0 !important;
    width: 50% !important;
    max-width: unset;
    min-width: unset;
    height: 100vh;
  }

  #main-menu ul {
    position: static;
    margin: 0 !important;
    padding: 0.75rem;
  }

  nav .links.show {
    right: 0;
  }

  html[dir="ltr"] nav .links.show {
    left: 0;
  }

  nav .links+.bg-links,
  #main-menu>li>ul~.bg {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 7;
    display: none;
  }

  nav .links.show+.bg-links,
  #main-menu>li>ul[aria-expanded="true"]~.bg {
    display: block;
    animation: fadeIn 0.2s linear;
  }

  nav .links a {
    margin: 0 !important;
    margin-bottom: 1rem !important;
  }

  nav .links a:last-child {
    margin-bottom: 0rem !important;
  }

  nav .links a.active {
    height: auto;
  }
}

@media (max-width: 767.9px) {
  .cart {
    width: 60%;
    right: -60%;
  }

  html[dir="ltr"] .cart {
    right: unset;
    left: -60%;
  }

  nav .links {
    width: 60%;
    right: -60%;
  }

  html[dir="ltr"] nav .links {
    right: unset;
    left: -60%;
  }

  #main-menu>li>ul {
    width: 60% !important;
  }
}

@media (max-width: 575.9px) {
  .cart {
    width: 75%;
    right: -75%;
  }

  html[dir="ltr"] .cart {
    right: unset;
    left: -75%;
  }

  nav .links {
    width: 75%;
    right: -75%;
  }

  html[dir="ltr"] nav .links {
    right: unset;
    left: -75%;
  }

  #main-menu>li>ul {
    width: 75% !important;
  }

  .customPC {
    padding: 0.25rem 0.75rem;
  }
}

@media (max-width: 399.9px) {
  .cart {
    width: 85%;
    right: -85%;
  }

  html[dir="ltr"] .cart {
    right: unset;
    left: -85%;
  }

  nav .links {
    width: 85%;
    right: -85%;
  }

  html[dir="ltr"] nav .links {
    right: unset;
    left: -85%;
  }

  #main-menu>li>ul {
    width: 85% !important;
  }

  .favorite {
    display: none !important;
  }
}

/* === Partners === */

.title-sec {
  font-size: 2.125rem;
  color: #394553;
  margin-bottom: 1.875rem;
}

.swiper-partners .swiper-slide {
  width: auto;
  display: inline-flex;
  justify-content: center;
}

.swiper-partners .swiper-slide a {
  display: inline-flex;
}

.swiper-partners .swiper-slide img {
  height: 5rem;
  width: auto;
  transition: 0.3s;
  filter: grayscale(1);
}

.swiper-partners .swiper-slide a:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.swiper-partners .swiper-button-next::after,
.swiper-partners .swiper-button-prev::after,
.swiper-categories .swiper-button-next::after,
.swiper-categories .swiper-button-prev::after {
  content: unset;
}

html[dir="ltr"] .swiper-partners .swiper-button-next svg,
html[dir="ltr"] .swiper-partners .swiper-button-prev svg,
html[dir="ltr"] .swiper-categories .swiper-button-next svg,
html[dir="ltr"] .swiper-categories .swiper-button-prev svg {
  transform: rotate(180deg);
}

/* === Footer === */

footer {
  background-color: var(--white);
}

footer .logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

footer .info h6 {
  font-size: 2.5rem;
  color: #D65F15;
  margin-bottom: 0.5rem;
  font-family: "Bold";
}

footer .info p {
  font-size: 1.125rem;
  line-height: 2;
  color: #BAB8B8;
}

footer .info p a {
  float: left;
  padding-inline-end: 1rem;
}

html[dir="ltr"] footer .info p a {
  float: right;
}

footer .info p a svg {
  width: 1.75rem;
  height: auto;
}

footer .info p a svg,
footer .info p a svg [fill] {
  transition: 0.3s;
}

footer .info p a:hover svg {
  transform: scale(1.05);
}

footer .info p a:hover svg [fill] {
  fill: #8b8b8b;
}

footer .list-links {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

footer .list-links li {
  flex: 0 0 50%;
  margin-bottom: 0.5rem;
}

footer .list-links li:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

footer .list-links li a {
  font-size: 1.125rem;
  color: #BAB8B8;
  transition: 0.3s;
  display: inline-flex;
  align-items: baseline;
}

footer .list-links li a svg {
  width: 0.45rem;
  margin-inline-end: 0.5rem;
  height: auto;
  opacity: 0;
  transition: 0.3s;
}

html[dir="ltr"] footer .list-links li a svg {
  transform: rotate(180deg);
}

footer .list-links li a:hover {
  color: #B95151;
  transform: translateX(-8px);
}

html[dir="ltr"] footer .list-links li a:hover {
  transform: translateX(8px);
}

footer .list-links li a:hover svg {
  opacity: 1;
}

.payment-options h6,
footer .download h6 {
  font-size: 1.25rem;
  color: #233040;
}

.payment-options .imgs {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.625rem;
}

.payment-options img {
  height: 2rem;
  width: auto;
  max-width: 4rem;
  max-width: 100%;
  object-fit: contain;
  padding-inline-start: 0.625rem;
  padding-inline-end: 0.625rem;
  border-inline-end: 1px solid #DDDDDD;
}

.payment-options img:first-child {
  padding-inline-start: 0;
}

.payment-options img:last-child {
  padding-inline-end: 0;
  border-inline-end: none;
}

footer .download .links-apps {
  display: flex;
  flex-wrap: wrap;
}

footer .download .links-apps a {
  margin-inline-end: 0.75rem;
  transition: 0.3s;
  display: inline-flex;
}

footer .download .links-apps a:hover {
  transform: scale(1.05);
}

footer .download img {
  max-width: 100%;
  width: auto;
  height: auto;
}

/* === Copy Right === */

.copy-right {
  background-color: #233040;
  text-align: center;
}

.copy-right p {
  color: #fff;
  font-size: 0.925rem;
}

.copy-right a {
  position: relative;
  display: inline-flex;
}

.copy-right img {
  height: 3.25rem;
  width: auto;
  transition: 0.2s;
}

.copy-right img.colors {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
}

.copy-right a:hover img:not(.colors) {
  opacity: 0;
}

.copy-right a:hover img.colors {
  opacity: 1;
}

/* === Pop Up === */

.pop-up {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  display: none;
}

.pop-up.show {
  display: flex;
  animation: fadeIn 0.2s linear;
}

.pop-up>div {
  background-color: #FFF;
  border: 1.5px solid #000000;
  border-radius: 0.75rem;
  max-height: 90%;
}

.pop-up.show>div {
  animation: fadeInDown 0.4s linear;
}

.pop-up .logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 6rem;
  flex: 1 0 auto;
}

.pop-up .title-pop svg {
  width: 4.875rem;
  height: auto;
}

.pop-up .title-pop h4 {
  font-size: 1.875rem;
  color: #B95151;
}

.pop-up[id-pop="register"] .title-pop svg [fill] {
  fill: #20B690;
}

.pop-up[id-pop="register"] .title-pop h4 {
  color: #20B690;
}

.pop-up[id-pop="profile"] .title-pop h4 {
  color: #233040;
}

.pop-up label {
  font-size: 1rem;
  color: #233040;
}

.pop-up .input {
  position: relative;
}

.pop-up .input input {
  width: 100%;
  box-shadow: 0 0 57px rgba(0, 1, 1, 0.04);
  padding: 0.625rem 0.825rem;
  border: 1px solid #DADAD8;
  border-radius: 0.25rem;
  padding-left: 2.75rem;
  font-size: 0.8125rem;
  color: #233040;
}

.pop-up .input input::placeholder {
  color: #DADAD8;
}

.pop-up .input input.input-left {
  text-align: left;
}

.pop-up .input input.password[type="text"]~.icon-eye .without-line {
  display: none;
}

.pop-up .input input.password[type="password"]~.icon-eye .with-line {
  display: none;
}

.pop-up .input .icon,
.pop-up .input .icon-eye {
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
}

.pop-up .input .icon-eye {
  left: unset;
  right: 0.75rem;
  cursor: pointer;
}

.pop-up .input .icon svg,
.pop-up .input .icon-eye svg {
  height: 1.25rem;
  width: 1.25rem;
}


.pop-up input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-inline-end: 0.25rem;
  accent-color: #233040;
}

.pop-up .reset-password {
  text-align: end;
}

.pop-up .reset-password a {
  font-size: 1rem;
  color: #BAB8B8;
  text-decoration: underline;
}

.pop-up .btn {
  width: 100%;
  font-size: 1.125rem;
}

.pop-up .btn-red:hover {
  background-color: #fff;
  color: #F14245;
}

.pop-up .btn-green:hover {
  background-color: #fff;
  color: #20B690;
}

.pop-up .btn-blue-dark:hover {
  background-color: #fff;
  color: #233040;
}

.pop-up .line {
  height: 1px;
  background-color: #DAE0ED;
}

.pop-up .not-register {
  color: #1F2841;
  font-size: 1.125rem;
  font-family: 'Bold';
}

.pop-up .link-register {
  color: #1F2841;
  font-size: 1.125rem;
  border: 1px solid #E75B15;
  width: 100%;
  border-radius: 0.25rem;
  padding: 0.4rem 2rem;
  text-align: center;
  transition: 0.3s;
}

.pop-up .link-register:hover {
  background-color: #F14245;
  color: #fff;
}

.pop-up[id-pop="register"] .link-register {
  border: 1px solid #20B690;
}

.pop-up[id-pop="register"] .link-register:hover {
  background-color: #20B690;
  color: #fff;
}

/* === Swiper Hero Home === */

.swiper-hero-home .swiper-slide {
  height: 500px;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}

.swiper-hero-home .swiper-slide img:not(.logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.swiper-hero-home .swiper-slide:hover img:not(.logo),
.hero a.box-link-hero:hover img {
  transform: scale(1.05);
}

.swiper-hero-home .swiper-slide .logo {
  width: 25%;
  height: auto;
}

.swiper-hero-home .swiper-slide div {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2.5rem 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.swiper-hero-home .swiper-slide p {
  font-size: 2.5rem;
  color: var(--white);
  font-family: 'Bold';
  line-height: 1.4;
}

.swiper-hero-home .swiper-pagination {
  display: inline-flex;
  bottom: 1.125rem;
  gap: 0.25rem;
  right: 50%;
  width: auto;
  left: unset;
  transform: translateX(50%);
  padding: 0.375rem 1.3125rem;
  background-color: rgba(255, 255, 255, 0.28);
  border-radius: 1rem;
}

.swiper-hero-home .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  margin: 0 !important;
  opacity: 1;
  background-color: var(--white);
}

.swiper-hero-home .swiper-pagination-bullet-active {
  background-color: #FCBA26;
}

.hero a.box-link-hero {
  display: flex;
  border-radius: 0.625rem;
  overflow: hidden;
  height: calc(250px - 0.5rem);
}

.hero a.box-link-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

@media (max-width: 767.9px) {
  .swiper-hero-home .swiper-slide {
    height: 350px;
  }

  .hero a.box-link-hero {
    height: 180px;
  }
}

/* === Swiper Categories === */

.swiper-categories a {
  display: flex;
  flex-direction: column;
}

.swiper-categories .swiper-slide {
  background-color: var(--white);
  padding: 1.125rem 2rem;
  border-radius: 0.625rem;
  overflow: hidden;
  text-align: center;
}

.swiper-categories .swiper-slide img {
  width: auto;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.swiper-categories .swiper-slide h3 {
  font-size: 1.5rem;
  color: #233040;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  transition: 0.3s;
}

.swiper-categories .swiper-slide:hover img {
  transform: scale(1.075);
}

.swiper-categories .swiper-slide:hover h3 {
  transform: scale(1.025);
  color: #E75B15;
}

.swiper-categories .swiper-slide span {
  font-size: 1rem;
  color: #BAB8B8;
}

/* === Features === */

.features .box-feature {
  height: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0.625rem;
  transition: 0.3s;
}

.features .box-feature:hover {
  transform: scale(1.04);
}

.features .box-feature1 {
  background-color: #20B690;
}

.features .box-feature2 {
  background-color: #4D79FE;
}

.features .box-feature3 {
  background-color: #F14245;
}

.features .box-feature4 {
  background-color: #FDB700;
}


.features .box-feature h5 {
  font-size: 1.875rem;
  color: #19110C;
  font-family: 'Bold';
  line-height: 1.4;
  font-weight: 700;
}

.features .box-feature p {
  line-height: 1.4;
  font-size: 1.25rem;
  color: #FFFFFF;
}

.features .box-feature img {
  width: 5rem;
  height: auto;
}

/* === Header Section === */

.header-section {
  margin-bottom: 0.75rem;
}

.header-section h2 {
  font-size: 2.5rem;
  margin-inline-end: 2rem;
}

.header-section a {
  transition: 0.3s;
}

.header-section a svg {
  height: 0.75rem;
  width: auto;
}

.header-section a:hover {
  transform: scale(1.05);
}

/* === Box Product === */

.box-product {
  padding: 1.375rem;
  padding-top: 2.875rem;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  display: block;
  transition: 0.3s;
}

.box-product.full {
  transition: 0s;
}

.box-product:not(.full):hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transform: scale(1.025);
}

.box-product .top {
  position: absolute;
  top: 0.625rem;
  right: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline-end: 0.625rem;
}

.box-product .mark {
  font-size: 0.85rem;
  color: #FFF;
    /*background-color: #20B690;*/
  border-radius: 0.3125rem;
  border-start-start-radius: 0;
  border-end-start-radius: 0;
  padding: 0.125rem 0.25rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 85%;
}

.box-product .love {
  display: inline-flex;
  transition: 0.2s;
}

.box-product .love:active {
  transform: scale(1.05);
}

.box-product .love svg [fill] {
  transition: 0.3s;
}

.box-product.in-favorite .love svg [fill] {
  fill: #F14245;
}

.box-product .imgs {
  height: 220px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.box-product:not(.full) .imgs {
  position: relative;
}

.box-product:not(.full) .imgs .preview {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 9;
  opacity: 0;
  transition: 0.3s;
}

html[dir="ltr"] .box-product:not(.full) .imgs .preview {
  left: unset;
  right: 0.5rem;
}

.box-product:not(.full):hover .imgs .preview {
  opacity: 1;
}

.box-product.full .imgs .preview {
  display: none;
}

.box-product .imgs .close {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 2.5rem;
  z-index: 999;
}

html[dir="ltr"] .box-product.full .imgs .close {
  right: 1rem;
  left: unset;
}

.box-product:not(.full) .imgs .close {
  display: none;
}

.box-product.full .imgs .close {
  display: flex;
  animation: fadeIn 0.3s linear;
}

.box-product .imgs .swiper {
  height: 100%;
}

.box-product .imgs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.box-product .swiper-pagination {
  height: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  gap: 0.25rem;
}

.box-product .swiper-pagination .swiper-pagination-bullet {
  background-color: #EB8B0F;
  height: 100%;
  width: auto;
  flex: 1 0 auto;
  opacity: 0.3;
  border-radius: 6px;
  margin: 0;
}

.box-product .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.box-product.full .imgs {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s linear;
}

.box-product.full .imgs .swiper {
  width: 90%;
  height: 90%;
}

.box-product.full .imgs .swiper .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
}

.box-product.full .imgs .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-product.full .imgs .swiper img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.box-product .category {
  text-align: center;
  margin-bottom: 0.5rem;
}

.box-product .category a {
  color: #BAB8B8;
  font-size: 1rem;
  font-weight: 100;
  transition: 0.3s;
}

.box-product:hover .category a {
  transform: scale(1.025);
  color: #638aff;
}

.box-product .title-product {
  color: #233040;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.75rem;
  transition: 0.3s;
}

.box-product:hover .title-product {
  transform: scale(1.025);
  color: #E97A10;
}

.rate {
  direction: ltr;
  position: relative;
  padding: 0.25rem 0;
  margin-bottom: 0.5rem;
}

.rate::before,
.rate::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 0.5px;
  background-color: #EBEBEC;
}

.rate::after {
  top: unset;
  bottom: 0;
}

.rate .stars svg {
  width: 1rem;
  height: auto;
}

.rate .stars svg [fill] {
  fill: var(--white);
}

.stars {
  gap: 0.125rem;
}

.stars~.clear-star {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-dark-blue);
  cursor: pointer;
}

.stars:not(.submitStar)~.clear-star {
  display: none;
}

.stars[rate="1"] svg:nth-child(1) [fill],
.stars[rate="2"] svg:nth-child(1) [fill],
.stars[rate="2"] svg:nth-child(2) [fill],
.stars[rate="3"] svg:nth-child(1) [fill],
.stars[rate="3"] svg:nth-child(2) [fill],
.stars[rate="3"] svg:nth-child(3) [fill],
.stars[rate="4"] svg:nth-child(1) [fill],
.stars[rate="4"] svg:nth-child(2) [fill],
.stars[rate="4"] svg:nth-child(3) [fill],
.stars[rate="4"] svg:nth-child(4) [fill],
.stars[rate="5"] svg [fill] {
  fill: #F9AA25 !important;
}

.rate span {
  font-size: 0.75rem;
  color: #BAB8B8;
  display: inline-flex;
  align-items: center;
  margin-inline-start: 0.625rem;
}

.price {
  direction: ltr;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price b {
  font-size: 1.35rem;
  color: #B95151;
  margin-inline-end: 1rem;
  font-weight: 700;
}

.price span {
  color: #BAB8B8;
  font-size: 0.925rem;
  text-decoration: line-through;
}

.btn-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: 0.3s;
}

.btn-add-to-cart span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 0.925rem;
  color: var(--white);
  font-weight: 700;
}

.btn-add-to-cart {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}

.btn-add-to-cart i {
  z-index: 20;
}

.btn-add-to-cart:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 1;
}


.btn-add-to-cart:hover:after {
  left: 120%;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-add-to-cart span svg {
  width: 1.55rem;
  flex: 0 0 1.55rem;
  margin-inline-end: 0.5rem;
  height: auto;
}

.box-product:not(.loading) .btn-add-to-cart .lds-ring {
  display: none;
}

.box-product.loading .btn-add-to-cart span {
  display: none;
}

.box-product.in-cart .btn-add-to-cart {
  background-color: #B95151;
  border-color: #B95151;
}

.box-product.in-cart .btn-add-to-cart span:not(.active) {
  display: none;
}

.box-product:not(.in-cart) .btn-add-to-cart span.active {
  display: none;
}

.box-product.in-cart .btn-add-to-cart span.active {
  display: flex;
}

/* === Loading Btn Add To Cart === */

.lds-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1.75rem;
  height: 1.75rem;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* === Box Article === */

.box-article {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}

.box-article .img {
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.box-article .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.box-article:hover .img img {
  transform: scale(1.15);
}

.box-article .text {
  background-color: var(--white);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}

.box-article .text h6 {
  font-size: 1.25rem;
  color: #233040;
  font-weight: 700;
  transition: 0.3s;
}

.box-article:hover .text h6 {
  color: #80a1cc;
}

.box-article .text p {
  color: #BAB8B8;
  font-size: 1.125rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.box-article .text span {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.875rem;
  color: #BAB8B8;
}

.box-article .text span svg {
  margin-inline-end: 0.4rem;
}

.whatsapp {
  position: fixed;
  z-index: 55;
  bottom: 2rem;
  right: 2rem;
  transition: 0.3s;
}

html[dir="ltr"] .whatsapp {
  right: unset;
  left: 2rem;
}

.whatsapp svg {
  width: 4.5rem;
  height: auto;
}

.whatsapp:hover {
  transform: scale(1.05);
}

/* === Breadcrumb === */

.breadcrumb {
  flex-wrap: wrap;
}

.breadcrumb a {
  font-size: 1.0625rem;
  color: #BAB8B8;
  transition: 0.3s;
}

.breadcrumb a:hover {
  transform: scale(1.03);
}

html[dir="ltr"] .breadcrumb svg {
  transform: rotate(180deg);
}

/* === Column Filter === */

.form-filter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.box-filter {
  background-color: var(--white);
  border-radius: 0.625rem;
}
.box-filter input:checked+label p b {
    color: rgb(57, 69, 83);;
}

.title-box-filter {
  font-size: 1.35rem;
  font-family: 'Bold';
  color: #394553;
}

.slide-price {
  width: 90% !important;
  margin: auto;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -7px !important;
}

html[dir="ltr"] .noUi-horizontal .noUi-handle {
  right: -7px;
}

.slide-price.noUi-target {
  height: 2px;
  border: none;
  box-shadow: none;
  background-color: rgba(57, 69, 83, 0.5);
}

.noUi-connect {
  background-color: rgba(57, 69, 83, 1) !important;
}

.noUi-horizontal .noUi-handle {
  width: 1.25rem !important;
  height: 1.25rem !important;
  border-radius: 50% !important;
  border: 2px solid #394553 !important;
  top: 50%;
  transform: translateY(-50%);
}

.noUi-handle:after,
.noUi-handle:before {
  content: unset;
}

.noUi-tooltip {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font-size: 1rem;
  color: #BAB8B8;
}

.box-filter input+label {
  display: flex;
  align-items: center;
}

.box-filter input+label p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 0 auto;
}

.box-filter input+label p b {
  font-weight: 100;
  color: #BAB8B8;
  font-size: 1.25rem;
  line-height: 1;
}

.box-filter input+label p b svg {
  display: none;
}

.box-filter input+label p span {
  font-size: 0.925rem;
  color: #DADAD8;
  line-height: 1;
}

.box-filter input+label .icon {
  display: flex;
  align-items: center;
  margin-inline-end: 0.925rem;
}

.box-filter input+label .icon svg {
  width: 1.25rem;
  height: auto;
}

.box-filter input+label .icon svg.checked,
.box-filter input:checked+label .icon svg.not-checked {
  display: none;
}

.box-filter input:checked+label .icon svg.checked {
  display: inline-block;
}

.box-filter input+label p {
  transition: 0.3s;
}

.box-filter input:checked+label p b svg {
  display: inline-block;
}

.box-filter input:checked+label p {
  color: #394553;
}

.box-filter input+label+ul,
.box-filter input+label+ul ul {
  list-style: none;
  padding: 0;
  padding-inline-start: 0.75rem;
  display: none;
}

.box-filter input+label+ul {
  margin-top: 0.75rem;
  padding-inline-start: 2.8rem;
  font-size: 0.875rem;
}

.box-filter input+label+ul * {
  color: #BAB8B8;
  font-size: 0.925rem;
}

.box-filter input+label+ul a svg {
  width: 0.3rem;
  height: auto;
  margin-inline-end: 0.4rem;
}

html[dir="ltr"] .box-filter input+label+ul a svg {
  transform: rotate(180deg);
}

.box-filter input+label+ul a,
.box-filter input+label+ul a svg,
.box-filter input+label+ul a svg [fill] {
  transition: 0.3s;
}

.box-filter input+label+ul a.active {
  color: #394553;
}

.box-filter input+label+ul>li>a.active>svg {
  transform: rotate(-90deg);
}

html[dir="ltr"] .box-filter input+label+ul>li>a.active>svg {
  transform: rotate(270deg);
}

.box-filter input+label+ul a.active svg [fill] {
  fill: #394553;
}

.col-all-filters+.bg {
  display: none;
}

.open-filters {
  display: inline-flex;
  align-items: center;
  font-size: 0.925rem;
  border: 1px solid var(--text-dark-blue);
  background-color: #FFF;
  padding: 0.425rem 1.25rem;
  border-radius: 0.5rem;
  color: var(--text-dark-blue);
}

.open-filters svg {
  margin-inline-end: 0.5rem;
  width: 1.5rem;
  height: auto;
}

.open-filters svg [fill] {
  fill: var(--text-dark-blue);
}

.form-search .box-search,
.form-search .flex-select {
  position: relative;
  width: 100%;
}

.form-search select,
.form-search input {
  width: 100%;
  color: #fff;
  border: none;
  font-size: 0.925rem;
  background-color: #394553;
  border: 1px solid #394553;
  border-radius: 0.625rem;
  padding: 0.625rem 1.25rem;
  padding-inline-end: 2.75rem;
  transition: 0.3s;
  height: 2.75rem;
}

.form-search .box-search input::placeholder {
  color: #fff;
}

.form-search .box-search button {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  padding: 0;
  border: none;
}

html[dir="ltr"] .form-search .box-search button {
  left: unset;
  right: 1rem;
}

.form-search .box-search button svg {
  transition: 0.3s;
}

.form-search .box-search button:hover svg {
  transform: scale(1.05);
}

.form-search select {
  color: #394553;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url('../imgs/arrow-select.svg') 0.825rem 50% no-repeat;
  -webkit-appearance: none;
  font-size: 0.925rem;
  line-height: 1.6;
}

html[dir="ltr"] .form-search select {
  background: url('../imgs/arrow-select.svg') calc(100% - 0.6rem) 50% no-repeat;
}

.result {
  text-align: center;
}

.result img {
  width: 32px;
  height: 32px;
}

.loading img {
  animation: rotateInfinite infinite 0.7s linear both;
}

.result>* {
  font-size: 1rem;
}

.result .correct {
  color: #FEAE44;
}

.result .wrong {
  color: #CE7D7D;
}

@media (max-width: 991.9px) {
  .col-all-filters {
    background-color: #F5F5F5;
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 9999;
    padding: 2rem;
    overflow: auto;
    width: 50%;
    right: -50%;
    transition: 0.3s;
  }

  html[dir="ltr"] .col-all-filters {
    right: unset;
    left: -50%;
  }

  .col-all-filters.show {
    right: 0;
  }

  html[dir="ltr"] .col-all-filters.show {
    right: unset;
    left: 0;
  }

  .col-all-filters+.bg {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9997;
  }

  .col-all-filters.show+.bg {
    display: block;
    animation: fadeIn 0.3s linear;
  }
}

@media (max-width: 767.9px) {
  .col-all-filters {
    width: 70%;
    right: -70%;
  }

  html[dir="ltr"] .col-all-filters {
    right: unset;
    left: -70%;
  }
}

@media (max-width: 575.9px) {
  .col-all-filters {
    width: 80%;
    right: -80%;
  }

  html[dir="ltr"] .col-all-filters {
    right: unset;
    left: -80%;
  }
}

@media (max-width: 399.9px) {
  .col-all-filters {
    width: 90%;
    right: -90%;
  }

  html[dir="ltr"] .col-all-filters {
    right: unset;
    left: -90%;
  }
}

/* === Product Page === */

.num-in-store {
  background-color: #FEDC6F;
  font-size: 1.25rem;
  color: #19110C;
  padding: 0.125rem 1.75rem;
  font-family: 'Bold';
}

.num-in-store b {
  font-size: 1.75rem;
  margin-inline-end: 1rem;
}

.details-text-product h1 {
  font-size: 1.75rem;
}

.all-imgs-products {
  display: flex;
  gap: 0.75rem;
}

.all-imgs-products img {
  width: 100px;
  height: 100px;
}

.all-imgs-products .product-thumbs {
  width: 12rem;
  max-height: 33rem;
  overflow: hidden;
}

.imgs-products-with-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.all-imgs-products .product-thumbs .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid #fff;
}

.all-imgs-products .product-thumbs .swiper-slide-active {
  border-color: #394553;
}

.all-imgs-products .product-thumbs img {
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  object-fit: contain;
}

.all-imgs-products .product-slider {
  width: calc(100% - 12rem);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.all-imgs-products .product-slider.full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  animation: fadeIn 0.3s linear;
}

.all-imgs-products .product-slider:not(.full) .close {
  display: none;
}

.all-imgs-products .product-slider.full .preview {
  display: none;
}

.all-imgs-products .product-slider.full .swiper-slide {
  border-radius: 0;
}

.all-imgs-products .product-slider .full-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 9;
  display: flex;
}

html[dir="ltr"] .all-imgs-products .product-slider .full-close {
  left: unset;
  right: 1.5rem;
}

@media (max-width: 991.9px) {
  .all-imgs-products .product-slider .full-close {
    display: none;
  }
}

.all-imgs-products .product-slider .full-close svg {
  width: 2.5rem;
  height: auto;
}

.btns-swiper-product-thumbs {
  display: flex;
  align-items: center;
}

.btns-swiper-product-thumbs>div {
  width: calc(50% - 0.5rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1rem 0.25rem;
  transition: 0.3s;
  cursor: pointer;
}

.btns-swiper-product-thumbs>div:nth-child(1) {
  margin-inline-end: 0.5rem;
}

.btns-swiper-product-thumbs>div:nth-child(2) {
  margin-inline-start: 0.5rem;
}

.btns-swiper-product-thumbs>div:active {
  background-color: #ececec;
  transform: scale(1.05);
}

.btns-swiper-product-thumbs>div svg {
  height: 0.85rem;
  width: auto;
}

.all-imgs-products .product-slider .swiper-slide {
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
}

.all-imgs-products .product-slider a {
  display: flex;
  width: 100%;
  height: 100%;
}

.all-imgs-products .product-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars-product-page .stars {
  gap: 0.25rem;
}

.stars-product-page svg {
  width: 1.5rem !important;
  height: auto !important;
}

.stars-product-page .stars svg [fill] {
  fill: #F5F5F5;
}

.stars-product-page .rate {
  padding: 0;
  margin: 0;
  padding-inline-end: 1rem !important;
  margin-inline-end: 1rem !important;
}

.stars-product-page .rate::before,
.stars-product-page .rate::after {
  height: 1px;
  width: 100%;
  background-color: #fff;
}

.stars-product-page .rate,
.stars-product-page .input-stars {
  padding: 0.875rem 0;
}

.price-product-page b {
  font-size: 2.4rem;
  margin-inline-end: 3rem;
}

.price-product-page span {
  font-size: 1.4rem;
}

.form-minus-plus input,
.form-minus-plus button {
  font-size: 1.3rem;
  width: 2rem;
}

.form-minus-plus input {
  width: 3rem;
}

.details-text-product .box-product {
  padding: 0;
  background-color: transparent;
  box-shadow: none !important;
  transform: scale(1) !important;
  gap: 0.75rem;
}

.btns-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.btns-product>a {
  width: calc(50% - 0.5rem);
  flex: 0 0 calc(50% - 0.5rem);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  transition: 0.3s;
}

.btns-product>a:hover {
  transform: scale(1.025);
}

.btn-buy-visa {
  padding: 0.5rem;
  font-size: 0.925rem;
  color: var(--white);
  font-weight: 700;
  transition: 0.3s;
}

.btn-buy-visa:hover {
  background-color: #37c5a1;
}

.btn-buy-visa svg {
  width: 1.7rem;
  margin-inline-end: 0.5rem;
  height: auto;
}

.info-for-product {
  background-color: #ECF5FF;
  border: 1px solid #D1E1F3;
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
}

.info-for-product h2 {
  font-size: 1.25rem;
  font-family: 'Bold';
  color: #394553;
}

.info-for-product p {
  font-size: 0.925rem;
  color: #394553;
}

.share-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.share-product h5 {
  font-size: 1.25rem;
  color: #B95151;
  margin-inline-end: 1.5rem;
}

.share-product .social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-product .social a {
  margin: 0;
}

.share-product .social svg {
  height: 1.4rem;
  width: auto;
}

.imgs-words-product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.imgs-words-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}

.imgs-words-product p {
  font-size: 1.5625rem;
  line-height: 1.4;
  color: #233040;
}

@media (max-width: 991.9px) {
  .all-imgs-products .product-slider {
    width: 100%;
  }
}

@media (max-width: 399.9px) {
  .details-text-product .box-product {
    flex-direction: column;
  }

  .form-minus-plus input {
    width: 3rem;
    width: auto;
    flex-grow: 1;
  }

  .btns-product {
    flex-wrap: wrap;
  }

  .details-text-product .box-product>* {
    width: 100%;
  }

  .btns-product>a {
    width: 100%;
    flex: 0 0 100%;
  }
}

/* === Cart Page === */

.header-cart-page {
  background-color: #C8E2FF;
  border-radius: 0.625rem;
  margin-bottom: 2rem;
}

.header-cart-page a {
  font-size: 1.7rem;
  color: #19110C;
}

.header-cart-page a.active {
  font-family: 'Bold';
}

.header-cart-page svg {
  margin: 0 3rem;
}

html[dir="ltr"] .header-cart-page svg {
  transform: rotate(180deg);
}

.table-cart-page {
  overflow: auto;
}

.table-cart-page table {
  width: 100%;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0 0.625rem;
}

.table-cart-page table tr>* {
  padding: 0.75rem 1.25rem;
  background-color: #FFFFFF;
  text-align: center;
}

.table-cart-page table tr>*:first-child {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.table-cart-page table tr>*:last-child {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.table-cart-page table tr th {
  font-size: 1.2rem;
  color: #19110C;
}

.table-cart-page table td .text {
  text-align: start;
}

.table-cart-page table td img {
  width: 7rem;
  height: auto;
  max-height: 5rem;
  object-fit: contain;
    margin-inline-end: 0.625rem;
}

.table-cart-page table td h2 {
  font-weight: 100;
  font-size: 1rem;
}

.table-cart-page table .code-product {
  margin-top: 0.25rem !important;
  font-size: 0.75rem;
}

.table-cart-page table .price {
  font-family: 'Bold';
  color: #4D79FE;
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
  margin: 0 !important;
  justify-content: center;
}

.table-cart-page .form-minus-plus{
    justify-content: center;
}

.table-cart-page .form-minus-plus input,
.table-cart-page .form-minus-plus button,
.form-minus-plus-build-pc input,
.form-minus-plus-build-pc button {
  font-size: 1.125rem !important;
  line-height: 1.5;
}

.table-cart-page table .total {
  color: #B95151 !important;
}

.form-coupon,
.form-coupon>div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-coupon>div {
  gap: 1.5rem;
}

.form-coupon label {
  font-size: 1.5625rem;
  color: #19110C;
  font-family: 'Bold';
}

.form-coupon input {
  width: 8rem;
  border: 1px solid #DADAD8;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 0.25rem 0.5rem;
  font-size: 1.125rem;
}

.form-coupon button {
  font-size: 1.125rem;
  font-family: 'Bold';
  transition: 0.3s;
}

.form-coupon button:hover {
  background-color: #638aff;
  transform: scale(1.025);
}

.totoal-cart-page {
  padding: 1.15rem 0.85rem;
  border-radius: 0.625rem;
  background-color: #fff;
  margin-top: 0.625rem;
}

.totoal-cart-page h1 {
  font-size: 1.7rem;
  color: #4D79FE;
  text-align: center;
  margin-bottom: 1.35rem;
}

.totoal-cart-page div {
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid #DADAD8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.totoal-cart-page div h3 {
  font-size: 1.3rem;
  color: #19110C;
}

.totoal-cart-page div span {
  font-size: 1.3rem;
  color: #B95151;
  font-family: 'Bold';
}

.totoal-cart-page div:last-of-type {
  border-bottom: none;
  margin-bottom: 1.35rem;
}

.totoal-cart-page div:last-of-type h3,
.totoal-cart-page div:last-of-type span {
  color: #20B690;
}

.totoal-cart-page a,
.box-info-payment button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Bold';
  font-size: 1.125rem;
}

.totoal-cart-page a:hover,
.box-info-payment button:hover {
  background-color: #638aff;
  transform: scale(1.025);
}

.totoal-cart-page a svg,
.box-info-payment button svg {
  height: 1.875rem;
  width: auto;
  margin-inline-end: 0.75rem
}

@media (max-width: 767.9px) {
  .header-cart-page .col-12 {
    flex-direction: column;
    row-gap: 1rem;
  }

  .header-cart-page .col-12 svg {
    transform: rotate(-90deg) !important;
  }
}

/* === Payment Page === */

.table-payment-page th {
  vertical-align: bottom;
}

.table-payment-page th:nth-of-type(2) {
  color: #4D79FE;
  font-size: 1.8rem;
  padding-bottom: 2rem;
  vertical-align: top;
}

.total-price-to-pay {
  background-color: #EB8B0F;
  border-radius: 0.625rem;
  padding: 1.25rem 1.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.total-price-to-pay * {
  font-size: 1.5rem;
  color: #fff;
}

/* === Form Invoice === */

.form-invoice,
.box-info-payment {
  padding: 1rem 1.5rem 2rem;
  background-color: #fff;
  border-radius: 0.625rem;
}

.header-invoice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}

.header-invoice h1,
.box-info-payment h2 {
  font-size: 1.9rem;
  color: #4D79FE;
  margin-inline-end: 0.75rem;
}

.header-invoice span {
  color: #394553;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.header-invoice span svg {
  width: 1.5rem;
  height: auto;
  margin-inline-end: 0.5rem;
}

.box-input-normal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.box-input-normal label {
  color: #394553;
  font-size: 1.15rem;
}

.box-input-normal input,
.box-input-normal textarea {
  width: 100%;
  background-color: #fff;
  padding: 0.25rem 0.5rem;
  border: 1px solid #BAB8B8;
  border-radius: 0.625rem;
  font-size: 1.15rem;
  transition: 0.3s;
}

.box-input-normal textarea {
  height: 10rem;
  resize: none;
}

.box-input-normal input::placeholder,
.box-input-normal textarea::placeholder {
  color: #EBEBEC;
}

.box-input-normal input:focus,
.box-input-normal textarea:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.box-info-payment {
  margin-top: 1.125rem;
}

.box-info-payment h2 {
  color: #B95151;
  margin-bottom: 1rem;
}

.radio-input-payment {
  border-bottom: 1px solid #DADAD8;
}

.radio-input-payment label {
  margin-bottom: 1rem;
  display: block;
}

.radio-input-payment input+label .icon svg.checked,
.read-terms input+label .icon svg.checked {
  display: none;
}

.radio-input-payment input:checked+label .icon svg.checked,
.read-terms input:checked+label .icon svg.checked {
  display: inline-block;
}

.radio-input-payment input:checked+label .icon svg.not-checked,
.read-terms input:checked+label .icon svg.not-checked {
  display: none;
}

.radio-input-payment h3 {
  font-size: 1.3rem;
  color: #394553;
}

.radio-input-payment p {
  font-size: 1.125rem;
  color: #7D7D7D;
  padding: 0.625rem 1.25rem;
  background-color: #F9F9F9;
  border-radius: 0.625rem;
  margin-inline-start: 1.5rem;
  margin-top: 0.5rem;
  display: none;
}

.radio-input-payment input:checked+label p {
  display: block;
  animation: fadeIn 0.3s linear;
}

.read-terms p {
  font-size: 1.15rem;
  color: #394553;
}

.read-terms p span {
  display: inline-block;
  margin-inline-end: 0.5rem;
  font-weight: 700;
  color: #B95151;
}

.read-terms p a {
  color: #4D79FE;
  margin-inline-start: 0.5rem;
}

.box-info-payment .result .correct {
  color: #20B690;
}

.box-info-payment .result .wrong {
  color: #F14245;
}

/* === Page Single Details === */

.box-single-details {
  padding: 1.625rem 2.25rem;
  background-color: #FFF;
  border-radius: 0.625rem;
}

.box-single-details h2 {
  font-size: 1.7rem;
  color: #D65F15;
  font-weight: 100;
  text-align: center;
}

.box-single-details h1 {
  color: #000000;
  font-size: 2.25rem;
  text-align: center;
}

.box-single-details .social {
  gap: 1.5rem;
}

.box-single-details .social a {
  margin: 0;
}

.box-single-details .social a svg {
  width: 1.4rem;
  height: auto;
  max-height: 1.4rem;
}

.box-single-details .main-img img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

.box-single-details .gallery a {
  width: 100%;
  display: flex;
  position: relative;
  transition: 0.3s;
}

.box-single-details .gallery img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 0.625rem;
}

.box-single-details .gallery a svg {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.75rem;
  height: auto;
  z-index: 3;
  opacity: 0;
  transition: 0.3s;
}

html[dir="ltr"] .box-single-details .gallery a svg {
  left: unset;
  right: 1rem;
}

.box-single-details .gallery a:hover {
  transform: scale(1.025);
}

.box-single-details .gallery a:hover svg {
  opacity: 1;
}

.box-single-details iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tags a {
  color: #19110C;
  background-color: #ECF5FF;
  border-radius: 5px;
  font-size: 1.25rem;
  padding: 0.25rem 1rem;
  transition: 0.3s;
}

.tags a:hover {
  transform: scale(1.05);
}

/* === Contact Page === */

.box-address-qr,
.box-who-us {
  padding: 2rem;
  border-radius: 0.625rem;
  background-color: var(--white);
}

.box-address-qr {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.box-address-qr .img {
  flex: 0 0 12rem;
  display: flex;
  align-items: flex-start;
}

.box-address-qr .img img {
  width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.box-address-qr .text {
  flex: 0 0 calc(100% - 13.5rem);
}

.box-address-qr .text h2,
.box-address-qr .text p {
  font-size: 1.25rem;
  color: #394553;
}

.box-address-qr .text h2 {
  font-family: 'Bold';
}

.box-address-qr .text p {
  font-weight: 100;
}

.btn-contact,
.btn-choose {
  background-color: #EB8B0F;
  border: 1px solid #EB8B0F;
  font-size: 1.125rem;
  font-family: 'Bold';
}

.col-google-map iframe {
  width: 100%;
  border-radius: 0.625rem;
}

@media (max-width: 575.9px) {
  .box-address-qr .img {
    flex: 0 0 100%;
  }

  .box-address-qr .img img {
    max-height: 10rem;
    width: auto;
    max-width: 100%;
  }

  .box-address-qr .text {
    flex: 0 0 100%;
  }
}

/* === Who Us Page === */

.box-who-us h1 {
  text-align: center;
  color: #D65F15;
  font-size: 2.25rem;
}

.box-who-us .content-us p {
  font-size: 1.25rem;
  color: #394553;
  font-weight: 100;
  margin-bottom: 1rem;
}

.box-who-us .content-us p:last-of-type {
  margin-bottom: 0;
}

.box-who-us .content-us .img {
  float: left;
  display: flex;
  width: 20%;
  margin: 1rem;
}

html[dir="ltr"] .box-who-us .content-us .img {
  float: right;
}

.box-who-us .content-us .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.box-who-us .box-address-qr {
  padding: 0;
}

@media (max-width: 991.9px) {
  .box-who-us .content-us .img {
    width: 30%;
  }
}

@media (max-width: 575.9px) {
  .box-who-us .content-us .img {
    width: 100%;
    float: unset;
  }

  .box-who-us .content-us .img img {
    max-height: 15rem;
  }
}

/* === Pagination === */

.pagination a {
  color: #394553;
  font-size: 1.6rem;
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.pagination a:last-child {
  margin: 0 !important;
}

.pagination a.active {
  background-color: #FFFFFF;
  color: #EB8B0F;
  border-radius: 5px;
}

.pagination a img {
  width: 1.5rem;
  height: auto;
}

html[dir="ltr"] .pagination a img {
  transform: rotateY(180deg);
}

/* === Build Your PC === */

.list-steps-pc {
  padding: 2.25rem;
  border-radius: 0.625rem;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.list-steps-pc>div {
  padding: 0.75rem;
  position: relative;
}

.list-steps-pc>div::before {
  content: "";
  height: 0.1px;
  background-color: #ebebeb;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.list-steps-pc>div:last-child::before {
  content: unset;
}

.list-steps-pc a {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  color: #233040;
  font-family: 'Bold';
}

.list-steps-pc .done a {
  color: #B95151;
}

.list-steps-pc a svg {
  width: 0.45rem;
  height: auto;
  margin-inline-end: 0.75rem;
}

html[dir="ltr"] .list-steps-pc a svg {
  transform: rotate(180deg);
}

.list-steps-pc>div div p {
  font-size: 0.85rem;
  color: #233040;
  line-height: 1.4;
}

.list-steps-pc>div div b {
  white-space: nowrap;
  color: #4D79FE;
}

.list-steps-pc>div div span {
  cursor: pointer;
}

.list-steps-pc>div div span svg {
  transition: 0.3s;
}

.list-steps-pc>div div span svg [fill] {
  transition: 0.3s;
}

.list-steps-pc>div div span:hover svg {
  transform: scale(1.05);
}

.list-steps-pc>div div span:hover svg [fill] {
  fill: #F14245;
}

.total-price-build-pc {
  padding: 1.2rem 1.7rem 1.7rem;
  border-radius: 0.625rem;
  background-color: var(--white);
  text-align: center;
}

.total-price-build-pc h2 {
  font-size: 1.75rem;
  color: #4D79FE;
  font-family: 'Bold';
}

.total-price-build-pc .nums b {
  color: #19110C;
  font-size: 1.4rem;
  font-family: 'Bold';
}

.total-price-build-pc .nums span {
  color: #B95151;
  font-size: 1.6rem;
  font-family: 'Bold';
}

.header-step-build-pc {
  gap: 1rem;
}

.header-step-build-pc b,
.header-step-build-pc h3 {
  font-size: 1.6rem;
  color: #B95151;
}

.header-step-build-pc h3 {
  color: #4D79FE;
}

.header-step-build-pc .btns {
  gap: 1rem;
}

.header-step-build-pc .btns a {
  display: inline-flex;
}

.header-step-build-pc .btns a svg {
  width: 1.5rem;
  height: auto;
  transition: 0.3s;
}

.header-step-build-pc .btns a svg [fill] {
  transition: 0.3s;
}

.header-step-build-pc .btns a:hover svg {
  transform: scale(1.05);
}

.header-step-build-pc .btns a:hover svg [fill] {
  fill: #B95151;
}

html[dir="ltr"] .header-step-build-pc .btns a svg {
  transform: rotate(180deg);
}

html[dir="ltr"] .header-step-build-pc .btns a:hover svg {
  transform: rotate(180deg) scale(1.05);
}

.btn-choose {
  width: auto;
  padding: 0.5rem !important;
  flex-grow: 1;
  text-align: center;
  line-height: 1;
  justify-content: center;
}

.form-minus-plus-build-pc input,
.form-minus-plus-build-pc button {
  line-height: 1.8;
}

@media (max-width: 575.9px) {
  .header-step-build-pc b {
    width: 100%;
  }
}

.close-btn-red svg,
.close-btn-red svg [fill] {
  transition: 0.3s;
}

.close-btn-red:hover svg {
  transform: scale(1.025);
}

.close-btn-red:hover svg [fill] {
  fill: #F14245;
}

/* === Animation === */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes rotateInfinite {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.title-order-status {
  background-color: #B95151 !important;
  border-radius: 0.625rem !important;
  color: #FFFFFF !important;
}

.order-status {
  background-color: #FFF7DC !important;
  border-radius: 0.625rem !important;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.order-status>span {
  font-family: 'Bold';
  font-size: 1rem;
}

.order-status .step1 {
  color: #19110C;
}

.order-status .step2 {
  color: #B95151;
}

.order-status .step3 {
  color: #20B690;
}

.eye-btn-yellow,
.eye-btn-yellow svg [fill] {
  transition: 0.3s;
}

.eye-btn-yellow:hover {
  transform: scale(1.025);
}

.eye-btn-yellow:hover svg [fill] {
  fill: #FDB700;
}

.table-my-orders th,
.table-my-orders td {
  font-size: 1.125rem !important;
}

.table-my-orders .price {
  justify-content: center;
  font-size: 1.5rem !important;
}

.profile {
  position: relative;
}

.profile span:not(.box-user-header) {
  cursor: pointer;
}

.box-user-header {
  position: absolute;
  min-width: 100%;
  background: #FFFFFF;
  top: 1.8rem;
  right: 50%;
  transform: translateX(50%);
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1rem 2rem;
  white-space: nowrap;
  flex-direction: column;
}

.box-user-header.show {
  display: flex !important;
  animation: fadeIn 0.3s linear;
}

.box-user-header .name {
  display: flex;
  flex-direction: column;
  font-family: 'Bold';
  font-size: 1.25rem;
  color: #B95151;
  align-items: center;
}

.box-user-header .name svg {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.3rem;
}

.box-user-header span svg {
  width: 0.5rem;
  height: auto;
  margin-inline-end: 0.5rem;
}

.box-user-header span a {
  font-size: 1.05rem;
  color: #19110C;
  font-weight: 500;
}
/* new */
.outOfStock .btn-add-to-cart {
    opacity: 0.7;
    cursor: not-allowed;
}

.outOfStock {
    position: relative;
}

.outOfStock .msg-outOfStock {
    position: absolute;
    top: 3rem;
    right: 0;
    z-index: 9999;
    font-size: 0.85rem;
    color: #FFF;
    background-color: #f13030;
    border-radius: 0.3125rem;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
    padding: 0.125rem 0.25rem;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
}
