@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes hide-show {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes hide-show {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.hamburger {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger-icon {
  display: inline-block;
  width: 22px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (min-width: 992px) {
  .hamburger-icon {
    width: 30px;
    height: 24px;
  }
}
.hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: var(--hamburger-background, #fff);
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburger-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 3px 3px 0;
}
.hamburger-icon span:nth-child(odd) {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.hamburger-icon span:nth-child(1), .hamburger-icon span:nth-child(2) {
  top: 0;
}
.hamburger-icon span:nth-child(3), .hamburger-icon span:nth-child(4) {
  top: 8px;
}
@media (min-width: 992px) {
  .hamburger-icon span:nth-child(3), .hamburger-icon span:nth-child(4) {
    top: 10px;
  }
}
.hamburger-icon span:nth-child(5), .hamburger-icon span:nth-child(6) {
  top: 16px;
}
@media (min-width: 992px) {
  .hamburger-icon span:nth-child(5), .hamburger-icon span:nth-child(6) {
    top: 20px;
  }
}
.hamburger.active {
  background-color: transparent;
}
.hamburger.active .hamburger-icon span {
  background: var(--hamburger-background, #707070);
}
.hamburger.active .hamburger-icon span:nth-child(1) {
  left: 1px;
  top: 8px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(1) {
    left: 3px;
    top: 7px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(2) {
  left: calc(50% - 3px);
  top: 8px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(2) {
    top: 7px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.hamburger.active .hamburger-icon span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.hamburger.active .hamburger-icon span:nth-child(5) {
  left: 0;
  top: 16px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(5) {
    left: 2px;
    top: 17px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(6) {
  left: calc(50% - 2px);
  top: 16px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(6) {
    left: calc(50% - 2px);
    top: 17px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(1), .hamburger.active .hamburger-icon span:nth-child(6) {
  transform: rotate(45deg);
}
.hamburger.active .hamburger-icon span:nth-child(2), .hamburger.active .hamburger-icon span:nth-child(5) {
  transform: rotate(-45deg);
}

.header {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  /**menu dessktop//**/
}
.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top {
  background-color: var(--header-top-background-color, #fff);
  color: var(--header-top-color, #0A0A0A);
}
.header__top .header__wrapper {
  flex-direction: column;
}
@media (min-width: 992px) {
  .header__top .header__wrapper {
    flex-direction: row;
  }
}
.header__top__left {
  text-transform: uppercase;
  font-size: var(--header-top-left-font-size, 1.2rem);
  font-weight: var(--header-top-left-font-weight, 600);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .header__top__left {
    width: 20%;
  }
  .header__top__left .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .header__top__right {
    width: 80%;
  }
}
.header__top ul.header__top__contact {
  margin-bottom: 16px;
}
.header__top .company__name {
  text-align: center;
  color: #4241d5;
  font-size: 36px;
  margin: 0;
}
.header__top__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  font-size: var(--header-contact-font-size, 1.4rem);
}
.header__top__contact .contact__item > a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.header__top__mobile {
  display: block;
  flex: 1;
}
@media (min-width: 992px) {
  .header__top__mobile {
    display: none;
  }
}
.header__main {
  position: relative;
  height: var(--header-height, 70px);
  background-color: var(--header-top-background-color, #e1a829);
  color: var(--header-top-color, #fff);
}
@media (max-width: 991.98px) {
  .header__main > .container,
  .header__main .header__wrapper {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .header__main__left {
    display: none;
  }
}
.header__main__logo {
  text-align: center;
}
@media (min-width: 992px) {
  .header__main__logo {
    text-align: left;
  }
}
.header__main__logo .logo {
  padding: 15px 0;
}
.header__main__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header__main__search {
  cursor: pointer;
}
.header__main .logo {
  width: auto;
  max-height: 75px;
  height: 75px;
}
.header__main:not(.sticky) .logo {
  transition: max-height 0.5s;
}
.header__main.sticky {
  position: fixed;
  height: auto;
  z-index: var(--z-index-sticky, 99);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  animation: stuckMoveDown 0.6s;
}
.header__main.sticky .main-menu > li > a:not(.btn) {
  line-height: 40px !important;
}
.header__main.sticky .logo {
  max-height: 60px;
  width: auto;
}
.header-search__form, .section-search, .modal-search .modal-content .searchform {
  padding: 5px 0;
  width: 100%;
}
.header-search__form .searchform, .section-search .searchform, .modal-search .modal-content .searchform .searchform {
  position: relative;
}
.header-search__form .searchform__label, .section-search .searchform__label, .modal-search .modal-content .searchform .searchform__label {
  display: none;
}
.header-search__form .searchform__input, .section-search .searchform__input, .modal-search .modal-content .searchform .searchform__input {
  box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 0 0.75em;
  height: 2.507em;
  font-size: 0.97em;
  max-width: 100%;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.09);
  color: #fff;
  width: 100%;
  border-radius: 99px;
}
.header-search__form .searchform__input:focus, .section-search .searchform__input:focus, .modal-search .modal-content .searchform .searchform__input:focus {
  outline: 0;
}
.header-search__form .searchform__input::-webkit-input-placeholder, .section-search .searchform__input::-webkit-input-placeholder, .modal-search .modal-content .searchform .searchform__input::-webkit-input-placeholder {
  color: currentColor;
}
.header-search__form .searchform__input:-moz-placeholder, .section-search .searchform__input:-moz-placeholder, .modal-search .modal-content .searchform .searchform__input:-moz-placeholder {
  color: currentColor;
}
.header-search__form .searchform__input::-moz-placeholder, .section-search .searchform__input::-moz-placeholder, .modal-search .modal-content .searchform .searchform__input::-moz-placeholder {
  color: currentColor;
}
.header-search__form .searchform__input:-ms-input-placeholder, .section-search .searchform__input:-ms-input-placeholder, .modal-search .modal-content .searchform .searchform__input:-ms-input-placeholder {
  color: currentColor;
}
.header-search__form .searchform__button, .section-search .searchform__button, .modal-search .modal-content .searchform .searchform__button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header-account .dropdown-menu, .header-cart .dropdown-menu {
  font-size: var(--header-cart-font-size, 1.4rem);
  min-width: 260px;
}
.header-account .dropdown-menu ul > li, .header-cart .dropdown-menu ul > li {
  margin-left: 0;
  padding-left: 0;
}
.header-account:hover .dropdown-menu, .header-cart:hover .dropdown-menu {
  display: block;
}
.header-cart .dropdown-menu {
  min-width: 300px;
}
.header-account .dropdown-menu {
  padding: 20px;
  border: 2px solid var(--mini-cart-border-color, #D9D9D9);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}
.header-account .dropdown-menu > li {
  margin-left: 0;
  padding-left: 0;
}
.header-account .dropdown-menu > li:last-child a {
  border-bottom: 0;
}
.header-account .dropdown-menu > li a {
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid var(--mini-account-border-color, #D9D9D9);
}
.header .main-header .main-menu li + li {
  position: relative;
}
.header .main-header .main-menu li.nav-item-lv1 > a {
  color: var(--header-menu-color, #fff);
}
@media (min-width: 992px) {
  .header .main-header .main-menu li.nav-item-lv1 > a {
    margin-right: 10px;
    border-right: 1px solid #fff;
    padding-right: 10px;
  }
}
.header .main-header .main-menu li a.active, .header .main-header .main-menu li a:hover {
  color: var(--header-menu-color-hover, #0A0A0A);
}
.header .main-header .main-menu li .childMenu {
  display: none;
  box-shadow: 0 0 12.22px 0.78px rgba(0, 0, 0, 0.11);
  background: #fff;
  position: absolute;
  left: -50px;
  z-index: 9;
  min-width: 260px;
  top: 100%;
  border-top: 1px solid #fff;
}
.header .main-header .main-menu li .childMenu:after {
  bottom: 100%;
  left: 68px;
  border-style: solid;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(23, 158, 255, 0);
  border-bottom-color: #fff;
  border-width: 9px;
}
.header .main-header .main-menu li .childMenu li {
  margin: 0;
  position: relative;
}
.header .main-header .main-menu li .childMenu li a {
  display: block;
  padding: 10px 15px;
  font-weight: 400;
}
.header .main-header .main-menu li .childMenu li + li {
  border-top: 1px solid #ececec;
}
.header .main-header .main-menu li:hover .childMenu {
  display: block;
}
.header .main-header .main-menu > li > a {
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
}
.header .main-header .main-menu > li > a:not(.btn) {
  line-height: 70px;
}
.header .main-header .main-menu > li > a.btn {
  line-height: 1.5;
  border-radius: 99px;
  color: var(--header-menu-button-color, #fff);
  height: 36px;
}
.header .main-header .main-menu > li > a.btn:hover {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
}
.header .menu-mobile {
  width: var(--header-menu-mobile-width, 350px);
  max-width: 100%;
  background: var(--header-menu-mobile-background, #fff);
  position: fixed;
  height: 100%;
  top: 0;
  left: var(--header-menu-mobile-left, -350px);
  z-index: var(--header-menu-mobile-z-index, 999);
  transition: all 0.3s ease-in-out;
  overflow: auto;
}
.header .menu-mobile.active {
  left: 0;
}
.header .menu-mobile .logo-mobile {
  border-bottom: var(--header-menu-mobile-border-bottom-width, 1px) solid var(--header-menu-mobile-border-bottom-color, #D9D9D9);
  position: relative;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-menu-mobile-height, 100px);
}
.header .menu-mobile .logo-mobile img {
  height: auto;
  max-width: var(--header-menu-mobile-logo-max-width, 100px);
}
.header .menu-mobile .logo-mobile .btn-close-menu {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.header .menu-mobile .box-scroll {
  overflow: auto;
  height: calc(100% - var(--header-menu-mobile-height, 100px));
  padding-bottom: 60px;
}
.header .menu-mobile .nav > li {
  width: 100%;
  position: relative;
  padding: 20px 25px;
  border-bottom: var(--header-menu-mobile-border-bottom-width, 1px) solid var(--header-menu-mobile-border-bottom-color, #D9D9D9);
}
.header .menu-mobile .nav > li > div[aria-expanded=true]:before {
  transform: rotate(180deg);
  top: 5px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > div[aria-expanded=true] i {
  transform: rotate(-180deg);
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > div[data-bs-toggle=collapse]:before, .header .menu-mobile .nav > li > div[data-toggle=collapse]:before {
  content: "";
  border: 6px solid transparent;
  border-top-color: #d0d0d0;
  position: absolute;
  right: 10px;
  top: 30px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > a {
  color: var(--header-menu-mobile-link-color, #0A0A0A);
  font-weight: 600;
  display: block;
  font-size: var(--header-menu-mobile-link-font-size, 1.4rem);
}
.header .menu-mobile .nav > li > a.active {
  --header-menu-mobile-link-color: #0A0A0A;
}
.header .menu-mobile .nav > li > a[aria-expanded=true]:before {
  transform: rotate(180deg);
  top: 5px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > a[aria-expanded=true] i {
  transform: rotate(-180deg);
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > a[data-bs-toggle=collapse]:before, .header .menu-mobile .nav > li > a[data-toggle=collapse]:before {
  content: "";
  border: 6px solid transparent;
  border-top-color: #d0d0d0;
  position: absolute;
  right: 10px;
  top: 30px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > a i {
  position: absolute;
  right: 0;
  top: 8px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li.active > a {
  color: #08f;
}
.header .menu-mobile .nav > li .sub-menu {
  padding-left: 15px;
  border-left: 1px solid #dfdfdf;
  list-style: none;
  margin-top: 10px;
}
.header .menu-mobile .nav > li .sub-menu li {
  position: relative;
}
.header .menu-mobile .nav > li .sub-menu li a {
  color: var(--header-menu-mobile-link-color, #707070);
  line-height: 22px;
  display: block;
  padding: 0;
  margin: 0 0 17px;
}
.header .menu-mobile .nav > li .sub-menu li a.active {
  --header-menu-mobile-link-color: #0A0A0A;
}
.header .menu-mobile .nav > li .sub-menu li a[data-bs-toggle=collapse]:before, .header .menu-mobile .nav > li .sub-menu li a[data-toggle=collapse]:before {
  content: "";
  border: 6px solid transparent;
  border-top-color: #d0d0d0;
  position: absolute;
  right: 0;
  top: 11px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li a[aria-expanded=true]:before {
  transform: rotate(180deg);
  top: 4px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li a[aria-expanded=true] i {
  transform: rotate(-180deg);
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li a span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #8f8f8f;
}
.header .menu-mobile .nav > li .sub-menu li a i {
  position: absolute;
  right: 0;
  top: 2px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li:last-child a {
  margin: 0;
}
.header .menu-mobile .nav > li .show-sub .sub-menu {
  margin-top: 0;
}

.footer {
  padding-top: 30px;
  --footer_background: #dcddde;
  background-color: var(--footer_background);
  color: var(--footer_color, #0060a9);
  border-top: 1px solid #e6e6e6;
  font-weight: 400;
  box-shadow: rgba(0, 0, 0, 0.35) 0 0 10px;
}
.footer .menu__item {
  border-bottom: 1px solid #fff;
}
.footer .menu__item__link {
  position: relative;
  padding: 6px 0;
  display: block;
  font-weight: 600;
}
.footer__title {
  text-transform: uppercase;
  font-size: var(--footer-title-font-size, 1.4rem);
  color: var(--footer-title-color, #e1a829);
  font-weight: var(--footer-title-font-weight, 600);
  margin-bottom: 8px;
}
.footer__top {
  background-image: linear-gradient(0deg, rgba(255, 196, 0, 0.45) 0, transparent 100%);
  background-repeat: repeat-x;
  padding-bottom: 0;
  text-align: center;
}
.footer__top img {
  width: 100%;
  padding: 0 15px 30px;
}
@media (min-width: 768px) {
  .footer__top img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__top figure {
  margin-top: -70px;
  margin-bottom: 0;
}
.footer__main .row {
  row-gap: 30px;
}
.footer__bottom {
  padding-top: 16px;
  padding-bottom: 32px;
}
.footer__bottom__logo {
  max-width: 220px;
  margin: 0 auto;
}
.footer__bottom ul li {
  margin-bottom: 10px;
}
.footer__copyright {
  --footer-copyright_background: #e1a829;
  --footer-copyright_color: #fff;
  position: relative;
  padding: 24px 0;
  background-color: var(--footer-copyright_background);
  color: var(--footer-copyright_color);
  font-size: var(--footer-copyright-font-size, 1.4rem);
}
.footer__copyright .row {
  align-items: center;
}
.footer__copyright__svg svg {
  position: absolute;
  top: -53px;
  left: 50%;
  transform: translateX(-50%);
}
.footer__copyright a {
  color: inherit;
}
.footer__copyright--phone img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.social-footer {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .social-footer {
    flex-direction: row;
  }
}
.social-footer .social-buttons {
  display: flex;
  align-content: center;
  gap: 6px;
}
.social-footer .social-button {
  width: 36px;
  height: 36px;
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}
.social-footer .social-button:hover {
  opacity: 0.8;
}
.social-footer .facebook {
  background: #3a589d;
}
.social-footer .youtube {
  background: #c33223;
}

/*Back to top*/
.back-to-top {
  right: 12px;
  bottom: 196px;
  top: auto;
  cursor: pointer;
  height: var(--back-to-top-height, 44px);
  width: var(--back-to-top-width, 44px);
  background-color: var(--back-to-top-bg-color, #e1a829);
  color: var(--back-to-top-color, #fff);
  line-height: 44px;
  border-radius: 100%;
  font-size: var(--back-to-top-font-size, 1.4rem);
  transition: all 0.3s ease-out 0s;
  transform: translateY(-120px);
  opacity: 0;
  visibility: hidden;
  text-align: center;
  margin-bottom: 5px;
  position: fixed;
}
.back-to-top:hover {
  background-color: var(--back-to-top-bg-color-hover, #e3aa23);
  color: var(--back-to-top-color-hover, #fff);
}
.back-to-top.show {
  z-index: 999;
  transition: transform 0.3s ease-out 0s;
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

/**Callnow**/
.section-callnow {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1000;
  text-align: center;
}
.section-callnow .callnow__list {
  position: relative;
  background-color: rgb(255, 120, 0);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: flex;
  box-sizing: border-box;
  transition: all 0.24s;
  justify-content: space-evenly;
  min-height: 56px;
  height: 60px;
}
@media (min-width: 576px) {
  .section-callnow .callnow__list {
    display: inline-flex;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
  }
}
.section-callnow .callnow__item {
  flex: 1 1;
}
.section-callnow .callnow__item:not(:first-child) {
  border-left: 1px solid hsla(0, 0%, 100%, 0.2);
}
.section-callnow .callnow__item__link {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
@media (min-width: 576px) {
  .section-callnow .callnow__item__link {
    gap: 10px;
    align-self: stretch;
    padding: 0 10px;
    flex-direction: row;
    cursor: pointer;
    justify-content: flex-start;
    border-radius: 3px;
    height: 40px;
    margin: 10px 5px;
    background-color: hsla(0, 0%, 100%, 0.2);
  }
}
.section-callnow .callnow__item__link:hover {
  background-color: rgba(27, 27, 27, 0.2);
}
.section-callnow .callnow__item__link--label {
  font-size: 1.2rem;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 576px) {
  .section-callnow .callnow__item__link--label {
    white-space: nowrap;
    font-size: 1.4rem;
  }
}
.section-callnow .callnow__item__link span > span {
  display: inline-block;
}
@media (max-width: 767.98px) {
  .section-callnow .callnow__item__link span > span {
    display: none;
  }
}
.section-callnow .callnow__item__icon {
  animation: tada 1.2s infinite;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
}
@media (min-width: 576px) {
  .section-callnow .callnow__item {
    flex: auto;
  }
}

/**Search popup***/
.modal-search ~ .modal-backdrop {
  opacity: 0.8;
}
.modal-search .modal-content {
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  max-width: 600px;
  padding: 0;
  border: none;
}
.modal-search .modal-content .searchform {
  color: #fff;
}
.modal-search .modal-content .searchform .searchform__input {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.09);
  height: 67px;
  font-size: 24px;
}
.modal-search .modal-content .searchform .searchform__button {
  font-size: 24px;
  height: 67px;
  line-height: 67px;
  padding: 0 30px;
  border-radius: 99px;
}

/**Cart***/
.mini-cart {
  padding: 20px;
  border: 2px solid var(--mini-cart-border-color, #D9D9D9);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}
.mini-cart-item {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-right: 30px;
  display: flex;
  width: 100%;
}
.mini-cart-item:not(:last-child) {
  border-bottom: 1px solid var(--mini-cart-item-border-color, #D9D9D9);
}
.mini-cart--empty-message {
  padding: 20px;
}
.mini-cart .cart_list {
  max-height: 300px;
  overflow-y: auto;
}
.mini-cart .cart_list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  background-color: #fafafa;
}
.mini-cart .cart_list::-webkit-scrollbar {
  width: 2px;
  background-color: var(--mini-cart-scrollbar-thumb-color, #0A0A0A);
}
@media (min-width: 992px) {
  .mini-cart .cart_list::-webkit-scrollbar {
    width: 2px;
  }
}
.mini-cart .cart_list::-webkit-scrollbar-thumb {
  background-color: var(--mini-cart-scrollbar-thumb-color, #0A0A0A);
}
.mini-cart .cart_image {
  display: table-cell;
  vertical-align: top;
  position: relative;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
.mini-cart .cart_info {
  padding-left: 15px;
  vertical-align: top;
}
.mini-cart .cart_name {
  margin-bottom: 5px;
}
.mini-cart .cart_price {
  opacity: 0.6;
  font-size: var(--mini-cart-price-font-size, 1.4rem);
}
.mini-cart .remove-item-cart {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 24px;
  height: 24px;
  font-size: 15px;
  line-height: 19px;
  border-radius: 100%;
  color: var(--mini-cart-remove-color, #acacac);
  font-weight: bold;
  text-align: center;
  border: 2px solid currentColor;
  cursor: pointer;
}
.mini-cart .remove-item-cart:hover {
  --mini-cart-remove-color: #0A0A0A;
}
.mini-cart__total {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid var(--mini-cart-total-border-color, #e6e6e6);
  border-bottom: 2px solid var(--mini-cart-total-border-color, #e6e6e6);
  margin-bottom: 0.5em;
}
.mini-cart__buttons .btn:not(:last-child) {
  margin-bottom: 10px;
}
.count_item_pr {
  position: absolute;
  display: inline-block;
  width: 17px;
  height: 17px;
  background: #81d742;
  color: #fff;
  text-align: center;
  line-height: 17px;
  border-radius: 17px;
  top: 13px;
  font-size: 10px;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 350px;
  background-color: #fff;
  overflow: hidden;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: none;
  touch-action: manipulation;
}
.cart-sidebar.active {
  visibility: visible;
  transform: translateX(0);
}
.cart-sidebar .close {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.cart-sidebar .cart_title {
  text-align: center;
  font-size: var(--cart-sidebar-title-font-size, 1.8rem);
  text-transform: uppercase;
  font-weight: 600;
}
.cart-sidebar .divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px auto 20px;
  width: 100%;
  max-width: 30px;
}
.cart-sidebar .cart-content {
  padding: 30px;
}
.cart-sidebar .cart_body {
  padding: 0;
  border: 0;
  box-shadow: none;
}
.cart-sidebar .cart_body .cart_list {
  max-height: 500px;
}
.cart-sidebar .cart_body .cart_list .cart_name a {
  display: block;
  color: var(--cart-sidebar-name-color, #e3aa23);
}
.cart-sidebar .cart_body .cart_list .cart_price--number {
  color: var(--cart-sidebar-price-color, #ff0000);
  font-weight: 600;
}
.cart-sidebar .cart_body .mini-cart__total .price {
  color: var(--cart-sidebar-price-color, #ff0000);
  font-weight: 600;
}

/**login popup***/
.modal-formLogin .modal-title {
  font-size: var(--loginPopup-title-font-size, 2rem);
  font-weight: var(--loginPopup-title-font-weight, 600);
  margin-bottom: 10px;
}
.modal-formLogin .modal-body {
  padding: 30px 20px;
}
.modal-formLogin .modal-body label {
  font-size: var(--loginPopup-label-font-size, 1.4rem);
}

/***Homepage**/
/***Page Gioi thieu***/
.section-breadcrumb {
  background-image: url(/catalog/view/theme/modaquynhtrang/image/background/blog-background-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  height: 300px;
  padding: 15px 0;
}
.section-breadcrumb.dark {
  --breadcrumb-title-text-transform: ;
}
.section-breadcrumb.dark:before {
  background-color: rgba(0, 0, 0, 0.5);
}
.section-breadcrumb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.25);
}
.section-breadcrumb .container {
  position: relative;
  z-index: 1;
}
.section-breadcrumb .breadcrumb-title {
  color: var(--breadcrumb-title-color, #fff);
  font-size: var(--breadcrumb-title-font-size, 2.5rem);
  font-weight: var(--breadcrumb-title-font-weight, 600);
  text-transform: var(--breadcrumb-title-text-transform, uppercase);
  margin-bottom: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  text-align: center;
  background-color: transparent;
  padding: 10px 0;
}
.breadcrumb--categoryProduct {
  --breadcrumb-title-color: #707070;
  --breadcrumb-title-font-size: 2rem;
  --breadcrumb-main-title-color: #2a2a2a;
  text-transform: uppercase;
  text-align: left;
}
.breadcrumb--categoryProduct a, .breadcrumb--categoryProduct span, .breadcrumb--categoryProduct strong {
  text-transform: uppercase;
}
.breadcrumb li {
  display: inline-block;
  color: var(--breadcrumb-title-color, #fff);
}
.breadcrumb li:not(:last-child):after {
  content: "/";
  padding: 0 5px;
  color: var(--breadcrumb-title-color, #fff);
}
.breadcrumb li a, .breadcrumb li span, .breadcrumb li strong {
  color: var(--breadcrumb-title-color, #fff);
  font-size: var(--breadcrumb-title-font-size, 1.4rem);
}
.breadcrumb li:last-child a, .breadcrumb li:last-child span, .breadcrumb li:last-child strong {
  color: var(--breadcrumb-main-title-color, #fff);
}

.section-introduction .introduction__contents .row {
  row-gap: 30px;
}
.section-introduction .introduction__contents:nth-child(even) {
  padding-top: 84px;
  padding-bottom: 84px;
  background-color: rgb(241, 253, 248);
}
@media (min-width: 576px) {
  .section-introduction .introduction__contents:nth-child(even) .introduction__right {
    order: -1;
  }
}
.section-introduction .introduction__contents--feature {
  background-image: url(/catalog/view/theme/modaquynhtrang/image/background/decor_dot-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media (max-width: 767.98px) {
  .section-introduction .introduction__right .heading__title {
    margin-bottom: 10px;
  }
}
.section-introduction .box-padding {
  padding: 0;
}
@media (min-width: 768px) {
  .section-introduction .box-padding {
    padding: 50px 0;
  }
}
.section-introduction .divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px auto 20px;
  width: 100%;
  max-width: 30px;
  max-width: 100px;
  height: 5px;
  background-color: var(--introduction-divider-color, #00ae4d);
  margin-left: 0;
}
.section-introduction .video-fit {
  padding-top: 56.5%;
}
.section-introduction .mask-angled {
  clip-path: polygon(0 calc(0% + 30px), 100% 0, 100% 100%, 0 100%);
}
.section-introduction .mask-angled-right {
  clip-path: polygon(0 0, 100% calc(0% + 30px), 100% 100%, 0 100%);
}
.section-introduction .mask-arrow {
  clip-path: polygon(0 0, calc(50% - 30px) 0, 50% calc(0% + 30px), calc(50% + 30px) 0, 100% 0, 100% 100%, 0 100%);
}
.section-introduction .mask-angled-large {
  clip-path: polygon(0 calc(0% + 60px), 100% 0, 100% 100%, 0 100%);
}
.section-introduction .mask-angled-right-large {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}
.section-introduction .mask-arrow-large {
  clip-path: polygon(0 0, calc(50% - 60px) 0, 50% calc(0% + 60px), calc(50% + 60px) 0, 100% 0, 100% 100%, 0 100%);
}

/***Page Kho giao dien***/
.section-search .searchform__input {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.09);
  color: #707070;
}

#sort-by {
  float: right;
  font-size: var(--collection-sort-by-font-size, 1.4rem);
  text-align: left;
}
#sort-by label {
  float: left;
  margin-right: 20px;
  margin-bottom: 0;
  color: var(--collection-sort-by-color, #2a2a2a);
  font-size: var(--collection-sort-by-font-size, 1.4rem);
  line-height: 36px;
}
#sort-by ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline;
  float: right;
}
#sort-by ul li:hover > ul {
  visibility: visible;
}
#sort-by ul li:hover > ul li:hover {
  background-color: var(--collection-sort-by-hover-background-color, #076db6);
  color: var(--collection-sort-by-hover-color, #fff);
}
#sort-by ul ul {
  position: absolute;
  visibility: hidden;
  width: 100%;
  left: -1px;
  top: 34px;
  z-index: var(--collection-sort-by-z-index, 99);
  border: 1px solid var(--collection-sort-by-border-color, #e6e6e6);
  border-radius: 3px;
  overflow: hidden;
  background: var(--collection-sort-by-background-color, #fff);
  padding-left: 0;
}
#sort-by ul ul ul {
  position: absolute;
  left: 100%;
  top: -2px;
  border: solid 1px transparent;
}
#sort-by ul ul li:last-child {
  border-bottom: none;
}
#sort-by li {
  cursor: pointer;
  margin: 0 auto;
  outline: medium none;
  padding: 0 20px;
  position: relative;
  width: 250px;
  float: left;
  border: 1px solid var(--collection-sort-by-border-color, #e6e6e6);
}
#sort-by li li {
  width: 100%;
  margin-top: 0;
  border-top: none;
  border-right: none;
  border-left: none;
}
#sort-by li li a:hover {
  color: var(--main_color);
}
#sort-by li > a {
  display: inline-block;
  width: 100%;
  line-height: 36px;
  transition: all 0s ease-in-out;
}
#sort-by li > a:hover {
  color: var(--main_color);
}
#sort-by > ul > li {
  background-image: url("./../images/icons/ico-select.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  text-indent: 0.01px;
  cursor: pointer;
  line-height: 34px;
  border-radius: 3px;
}
#sort-by > ul > li:hover {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/**Page Contact**/
.section-contact .button .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}
.section-contact .button .btn i {
  margin-right: 5px;
}
.section-contact .form-contact .title {
  font-size: var(--contact-title-font-size, 1.4rem);
  color: var(--contact-title-color, #e3aa23);
  font-weight: var(--contact-title-font-weight, 700);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .section-contact .form-contact .title {
    --contact-title-font-size: 2rem ;
  }
}
.section-contact .form-contact label {
  display: none;
}
.section-contact .form-contact .form-group {
  margin-bottom: 15px;
}
.section-contact .form-contact textarea.form-control {
  min-height: 120px;
  height: 4rem;
}

/**Page Blog**/
.news-search .searchform {
  position: relative;
  margin-bottom: 25px;
}
.news-search .searchform__input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--news-search-input-border, #D9D9D9);
  padding: 0 10px;
  font-size: 14px;
  color: var(--news-search-input-color, #0A0A0A);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.news-search .searchform__input:focus {
  outline: none;
}
.news-search .searchform__submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--news-search-bg, #81d742);
  color: var(--news-search-color, #fff);
}

.post-right .divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px auto 20px;
  width: 100%;
  max-width: 30px;
  margin-left: 0;
  margin-top: 10px;
}
.post-right .aside-title {
  font-weight: 600;
}
.post-right ul {
  background-color: #F6F6F6;
  padding: 16px;
}
.post-right .aside-news-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}
.post-right .aside-news-item .title {
  margin-bottom: 5px;
  color: var(--blog-item-title-color);
  position: relative;
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-right .aside-news-item .title:hover {
  color: var(--blog-item-title-hover-color, #007CC7);
}
.post-right .aside-news-item .title .arrow {
  position: absolute;
  top: 8px;
  left: 0px;
  overflow: hidden;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #939598;
}
.post-right .aside-news-item + li {
  border-top: 1px solid #ececec;
}

.post-related__title {
  margin-top: 30px;
  margin-bottom: 20px;
}
.post-related .row {
  row-gap: 30px;
}
.post-related .news_item .news_item__thumb,
.post-related .news_item .news_item__content {
  transition: transform 0.3s;
}
.post-related .news_item:hover .news_item__thumb {
  transform: translateY(-5px);
}
.post-related .news_item:hover .news_item__content {
  transform: translateY(-15px);
}

/**Page Affiliate**/
.affiliate-banner .banner {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url(./../images/background/affiliate.jpg);
  color: var(--affiliates-banner-color, #fff);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-position: 32% 84%;
}
.affiliate-banner .banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.affiliate-banner .banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 0;
}
@media (min-width: 576px) {
  .affiliate-banner .banner__content {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.affiliate-banner .banner__content__title {
  color: var(--affiliates-banner-title-color, #fff);
  font-weight: var(--affiliates-banner-title-font-weight, 700);
  margin-bottom: 20px;
}
.affiliate-banner .banner__content__desc a {
  color: currentColor;
}
.affiliate-banner .banner__content__desc p {
  margin-bottom: 20px;
}
.affiliate-banner .banner .scroll-down {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: currentColor;
  font-size: var(--affiliates-banner-scroll-down-font-size, 2.8rem);
  opacity: 0.7;
  cursor: pointer;
}
.affiliate-banner .banner .scroll-down:hover {
  opacity: 1;
}

.affiliate-information__list__item.row {
  margin-right: auto;
  margin-left: auto;
}
.affiliate-information__list__item.row > [class^=col-] {
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 767.98px) {
  .affiliate-information__list__item.row > .col-lg-2 {
    order: -1;
    padding-bottom: 15px;
  }
}
.affiliate-information__list__item.row > .col-lg-2:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  border-left: 2px dashed var(--affiliate-information-border-color, rgb(228, 228, 228));
  z-index: -1;
}
.affiliate-information__list__item .item-content {
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin-bottom: 25px;
}
.affiliate-information__list__item .item-content .title {
  background-color: var(--affiliate-information-title-bg, #e3aa23);
  color: var(--affiliate-information-title-color, #fff);
  font-size: var(--affiliate-information-title-font-size, 2rem);
  padding: 10px 20px;
  margin: 0;
}
.affiliate-information__list__item .item-content .description {
  padding: 10px 20px;
}
.affiliate-information__list__item .item-icon {
  position: relative;
}
.affiliate-information__list__item .item-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--affiliate-information-icon-bg, #fff);
  z-index: -1;
}
.affiliate-information__list__item .item-icon .icon {
  position: relative;
  background-color: var(--affiliate-information-icon-bg, #fff);
  color: var(--affiliate-information-icon-color, var(--affiliate-information-title-bg, #e3aa23));
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  border-width: 3px;
  border-style: solid;
  border-color: currentColor;
  border-radius: 100%;
  transition: all 0.3s;
}
@media (min-width: 576px) {
  .affiliate-information__list__item .item-icon .icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.affiliate-information__list__item .item-icon .icon:hover {
  background-color: var(--affiliate-information-icon-hover-bg, var(--affiliate-information-title-bg, #e3aa23));
  --affiliate-information-icon-fill-color: #fff;
}
.affiliate-information__list__item .item-icon .icon svg {
  position: absolute;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 0;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
}
.affiliate-information__list__item .item-icon .icon svg path {
  fill: var(--affiliate-information-icon-fill-color, currentColor);
}
.affiliate-information__list__item:nth-child(odd) {
  justify-content: flex-end;
}
.affiliate-information__list__item:nth-child(1) {
  --affiliate-information-title-bg: rgb(42, 51, 226);
}
.affiliate-information__list__item:nth-child(2) {
  --affiliate-information-title-bg: rgb(154, 208, 173);
}
.affiliate-information__list__item:nth-child(4) {
  --affiliate-information-title-bg: rgb(249, 113, 104);
}

.affiliate-account .wrapper {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url(./../images/background/affiliate.jpg);
}
@media (max-width: 767.98px) {
  .affiliate-account .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.affiliate-account .affiliate-box {
  padding: 50px 30px 10px 30px;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.84);
  color: var(--affiliates-banner-color, #0A0A0A);
}
@media (min-width: 576px) {
  .affiliate-account .affiliate-box {
    width: 48%;
    padding: 70px 70px 30px 70px;
  }
}
.affiliate-account .affiliate-box .affiliate-form .title {
  font-size: var(--affiliates-banner-title-font-size, 2.4rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.affiliate-account .affiliate-box .affiliate-form label {
  display: none;
}
.affiliate-account .affiliate-box .affiliate-form .form-group {
  margin-bottom: 15px;
}
.affiliate-account .affiliate-box .affiliate-form .button {
  text-align: center;
  margin-bottom: 30px;
}
.affiliate-account .affiliate-box .affiliate-form .button .btn {
  color: var(--affiliates-acctoun-button-color, #fff);
}
.affiliate-account .affiliate-box .affiliate-note {
  text-align: center;
}
.affiliate-account .affiliate-box .affiliate-note a {
  color: var(--affiliates-acctoun-link-color, #e3aa23);
}
.affiliate-account .affiliate-box .affiliate-note a:hover {
  --affiliates-acctoun-link-color: #007CC7;
}

/*Page Product*/
.product-info {
  padding: 40px 0;
}
.product-info .row {
  row-gap: 20px;
}
.product-info-tooltip {
  max-width: 340px;
  width: 100%;
}
.product-info-tooltip .tooltip-inner {
  max-width: 100%;
  width: 100%;
}
.product-info .option-tooltip {
  color: #076db6;
  cursor: help;
  font-size: 1.25em;
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.product-info__image {
  border: 1px solid #cdcdcd;
  padding: 10px;
  border-radius: 5px;
}
.product-info .breadcrumb {
  --breadcrumb-title-color: #acacac;
  --breadcrumb-main-title-color: #acacac;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-info .breadcrumb a:hover {
  --breadcrumb-title-color: #0A0A0A;
  --breadcrumb-main-title-color: #0A0A0A;
}
.product-info .breadcrumb strong {
  font-weight: 400;
}
.product-info .product_title {
  font-size: var(--product-heading-title-font-size, 2rem);
  font-weight: 600;
}
.product-info .product_button {
  margin-bottom: 15px;
}
.product-info .product_button .btn {
  text-transform: uppercase;
  color: var(--product-button-color, #fff);
}
.product-info .product_price {
  font-size: var(--product-price-font-size, 2.4rem);
  color: var(--product-price-color, #ff0000);
  margin: 12px 0;
}
.product-info .product_price .price {
  font-weight: 600;
}
.product-info .product_price .price-old {
  opacity: 0.6;
  text-decoration: line-through;
}
.product-info .product_option .title {
  color: #ca1515;
  font-weight: 600;
}
.product-info .product_option ul li {
  padding-top: 10px;
}
.product-info .product_option ul li label {
  margin-bottom: 0;
  display: inline;
}
.product-info .product-totals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
  padding: 15px 0;
}
.product-info .product-totals .left {
  width: calc(50% - 5px);
  text-transform: uppercase;
}
.product-info .product-totals .right {
  width: calc(50% - 5px);
  text-align: right;
}
.product-info .product-totals .right .price {
  color: #ff0000;
  font-weight: 600;
}
.product-info .product-totals .right .price.final {
  font-size: 2rem;
}
.product-info .product-action {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.product-info .product-action .btn {
  color: var(--product-button-color, #fff);
}
.product-info .product-meta {
  margin-top: 30px;
  font-size: 1.4rem;
}
.product-info .product-meta__item {
  border-top: 1px dotted #ddd;
  padding: 5px 0;
}
.product-info .product-meta__item a {
  color: #e1a829;
}
.product-info .product-meta__item a:hover {
  color: #076db6;
}
.product-info .divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px auto 20px;
  width: 100%;
  max-width: 30px;
  margin-left: 0;
}
.product-info .price {
  color: #ff0000;
  font-weight: 600;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity [class^=btn-] {
  padding: 0;
  margin: 0;
  outline: none;
  background-color: #f9f9f9;
  text-shadow: 1px 1px 1px #fff;
  border: 1px solid #ddd;
  font-size: 8px;
}
.quantity [class^=btn-]:focus {
  outline: none;
}
.quantity .btn-minus {
  width: 25px;
  height: 40px;
}
.quantity .input-quantity {
  height: 40px;
  width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.quantity .btn-plus {
  width: 25px;
  height: 40px;
}

.product-related__list {
  margin-left: -15px;
  margin-right: -15px;
}
.product-related__title {
  border-top: 1px solid #ececec;
  font-size: var(--product-heading-title-font-size, 2rem);
  font-weight: 600;
  margin-bottom: 10px;
  padding: 15px 0;
  text-transform: uppercase;
}
.product-related .swiper-container {
  --swiper-navigation-size: 2.4rem;
  --swiper-theme-color: #2a2a2a;
  font-weight: 700;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767.98px) {
  .product-related .swiper-container {
    --swiper-navigation-size: 1.4rem;
  }
}
.product-related .swiper-container:hover [class*=swiper-button-] {
  opacity: 0.7;
}
.product-related .swiper-container [class*=swiper-button-] {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  width: 36px;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  box-shadow: 0 -150px 15px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, opacity 0.3s, background 0.3s, box-shadow 0.3s;
}
@media (max-width: 767.98px) {
  .product-related .swiper-container [class*=swiper-button-] {
    width: 20px;
    box-shadow: none;
    background-color: transparent;
    opacity: 0.8;
  }
}
.product-related .swiper-container [class*=swiper-button-]:hover {
  opacity: 1;
}
.product-related .swiper-container .swiper-button-next {
  left: auto;
  right: 0;
}
.product-related .swiper-container .swiper-button-prev {
  left: 0;
  right: auto;
}
.product-related .product_item {
  box-shadow: none;
}

/**Style Custom **/
body.product-productall .section-category,
body[class^=product-category] .section-category {
  background-color: transparent;
  padding-bottom: 0;
}
body.product-productall .section-category .heading__title,
body[class^=product-category] .section-category .heading__title {
  display: none;
}

#tab-description .description {
  padding: 20px;
}/*# sourceMappingURL=stylesheet.css.map */