@charset "UTF-8";
@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: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.hamburger-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (min-width: 992px) {
  .hamburger-icon {
    width: 24px;
    height: 24px;
  }
}
.hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: var(--hamburger-background, #0A0A0A);
  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 {
  /**menu dessktop//**/
}
.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__top {
  background-color: var(--header-top-background-color, #737373);
  color: var(--header-top-color, #0A0A0A);
  padding: 5px 0;
}
@media (min-width: 992px) {
  .header__top {
    padding: 10px 0;
  }
}
.header__top__left {
  color: var(--header-top-left-color, #fff);
  font-size: var(--header-top-left-font-size, 1.2rem);
}
@media (min-width: 992px) {
  .header__top__left {
    font-size: var(--header-top-left-font-size, 1.4rem);
  }
}
.header__top__left a {
  color: inherit;
}
@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__right__item {
  list-style: none;
  position: relative;
}
.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: flex-end;
  gap: 16px;
}
.header__top__contact .contact__item img {
  width: 18px;
  height: 18px;
}
@media (min-width: 992px) {
  .header__top__contact .contact__item img {
    width: 24px;
    height: 24px;
  }
}
.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, 80px);
  background-color: var(--header-top-background-color, rgba(255, 255, 255, 0.6392156863));
  color: var(--header-top-color, #fff);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  z-index: 99;
}
@media (max-width: 991.98px) {
  .header__main {
    height: var(--header-height, 56px);
  }
  .header__main > .container,
  .header__main .header__wrapper {
    height: 100%;
  }
}
.header__main .container {
  height: 100%;
}
.header__main__logo {
  text-align: center;
}
@media (min-width: 992px) {
  .header__main__logo {
    text-align: left;
  }
}
.header__main__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header__main__search {
  cursor: pointer;
}
.header__main .logo {
  width: auto;
  max-height: 64px;
  height: 64px;
}
.header__main:not(.sticky) .logo {
  transition: max-height 0.5s;
}
.header__main.sticky {
  position: fixed;
  height: var(--header-height, 80px);
  z-index: var(--z-index-sticky, 99);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  animation: stuckMoveDown 0.6s;
}
@media (max-width: 991.98px) {
  .header__main.sticky {
    height: var(--header-height, 56px);
  }
}
.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;
  margin-bottom: 0 !important;
}
.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: 10px;
  height: 40px;
  font-size: 1.4rem;
  max-width: 100%;
  vertical-align: middle;
  background-color: #F5F5F5;
  border-color: #D4D4D4;
  color: #737373;
  width: 100%;
}
.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.6rem);
  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;
  right: 0;
  left: auto;
}
.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: 80px;
}
.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, 640px);
  max-width: 100%;
  position: fixed;
  height: 100%;
  top: 0;
  left: var(--header-menu-mobile-left, -640px);
  z-index: var(--header-menu-mobile-z-index, 999);
  transition: all 0.3s ease-in-out;
  overflow: auto;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  background: var(--header-menu-mobile-background, rgba(255, 255, 255, 0.6392156863));
}
.header .menu-mobile.active {
  left: 0;
}
.header .menu-mobile .search {
  flex: 1;
}
.header .menu-mobile .logo-mobile {
  border-bottom: var(--header-menu-mobile-border-bottom-width, 1px) solid var(--header-menu-mobile-border-bottom-color, #737373);
  position: relative;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .menu-mobile .logo-mobile img {
  height: auto;
  max-width: var(--header-menu-mobile-logo-max-width, 100px);
}
.header .menu-mobile .box-scroll {
  overflow: auto;
  height: calc(100% - var(--header-menu-mobile-height, 100px));
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .header .menu-mobile .box-scroll {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.header .menu-mobile .nav .nav-item-lv1__link {
  font-weight: 600;
}
.header .menu-mobile .nav .nav-item-lv1__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menu-mobile .nav .nav-item-lv1__link {
  flex: 1;
}
.header .menu-mobile .nav .nav-item-lv1__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header .menu-mobile .nav .nav-item-lv1__toggle:focus {
  outline: none;
  box-shadow: none;
}
.header .menu-mobile .nav .nav-item-lv1__toggle i {
  transition: transform 0.3s ease;
}
.header .menu-mobile .nav .nav-item-lv1__toggle[aria-expanded=true] i {
  transform: rotate(180deg);
}
.header .menu-mobile .nav > li {
  width: 100%;
  position: relative;
  padding: 12px 0;
}
.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.6rem);
}
.header .menu-mobile .nav > li > a:hover {
  color: var(--header-menu-mobile-link-hover-color, #EAB308);
}
.header .menu-mobile .nav > li > a.active {
  --header-menu-mobile-link-color: #EAB308;
}
.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 #737373;
  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 {
  font-size: 1.6rem;
  color: var(--header-menu-mobile-link-color, #0A0A0A);
  line-height: 22px;
  display: block;
  padding: 0;
  margin: 0 0 17px;
}
.header .menu-mobile .nav > li .sub-menu li a:hover {
  color: var(--header-menu-mobile-link-hover-color, #EAB308);
}
.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;
}
.header .nav-actions {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #737373;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.header .nav-actions .nav-item-lv1 {
  flex: 0 0 calc(50% - 6px);
}
.header .nav-actions .nav-item-lv1:nth-child(3) {
  flex-basis: 100%;
  /* 3つ目だけ次の行で全幅 */
}
.header .nav-actions .nav-item-lv1 .btn {
  display: block;
  border: 1px solid #262626;
  height: 40px;
  font-weight: bold;
  line-height: 1.8;
}
.footer {
  padding-top: 48px;
  background-color: var(--footer_background, #262626);
  color: var(--footer_color, #fafafa);
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .footer {
    padding-top: 16px;
    font-size: 1.4rem;
  }
}
.footer a {
  color: inherit;
}
.footer__main__wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .footer__main__wrapper {
    justify-content: space-between;
  }
  .footer__main__wrapper .footer__main__left,
  .footer__main__wrapper .footer__main__right {
    width: 560px;
  }
}
.footer__main__left .footer__description img {
  width: 80px;
  height: 80px;
}
.footer__main__right {
  color: #d4d4d4;
  width: 100%;
}
@media (max-width: 991.98px) {
  .footer__main__right {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #737373;
  }
  .footer__main__right .footer-map img {
    width: 100%;
  }
}
.footer__bottom {
  padding-top: 24px;
  padding-bottom: 60px;
  background-color: var(--footer_background);
}
.footer__bottom__logo {
  max-width: 220px;
  margin: 0 auto;
}
.footer__bottom ul li {
  margin-bottom: 10px;
}
.footer__copyright {
  position: relative;
  padding: 24px 0 48px 0;
  font-size: var(--footer-copyright-font-size, 1.2rem);
  color: #737373;
}
@media (max-width: 991.98px) {
  .footer__copyright {
    padding: 16px 0;
    font-size: var(--footer-copyright-font-size, 1rem);
  }
}
.footer__copyright .row {
  align-items: center;
}
.footer__copyright a {
  color: inherit;
}
.footer .footer-contact {
  margin-top: 8px;
}
.footer .footer-contact__item {
  margin-bottom: 8px;
}
.footer .footer-contact .center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer .footer__socials {
  display: flex;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .footer .footer__socials {
    gap: 16px;
  }
}
.footer .footer-map {
  height: 180px;
  overflow: hidden;
  margin-top: 24px;
}
@media (max-width: 991.98px) {
  .footer .footer-map {
    margin-top: 16px;
  }
}

.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, #0A0A0A);
  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;
}
@media (max-width: 991.98px) {
  .back-to-top {
    bottom: 140px;
    height: var(--back-to-top-height-mobile, 32px);
    width: var(--back-to-top-width-mobile, 32px);
    line-height: 32px;
    font-size: var(--back-to-top-font-size-mobile, 1.2rem);
  }
}
.back-to-top:hover {
  background-color: var(--back-to-top-bg-color-hover, #171717);
  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;
  right: 12px;
  bottom: 24px;
  z-index: 1000;
}
.section-callnow__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section-callnow__image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: shake 2s ease-in-out infinite;
}
@media (max-width: 767.98px) {
  .section-callnow__image {
    width: 32px;
    height: 32px;
  }
}
.section-callnow__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-callnow .grid-item {
  display: block;
}
.section-callnow .grid-item:hover .section-callnow__image {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: none;
}
.section-callnow .grid-item:active .section-callnow__image {
  transform: scale(0.95);
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-8deg);
  }
  20%, 40% {
    transform: rotate(8deg);
  }
  50%, 100% {
    transform: rotate(0deg);
  }
}
/**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: #262626;
  color: #fff;
  text-align: center;
  line-height: 17px;
  border-radius: 17px;
  top: 0;
  font-size: 10px;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 640px;
  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, #EAB308);
}
.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**/
.section-image_3 {
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-image_3 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.section-image_3 .heading__title {
  margin-bottom: 16px;
}
.section-image_3__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .section-image_3__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-image_3__item img {
  width: 100%;
  height: auto;
  display: block;
}

.section-gallery {
  display: none;
}
@media (max-width: 1199.98px) {
  .section-gallery {
    display: block;
  }
}
.section-gallery .home-slider .swiper-pagination {
  bottom: 16px;
}
.section-gallery .home-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.section-gallery .home-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.section-banner img {
  width: 100%;
  height: auto;
}
.section-banner .heading__title {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0;
  opacity: 0.24;
  font-size: 11vw;
  width: 100%;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}

.section-bo-sieu-tap {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-bo-sieu-tap {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.section-bo-sieu-tap .heading__description p:last-child {
  margin-bottom: 0;
}
.section-bo-sieu-tap .section-title {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .section-bo-sieu-tap .section-title {
    margin-bottom: 24px;
  }
}
.section-bo-sieu-tap .wrapper-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .section-bo-sieu-tap .wrapper-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.section-bo-sieu-tap .grid-item {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.section-bo-sieu-tap .grid-item:hover .grid-item__image img {
  transform: scale(1.05);
}
.section-bo-sieu-tap .grid-item__image {
  width: 100%;
  overflow: hidden;
  --ratio-width: 4;
  --ratio-height: 3;
  position: relative;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
  display: block;
}
.section-bo-sieu-tap .grid-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.section-bo-sieu-tap .grid-item__name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.0784313725);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FAFAFA;
}

.section-about-us {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F9F9F9;
}
.section-about-us .heading__title,
.section-about-us .heading__description {
  color: #fff;
}
.section-about-us .heading__title:hover {
  color: #EAB308;
}
@media (max-width: 991.98px) {
  .section-about-us {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.section-about-us .wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-about-us .wrapper {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .section-about-us .wrapper .left {
    flex: 1;
  }
  .section-about-us .wrapper .right {
    width: 50%;
  }
}
.section-about-us__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .section-about-us__list {
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
    max-width: 264px;
    justify-content: center;
  }
}
.section-about-us__item {
  --ring: 3.2px;
  --gap: 3.2px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-sizing: border-box;
  box-shadow: 0px 0px 12px 0px #EDBB2C;
  /* Vòng vàng + shadow (ngoài cùng) */
  /* Ảnh (trên cùng) — nhỏ lại để tạo vòng transparent */
}
@media (min-width: 992px) {
  .section-about-us__item {
    width: 88px;
    height: 88px;
  }
}
.section-about-us__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--ring);
  background: linear-gradient(225deg, #EAB308 0%, #FDE1CE 100%);
  box-shadow: 0 0 12px #EDBB2C;
  /* khoét ruột để chỉ còn cái "vòng" */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}
.section-about-us__item img {
  width: calc(100% - 2 * (var(--ring) + var(--gap)));
  height: calc(100% - 2 * (var(--ring) + var(--gap)));
  border-radius: 50%;
  display: block;
  background: #fff;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 1;
}
.section-about-us .video-wrapper {
  position: relative;
  display: block;
  cursor: pointer;
}
.section-about-us .video-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.section-about-us .video-wrapper .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
}
@media (max-width: 991.98px) {
  .section-about-us .video-wrapper .play-icon {
    width: 60px;
    height: 60px;
  }
}
.section-about-us .video-wrapper:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}
.section-about-us .heading__description p:last-child {
  margin-bottom: 0;
}

.section-category {
  background-image: url(/catalog/view/theme/mailan/image/background/category.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: rgb(241, 246, 250);
}
.section-category .category__item {
  text-align: center;
}
@media (min-width: 992px) {
  .section-category .category__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.section-category .category__item__thumb img {
  border-radius: 10px;
}
.section-category .category__item__name {
  padding: 10px 10px 20px;
  text-transform: capitalize;
  color: var(--category-name-color, #EAB308);
  font-weight: 600;
  font-size: var(--category-name-font-size, 1.3rem);
  letter-spacing: 0.05em;
}

.section-product {
  background-color: #F5F5F5;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-product {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.section-product.product-related {
  background-image: url(/catalog/view/theme/mailan/image/bg-product-releated.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #F5F5F5;
}
.section-product .heading__description p:last-child {
  margin-bottom: 0;
}
.section-product .section-title {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .section-product .section-title {
    margin-bottom: 24px;
  }
}
.section-product .product__list {
  row-gap: 16px;
}
.section-product .product__list [class^=col-] {
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 767.98px) {
  .section-product .product__list {
    row-gap: 12px;
  }
  .section-product .product__list [class^=col-] {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.section-product .product__button {
  margin-top: 24px;
}

@media (min-width: 992px) {
  .col-lg-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.product_item {
  padding: 8px;
  background-color: #F5F5F5;
}
.product_item__content .title {
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}
.product_item__thumb {
  margin-bottom: 8px;
  overflow: hidden;
}
.product_item__thumb img {
  transition: transform 0.3s ease;
}
.product_item:hover .product_item__thumb img {
  transform: scale(1.05);
}
@media (max-width: 991.98px) {
  .product_item .title {
    font-size: 1.4rem;
  }
}
.product_item .price {
  min-height: 45px;
}
.product_item .price__new {
  color: #EAB308;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .product_item .price__new {
    font-size: 1.4rem;
  }
}
.product_item .price__old {
  color: #737373;
  text-decoration: line-through;
  font-size: 1.2rem;
}

.product__list {
  row-gap: 16px;
}
@media (max-width: 991.98px) {
  .product__list {
    row-gap: 12px;
  }
  .product__list [class^=col-] {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.page-category-product .product__list {
  row-gap: 16px;
}
.page-category-product .product__list [class^=col-] {
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 767.98px) {
  .page-category-product .product__list {
    row-gap: 12px;
  }
  .page-category-product .product__list [class^=col-] {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* --------------------------------------------------------------------------
   Category filter (BEM): block = product-header-filter
   - Keep compatibility with existing classes in template
   -------------------------------------------------------------------------- */
.product-header-filter {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  overflow: hidden;
  /* Main category link */
  /* Active state */
  /* Sublist */
  /* Small responsive tweaks */
}
.product-header-filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-header-filter__list {
  margin: 0;
  padding: 0;
}
.product-header-filter__item {
  border-bottom: 1px solid #f3f4f6;
}
.product-header-filter__item:last-child {
  border-bottom: none;
}
.product-header-filter__link,
.product-header-filter .product__header__filter--category-item {
  display: block;
  padding: 12px 16px;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.12s ease, color 0.12s ease;
}
.product-header-filter__link:hover,
.product-header-filter .product__header__filter--category-item:hover {
  background: #f7fafc;
}
.product-header-filter__link--active,
.product-header-filter .product__header__filter--category-item--active {
  background: #111827;
  color: #ffffff;
}
.product-header-filter__sublist,
.product-header-filter .product__header__filter--category-subitem {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-header-filter__subitem {
  border-top: 1px solid #f8fafc;
}
.product-header-filter__subitem a {
  display: block;
  padding: 10px 24px;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.product-header-filter__subitem a:hover,
.product-header-filter .product__header__filter--category-subitem:hover {
  background: #f7fafc;
}
.product-header-filter__subitem--active,
.product-header-filter .product__header__filter--category-subitem--active {
  background: #f2f4f7;
  color: #111827;
}
@media (max-width: 991.98px) {
  .product-header-filter__link {
    padding: 10px 12px;
  }
  .product-header-filter__subitem a {
    padding-left: 18px;
  }
}

.section-blog {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-blog {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.section-article {
  padding-top: 24px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-article {
    padding-bottom: 24px;
  }
}
.section-article .article-title {
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}
.section-article .article-author ul {
  margin-bottom: 16px;
}
.section-article .article-author ul li:not(:last-child) {
  margin-bottom: 8px;
}

.news_category--bosieutap {
  padding-bottom: 64px;
}
.news_category--bosieutap .section-title {
  padding-top: 32px;
  padding-bottom: 32px;
}
.news_category--bosieutap .section-title .heading__description p:last-child {
  margin-bottom: 0;
}
.news_category--feedback {
  padding-bottom: 64px;
}
.news_category--feedback .section-news-category__title {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #E6E0D8;
  margin-bottom: 24px;
  background-image: url(/catalog/view/theme/mailan/image/bg-feedback.png);
  background-size: auto;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .news_category--feedback .section-news-category__title {
    background-position: right 18vw center;
  }
}
.news_category--feedback .section-news-category__title .heading__description p:last-child {
  margin-bottom: 0;
}
.news_category--feedback .section-feedback {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}
.news_category--feedback .section-feedback .section-feedback__list {
  margin-top: 0;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 992px) {
  .news_category--feedback .section-feedback .section-feedback__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news_category--feedback .section-news-category__category .category__feedback__list {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  margin-bottom: 18px;
}
.news_category--feedback .section-news-category__category .category__feedback__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 16px;
  border: 1px solid #262626;
}
.news_category--feedback .section-news-category__category .category__feedback__item:hover {
  background-color: #262626;
}
.news_category--feedback .section-news-category__category .category__feedback__item:hover a {
  color: #FAFAFA;
}
.news_category--feedback .section-news-category__category .category__feedback__item--active {
  background-color: #262626;
}
.news_category--feedback .section-news-category__category .category__feedback__item--active a {
  color: #FAFAFA;
}

@media (min-width: 992px) {
  .news__list--aside {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.news__list--bosieutap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 992px) {
  .news__list--bosieutap {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.news__list--feedback {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 992px) {
  .news__list--feedback {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.news__item {
  position: relative;
  color: #2a2a2a;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .news__item {
    font-size: 1.4rem;
  }
}
.news__item--bosieutap {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.news__item--bosieutap:hover .news__item__image img {
  transform: scale(1.05);
}
.news__item--bosieutap .news__item__image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  --ratio-width: 4;
  --ratio-height: 3;
  position: relative;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
  display: block;
}
.news__item--bosieutap .news__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.news__item--bosieutap .news__item__name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.0784313725);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 0;
}
.news__item--feedback {
  text-align: center;
  padding: 12px;
  border: 1px solid #D9D9D9;
  background: #fff;
}
.news__item--feedback .news__item__image {
  margin-bottom: 16px;
}
.news__item--feedback .news__item__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__item--feedback .news__item__sub-name {
  font-size: 1.4rem;
  color: #707070;
  margin-bottom: 4px;
}
.news__item--feedback .news__item__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 8px;
  display: block;
}
@media (min-width: 992px) {
  .news__item--feedback .news__item__name {
    font-size: 2rem;
  }
}
.news__item--feedback .news__item__desc {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item--feedback .news__item__button .btn-view-gallery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 1.4rem;
  color: #2a2a2a;
  border: 1px solid #ccc;
  background: transparent;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}
.news__item--feedback .news__item__button .btn-view-gallery:hover {
  background: #2a2a2a;
  color: #fff;
  border-color: #2a2a2a;
}
.news__item--feedback .news__item__button .btn-view-gallery i {
  font-size: 1.6rem;
}
.news__item__image {
  margin-bottom: 12px;
  overflow: hidden;
}
.news__item__image img {
  transition: transform 0.3s ease;
}
.news__item:hover .news__item__image img {
  transform: scale(1.05);
}
.news__item__tags {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.news__item__tags__link {
  color: #707070;
  padding: 4px 12px;
  border: 1px solid #ccc;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.news__item__tags__link:hover {
  color: #707070;
  border-color: #EAB308;
}
@media (min-width: 768px) {
  .news__item__tags__link {
    font-size: 1.4rem;
  }
}
.news__item__name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 4px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .news__item__name {
    font-size: 1.8rem;
  }
}
.news__item__desc {
  margin-bottom: 4px;
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item__author {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  color: #707070;
}
.news__item__author__date {
  position: relative;
  padding-right: 8px;
  margin-right: 8px;
}
.news__item__author__date:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #ccc;
}
.news__item__author__name {
  color: #707070;
}

.news__module .heading__description {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .news__module .heading__description {
    margin-bottom: 32px;
  }
}

.article-main {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.article-main .aside-title {
  margin-bottom: 24px;
  font-size: 2.4rem;
}
@media (max-width: 991.98px) {
  .article-main .aside-title {
    padding-top: 24px;
    border-top: 1px solid #737373;
  }
}

.article__left {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .article__left {
    max-width: calc(70% - 12px);
  }
}
.article__right {
  max-width: 100%;
  width: 100%;
}
.article__right .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 24px;
  --swiper-theme-color: #262626;
}
@media (min-width: 768px) {
  .article__right {
    max-width: calc(30% - 12px);
  }
  .article__right .news__item,
  .article__right .video__item,
  .article__right .swiper-slide {
    display: none;
  }
  .article__right .news__item:nth-child(1), .article__right .news__item:nth-child(2), .article__right .news__item:nth-child(3),
  .article__right .video__item:nth-child(1),
  .article__right .video__item:nth-child(2),
  .article__right .video__item:nth-child(3),
  .article__right .swiper-slide:nth-child(1),
  .article__right .swiper-slide:nth-child(2),
  .article__right .swiper-slide:nth-child(3) {
    display: block;
  }
}
.article__center {
  display: none;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .article__center {
    display: block;
  }
}
.article__description__short {
  font-style: italic;
}
.article__thumb {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .article__thumb {
    margin-bottom: 24px;
  }
}
.article-content p {
  margin-bottom: 16px;
}

.article__tags {
  margin-top: 24px;
  padding-top: 24px;
  margin-bottom: 24px;
  border-top: 1px solid #ccc;
}
@media (min-width: 992px) {
  .article__tags {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
  }
}
.article__tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.article__tags ul li a {
  display: inline-block;
  padding: 4px 12px;
  font-style: italic;
  border: 1px solid #ccc;
}
.article__tags ul li a:hover {
  color: #707070;
  border-color: #EAB308;
}
@media (min-width: 768px) {
  .article__tags ul li a {
    font-size: 1.4rem;
  }
}

.section-news-category__title {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (max-width: 991.98px) {
  .section-news-category__title {
    padding-top: 32px;
    padding-bottom: 12px;
  }
}

.blog__list--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .blog__list--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog__list--grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-wrapper {
  padding-top: 24px;
  padding-bottom: 64px;
}

.news-category__empty-list {
  display: block;
}

.rte figure {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .rte figure {
    margin-bottom: 24px;
  }
}
.rte figure > img + figcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 1.4rem;
  color: #999;
  font-style: italic;
}

.news__item--default .news__item__image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.news__item--default .news__item__image a {
  --width-image: 270;
  --height-image: 480;
  padding-top: calc(var(--width-image) / var(--height-image) * 100%);
  position: relative;
  width: 100%;
  display: block;
}

.news-search .margin-bottom-50 {
  margin-bottom: 50px;
}

.article-hair-daily__header {
  background-color: #F5F5F5;
  padding-top: 24px;
  padding-bottom: 24px;
  background-image: url(/catalog/view/theme/mailan/image/line-hair-daily.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
}
@media (min-width: 992px) {
  .article-hair-daily__header {
    background-position: center center;
    background-size: cover;
  }
}
@media (min-width: 992px) {
  .article-hair-daily__header {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.article-hair-daily__header__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .article-hair-daily__header__title {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
@media (min-width: 992px) {
  .article-hair-daily__header__description-short {
    font-size: 1.8rem;
  }
}
.article-hair-daily__gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
  margin-bottom: 64px;
}
@media (min-width: 992px) {
  .article-hair-daily__gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}
.article-hair-daily__gallery-item a {
  --ratio-width: 3;
  --ratio-height: 4;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
  display: block;
  overflow: hidden;
}
.article-hair-daily__gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-hair-daily__related {
  padding-top: 32px;
  padding-bottom: 12px;
}
.article-hair-daily__related__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .article-hair-daily__related__title {
    font-size: 2.8rem;
  }
}
.article-hair-daily__related__list {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.article-hair-daily__related__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 16px;
  border: 1px solid #262626;
}
.article-hair-daily__related__item:hover {
  background-color: #262626;
}
.article-hair-daily__related__item:hover a {
  color: #FAFAFA;
}
.article-hair-daily__related__item--active {
  background-color: #262626;
}
.article-hair-daily__related__item--active a {
  color: #FAFAFA;
}
@media (min-width: 992px) {
  .article-hair-daily__related__list {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
  }
}

.news__feedback__item {
  background-color: #F5F5F5;
  padding: 16px;
}
.news__feedback__item .feedback-content {
  margin-top: 12px;
}
.news__feedback__item .feedback-content__sub-title {
  font-size: 1.4rem;
  color: #737373;
  height: 24px;
}
.news__feedback__item .feedback-content__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-celeb {
  --swiper-theme-color: #262626;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-celeb {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.section-celeb .section-title {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .section-celeb .section-title {
    margin-bottom: 24px;
  }
}
.section-celeb .heading__description p:last-child {
  margin-bottom: 0;
}
.section-celeb .feedback-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.section-celeb .feedback-item img {
  transition: transform 0.3s ease;
}
.section-celeb .feedback-item:hover img {
  transform: scale(1.05);
}
.section-celeb .feedback-item .celeb-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 16px;
  margin: 16px;
  background: rgba(0, 0, 0, 0.0784313725);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.section-celeb .feedback-item .celeb-name img {
  width: 20px;
  height: 20px;
}
@media (max-width: 991.98px) {
  .section-celeb .feedback-item .celeb-name img {
    width: 16px;
    height: 16px;
  }
}
.section-celeb .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 12px;
}

.section-feedback {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F5F5F5;
}
@media (max-width: 991.98px) {
  .section-feedback {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-feedback .title2 {
    display: inline-block;
  }
}
.section-feedback__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 991.98px) {
  .section-feedback__list {
    gap: 12px;
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-feedback .feedback-item {
  position: relative;
  display: block;
  overflow: hidden;
  --ratio-width: 2.5;
  --ratio-height: 4;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.section-feedback .feedback-item img:not(.play-icon) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
}
.section-feedback .feedback-item:hover img:not(.play-icon) {
  transform: scale(1.05);
}
.section-feedback .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.section-dat-lich {
  background-color: rgba(234, 179, 8, 0.1607843137);
}
.section-dat-lich--sliver {
  background-color: #F5F5F5;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .section-dat-lich--sliver {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.section-dat-lich .wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .section-dat-lich .wrapper {
    flex-direction: column;
  }
}
.section-dat-lich .wrapper .right {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .section-dat-lich .wrapper .right {
    width: 100%;
  }
}
.section-dat-lich .wrapper .btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}
.section-dat-lich--sliver .wrapper {
  gap: 80px;
}
@media (max-width: 991.98px) {
  .section-dat-lich--sliver .wrapper {
    flex-gap: 24px;
    gap: 24px;
  }
}
.section-dat-lich--sliver .wrapper .right {
  width: 400px;
  max-width: 100%;
}

.btn-black {
  background-color: #262626;
  color: #fff;
}
.btn-black:hover {
  opacity: 0.8;
  color: #fff;
}

.cta {
  width: 100%;
}
.cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cta__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
}
.cta__btn:active {
  transform: translateY(1px);
}
.cta__btn--outline {
  border-color: #acacac;
  background: #fff;
}
.cta__btn--primary {
  width: 100%;
  height: 40px;
  background: #EAB308;
  color: #0A0A0A;
  border-color: #EAB308;
}
.cta__btn--primary:hover {
  background: #0A0A0A;
  color: #fff;
  border-color: #0A0A0A;
}
.cta__label {
  line-height: 1;
}
.cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta__icon svg {
  display: block;
}

.section-education {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-education {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.section-education .wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  .section-education .wrapper .left,
  .section-education .wrapper .right {
    width: 588px;
  }
}
@media (max-width: 991.98px) {
  .section-education .wrapper {
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .section-education .wrapper .right {
    width: 100%;
  }
}
.section-education .wrapper .btn {
  display: block;
  height: 40px;
}

.btn-black {
  background-color: #262626;
  color: #fff;
}
.btn-black:hover {
  opacity: 0.8;
  color: #fff;
}

.container__custom {
  max-width: 800px;
}

.section-page-education2 {
  background-color: #F5F5F5;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-page-education-with-video {
  padding-top: 32px;
  padding-bottom: 32px;
}
.section-page-education-with-video .heading__description p:last-child {
  margin-bottom: 0;
}
.section-page-education-with-video .video-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-page-education-with-video .video-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.section-page-education-with-video .video-item img:not(.play-icon) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.section-page-education-with-video .video-item:hover img:not(.play-icon) {
  transform: scale(1.05);
}
.section-page-education-with-video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.section-page-education1__top {
  padding-top: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  background-color: #F5F5F5;
  background-image: url("/catalog/view/theme/mailan/image/line-education.png");
  background-repeat: no-repeat;
  background-position: right center;
}
.section-page-education1__top .heading__title--custom {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Lora", sans-serif;
}

.section-hair-celeb {
  --swiper-theme-color: #262626;
  padding-top: 0;
  padding-bottom: 48px;
}
@media (max-width: 991.98px) {
  .section-hair-celeb {
    padding-bottom: 64px;
  }
}
.section-hair-celeb .section-title {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .section-hair-celeb .section-title {
    margin-bottom: 24px;
  }
}
.section-hair-celeb .heading__description--bottom {
  margin-top: 32px;
}
.section-hair-celeb--custom {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-hair-celeb--custom {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
.section-hair-celeb__wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .section-hair-celeb__wrapper .section-hair-celeb__slider {
    order: 1;
  }
  .section-hair-celeb__wrapper .section-hair-celeb__nav {
    order: 3;
  }
  .section-hair-celeb__wrapper .section-hair-celeb__nav .swiper-pagination {
    display: none;
  }
  .section-hair-celeb__wrapper .section-hair-celeb__info {
    order: 2;
  }
}
.section-hair-celeb__slider .swiper-pagination-slider {
  display: none;
  position: relative;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .section-hair-celeb__slider .swiper-pagination-slider {
    display: flex;
    justify-content: center;
  }
}
.section-hair-celeb .swiper-pagination-bullet {
  margin: 0 4px;
}
.section-hair-celeb__slider {
  overflow: hidden;
  position: relative;
}
.section-hair-celeb__slider::before, .section-hair-celeb__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .section-hair-celeb__slider::before, .section-hair-celeb__slider::after {
    display: none;
  }
}
.section-hair-celeb__slider::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.section-hair-celeb__slider::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.section-hair-celeb__slider .swiper-container {
  overflow: hidden;
}
.section-hair-celeb__slider .swiper-wrapper {
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .section-hair-celeb__slider .swiper-wrapper {
    align-items: stretch;
  }
}
.section-hair-celeb__slider .swiper-slide {
  width: auto;
  transform-origin: bottom center;
  transform: scale(0.85);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.section-hair-celeb__slider .swiper-slide-prev, .section-hair-celeb__slider .swiper-slide-next {
  transform: scale(0.9);
}
.section-hair-celeb__slider .swiper-slide-active {
  transform: scale(1);
  z-index: 2;
}
@media (max-width: 767.98px) {
  .section-hair-celeb__slider .swiper-slide {
    width: 100%;
  }
}
.section-hair-celeb .celeb-item__image {
  display: block;
  overflow: hidden;
  border-radius: 0;
}
.section-hair-celeb .celeb-item__image img {
  height: 370px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 0 12px 0 12px;
}
@media (max-width: 991.98px) {
  .section-hair-celeb .celeb-item__image img {
    height: 360px;
    width: 100%;
  }
}
.section-hair-celeb .celeb-item__image:hover img {
  transform: scale(1.05);
}
.section-hair-celeb__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  position: relative;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__nav {
    gap: 12px;
  }
}
@media (max-width: 767.98px) {
  .section-hair-celeb__nav {
    margin-top: 0;
  }
}
.section-hair-celeb__nav .swiper-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .section-hair-celeb__nav .swiper-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }
}
.section-hair-celeb__nav .swiper-button-prev {
  left: 0;
}
.section-hair-celeb__nav .swiper-button-next {
  right: 0;
}
.section-hair-celeb__nav .swiper-pagination {
  position: relative;
}
.section-hair-celeb__nav .swiper-button-prev,
.section-hair-celeb__nav .swiper-button-next {
  position: relative;
  width: 165px;
  height: 38px;
  margin: 0;
  border: 1px solid #262626;
  color: #262626;
  transition: all 0.3s ease;
  top: 0;
}
.section-hair-celeb__nav .swiper-button-prev::after,
.section-hair-celeb__nav .swiper-button-next::after {
  display: none;
}
.section-hair-celeb__nav .swiper-button-prev:hover,
.section-hair-celeb__nav .swiper-button-next:hover {
  background: #262626;
  color: #fff;
}
@media (max-width: 767.98px) {
  .section-hair-celeb__nav .swiper-button-prev,
  .section-hair-celeb__nav .swiper-button-next {
    width: 100%;
    height: 48px;
  }
}
.section-hair-celeb__info {
  position: relative;
  background: linear-gradient(135deg, #FCE7F3 0%, #FDF4FF 100%);
  padding: 16px;
  padding-bottom: 50px;
  margin-top: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__info {
    margin-top: 0;
  }
}
.section-hair-celeb__info .quote-icon {
  position: absolute;
  color: #262626;
  opacity: 0.8;
}
.section-hair-celeb__info .quote-icon--open {
  top: 16px;
  left: 16px;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__info .quote-icon--open {
    top: 12px;
    left: 12px;
  }
}
.section-hair-celeb__info .quote-icon--close {
  bottom: 16px;
  right: 16px;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__info .quote-icon--close {
    bottom: 12px;
    right: 12px;
  }
}
.section-hair-celeb__info .quote-icon svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__info .quote-icon svg {
    width: 24px;
    height: 24px;
  }
}
.section-hair-celeb__info .celeb-info {
  display: none;
  animation: fadeIn 0.3s ease;
}
.section-hair-celeb__info .celeb-info.active {
  display: block;
}
.section-hair-celeb__info .celeb-info__title {
  font-size: 1.6rem;
  color: #737373;
  text-align: center;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__info .celeb-info__title {
    font-size: 1.4rem;
  }
}
.section-hair-celeb__info .celeb-info__name {
  font-size: 2.8rem;
  font-weight: 600;
  color: #262626;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__info .celeb-info__name {
    font-size: 1.8rem;
  }
}
.section-hair-celeb__info .celeb-info__desc {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #262626;
}
.section-hair-celeb__info .celeb-info__desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .section-hair-celeb__info .celeb-info__desc {
    font-size: 1.6rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news_category--celeb .section-celeb__list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 992px) {
  .news_category--celeb .section-celeb__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.news_category--celeb2 {
  --swiper-theme-color: #262626;
}
.news_category--celeb2 .swiper-pagination-bullet {
  margin: 0 4px;
}

.celeb-item {
  overflow: hidden;
  position: relative;
}
.celeb-item__name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  padding: 8px 8px 8px 16px;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  background: rgba(0, 0, 0, 0.0784313725);
}
.celeb-item__name--sub_title {
  font-size: 1.4rem;
  color: #D4D4D4;
}
.celeb-item__name--main {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FAFAFA;
}
.celeb-item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  margin-bottom: 8px;
  overflow: hidden;
  --ratio-width: 2.5;
  --ratio-height: 4;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
  display: block;
  overflow: hidden;
}
.celeb-item__image img {
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.celeb-item:hover .celeb-item__image img {
  transform: scale(1.05);
}

.section-col_6_image_content {
  background-color: #FBF2D3;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .section-col_6_image_content {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.section-col_6_image_content .heading__title {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .section-col_6_image_content .heading__title {
    margin-bottom: 16px;
  }
}
.section-col_6_image_content .heading__description {
  margin-top: 16px;
  color: #262626;
}
@media (min-width: 992px) {
  .section-col_6_image_content .heading__description {
    margin-top: 0;
  }
}

.intro__header {
  background-color: #FBF2D3;
  padding-top: 32px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .intro__header {
    padding-bottom: 64px;
  }
}
.intro__header__title {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .intro__header__title {
    font-size: 2.8rem;
  }
}
.intro__header__subtitle {
  font-size: 5.6rem;
  font-weight: bolder;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Lora", sans-serif;
}
.intro__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}
@media (min-width: 992px) {
  .intro__body {
    flex-direction: row-reverse;
    gap: 64px;
    padding-top: 36px;
    padding-bottom: 48px;
  }
}
.intro__body__image {
  margin-top: -64px;
}
@media (min-width: 992px) {
  .intro__body__image {
    margin-top: -150px;
    width: 45%;
  }
}
@media (min-width: 992px) {
  .intro__body__content {
    flex: 1;
  }
}
.intro__body__content__logo {
  display: none;
}
@media (min-width: 992px) {
  .intro__body__content__logo {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.intro__body__content__text {
  text-align: justify;
}
@media (min-width: 992px) {
  .intro__body__content__text {
    font-size: 1.8rem;
  }
}
.intro .logo__item {
  width: 88px;
  height: 88px;
}

.section-bang-gia .heading__title {
  margin-top: 48px;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .section-bang-gia .heading__title {
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
.section-bang-gia__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 816px;
  margin: auto;
}
@media (max-width: 991.98px) {
  .section-bang-gia__list {
    grid-template-columns: 1fr;
  }
}

.information_page .section-bang-gia .container {
  padding: 0;
}

.section-hair-daily {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 992px) {
  .section-hair-daily {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section-hair-daily .section-title {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .section-hair-daily .section-title {
    margin-bottom: 32px;
  }
}
.section-hair-daily__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .section-hair-daily__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .section-hair-daily__list {
    gap: 16px;
  }
}
.section-hair-daily__item__image {
  display: block;
  margin-bottom: 8px;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 4;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
  display: block;
  overflow: hidden;
}
.section-hair-daily__item__image img {
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hair-daily__item__image img:hover {
  transform: scale(1.1);
}
.section-hair-daily__item__name--first {
  font-size: 1.8rem;
  color: #737373;
}
.section-hair-daily__item__name--last {
  font-size: 1.6rem;
  color: #262626;
  font-weight: bold;
}

.search-autocomplete {
  width: 100%;
  z-index: 9999;
  top: 67px !important;
  left: 0 !important;
  padding-left: 16px;
  padding-right: 16px;
}
.search-autocomplete .autocomplete-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 16px;
}
.search-autocomplete .autocomplete-list.products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.search-autocomplete .autocomplete-list.products-list > :nth-child(n+3) {
  display: none;
}
@media (min-width: 768px) {
  .search-autocomplete .autocomplete-list.products-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .search-autocomplete .autocomplete-list.products-list > :nth-child(3) {
    display: block;
  }
  .search-autocomplete .autocomplete-list.products-list > :nth-child(n+4) {
    display: none;
  }
}
.search-autocomplete .autocomplete-list.news-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
.search-autocomplete .autocomplete-list.news-list > :nth-child(n+2) {
  display: none;
}
@media (min-width: 768px) {
  .search-autocomplete .autocomplete-list.news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-autocomplete .autocomplete-list.news-list > :nth-child(2) {
    display: block;
  }
  .search-autocomplete .autocomplete-list.news-list > :nth-child(n+3) {
    display: none;
  }
}

/***Page Gioi thieu***/
.section-information--no-content .section-title {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (max-width: 991.98px) {
  .section-information--no-content .section-title {
    padding-bottom: 12px;
  }
}
.section-information--no-content .section-title .heading__description p:last-child {
  margin-bottom: 0;
}

.information-information-16 .section-bang-gia .heading__description {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .information-information-16 .section-bang-gia .heading__description {
    margin-bottom: 32px;
  }
}
.information-information-16 .section-bang-gia__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: auto;
  max-width: 100%;
}
@media (min-width: 992px) {
  .information-information-16 .section-bang-gia__list {
    gap: 24px;
  }
}
.information-information-16 .section-bang-gia__item {
  width: 500px;
}

.section-breadcrumb {
  background-image: url(/catalog/view/theme/mailan/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.6rem);
}
.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/mailan/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.6rem);
  color: var(--contact-title-color, #EAB308);
  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 Product**/
.product-page #product {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #737373;
}
.product-page .container__custom {
  max-width: 1000px;
}
.product-page .gallery-top {
  margin-bottom: 24px;
}
.product-page .manufacturer_description,
.product-page .production__description {
  margin-top: 24px;
  border: 1px solid #262626;
  overflow: hidden;
}
.product-page .manufacturer_description-toggle,
.product-page .production__description-toggle {
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 600;
  color: #262626;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-page .manufacturer_description-toggle:focus, .product-page .manufacturer_description-toggle:focus-visible,
.product-page .production__description-toggle:focus,
.product-page .production__description-toggle:focus-visible {
  outline: none;
  box-shadow: none;
}
.product-page .manufacturer_description-toggle:hover,
.product-page .production__description-toggle:hover {
  background: #f9f9f9;
}
.product-page .manufacturer_description-toggle i,
.product-page .production__description-toggle i {
  transition: all 0.3s ease;
}
.product-page .manufacturer_description-toggle[aria-expanded=true] i:before,
.product-page .production__description-toggle[aria-expanded=true] i:before {
  content: "\f068";
}
@media (max-width: 991.98px) {
  .product-page .manufacturer_description-toggle,
  .product-page .production__description-toggle {
    padding: 12px 16px;
    font-size: 14px;
  }
}
.product-page .manufacturer_description-content,
.product-page .production__description-content {
  padding: 12px 16px 16px 16px;
  background: #fff;
  border-top: 1px solid #737373;
}
@media (max-width: 991.98px) {
  .product-page .manufacturer_description-content,
  .product-page .production__description-content {
    padding: 16px;
  }
}
.product-page .manufacturer_description-content ul,
.product-page .production__description-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.product-page .manufacturer_description-content ul li,
.product-page .production__description-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.product-page .manufacturer_description-content p,
.product-page .manufacturer_description-content div,
.product-page .production__description-content p,
.product-page .production__description-content div {
  margin-bottom: 12px;
  line-height: 1.6;
}
.product-page .manufacturer_description-content p:last-child,
.product-page .manufacturer_description-content div:last-child,
.product-page .production__description-content p:last-child,
.product-page .production__description-content div:last-child {
  margin-bottom: 0;
}
.product-page .manufacturer_description-content strong,
.product-page .production__description-content strong {
  font-weight: 600;
  color: #262626;
}
@media (max-width: 991px) {
  .product-page .gallery-thumbs {
    margin-bottom: 20px;
  }
}
.product-page .gallery-thumbs .swiper-slide {
  position: relative;
  display: block;
  border-radius: 5px;
  border: 1px solid #eee;
  height: 67px;
  padding: 3px;
}
@media (max-width: 1024px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 60px;
  }
}
@media (max-width: 991px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 128px;
  }
}
@media (max-width: 668px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 128px;
  }
}
@media (max-width: 569px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 173px;
  }
}
@media (max-width: 480px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 80px;
  }
}
@media (max-width: 376px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 80px;
  }
}
@media (max-width: 321px) {
  .product-page .gallery-thumbs .swiper-slide {
    height: 65px;
  }
}
.product-page .gallery-thumbs .swiper-slide img {
  border-radius: 5px;
  width: auto !important;
  max-height: 85%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.product-page .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--main_color);
}
.product-page .gallery-top {
  position: relative;
  display: block;
  border-radius: 5px;
  height: 386px;
  margin-bottom: 10px;
  border: 1px solid #E8E8E8;
}
@media (max-width: 1024px) {
  .product-page .gallery-top {
    height: 350px;
  }
}
@media (max-width: 991px) {
  .product-page .gallery-top {
    height: 330px;
  }
}
@media (max-width: 767px) {
  .product-page .gallery-top {
    height: 350px;
  }
}
@media (max-width: 668px) {
  .product-page .gallery-top {
    height: 350px;
  }
}
@media (max-width: 569px) {
  .product-page .gallery-top {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .product-page .gallery-top {
    height: 350px;
  }
}
@media (max-width: 376px) {
  .product-page .gallery-top {
    height: 350px;
  }
}
@media (max-width: 321px) {
  .product-page .gallery-top {
    height: 280px;
  }
}
.product-page .gallery-top img {
  border-radius: 5px;
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/**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, #EAB308);
}
.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, #EAB308);
  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, #EAB308));
  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, #EAB308));
  --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, #EAB308);
}
.affiliate-account .affiliate-box .affiliate-note a:hover {
  --affiliates-acctoun-link-color: #EAB308;
}

/*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, 2.8rem);
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .product-info .product_title {
    font-size: 1.8rem;
  }
}
.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, 1.6rem);
  color: var(--product-price-color, #737373);
  margin: 12px 0;
}
.product-info .product_price .price {
  font-weight: 600;
  font-size: 2rem;
}
.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);
  width: 100%;
}
.product-info .product-action .btn:hover {
  opacity: 0.85;
}
.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: #EAB308;
}
.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: #EAB308;
  font-weight: 600;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #262626;
}
.quantity [class^=btn-] {
  padding: 0;
  margin: 0;
  outline: none;
  background-color: #fff;
  border: none;
  font-size: 8px;
}
.quantity [class^=btn-]:focus {
  outline: none;
}
.quantity .btn-minus {
  width: 40px;
  height: 40px;
}
.quantity .input-quantity {
  height: 40px;
  width: 50px;
  text-align: center;
  border: none;
}
.quantity .btn-plus {
  width: 40px;
  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 .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 */