* {
  box-sizing: border-box;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

html.activeClass {
  touch-action: none;
  overflow: hidden;
}

html body {
  overscroll-behavior: none;
  background-color: #f4f4f4;
  margin: 0;
  font-family: Open sans, sans-serif;
  display: block;
  position: relative;
}

html img, html iframe {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none !important;
}

.loader {
  width: 15px;
  height: 15px;
  animation: 2s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%)rotate(0);
  }

  100% {
    transform: translate(-50%, -50%)rotate(360deg);
  }
}

.max-width-sm {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-sm {
    max-width: 700px;
    margin: 0 auto;
  }
}

.max-width-md {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-md {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.max-width-lg {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-lg {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.max-width-xl {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-xl {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.max-width-full {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-full {
    max-width: 100%;
    margin: 0 auto;
  }
}

.flex-center {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.flex-start {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.flex-between {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.flex-end {
  flex-wrap: wrap;
  justify-content: flex-end;
  display: flex;
}

.devider {
  background-color: var(--grey-for-lines);
  width: 100%;
  height: 1px;
  display: block;
}

.text-red {
  color: #eb001d !important;
}

.text-white {
  color: #fff;
}

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

.text-gray {
  color: var(--dark-grey-for-text) !important;
}

.text-black {
  color: #0e1215 !important;
}

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

.width-100 {
  width: 100%;
}

.position-relative {
  position: relative;
}

.tablet-hide {
  display: none !important;
}

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

.d-none {
  display: none;
}

.mobile-hide {
  display: none !important;
}

@media (width >= 1200px) {
  .mobile-hide {
    display: flex !important;
  }

  .desktop-hide {
    display: none !important;
  }
}

.section-padding {
  padding: 50px 0;
}

@media (width >= 1200px) {
  .section-padding {
    padding: 70px 0;
  }
}

.n-luxe .section-margin, .n-luxe .section-text h2 {
  margin: 0 0 30px;
}

@media (width >= 1200px) {
  .n-luxe .section-margin, .n-luxe .section-text h2 {
    margin: 0 0 50px;
  }
}

.box-overlay {
  opacity: .3;
  z-index: 2;
  background-color: #0e1215;
  width: 100%;
  height: 100%;
  position: absolute;
}

.jsDropdownWrap {
  position: relative;
}

.jsDropdownTrigger {
  cursor: pointer;
}

.dropdown {
  background-color: var(--gd-white-dark);
  opacity: 0;
  max-width: 500px;
  transition: var(--gd-transition) ease-in;
  visibility: hidden;
  width: fit-content;
  margin: 0;
  padding: 8px;
  list-style: none;
  transition-property: bottom, opacity, visibility;
  position: absolute;
  bottom: -60px;
  right: 0;
  transform: translateY(100%);
  box-shadow: 0 0 14px 2px #6a6a6a47;
}

.dropdown.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 9;
  bottom: -3px;
}

.dropdown__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown__item-link {
  min-width: max-content;
  transition: background-color var(--gd-transition) ease-in-out;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  display: block;
}

.dropdown__item-link:hover {
  background-color: var(--grey-search);
  text-decoration: none;
}

@media (width >= 1200px) {
  .popups {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    display: flex;
  }
}

@media (width >= 1200px) and (width >= 1200px) {
  .popups {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.popup {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity .2s ease-in-out, z-index .2s ease-in-out, visibility .2s ease-in-out;
  display: none;
  position: fixed;
}

.popup.init {
  display: block;
}

.popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.popup__close {
  cursor: pointer;
}

.popup__close svg {
  fill: #938b8c;
  width: 15px;
  height: 15px;
}

@media (width >= 1200px) {
  .popup__close svg {
    width: 25px;
    height: 25px;
  }
}

.popup__header {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 65px;
  padding: 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .popup__header {
    padding: 0 30px;
  }
}

.popup__header .popup__title {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.popup__header .popup__title svg {
  fill: #0e1215;
  width: 13px;
  height: 13px;
}

@media (width >= 1200px) {
  .popup__header .popup__title svg {
    width: 20px;
    height: 20px;
  }
}

@media (width >= 768px) {
  .popup__header .popup__title {
    font-size: 22px;
  }
}

.overlay {
  opacity: 0;
  height: 150vh;
  transition: var(--gd-transition) ease-in-out opacity;
  visibility: hidden;
  z-index: -1;
  background-color: #0000;
  width: 100vw;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.overlay.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.overlay--popup-overlay.activeClass {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.main-btn {
  color: #0e1215;
  cursor: pointer;
  transition: var(--gd-transition) background-color ease-in-out;
  background-color: #fff;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 21px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.main-btn svg {
  fill: #0e1215;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

@media (width >= 1200px) {
  .main-btn {
    font-size: 18px;
  }

  .main-btn svg {
    fill: #0e1215;
    width: 15px;
    height: 15px;
  }
}

.main-btn:hover {
  background-color: var(--gd-white-dark);
}

.main-btn--cart {
  text-transform: uppercase;
  background-color: #f6f6f6;
  border: none;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  margin-top: 25px;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

@media (width >= 768px) {
  .main-btn--cart {
    height: 45px;
  }
}

@media (width >= 1200px) {
  .main-btn--cart {
    height: 45px;
  }
}

.main-btn--cart:hover {
  color: #fff;
  background-color: #0ac0dd;
}

.main-btn--gray {
  border: 1px solid var(--grey-for-lines);
  color: var(--dark-grey-for-text);
}

.main-btn--gray svg {
  fill: var(--dark-grey-for-text);
}

.main-btn--dark-gray {
  background-color: var(--dark-grey-for-text);
  border: 1px solid var(--dark-grey-for-text);
  color: #fff;
}

.main-btn--dark-gray svg {
  fill: #fff;
}

.main-btn--dark-gray:hover {
  background-color: var(--gd-gray-light);
}

.main-btn--black {
  color: #fff;
  background-color: #0e1215;
  border: 1px solid #0e1215;
}

.main-btn--black svg {
  fill: #fff;
}

.main-btn--black:hover {
  background-color: var(--gd-black-light);
}

.main-btn--purple {
  color: #fff;
  white-space: nowrap;
  background-color: #0ac0dd;
  border: 1px solid #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 200px;
  height: 45px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  flex-wrap: nowrap !important;
}

.main-btn--purple:hover {
  background-color: #0ac0dde6;
}

.main-btn--purple svg {
  fill: #fff;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
}

.main-btn--purple .header-main__icon-arrow {
  width: 15px;
  height: 15px;
}

.main-btn--view-cart {
  color: #0e1215;
  text-transform: capitalize;
  background-color: #0000;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}

.main-btn--popout-cart-checkout {
  color: #fff;
  text-transform: uppercase;
  background-color: #0ac0dd;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.main-btn--popout-cart-checkout:hover {
  color: #fff;
  background-color: #0ac0dde6;
}

.main-btn--popout-cart-checkout svg {
  fill: #fff;
}

.main-btn--menu-btn {
  color: #ff5962;
  border-radius: 3px;
  height: 45px;
  font-size: 18px;
  font-weight: 600;
}

.main-btn--menu-btn:hover {
  color: #fff;
  background-color: #0ac0dd;
}

.main-btn--hero-cta {
  color: #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 40px;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

@media (width >= 768px) {
  .main-btn--hero-cta {
    font-size: 18px;
  }
}

@media (width >= 1200px) {
  .main-btn--hero-cta {
    width: 160px;
    height: 45px;
  }
}

.main-btn--hero-cta:hover {
  color: #fff;
  background-color: #0ac0dd;
}

.main-btn--filter-gray, .main-btn--filter-purple {
  text-transform: uppercase;
  border-radius: 3px;
  width: 100%;
  height: 35px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.main-btn--filter-gray:hover, .main-btn--filter-purple:hover {
  color: #fff;
  background-color: #0ac0dd;
}

.main-btn--filter-gray {
  color: #938b8c;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
}

.main-btn--filter-purple {
  color: #fff;
  background-color: #0ac0dd;
  border: 1px solid #0ac0dd;
}

.main-btn--clear-filters {
  color: #0ac0dd;
  text-transform: uppercase;
  height: 45px;
  margin: 0 15px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  box-shadow: 0 0 4px #00000040;
}

.main-btn--clear-filters:hover {
  background-color: #fff;
}

@media (width >= 1200px) {
  .main-btn--clear-filters {
    box-shadow: none;
    margin: 0;
  }
}

.main-btn--prod-cart {
  color: #fff;
  text-transform: uppercase;
  background-color: #0ac0dd;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.main-btn--prod-cart:hover {
  background-color: #0ac0ddd9;
}

.main-btn--wishlist {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-btn--shipping-btn {
  color: #fff;
  text-transform: uppercase;
  background-color: #938b8c;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.main-btn--shipping-btn:hover {
  background-color: #0ac0dd;
}

.main-btn--reviews {
  color: #fff;
  background-color: #0ac0dd;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 45px;
  margin-top: 20px;
  display: flex;
}

.main-btn--reviews:hover {
  color: #fff;
  background-color: #0ac0ddd9;
}

.main-btn--continue {
  text-transform: capitalize;
  background-color: #0000;
  border: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: auto;
  margin-bottom: 50px;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.main-btn--continue svg {
  width: 10px;
  height: 10px;
  margin-right: 0;
}

.main-btn--checkout, .main-btn--checkout-first {
  text-transform: uppercase;
  color: #fff;
  background-color: #0ac0dd;
  border: none;
  border-radius: 3px;
  width: 100%;
  height: 50px;
  font-size: 22px;
  font-weight: 600;
}

@media (width >= 1200px) {
  .main-btn--checkout, .main-btn--checkout-first {
    height: 55px;
    font-size: 24px;
  }
}

.main-btn--checkout:hover, .main-btn--checkout-first:hover {
  background-color: #0ac0ddd9;
}

@media (width >= 1200px) {
  .main-btn--checkout-first {
    width: 100%;
  }
}

.product-list .splide__arrow, .prod-single .splide__arrow, .product__images .splide__arrow, .categories .splide__arrow {
  background-color: #fff;
  border: 1px solid #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  opacity: 1 !important;
}

.product-list .splide__arrow svg, .prod-single .splide__arrow svg, .product__images .splide__arrow svg, .categories .splide__arrow svg {
  fill: #0ac0dd;
}

.product-list .splide__arrow:hover, .prod-single .splide__arrow:hover, .product__images .splide__arrow:hover, .categories .splide__arrow:hover {
  background-color: #0ac0dd;
}

.product-list .splide__arrow:hover svg, .prod-single .splide__arrow:hover svg, .product__images .splide__arrow:hover svg, .categories .splide__arrow:hover svg {
  fill: #fff;
}

.splide__arrow {
  background-color: #fff;
  border: 1px solid #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  opacity: 1 !important;
}

.splide__arrow svg {
  fill: #0ac0dd;
}

.splide__arrow:hover {
  background-color: #0ac0dd;
}

.splide__arrow:hover svg {
  fill: #fff;
}

@media (width >= 1200px) {
  .hero .splide__pagination {
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: end;
    padding: 0 25px;
    display: flex;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

.hero .splide__pagination__page {
  background-color: #938b8c;
  width: 15px;
  height: 15px;
}

.hero .splide__pagination__page.is-active {
  background-color: #0000;
  border: 1px solid #d9d9d9;
  transform: scale(1) !important;
}

.hero .splide__arrow--prev {
  background-color: #0ac0dd;
  top: 30%;
  left: auto;
  right: 15px;
  transform: rotate(90deg);
}

.hero .splide__arrow--prev svg {
  fill: #fff;
}

.hero .splide__arrow--next {
  top: 60%;
  left: auto;
  right: 15px;
  transform: rotate(90deg);
}

.product-list .splide__arrow, .categories .splide__arrow {
  background-color: #0ac0dd;
  right: 20%;
}

.product-list .splide__arrow svg, .categories .splide__arrow svg {
  fill: #fff;
}

@media (width >= 1200px) {
  .product-list .splide__arrow, .categories .splide__arrow {
    right: 0;
  }
}

.product-list .splide__arrow--prev, .categories .splide__arrow--prev, .product__images .splide__arrow:disabled, .prod-single .splide__arrow:disabled {
  display: none;
}

.product__images .is-single .splide__pagination, .product__images .is-single .splide__arrows, .prod-single .is-single .splide__pagination, .prod-single .is-single .splide__arrows {
  display: none !important;
}

.read-more {
  max-height: 200px;
  transition: max-height var(--gd-transition) ease-in-out;
  overflow: hidden;
}

.read-more__btn {
  color: #0ac0dd;
  cursor: pointer;
  margin-top: 25px;
  display: block;
}

.breadcrumbs {
  white-space: nowrap;
  width: 100%;
  padding: 15px 0;
  overflow-y: auto;
}

.breadcrumbs__nav {
  overflow-x: auto;
}

.breadcrumbs__list {
  align-items: center;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  display: flex;
}

.breadcrumbs__link {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs__link:hover {
  color: #fff;
  text-transform: none;
}

.breadcrumbs__list-item {
  letter-spacing: 0;
  color: #fff;
  margin-right: 6px;
  font-size: 14px;
  font-weight: 300;
}

.breadcrumbs__list-item:last-child {
  display: none;
}

.breadcrumbs__list-item:nth-last-child(2) .breadcrumbs__link {
  color: #fff;
  pointer-events: none;
}

.breadcrumbs__list-item svg {
  fill: #fff;
  width: 10px;
  height: 10px;
}

.breadcrumbs__link--home svg {
  fill: #0ac0dd;
  width: 20px;
  height: 20px;
}

#n-category .breadcrumbs__link--home svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

#n-product .breadcrumbs__nav {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  #n-product .breadcrumbs__nav {
    max-width: 1690px;
    margin: 0 auto;
  }
}

#n-product .breadcrumbs__nav {
  overflow-x: auto;
}

#n-product .breadcrumbs__list-item, #n-product .breadcrumbs__link {
  color: #0e1215;
}

.social {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 40px 0 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .social {
    padding: 50px 0 0 15px;
  }
}

.social__single {
  background-color: #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

@media (width >= 1200px) {
  .social__single {
    width: 30px;
    height: 30px;
  }
}

.social__single:hover {
  background-color: #0ac0dde6;
}

.social__single svg {
  fill: #fff;
  width: 15px;
  height: 15px;
}

@media (width >= 1200px) {
  .social__single svg {
    width: 20px;
    height: 20px;
  }
}

.home-title {
  color: #0e1215;
  text-transform: capitalize;
  width: 100%;
  margin: 0;
  padding: 0 15px;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .home-title {
    max-width: 1690px;
    margin: 0 auto;
  }
}

@media (width >= 768px) {
  .home-title {
    font-size: 28px;
  }
}

.home-title {
  padding: 50px 15px;
}

@media (width >= 1200px) {
  .home-title {
    padding: 150px 15px 50px;
    font-size: 32px;
  }
}

.home-title__purple {
  color: #0ac0dd;
}

.home-title--text {
  padding: 50px 15px 25px;
}

@media (width >= 1200px) {
  .home-title--text {
    padding: 150px 15px 25px;
  }
}

#n-category .home-title {
  padding: 0 0 25px;
}

#n-category .section-text {
  padding-top: 100px;
}

#n-category .categories .home-title {
  padding: 50px 0;
}

@media (width >= 1200px) {
  #n-category .categories .home-title {
    padding: 150px 0 50px;
  }
}

.section-text__inner {
  font-size: 18px;
}

.section-padding-top {
  padding-top: 50px;
}

@media (width >= 1200px) {
  .section-padding-top {
    padding-top: 150px;
  }
}

.cart-page__empty {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cart-page__empty {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.cart-page__empty {
  padding-top: 25px;
}

.cart-page__empty .col12 {
  margin: 0;
  padding: 0;
}

.cart-page__empty .btn {
  background-color: #0ac0dd;
  border: none;
}

.cart-page__empty .btn:hover {
  background-color: #0ac0ddd9;
}

#n-customer_account .breadcrumb-item, #n-customer .breadcrumb-item {
  display: none;
}

#n-customer_account .main__wrap, #n-customer .main__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  #n-customer_account .main__wrap, #n-customer .main__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

#n-customer_account .main__wrap, #n-customer .main__wrap {
  margin-top: 90px;
  padding: 0;
}

@media (width >= 768px) {
  #n-customer_account .main__wrap, #n-customer .main__wrap {
    margin-top: 100px;
  }
}

@media (width >= 1200px) {
  #n-customer_account .main__wrap, #n-customer .main__wrap {
    margin-top: 200px;
  }
}

#n-customer_account h1, #n-customer h1 {
  padding-top: 50px;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 1200px) {
  #n-customer_account h1, #n-customer h1 {
    font-size: 32px;
  }
}

#n-customer_account .btn, #n-customer .btn {
  background-color: #0ac0dd;
  border: 1px solid #0ac0dd;
  outline: none;
}

#n-customer_account .btn:hover, #n-customer_account .btn:focus-within, #n-customer .btn:hover, #n-customer .btn:focus-within {
  color: #fff;
  background-color: #0ac0ddd9;
  border: 1px solid #0ac0dd;
}

#n-content .main__wrap {
  padding-top: 90px !important;
}

@media (width >= 768px) {
  #n-content .main__wrap {
    padding-top: 100px !important;
  }
}

@media (width >= 1200px) {
  #n-content .main__wrap {
    padding-top: 200px !important;
  }
}

#n-content .main__wrap h1 {
  margin-bottom: 30px;
  padding-top: 25px;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 1200px) {
  #n-content .main__wrap h1 {
    font-size: 32px;
  }
}

#n-content .main__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  #n-content .main__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

#n-content .main__wrap .breadcrumbs__list-item, #n-content .main__wrap .breadcrumbs__link {
  color: #0e1215;
}

#n-content .main__wrap .breadcrumbs {
  padding: 15px 0;
}

#n-content .main__wrap .breadcrumbs__nav {
  padding: 0;
}

#n-content .main__wrap .btn {
  background-color: #0ac0dd;
  border: 1px solid #0ac0dd;
  outline: none;
}

#n-content .main__wrap .btn:hover, #n-content .main__wrap .btn:focus-within {
  color: #fff;
  background-color: #0ac0ddd9;
  border: 1px solid #0ac0dd;
}

#n-content .main__wrap a:not(.brand-list__single, .breadcrumbs__link, .main-btn) {
  color: #0ac0dd;
  font-size: 16px;
  text-decoration: underline !important;
}

#n-content .main__wrap .n-responsive-content p {
  font-size: 16px;
}

.npopup-body .modal-header {
  font-weight: 500;
}

.npopup-body .footer {
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.npopup-body .image {
  width: 15% !important;
}

.npopup-body .btn {
  text-transform: capitalize;
  color: #0e1215;
  border: 1px solid #0e1215;
  font-weight: 500;
  font-size: 14px !important;
}

.npopup-body .right .btn {
  color: #fff;
  background-color: #0ac0dd;
  border: 1px solid #0ac0dd;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.npopup-body .right .btn:before {
  content: "";
  content: "";
  --webkit-mask-repeat: no-repeat;
  background-color: #fff;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  display: block;
  mask-image: url("lock-keyhole-regular.b10c70d1.svg");
  mask-repeat: no-repeat;
}

.npopup-body .right .btn:hover {
  background-color: #0ac0ddd9;
}

#n-content .form-control {
  width: 100% !important;
  max-width: 100% !important;
}

.upsell-page {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .upsell-page {
    margin-top: 100px;
  }
}

.upsell-page .product-box {
  width: 50%;
}

@media (width >= 768px) {
  .upsell-page .product-box {
    width: 25%;
  }
}

.upsell-page .main-btn i {
  display: none;
}

.upsell-page .upsell-spacer {
  margin: 1rem 0;
}

.upsell-page .page-header {
  text-align: center;
  margin: 60px 0 30px;
  font-size: 26px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .upsell-page .page-header {
    margin: 80px 0 60px;
    font-size: 36px;
  }
}

.page-header h1 {
  padding-top: 0 !important;
}

.product-box {
  background-color: #fff;
  border-radius: 3px;
  padding: 20px;
  position: relative;
}

.product-box:hover {
  box-shadow: 0 4px 4px #00000040;
}

.product-box__info {
  margin-top: 25px;
}

.products-box__img {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 77%;
  position: relative;
  overflow: hidden;
}

.products-box__img img {
  mix-blend-mode: multiply;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-box__rating {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  display: flex;
}

.product-box__rating svg {
  fill: #ffdb06;
  width: 10px;
  height: 10px;
}

.product-box__title {
  color: #0e1215;
  width: 100%;
  height: 100px;
  padding: 20px 0 60px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

@media (width >= 1200px) {
  .product-box__title {
    height: 80px;
    font-size: 16px;
  }
}

.product-box__brand {
  height: 20px;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .product-box__brand {
    font-size: 13px;
  }
}

.product-box__price {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding-top: 10px;
  display: flex;
}

.product-box__price .price, .product-box__price .price-text {
  font-size: 18px;
  font-weight: 600;
}

.product-box__price .price--rrp, .product-box__price .price-text--rrp {
  color: #938b8c;
  font-size: 11px;
  font-weight: 300;
  text-decoration: line-through;
}

@media (width >= 768px) {
  .product-box__price .price--rrp, .product-box__price .price-text--rrp {
    font-size: 14px;
  }
}

.product-box__price .price--purple, .product-box__price .price-text--purple {
  color: #0ac0dd;
}

.product-box__badges {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
  display: flex;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
}

.product-box__badges .badge {
  color: #fff;
  background-color: #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 18px;
  margin-left: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

@media (width >= 768px) {
  .product-box__badges .badge {
    width: 44px;
    height: 22px;
  }
}

@media (width >= 1200px) {
  .product-box__badges .badge {
    width: 48px;
    height: 24px;
  }
}

.product-box__badges .badge--perc-off {
  color: #0ac0dd;
  background-color: #0000;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
  text-decoration: underline;
  display: flex;
}

.prod-imgs {
  max-width: 100%;
  position: relative;
}

@media (width >= 1200px) {
  .prod-imgs {
    flex-flow: row-reverse wrap;
    justify-content: start;
    align-items: center;
    max-width: 700px;
    display: flex;
  }
}

.prod-imgs {
  height: 350px;
}

@media (width >= 480px) {
  .prod-imgs {
    height: max-content;
  }
}

.prod-imgs__wrap .splide__arrow--prev {
  background-color: #0ac0dd;
  top: 25%;
  left: auto;
  right: -15%;
  transform: rotate(90deg);
}

.prod-imgs__wrap .splide__arrow--prev svg {
  fill: #fff;
}

.prod-imgs__wrap .splide__arrow--next {
  top: auto;
  bottom: 25%;
  right: -15%;
  transform: rotate(90deg);
}

@media (width >= 1200px) {
  .prod-imgs__wrap .splide__pagination {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: end;
    padding: 0;
    display: flex;
    top: 50%;
    bottom: auto;
    right: -12%;
    transform: translateY(-50%);
  }
}

.prod-imgs__wrap .splide__pagination__page {
  background-color: #0000;
  border: 1px solid #d9d9d9;
  width: 10px;
  height: 10px;
}

.prod-imgs__wrap .splide__pagination__page.is-active {
  background-color: #938b8c;
  border: 1px solid #d9d9d9;
  transform: scale(1) !important;
}

@media (width >= 1200px) {
  .prod-imgs__wrap {
    width: calc(100% - 130px);
    max-width: 620px;
    margin-left: -30px;
    padding: 0;
  }

  .prod-imgs__thumbnails-slide {
    overflow: hidden;
  }
}

.prod-imgs__thumbnails {
  padding: 0 50px;
}

@media (width >= 1200px) {
  .prod-imgs__thumbnails {
    width: 60px;
    padding: 0;
  }
}

.prod-imgs__thumbnails .prod-imgs__figure {
  filter: grayscale(0);
  border-radius: 3px;
  box-shadow: 0 1px 4px #00000040;
}

.prod-imgs__thumbnails .splide__slide.is-active {
  border: none !important;
}

.prod-imgs__thumbnails .splide__slide.is-active .prod-imgs__figure {
  filter: grayscale(0);
  border: 1px solid #0e1215;
}

.prod-imgs__figure {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  .prod-imgs__figure {
    border: 1px solid #d9d9d9;
    border-radius: 3px;
  }
}

.prod-imgs__figure .prod-imgs__img {
  mix-blend-mode: multiply;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prod-imgs__wrap .prod-imgs__figure {
  background-color: #f6f6f6;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.top {
  background: center / cover no-repeat;
  height: 40px;
}

@media (width >= 768px) {
  .top {
    height: 50px;
  }
}

@media (width >= 1200px) {
  .top {
    height: 60px;
  }
}

.top__wrap {
  height: inherit;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.top__title {
  color: #0e1215;
  font-size: 11px;
  font-weight: 400;
}

@media (width >= 768px) {
  .top__title {
    font-size: 13px;
  }
}

@media (width >= 1200px) {
  .top__title {
    font-size: 22px;
  }
}

.gd-header {
  box-shadow: 0 0 14px 2px #6a6a6a47;
}

.header-main {
  z-index: 5;
  background-color: #fff;
  position: relative;
}

.header-main__wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  display: flex;
}

@media (width >= 1200px) {
  .header-main__wrap {
    height: 90px;
  }
}

.header-main__left {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

@media (width >= 1200px) {
  .header-main__left {
    width: 250px;
  }
}

.header-main__left-icon svg {
  fill: #938b8c;
  width: 25px;
  height: 25px;
}

@media (width >= 768px) {
  .header-main__left-icon svg {
    width: 30px;
    height: 30px;
  }
}

.header-main__logo {
  width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 100%;
}

@media (width >= 1200px) {
  .header-main__logo {
    max-width: 250px;
  }
}

.header-main__center {
  width: calc(100% - 740px);
  display: none;
}

@media (width >= 1200px) {
  .header-main__center {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    display: flex;
  }
}

.header-main__search-form {
  width: 550px;
  position: relative;
}

.header__input {
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  width: 100%;
  height: 45px;
  padding-left: 40px;
}

.header__input::placeholder {
  color: #938b8c;
  font-size: 15px;
  font-weight: 400;
}

.header-main__search-btn {
  background-color: #0000;
  border: none;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

.header-main__search-btn svg {
  fill: #938b8c;
  width: 20px;
  height: 20px;
}

.header-main__right {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 180px;
  height: 100%;
  display: flex;
}

@media (width >= 768px) {
  .header-main__right {
    width: 250px;
  }
}

@media (width >= 1200px) {
  .header-main__right {
    width: 300px;
  }
}

.header-main__icon {
  cursor: pointer;
  border-left: 1px solid #d9d9d9;
  flex-flow: wrap;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

@media (width >= 1200px) {
  .header-main__icon:last-child {
    border-right: 1px solid #d9d9d9;
  }
}

.header-main__icon svg {
  fill: #938b8c;
  width: 25px;
  height: 25px;
}

@media (width >= 768px) {
  .header-main__icon svg {
    width: 30px;
    height: 30px;
  }
}

.header-main__icon:hover svg {
  fill: #0ac0dd;
}

@media (width >= 1200px) {
  .header-main__icon--hoverable {
    position: relative;
  }

  .header-main__icon--hoverable:before {
    content: "";
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.header-main__icon-wrap {
  position: relative;
}

.header-main__cart-counter {
  color: #fff;
  background-color: #0ac0dd;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  position: absolute;
  top: -5px;
  right: -5px;
}

.main__wrap {
  padding-top: 90px;
}

@media (width >= 768px) {
  .main__wrap {
    padding-top: 100px;
  }
}

@media (width >= 1200px) {
  .main__wrap {
    padding-top: 200px;
  }
}

.menu {
  margin-top: 25px;
}

.menu__wrap, .filters__wrap {
  height: 95vh;
  overflow-y: auto;
}

.filters {
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  width: 100%;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out, top .2s ease-in-out;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.filters.init {
  display: block;
}

.filters.activeClass {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in-out;
  top: 0;
}

.filters--submenu {
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  min-height: auto;
  transition: transform .2s ease-in-out;
  display: block;
  top: 0;
  left: 0;
  height: 100% !important;
}

@media (width >= 1200px) {
  .filters--submenu {
    padding: 0 50px;
  }
}

.filters--submenu.activeClass {
  opacity: 1;
  visibility: visible;
  transition: all .2s ease-in-out;
}

.filters-header {
  color: #0e1215;
  cursor: pointer;
  white-space: nowrap;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  height: 50px;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
  overflow: hidden;
}

@media (width >= 768px) {
  .filters-header {
    font-size: 20px;
  }
}

.filters-header svg {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}

.filters__title {
  color: #938b8c;
  border-bottom: 1px solid #d9d9d9;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  margin: 0 15px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

@media (width >= 768px) {
  .filters__title {
    font-size: 20px;
  }
}

.filters__title svg {
  fill: #938b8c;
  width: 15px;
  height: 15px;
}

.filters__title:hover svg {
  fill: #0ac0dd;
}

.filters__title:hover {
  color: #0ac0dd;
}

.filters__title--home {
  color: #0e1215;
}

.filters__title--lvl2 {
  border-bottom: none;
  flex-wrap: nowrap;
  height: fit-content;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.filters__title--lvl3 {
  border-bottom: none;
  height: 45px;
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 768px) {
  .filters__title--lvl3 {
    font-size: 14px;
  }
}

.filters__title--categories {
  margin: 0 15px;
}

.filters__title--categories:hover {
  background-color: #f6f6f6;
}

.filters__title--cat-title {
  border-top: 1px solid #d9d9d9;
}

.filters__title--sale {
  color: #eb001d;
}

.filters__categories-img {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  display: flex;
}

.desc-nav {
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  height: 50px;
}

.desc-nav__list {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.desc-nav__item {
  text-align: center;
  flex-flow: wrap;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0 25px 0 0;
  list-style: none;
  display: flex;
}

.desc-nav__link {
  color: #0e1215;
  cursor: pointer;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.desc-nav__link svg {
  width: 12px;
  height: 12px;
}

.desc-nav__link--sale {
  color: #eb001d;
}

.desc-nav__sublist {
  background-color: #fff;
  border-top: 3px solid #00000008;
  width: 100%;
  height: 595px;
  padding: 0 15px;
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 1200px) {
  .desc-nav__sublist {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.desc-nav__item--dropdown:hover .desc-nav__sublist {
  display: block !important;
}

.desc-nav__item--dropdown:hover .desc-nav__link, .desc-nav__item:hover .desc-nav__link {
  color: #0ac0dd;
}

.desc-nav__item--dropdown:hover .desc-nav__link svg, .desc-nav__item:hover .desc-nav__link svg {
  fill: #0ac0dd;
  transform: rotate(180deg);
}

.desc-nav__sublist-inner {
  padding-top: 10px;
}

.desc-nav__link-inner {
  border-bottom: 1px solid var(--grey-for-lines);
  color: #0e1215;
  text-align: left;
  width: calc(100% - 530px);
  padding-bottom: 30px;
  font-size: 22px;
  font-weight: 500;
}

.desc-nav__sublist-list {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .desc-nav__sublist-list {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.desc-nav__sublist-list {
  grid-gap: 40px;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 40px;
  display: grid;
}

.desc-nav__sublist-list--single {
  grid-gap: 15px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}

.desc-nav__subitem {
  text-align: center;
  flex: 1;
}

.desc-nav__subitem--border {
  border-right: 1px solid #d9d9d9;
}

.desc-nav__subitem--border:last-child {
  border-right: none;
}

.desc-nav__subitem--lvl2, .desc-nav__subitem--lvl3 {
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-nav-links {
  margin: 0;
  padding: 0;
}

.desc-nav__subitem--lvl2 .nav-link {
  color: #0e1215;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.desc-nav__subitem--lvl2 .nav-link:after {
  content: " ";
  background-color: #0e1215;
  width: 0;
  height: 1px;
  transition: width .2s;
  position: absolute;
  bottom: -5px;
  right: 0;
}

.desc-nav__subitem--lvl2 .nav-link:hover {
  color: #0e1215;
}

.desc-nav__subitem--lvl2 .nav-link:hover:after {
  width: 100%;
  left: 0;
}

.desc-nav__subitem--lvl3 {
  padding-top: 20px;
}

.desc-nav__subitem--lvl3 .nav-link {
  color: #938b8c;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.desc-nav__subitem--lvl3 .nav-link:after {
  content: " ";
  background-color: #938b8c;
  width: 0;
  height: 1px;
  transition: width .2s;
  position: absolute;
  bottom: -5px;
  right: 0;
}

.desc-nav__subitem--lvl3 .nav-link:hover {
  color: #938b8c;
}

.desc-nav__subitem--lvl3 .nav-link:hover:after {
  width: 100%;
  left: 0;
}

.menu-advert {
  margin-top: 10px;
  padding: 0 40px;
}

.menu-advert__single {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 180px;
  padding: 0 40px;
  display: flex;
}

.menu-advert__subtext {
  color: #fff;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  display: block;
}

.menu-advert__title {
  color: #fff;
  text-align: left;
  width: 100%;
  margin-top: 5px;
  font-size: 32px;
  font-weight: 500;
  display: block;
}

.gd-header__wrap {
  z-index: 3;
  background-color: #fff;
  width: 100%;
  transition: all .2s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 4px #00000040;
}

.gd-header__wrap.down {
  transition: all .2s ease-in-out;
  top: -40px;
}

@media (width >= 768px) {
  .gd-header__wrap.down {
    top: -50px;
  }
}

@media (width >= 1200px) {
  .gd-header__wrap.down {
    top: -60px;
  }

  .gd-header__wrap.down .desc-nav {
    margin-top: -50px;
    transition: all .2s ease-in-out;
  }
}

.gd-header__wrap.up {
  transition: all .2s ease-in-out;
  top: -40px;
}

@media (width >= 768px) {
  .gd-header__wrap.up {
    top: -50px;
  }
}

@media (width >= 1200px) {
  .gd-header__wrap.up {
    top: -60px;
  }

  .gd-header__wrap.up .desc-nav {
    margin-top: 0;
    transition: all .2s ease-in-out;
  }
}

.gd-footer {
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  margin-top: 100px;
}

@media (width >= 1200px) {
  .gd-footer {
    margin-top: 150px;
  }
}

.gd-footer__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .gd-footer__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }

  .footer-menu__nav-item {
    border-right: 1px solid #d9d9d9;
  }

  .footer-menu__nav-item:last-child {
    border: none;
  }
}

.footer-menu__logo {
  width: 100%;
  max-width: 100px;
  height: max-content;
  max-height: 100%;
}

@media (width >= 1200px) {
  .footer-menu__logo {
    max-width: 250px;
  }
}

.newsletter__btn {
  cursor: pointer;
  background-color: #0000;
  border: none;
  height: 45px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (width >= 1200px) {
  .newsletter__btn {
    right: 0;
  }
}

.newsletter__btn svg {
  fill: #0ac0dd;
  width: 20px;
  height: 20px;
}

@media (width >= 1200px) {
  .newsletter__btn {
    width: 60px;
    height: 50px;
  }
}

.footer-menu__nav-item--left {
  margin-bottom: 60px;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--left {
    margin-bottom: 0;
    padding-right: 40px;
  }
}

.footer-menu__nav-item--left .social {
  margin-top: 25px;
  padding: 0;
}

.footer-menu__nav-item--left .social__single {
  background-color: #938b8c;
  width: 30px;
  height: 30px;
}

.footer-menu__nav-item--left .social__single svg {
  width: 25px;
  height: 25px;
}

.footer-menu__nav-item--right {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--right {
    margin-top: 0;
  }
}

.footer-description, .newsletter {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (width >= 1200px) {
  .footer-description, .newsletter {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

.footer-menu__subtext {
  color: #0e1215;
  font-style: 16px;
  font-weight: 400;
}

.footer-description__title {
  font-size: 35px;
  font-weight: 700;
}

.footer-description__subtext {
  text-align: center;
  padding: 20px 0 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 18.75px;
}

@media (width >= 1200px) {
  .footer-description__subtext {
    text-align: left;
  }
}

.newsletter__title {
  font-size: 25px;
  font-weight: 600;
}

.newsletter__subtext {
  text-align: center;
  padding: 20px 0 40px;
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .newsletter__subtext {
    text-align: left;
  }
}

.newsletter__form {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.newsletter__form .newsletter__icon {
  fill: #0ac0dd;
  width: 30px;
  height: 30px;
  margin-bottom: 25px;
}

.newsletter__form .home-title {
  margin: 0 0 25px;
  padding: 0;
  font-size: 18px;
}

.newsletter__form .home-title__purple {
  width: 100%;
  font-size: 26px;
  font-weight: 600;
  display: block;
}

.newsletter__input {
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  width: 100%;
  height: 45px;
  padding-left: 25px;
}

.newsletter__input::placeholder {
  color: #938b8c;
  font-size: 16px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .newsletter__input {
    height: 50px;
  }
}

.footer-menu {
  width: 100%;
  padding: 40px 0;
  position: relative;
}

@media (width >= 1200px) {
  .footer-menu {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 90px 0;
    display: grid;
  }
}

.footer-menu__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (width >= 1200px) {
  .footer-menu__nav-list {
    padding-top: 17px;
  }
}

.footer-menu__nav-item--acc {
  max-height: 60px;
  padding-bottom: 15px;
  transition: all .2s ease-in-out;
  overflow: hidden;
}

.footer-menu__nav-item--acc.activeClass {
  padding-bottom: 15px;
  max-height: 300px !important;
}

.footer-menu__nav-item--acc {
  transition: max-height .3s ease-in-out;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--acc {
    flex-grow: 1;
    max-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.footer-menu__top-link {
  color: #fff;
  background-color: #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: -25px;
  right: 0;
}

@media (width >= 1200px) {
  .footer-menu__top-link {
    top: -25px;
    right: 0;
  }
}

.footer-menu__top-link svg {
  fill: #fff;
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
}

.footer-menu__link {
  color: #0e1215;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-menu__link:hover {
  color: #0ac0dd;
  text-decoration: underline;
}

@media (width >= 1200px) {
  .footer-menu__link {
    font-size: 15px;
  }
}

.footer-menu__nav-list-item:not(:last-child) {
  margin-bottom: 15px;
}

@media (width >= 1200px) {
  .footer-menu__nav-list-item:not(:last-child) {
    margin-bottom: 17px;
  }
}

.footer-menu__nav-list-item--contact svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

@media (width >= 1200px) {
  .footer-menu__nav-list-item--contact svg {
    width: 17px;
    height: 17px;
    margin-right: 7px;
  }
}

.footer-menu__nav-list-item--contact .footer-menu__link {
  max-width: calc(100% - 30px);
}

@media (width >= 1200px) {
  .footer-menu__nav-list-item--contact .footer-menu__link {
    max-width: calc(100% - 24px);
  }
}

.footer-menu__title {
  border-bottom: 1px solid #d9d9d9;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin: 0;
  font-size: 20px;
  line-height: 1;
  display: flex;
}

.footer-menu__title:first-child {
  border-top: 1px solid #d9d9d9;
}

@media (width >= 1200px) {
  .footer-menu__title {
    height: 30px;
    font-size: 18px;
    border: none !important;
  }
}

.footer-menu__title:last-child {
  display: none;
}

.footer-menu__title span {
  max-width: calc(100% - 30px);
}

@media (width >= 1200px) {
  .footer-menu__title span {
    white-space: nowrap;
    max-width: 100%;
  }
}

.footer-menu__title svg {
  width: 17px;
  height: 17px;
}

@media (width >= 1200px) {
  .footer-menu__title svg {
    display: none;
  }
}

.footer-menu__title.activeClass svg {
  transform: rotate(180deg);
}

.footer-menu__title.activeClass {
  border-bottom: none;
}

.ft-bottom {
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  padding: 30px 0;
}

@media (width >= 1200px) {
  .ft-bottom {
    padding: 15px 0;
  }

  .ft-bottom__wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
}

.ft-bottom__text {
  color: #0e1215;
  text-align: center;
  margin: 0 auto 25px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}

@media (width >= 1200px) {
  .ft-bottom__text {
    text-align: right;
    margin: 0;
  }
}

.ft-bottom__icons {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

@media (width >= 1200px) {
  .ft-bottom__icons {
    justify-content: flex-end;
  }
}

.ft-bottom__icon {
  background: #fff;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 45px;
  display: flex;
}

.ft-bottom__img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.ft-bottom__dev {
  font-weight: 300;
}

.hero {
  height: 560px;
  position: relative;
  overflow: hidden;
}

.hero__single {
  height: 560px;
  transition: var(--gd-transition);
  transition-property: opacity visibility;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__text {
  flex-flow: wrap;
  justify-content: center;
  align-items: start;
  width: 100%;
  padding: 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .hero__text {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.hero__text {
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.hero__text .title {
  color: #fff;
  text-shadow: 0 4px 4px #00000040;
  font-size: 28px;
  font-weight: 400;
}

@media (width >= 768px) {
  .hero__text .title {
    font-size: 42px;
  }
}

@media (width >= 1200px) {
  .hero__text .title {
    font-size: 60px;
  }
}

.hero__text .subtext {
  color: #fff;
  text-shadow: 0 4px 4px #00000040;
  margin: 20px 0 60px;
  font-size: 18px;
  font-weight: 400;
}

@media (width >= 768px) {
  .hero__text .subtext {
    font-size: 25px;
  }
}

@media (width >= 1200px) {
  .hero__text .subtext {
    width: 1000px;
    font-size: 35px;
  }
}

.hero__figure img {
  width: 100%;
}

.hero__slide {
  z-index: 1;
  background-color: #fff;
  border: 1px solid #0ac0dd;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.hero__slide svg {
  width: 20px;
  height: 20px;
}

.hero__slide:hover {
  background-color: #0ac0dd;
}

.hero__slide:hover svg {
  fill: #fff;
}

.hero__slide--prev {
  background-color: #0ac0dd;
  top: 45%;
  transform: rotate(180deg);
}

.hero__slide--prev svg {
  fill: #fff;
}

.hero__slide--next {
  top: 55%;
}

.categories {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .categories {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.categories .home-title {
  padding-left: 0;
}

.categories__wrap {
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

@media (width >= 1200px) {
  .categories__wrap {
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
  }
}

.categories-title {
  color: #0e1215;
  height: 40px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

@media (width >= 768px) {
  .categories-title {
    font-size: 23px;
  }
}

@media (width >= 1200px) {
  .categories-title {
    height: 90px;
    margin-top: 0;
    font-size: 19px;
  }
}

.categories__single {
  border: 1px solid #e5e5e5;
  padding: 30px;
}

@media (width >= 1200px) {
  .categories__single {
    padding: 40px;
  }
}

.categories__single {
  background: #fff;
  padding: 30px;
}

@media (width >= 1200px) {
  .categories__single {
    padding: 40px;
  }
}

.categories__single {
  padding: 20px;
}

@media (width >= 1200px) {
  .categories__single {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 35px;
    display: grid;
  }
}

.categories__single:hover .categories-title {
  color: #0ac0dd;
}

.categories__img {
  width: 90px;
  height: 55px;
}

@media (width >= 768px) {
  .categories__img {
    width: 130px;
    height: 75px;
  }
}

@media (width >= 1200px) {
  .categories__img {
    order: 2;
    width: 100px;
    height: 100px;
  }
}

.categories__img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.categories-total {
  color: #938b8c;
  margin: 0;
  padding: 15px 0 0;
  font-size: 14px;
  font-weight: 400;
}

@media (width >= 768px) {
  .categories-total {
    font-size: 18px;
  }
}

.sale-categories {
  grid-template-columns: 1fr;
  grid-template-areas: "cat1"
                       "cat2"
                       "cat3"
                       "cat4";
  gap: 40px;
  padding: 50px 15px 0;
  display: grid;
}

@media (width >= 768px) {
  .sale-categories {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "cat4 cat2"
                         "cat4 cat3";
    gap: 30px;
  }
}

@media (width >= 1200px) {
  .sale-categories {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "cat1 cat2 cat4 cat4"
                         "cat1 cat3 cat4 cat4";
    gap: 50px;
    padding: 150px 15px 0;
  }
}

.sale-categories__single {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 360px;
  padding: 25px 15px;
  position: relative;
}

@media (width >= 768px) {
  .sale-categories__single {
    height: 310px;
  }
}

@media (width >= 1200px) {
  .sale-categories__single {
    height: 360px;
    padding: 40px 20px;
  }
}

.sale-categories__single:first-child, .sale-categories__single:last-child {
  text-align: center;
  height: 650px;
}

@media (width >= 1200px) {
  .sale-categories__single:first-child, .sale-categories__single:last-child {
    height: 780px;
  }
}

.sale-categories__single:first-child .main-btn, .sale-categories__single:last-child .main-btn {
  margin: 0 auto;
}

.sale-categories__single:first-child {
  grid-area: cat1;
}

@media (width >= 768px) {
  .sale-categories__single:first-child {
    display: none;
  }
}

@media (width >= 1200px) {
  .sale-categories__single:first-child {
    display: block;
  }
}

.sale-categories__single:nth-child(2) {
  grid-area: cat2;
}

.sale-categories__single:nth-child(3) {
  grid-area: cat3;
}

.sale-categories__single:nth-child(4) {
  grid-area: cat4;
}

.sale-categories__content {
  z-index: 2;
  position: relative;
}

.sale-categories__img {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

@media (width >= 1200px) {
  .sale-categories__img {
    width: 280px;
    height: 280px;
  }
}

.sale-categories__img {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sale-categories__img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

@media (width >= 1200px) {
  .sale-categories__img--4 {
    width: 500px;
    height: 500px;
  }
}

.sale-categories__subtext {
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

@media (width >= 768px) {
  .sale-categories__subtext {
    font-size: 16px;
  }
}

@media (width >= 1200px) {
  .sale-categories__subtext {
    font-size: 18px;
  }
}

.sale-categories__title {
  color: #fff;
  width: 100%;
  margin: 10px 0 30px;
  padding: 0;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 1200px) {
  .sale-categories__title {
    font-size: 42px;
  }

  .sale-categories__title:nth-child(2), .sale-categories__title:nth-child(3) {
    font-size: 32px;
  }
}

@media (width <= 768px) {
  .product-list {
    padding-right: 0;
  }
}

.product-list {
  padding: 50px 15px 0;
}

@media (width >= 1200px) {
  .product-list {
    padding: 150px 15px 0;
  }
}

.product-list .home-title {
  padding: 0;
}

@media (width >= 1200px) {
  .product-list__heading {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

.product-list__tabs {
  grid-gap: 0;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media (width >= 480px) {
  .product-list__tabs {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

.product-list__tabs {
  gap: 10px;
  margin-top: 25px;
  overflow-x: auto;
}

@media (width >= 1200px) {
  .product-list__tabs {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 0;
    display: flex;
  }
}

.product-list__tab {
  color: #0e1215;
  cursor: pointer;
  background-color: #fff;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 180px;
  height: 45px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

@media (width >= 768px) {
  .product-list__tab {
    font-size: 18px;
  }
}

.product-list__tab svg {
  fill: #0e1215;
  width: 25px;
  height: 25px;
}

.product-list__tab:hover {
  color: #fff;
  background-color: #0ac0dd;
}

.product-list__tab:hover svg {
  fill: #fff;
}

.product-list__tab.activeClass {
  color: #fff;
  background-color: #0ac0dd;
}

.product-list__tab.activeClass svg {
  fill: #fff;
}

.product-list__wrap {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .product-list__wrap {
    margin-top: 60px;
  }
}

.product-list__wrap .splide__slide {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.products-list__single {
  display: none;
}

.products-list__single.activeClass {
  display: block;
}

.full-showcase-ad {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 550px;
  margin-top: 50px;
  display: flex;
}

@media (width >= 1200px) {
  .full-showcase-ad {
    margin-top: 150px;
  }
}

.full-showcase-ad__wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  height: 100%;
  padding-top: 25px;
  display: flex;
}

@media (width >= 1200px) {
  .full-showcase-ad__wrap {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    display: flex;
  }
}

.full-showcase__subtext {
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

@media (width >= 768px) {
  .full-showcase__subtext {
    font-size: 16px;
  }
}

@media (width >= 1200px) {
  .full-showcase__subtext {
    font-size: 18px;
  }
}

.full-showcase__title {
  color: #fff;
  width: 100%;
  margin: 10px 0 30px;
  padding: 0;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 1200px) {
  .full-showcase__title {
    font-size: 42px;
  }
}

.mid-ad {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 50px;
}

@media (width >= 1200px) {
  .mid-ad {
    margin-top: 150px;
  }
}

.mid-ad__wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 15px;
  display: flex;
}

@media (width >= 1200px) {
  .mid-ad__wrap {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .mid-ad__content {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    display: flex;
  }
}

.mid-ad__title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media (width >= 768px) {
  .mid-ad__title {
    font-size: 16px;
  }
}

@media (width >= 1200px) {
  .mid-ad__title {
    font-size: 30px;
  }
}

.mid-ad__subtext {
  color: #0e1215;
  margin: 0;
  padding-bottom: 15px;
  font-size: 12px;
  font-weight: 500;
}

@media (width >= 768px) {
  .mid-ad__subtext {
    font-size: 13px;
  }
}

@media (width >= 1200px) {
  .mid-ad__subtext {
    margin-bottom: 0;
    font-size: 24px;
  }
}

.mid-ad__right .main-btn {
  width: max-content;
  padding: 0 15px;
}

.prod-single__wrap {
  background-color: #fff;
  margin-top: 50px;
  padding: 25px;
}

@media (width >= 1200px) {
  .prod-single__wrap {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 150px;
    padding: 50px;
    display: grid;
  }
}

.prod-single__wrap .main-btn {
  color: #fff;
  background-color: #0ac0dd;
  margin-top: 35px;
}

.prod-single__wrap .main-btn:hover {
  background-color: #0ac0ddd9;
}

.prod-single__wrap .prod-single {
  display: none;
}

.prod-info {
  margin-top: 35px;
}

@media (width >= 1200px) {
  .prod-info {
    margin-top: 0;
  }
}

.prod-info__title {
  color: #0ac0dd;
  font-size: 25px;
  font-weight: 500;
  display: block;
}

@media (width >= 768px) {
  .prod-info__title {
    font-size: 28px;
  }
}

@media (width >= 1200px) {
  .prod-info__title {
    margin-bottom: 25px;
    font-size: 32px;
  }
}

.prod-info__features {
  margin-top: 35px;
}

.brands {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .brands {
    margin-top: 150px;
  }
}

.brands__wrap {
  grid-gap: 0;
  background-color: #fff;
  grid-template-columns: repeat(2, 1fr);
  padding: 15px;
  display: grid;
}

@media (width >= 768px) {
  .brands__wrap {
    padding: 20px;
  }
}

@media (width >= 1200px) {
  .brands__wrap {
    grid-gap: 0;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px;
    display: grid;
  }
}

.brands__single {
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  padding: 20px;
  transition: filter .2s ease-out;
}

@media (width <= 1200px) {
  .brands__single:nth-child(2n) {
    border-right: none;
  }
}

@media (width >= 1200px) {
  .brands__single {
    padding: 40px;
  }

  .brands__single:nth-last-child(-n+4) {
    border-bottom: none;
  }

  .brands__single:nth-child(4), .brands__single:nth-child(8) {
    border-right: none;
  }
}

.brands__image {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 85%;
  position: relative;
  overflow: hidden;
}

.brands__image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.usps {
  background-color: #fff;
  margin-top: 50px;
}

@media (width >= 1200px) {
  .usps {
    margin-top: 150px;
  }
}

.usps__wrap {
  padding: 20px 15px;
}

@media (width >= 1200px) {
  .usps__wrap {
    grid-gap: 50px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    height: 200px;
    padding: 0 15px;
    display: grid;
  }
}

.usps-title {
  color: #0e1215;
  text-transform: capitalize;
  margin: 0 0 25px;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 768px) {
  .usps-title {
    font-size: 28px;
  }
}

@media (width >= 1200px) {
  .usps-title {
    font-size: 32px;
  }
}

.usps-title__purple {
  color: #0ac0dd;
}

.usps-subtext {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.usps__right-icons {
  grid-gap: 0;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
  display: grid;
}

@media (width >= 1200px) {
  .usps__right-icons {
    grid-gap: 0;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    margin-top: 0;
    display: grid;
  }
}

.usps-single {
  filter: grayscale();
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  padding: 20px;
  transition: filter .2s ease-out;
}

@media (width <= 1200px) {
  .usps-single:nth-child(3), .usps-single:nth-child(4) {
    border-bottom: none;
  }

  .usps-single:nth-child(2), .usps-single:nth-child(4) {
    border-right: none;
  }
}

@media (width >= 1200px) {
  .usps-single {
    border: none;
    border-left: 1px solid #d9d9d9;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .usps-single:nth-child(4) {
    border-right: 1px solid #d9d9d9;
  }
}

.usps-single:hover {
  filter: grayscale(0);
}

.usps-image {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  .usps-image {
    width: 100%;
    height: 0;
    margin: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
  }
}

.usps-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blogs {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .blogs {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.blogs .splide__track {
  padding-right: 25px !important;
}

@media (width >= 1200px) {
  .blogs .splide__track {
    padding-right: 60px !important;
  }
}

.blog-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  height: 350px;
  display: flex;
  position: relative;
}

.blog-box__content {
  background-color: #fff;
  width: 100%;
  height: 90%;
  margin: 0 -25px 0 50px;
  padding: 25px;
  box-shadow: 0 0 4px #00000040;
}

@media (width >= 1200px) {
  .blog-box__content {
    margin: 0 -50px 0 100px;
  }
}

.blog-box__date {
  color: #938b8c;
  font-size: 14px;
  font-weight: 400;
}

.blog-box__title {
  color: #0e1215;
  margin: 25px 0;
  font-size: 20px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .blog-box__title {
    font-size: 22px;
  }
}

.blog-box__subtext {
  color: #0e1215;
  max-height: 60px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  display: block;
  overflow: hidden;
}

.blog-box__subtext p {
  margin: 0;
  padding: 0;
}

@media (width >= 768px) {
  .blog-box__subtext {
    font-size: 14px;
  }
}

@media (width >= 1200px) {
  .blog-box__subtext {
    font-size: 16px;
  }
}

.blog-box__cta {
  color: #0ac0dd;
  font-size: 16px;
  font-weight: 400;
}

.blog-box__cta:hover {
  text-decoration: underline;
}

.cat-header {
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin: 50px 0;
}

.cat-header__wrap {
  width: 100%;
  padding: 0 15px;
  position: relative;
}

@media (width >= 1200px) {
  .cat-header__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.cat-header__wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  display: flex;
}

@media (width >= 1200px) {
  .cat-header__wrap {
    height: 80px;
  }
}

.cat-header__wrap .results {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 3px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.filter-btn {
  cursor: pointer;
  color: #0e1215;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.filter-btn svg {
  fill: #0e1215;
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}

@media (width >= 1200px) {
  .filter-btn {
    display: none;
  }
}

.sort-opt .form-control {
  cursor: pointer;
  background-color: #0000;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 400;
}

.cat-products__wrapper {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cat-products__wrapper {
    grid-template-columns: 1fr 4fr;
    gap: 15px;
    max-width: 1690px;
    margin: 0 auto;
    display: grid;
  }
}

.cat-products__left {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  border-radius: 3px;
  width: 300px;
  height: max-content;
  max-height: 880px;
  position: sticky;
  top: 210px;
  overflow: auto;
}

.cat-products__left .filter {
  width: 100%;
}

.products-row {
  grid-gap: 0;
  grid-template-columns: repeat(24, 1fr);
  gap: 40px 15px;
  display: grid;
}

@media (width >= 768px) {
  .products-row {
    grid-gap: 0;
    grid-template-columns: repeat(36, 1fr);
    gap: 40px 20px;
    display: grid;
  }
}

@media (width >= 1200px) {
  .products-row {
    grid-gap: 0;
    grid-template-columns: repeat(48, 1fr);
    gap: 40px 15px;
    display: grid;
  }
}

.product-box {
  grid-column: span 12;
}

.cat-products__empty-cat {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cat-products__empty-cat {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.cat-products__empty-cat {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .cat-products__empty-cat {
    margin-top: 150px;
  }
}

.cat-products__empty-cat .title {
  margin: 0;
  padding: 0;
}

.cat-footer {
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin-top: 50px;
}

.cat-footer__wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 70px;
  display: flex;
}

@media (width >= 1200px) {
  .cat-footer__wrap {
    height: 80px;
  }
}

.pagination {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  display: flex;
}

.page-link {
  flex-flow: wrap;
  justify-content: center;
  display: flex;
  color: #938b8c !important;
  background-color: #0000 !important;
  border: none !important;
  border-radius: 3px !important;
  align-items: center !important;
  width: 35px !important;
  height: 35px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.page-link:hover {
  color: #0ac0dd !important;
  text-decoration: underline !important;
}

.page-link svg {
  fill: #938b8c !important;
  width: 15px !important;
  height: 15px !important;
}

.page-item--prev .page-link, .page-item--next .page-link {
  background-color: #0000 !important;
  border: none !important;
}

.page-item--prev .page-link svg:hover, .page-item--next .page-link svg:hover {
  fill: #0ac0dd !important;
  text-decoration: underline !important;
}

.page-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-item.active .page-link {
  color: #0ac0dd !important;
  background-color: #0000 !important;
  border: none !important;
  text-decoration: underline !important;
}

.new-filter {
  max-height: auto;
  margin-bottom: 15px;
  transition: all .2s ease-in-out;
  overflow: hidden;
}

.new-filter:first-child {
  margin-bottom: 0;
}

.filter__wrapper {
  height: calc(100vh - 180px);
  overflow: auto;
}

@media (width >= 1200px) {
  .filter__wrapper {
    height: auto;
    overflow: none;
  }
}

.filter-header {
  background-color: #fff;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  margin: 5px 15px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  box-shadow: 0 0 4px #00000040;
}

@media (width >= 1200px) {
  .filter-header {
    box-shadow: none;
    margin: 0;
    font-size: 16px;
  }
}

.filter-header svg {
  width: 10px;
  height: 10px;
}

.filter-body {
  margin-top: 10px;
}

.list-group--brands {
  padding: 15px;
  background-color: #fff !important;
  grid-template-columns: 1fr 1fr !important;
  display: grid !important;
}

.list-group--brands .filter, .list-group--brands .filter-remove {
  border-bottom: 1px solid #d9d9d9;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.list-group--brands .filter:nth-child(odd), .list-group--brands .filter-remove:nth-child(odd) {
  border-right: 1px solid #d9d9d9;
}

.filter__brand-img {
  filter: grayscale();
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 50px;
  padding: 10px;
  display: flex;
}

.filter__brand-img:hover {
  filter: grayscale(0);
}

.filter__brand-img img {
  mix-blend-mode: multiply;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.filter-remove {
  list-style: none;
}

.filter-remove .filter-name {
  color: #0ac0dd;
  background-color: #f6f6f6;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding-left: 10px;
}

.filter-remove .filter-name svg {
  fill: #0ac0dd;
}

.filter-remove .filter__brand-img {
  filter: grayscale(0);
}

.filter-name {
  color: #938b8c;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 40px;
  margin: 0;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.filter-name svg {
  fill: #d9d9d9;
  width: 16px;
  height: 16px;
}

.filter-name:hover {
  color: #0ac0dd;
  background-color: #f6f6f6;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.filter-name:hover svg {
  fill: #0ac0dd;
}

.filter-wrap.activeClass svg {
  transform: rotate(180deg);
}

.list-group {
  background-color: #fff;
  margin: 0;
  padding: 15px;
  padding-left: 15px !important;
}

.list-group--brands {
  grid-gap: 0;
  background-color: #0000;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.filter {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-group-item {
  text-decoration: none;
  list-style-type: none;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.filter-btns {
  margin-top: 20px;
}

.ui-slider {
  text-align: left;
  width: 100%;
  height: 10px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #d9d9d9 !important;
}

.ui-slider-range {
  z-index: 1;
  background-position: 0 0;
  border: 0;
  height: 100%;
  margin: 0;
  font-size: .7em;
  display: block;
  position: absolute;
  top: 0;
  background: #0ac0dd !important;
}

.ui-slider-handle {
  border: 1px solid var(--gd-gray-light);
  z-index: 2;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
  background: #fff;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  margin-left: -1px;
  position: absolute;
  top: -2px;
  box-shadow: 0 1px 4px #00000040;
  color: #0ac0dd !important;
}

.price_range {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.page-search_results .cat-top {
  height: 285px;
}

.cat-top--bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cat-top--bg-color {
  background-color: #0ac0dd;
}

.cat-top__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cat-top__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.cat-top__wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.cat-top__content {
  width: 100%;
}

.category-title {
  color: #fff;
  width: 100%;
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 1200px) {
  .category-title {
    font-size: 42px;
  }
}

.category-subtext {
  color: #fff;
  text-align: center;
  width: 100%;
  padding-top: 15px;
  font-size: 23px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .category-subtext {
    font-size: 25px;
  }
}

.cat-banner {
  position: relative;
}

.cat-banner .main-btn {
  width: max-content;
  margin-top: 15px;
}

.cat-banner .main-btn:hover {
  color: #fff;
  background-color: #0e1215;
}

.cat-banner .section-text {
  color: #fff !important;
  padding: 0 !important;
}

.cat-banner .read-more__btn {
  margin-top: 15px;
  color: #fff !important;
}

.cat-banner__img {
  width: 100%;
  height: 400px;
  margin: 0;
  padding-bottom: 107%;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  .cat-banner__img {
    width: 100%;
    height: 400px;
    margin: 0;
    padding-bottom: 21%;
    position: relative;
    overflow: hidden;
  }
}

.cat-banner__img img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cat-title {
  color: #fff;
  width: 100%;
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 1200px) {
  .cat-title {
    font-size: 42px;
  }
}

.cat-description {
  color: #fff;
  text-align: left;
  width: 100%;
  padding-top: 15px;
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .cat-description {
    font-size: 18px;
  }
}

.cat-banner__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.smi-banner {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .smi-banner {
    margin-top: 70px;
  }
}

.smi-banner__wrap {
  grid-gap: 25px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}

@media (width >= 1200px) {
  .smi-banner__wrap {
    grid-gap: 25px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

.smi-banner__single {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 25px;
}

.smi-banner__single .main-btn {
  width: fit-content;
  margin-top: 50px;
  padding: 0 15px;
}

.smi-banner__title {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
}

.smi-banner__subtext {
  color: #fff;
  height: 25px;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.pdf-section {
  grid-gap: 25px;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 25px;
  display: grid;
}

@media (width >= 480px) {
  .pdf-section {
    grid-gap: 25px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

@media (width >= 1200px) {
  .pdf-section {
    grid-gap: 25px;
    grid-template-columns: repeat(5, 1fr);
    display: grid;
  }
}

.pdf-section__single {
  background-color: #fff;
  padding: 10px;
}

.pdf-section__single .main-btn {
  text-transform: uppercase;
  background-color: #0ac0dd;
  font-size: 16px;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none !important;
}

.pdf-section__single .main-btn:hover {
  background-color: #0ac0dde6;
}

.pdf-section__img {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.pdf-section__img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pdf-section__title {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.brand-list {
  grid-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

@media (width >= 1200px) {
  .brand-list {
    grid-gap: 25px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
  }
}

.brand-list__single {
  transition: var(--gd-transition) .2s;
  transition-property: border zoom;
  background-color: #fff;
  border: 1px solid #0000;
  text-decoration: none !important;
}

.brand-list__single:hover {
  border: 1px solid #0ac0dd;
}

.brand-list__single:hover .brand-list__figure {
  zoom: 1.1;
}

.brand-list__figure {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.brand-list__figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-list__title {
  color: #0ac0dd;
  text-transform: uppercase;
  text-align: center;
  padding: 0 10px 15px;
  font-size: 18px;
  font-weight: 600;
  display: block;
}

@media (width >= 1200px) {
  .brand-list__title {
    font-size: 24px;
  }
}

.distributors {
  grid-gap: 15px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}

@media (width >= 1200px) {
  .distributors {
    grid-gap: 25px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
  }
}

.distributors .col-12 {
  padding: 0 !important;
}

.distributors .row {
  margin: 0 !important;
}

.distributors .panel-body {
  border: 2px solid #0ac0dd;
  padding: 15px;
}

.distributors .img-responsive {
  width: 100%;
}

.product {
  margin-top: 15px;
}

@media (width >= 1200px) {
  .product {
    margin-top: 35px;
  }
}

.product__wrap {
  background-color: #fff;
  padding: 50px 25px;
}

@media (width >= 1200px) {
  .product__wrap {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    padding: 100px 50px;
    display: grid;
  }
}

.product__sidebar {
  margin-top: 30px;
}

@media (width >= 1200px) {
  .product__sidebar {
    margin-top: 0;
  }
}

.prod-header__brand {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 400;
  display: block;
}

@media (width >= 768px) {
  .prod-header__brand {
    font-size: 20px;
  }
}

@media (width >= 1200px) {
  .prod-header__brand {
    font-size: 18px;
  }
}

.prod-header__title {
  margin: 0 0 15px;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
}

@media (width >= 768px) {
  .prod-header__title {
    font-size: 27px;
  }
}

.prod-header__text {
  color: #0e1215;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .prod-header__text {
    font-size: 16px;
  }
}

.prod-header__review-wrap {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  display: flex;
}

.prod-header__price-inner {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.prod-header__price {
  color: #0e1215;
  font-size: 26px;
  font-weight: 600;
}

.prod-header__price--purple {
  color: #0ac0dd;
}

.prod-header__price-old {
  color: var(--dark-grey-for-text);
  font-size: 14px;
  font-weight: 300;
  text-decoration: line-through;
}

.prod-header__price-ending {
  color: #eb001d;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.prod-header__price-time {
  color: #eb001d;
  font-size: 14px;
  font-weight: 400;
}

.gst-text {
  color: #0ac0dd;
  font-size: 16px;
  font-weight: 600;
}

.prod-header__price .small {
  font-size: 16px;
  font-weight: 500;
}

.prod-header__badge-wrap {
  margin: 25px 0;
}

.prod-header__badge {
  color: #0e1215;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  display: flex;
}

.prod-header__badge svg {
  fill: #0ac0dd;
  width: 15px;
  height: 15px;
}

.prod-header__review {
  color: #0e1215;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  display: flex;
}

.prod-header__review svg {
  fill: #ffdb06;
  width: 15px;
  height: 15px;
}

.buying-options {
  padding: 30px 0;
}

.buying-options__wrap {
  border-bottom: 1px solid #d9d9d9;
  grid-template-columns: 1fr 1fr .3fr;
  grid-template-areas: "qty . ."
                       "btns btns wishlist";
  gap: 15px;
  padding-bottom: 30px;
  display: grid;
}

@media (width >= 1200px) {
  .buying-options__wrap {
    grid-template-columns: 1.5fr 3fr .5fr;
    grid-template-areas: "qty btns wishlist";
  }
}

.buying-options__qty {
  grid-area: qty;
  position: relative;
}

.buying-options__qty .form-control {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  height: 50px;
  font-size: 18px;
  font-weight: 500;
}

.buying-options__qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buying-options__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buying-options__qty input[type="number"] {
  -moz-appearance: textfield;
}

.buying-options__qty .inc-qty, .buying-options__qty .dec-qty {
  color: #0e1215;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.buying-options__qty .dec-qty {
  border-right: 1px solid #d9d9d9;
  padding-right: 10px;
  left: 10px;
}

.buying-options__qty .inc-qty {
  border-left: 1px solid #d9d9d9;
  padding-left: 10px;
  right: 10px;
}

.quantity-input {
  border: 1px solid var(--grey-for-lines);
  text-align: center;
  width: 100%;
  height: 45px;
}

@media (width >= 1200px) {
  .quantity-input {
    height: 50px;
  }
}

.buying-options__btns {
  grid-area: btns;
}

.buying-options__wishlist {
  grid-area: wishlist;
}

.buying-options__wishlist svg {
  fill: #0ac0dd;
  width: 30px;
  height: 30px;
}

@media (width >= 1200px) {
  .buying-options__wishlist svg {
    width: 40px;
    height: 40px;
  }
}

.shipping-card {
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}

.shipping-card__title {
  border-bottom: 1px solid #d9d9d9;
  margin: 0 25px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

.shipping-card__wrap {
  border: 1px solid var(--grey-for-lines);
  padding: 25px;
}

.shipping-card__inner {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "qty country"
                       "postcode btn";
  gap: 15px;
  display: grid;
}

@media (width >= 1200px) {
  .shipping-card__inner {
    grid-template-columns: .5fr 1fr 1fr 1fr;
    grid-template-areas: "qty country postcode btn";
  }
}

.shipping-card__inner .form-control {
  color: #938b8c;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
}

.shipping-card__qty {
  grid-area: qty;
}

.shipping-card__country {
  grid-area: country;
}

.shipping-card__postcode {
  grid-area: postcode;
}

.shipping-card__btn {
  grid-area: btn;
}

.shipping-card__message {
  color: var(--dark-grey-for-text);
  border-top: 1px solid #d9d9d9;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 12px;
  font-weight: 300;
}

.variation-wrapper__inner {
  border-bottom: 1px solid #d9d9d9;
  align-items: center;
  padding: 20px 0;
}

.variation-name {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.variation-name > label {
  color: #0e1215;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

._itmspec_listopt {
  grid-template-columns: 1fr 4fr;
  width: 100%;
  margin-bottom: 15px;
  display: grid;
}

._itmspec_listopt:last-child {
  margin-bottom: 0;
}

._itmspec_optpl select {
  color: #938b8c;
  cursor: pointer;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  height: 45px;
  font-size: 15px;
  font-weight: 400;
}

._itmspec_optpl select option {
  font-size: 15px;
}

._itmspec_listitm {
  color: #0e1215 !important;
}

.prod-header__payment-ops {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding: 15px 0;
  display: flex;
}

.prod-header__payment-ops .ft-bottom__icon {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 5px;
}

.prod-header__payment-title {
  color: #0e1215;
  font-size: 16px;
  font-weight: 400;
}

.products-list__wrap {
  padding-right: 0;
}

@media (width >= 480px) {
  .products-list__wrap {
    padding-right: 15px;
  }
}

.products-list__wrap .splide__arrow--prev {
  display: none;
}

.products-list__wrap .splide__arrow--next {
  background-color: #0ac0dd;
  right: 0;
}

.products-list__wrap .splide__arrow--next svg {
  fill: #fff;
}

.products-list__wrap .splide__slide {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.product-info {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .product-info {
    margin-top: 100px;
  }

  .product-info__wrap {
    grid-template-columns: 1.5fr 3fr;
    gap: 25px;
    display: grid;
  }
}

.product-info__tab {
  color: #0e1215;
  cursor: pointer;
  background-color: #fff;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  padding-left: 30px;
  font-size: 22px;
  font-weight: 500;
  display: flex;
}

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

@media (width >= 1200px) {
  .product-info__tab {
    height: 70px;
    font-size: 24px;
  }
}

.product-info__tab.activeClass, .product-info__tab:hover {
  color: #fff;
  background-color: #0ac0dd;
}

.product-info__content {
  background-color: #fff;
  margin-top: 20px;
}

@media (width >= 1200px) {
  .product-info__content {
    margin-top: 0;
  }
}

.product-info__share-link {
  color: #0e1215;
  font-size: 16px;
  font-weight: 500;
}

.product-info__share-link:hover {
  color: #0ac0dd;
}

.product-info__share-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  display: flex;
}

.product-info__details {
  padding: 30px 15px;
  display: none;
}

.product-info__details.activeClass {
  display: block;
}

@media (width >= 1200px) {
  .product-info__details {
    padding: 50px;
  }
}

.product-info__details .table {
  border: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (width >= 1200px) {
  .product-info__details .table {
    width: 50%;
  }
}

.product-info__details .table th, .product-info__details .table td {
  border: none;
  width: 100px;
}

.product-info__details .reviews-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.product-info__details .reviews-subtext {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
}

.cart-page {
  margin-top: 25px;
}

.cart-page .h1 {
  font-size: 23px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .cart-page .h1 {
    font-size: 32px;
  }
}

.cart-page .h2 {
  margin-bottom: 30px;
}

.cart-page .btn {
  width: 100%;
}

.cart-page .table {
  background-color: #fff;
  border-color: #d9d9d9;
  margin: 40px 0;
}

.cart-page .table .input {
  font-size: 14px;
}

.cart-page .table.cart-page__sub-table {
  border: 1px solid #d9d9d9;
  margin: 0 0 15px;
}

.cart-page tbody td {
  padding: 10px;
}

@media (width >= 1200px) {
  .cart-page tbody td {
    padding: 25px;
  }

  .cart-page tbody td.cartTable--column-image + td {
    padding-left: 10px;
  }
}

.cart-page tbody td a {
  text-decoration: none;
}

.cart-page tbody td .cart-page__product-title {
  color: #0e1215;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
}

@media (width >= 1200px) {
  .cart-page tbody td .cart-page__product-title {
    margin: 0 0 6px;
    padding-left: 15px;
    font-size: 16px;
    line-height: 19px;
  }
}

.cart-page tbody td .small {
  color: var(--dark-grey-for-text);
  font-size: 8px;
  font-style: italic;
  font-weight: 300;
  line-height: 10px;
}

@media (width >= 1200px) {
  .cart-page tbody td .small {
    font-size: 12px;
    line-height: 14px;
  }
}

.cart-page tbody td .small:last-child {
  margin-bottom: 0;
}

.cart-page tbody td .fa-trash-alt {
  color: #d9d9d9;
  font-size: 12px;
}

.cart-page thead th {
  border: none;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

@media (width >= 1200px) {
  .cart-page thead th {
    padding: 15px 25px;
    font-size: 17px;
  }
}

.cart-page .cart-page__sub-head {
  background-color: #fff;
}

.cart-page .cart-page__sub-head th, .cart-page .cart-page__sub-head td {
  color: #0e1215;
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 500 !important;
}

@media (width >= 1200px) {
  .cart-page .cart-page__sub-head th, .cart-page .cart-page__sub-head td {
    font-size: 17px;
  }
}

.cart-page .cart-page__sub-head td {
  color: #000;
  font-weight: 500;
}

.cart-page .cart-page__sub-footer {
  background-color: #938b8c;
}

.cart-page .cart-page__sub-footer th, .cart-page .cart-page__sub-footer td {
  color: #fff;
  text-transform: capitalize;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.cart-page .cartTable--column-image {
  vertical-align: top;
  border-right: none;
}

.cart-page .cartTable--column-image img {
  min-width: 30px;
}

@media (width >= 1200px) {
  .cart-page .cartTable--column-image img {
    max-width: 80px;
  }
}

.cart-page .cartTable--column-image + td {
  border-left: none;
}

.cart-page .cartTable--heading {
  background-color: var(--gd-gray-light);
  font-weight: 500;
}

.cart-page .cartTable--heading-remove {
  width: 60px;
}

@media (width >= 1200px) {
  .cart-page .cartTable--heading-price, .cart-page .cartTable--heading-quantity {
    width: 150px;
  }
}

.cart-page .card {
  border-color: #d9d9d9;
  border-radius: 0;
  margin-bottom: 40px;
}

.cart-page .card .main-btn {
  width: 100%;
}

.cart-page .card .card-header {
  background-color: var(--gd-gray-light);
  border-radius: 0;
  padding: 17px 15px;
}

@media (width >= 1200px) {
  .cart-page .card .card-header {
    padding: 17px 25px;
  }
}

.cart-page .card .card-title {
  margin: 0;
  font-size: 16px;
  line-height: 1;
}

@media (width >= 1200px) {
  .cart-page .card .card-title {
    font-size: 17px;
  }
}

.cart-page .card .card-body {
  padding: 17px 25px;
}

@media (width >= 1200px) {
  .cart-page .card .card-body {
    padding: 25px;
  }
}

.cart-page .card .card-body p {
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 1;
}

@media (width >= 1200px) {
  .cart-page__img-wrap {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
}

.cart-page__img-wrap .img-fluid {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 10px;
}

@media (width >= 1200px) {
  .cart-page__header {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .cart-page__header .btn {
    width: calc(50% - 6px);
  }
}

.cart-page__cell-price {
  text-align: center;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

@media (width >= 1200px) {
  .cart-page__cell-price {
    font-size: 14px;
    line-height: 16px;
  }
}

.cart-page__cell-total {
  text-align: center;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
}

@media (width >= 1200px) {
  .cart-page__cell-total {
    font-size: 16px;
    line-height: 19px;
  }
}

.cart-page__delete-btn {
  color: #938b8c;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 20px;
  display: flex;
}

.cart-page__delete-btn svg {
  width: 15px;
  height: 15px;
}

.cart-page__delete-btn:hover svg {
  fill: #0ac0dd;
}

.cart-page__btns-left {
  margin-bottom: 12px;
}

@media (width >= 1200px) {
  .cart-page__btns-left {
    width: 323px;
    margin-bottom: 0;
  }
}

.cart-page__btns-wrap {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 40px;
  padding: 30px 0;
}

@media (width >= 1200px) {
  .cart-page__btns-wrap .btn {
    width: calc(50% - 6px);
  }

  .cart-page__btns-wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .cart-page__btns-right {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 335px;
    display: flex;
  }

  .cart-page__btns-right .btn:last-child {
    margin-left: 12px;
  }
}

.cart-page .cart-page__sub-table td, .cart-page .cart-page__sub-table th {
  vertical-align: middle;
  padding: 17px 15px;
}

@media (width >= 1200px) {
  .cart-page .cart-page__sub-table td, .cart-page .cart-page__sub-table th {
    padding: 17px 25px;
  }
}

.cart-page__btn {
  background: #ffc439;
  width: 100%;
  height: 100%;
  display: block;
}

@media (width >= 1200px) {
  .cart-page__bottom {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }
}

@media (width >= 768px) {
  .cart-page__cards {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
}

@media (width >= 1200px) {
  .cart-page__cards {
    width: calc(100% - 720px);
    margin-right: 12px;
  }
}

@media (width >= 768px) {
  .cart-page__cards .card {
    width: calc(50% - 6px);
  }
}

@media (width >= 1200px) {
  .cart-page__sub-table-wrap {
    width: 700px;
  }
}

@media (width >= 768px) {
  .cart-page__dics-form {
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    display: flex;
  }
}

.cart-page__empty-cart {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cart-page__empty-cart {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.cart-page__empty-cart {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .cart-page__empty-cart {
    margin-top: 100px;
  }
}

#n-checkout .breadcrumbs__list {
  cursor: pointer;
}

#n-checkout .select, #n-checkout .input, #n-checkout select {
  border: 1px solid #d9d9d9;
  border-radius: 0;
  outline: none;
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  font-size: 16px;
}

@media (width >= 1200px) {
  #n-checkout .select, #n-checkout .input, #n-checkout select {
    height: 45px;
    font-size: 18px;
  }
}

#n-checkout .select, #n-checkout select {
  color: var(--dark-grey-for-text);
}

#n-checkout .radio-label {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 7px 0 0;
  display: flex;
}

#n-checkout .radio-label input {
  margin: 0 5px 0 0;
}

#n-checkout .input {
  color: #0e1215;
  text-align: center;
}

#n-checkout .label {
  text-transform: capitalize;
  margin: 0 0 13px;
  font-size: 16px;
}

#n-checkout .btn-success {
  height: 50px;
  font-size: 22px;
  font-weight: 500;
}

@media (width >= 1200px) {
  #n-checkout .btn-success {
    font-size: 24px;
  }
}

#n-checkout .btn-outline-secondary {
  color: #938b8c;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

#n-checkout .btn-outline-secondary:hover {
  background-color: #ffffff80;
}

@media (width >= 1200px) {
  #n-checkout .btn-outline-secondary {
    height: 50px;
    font-size: 18px;
  }
}

#n-checkout .btn-outline-secondary .fa-reply {
  color: #d9d9d9;
}

#n-checkout .btn-primary {
  color: #fff;
  background-color: #938b8c;
  border: 1px solid #938b8c;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

#n-checkout .btn-primary:hover {
  background-color: #938b8cd9;
}

@media (width >= 1200px) {
  #n-checkout .btn-primary {
    height: 50px;
    font-size: 18px;
  }
}

#n-checkout .cart__table-qty-input-wrap {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 45px;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

@media (width >= 1200px) {
  #n-checkout .cart__table-qty-input-wrap {
    height: 55px;
    padding: 10px;
    font-size: 16px;
  }
}

#n-checkout .cart__table-qty-input-wrap .cart__table__icon--minus {
  border-right: 1px solid #d9d9d9;
  padding-right: 5px;
}

@media (width >= 1200px) {
  #n-checkout .cart__table-qty-input-wrap .cart__table__icon--minus {
    padding-right: 10px;
  }
}

#n-checkout .cart__table-qty-input-wrap .cart__table__icon--plus {
  border-left: 1px solid #d9d9d9;
  padding-left: 5px;
}

@media (width >= 1200px) {
  #n-checkout .cart__table-qty-input-wrap .cart__table__icon--plus {
    padding-left: 10px;
  }
}

#n-checkout .cart__table-qty-input-wrap .cart__table-icon {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

@media (width >= 1200px) {
  #n-checkout .cart__table-qty-input-wrap .cart__table-icon {
    font-size: 20px;
  }
}

.menu-popup, .filter-popup {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  background-color: #fff;
  width: 80%;
  height: 100%;
  transition: opacity .2s ease-in-out, z-index .2s ease-in-out, visibility .2s ease-in-out, transform .2s ease-in-out;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 768px) {
  .menu-popup, .filter-popup {
    width: 300px;
  }
}

@media (width >= 1200px) {
  .menu-popup, .filter-popup {
    width: 560px;
  }
}

.menu-popup.init, .filter-popup.init {
  display: block;
}

.menu-popup.activeClass, .filter-popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: translateX(0);
}

.menu-popup .popup__header, .filter-popup .popup__header {
  border-bottom: 1px solid var(--grey-for-lines);
}

@media (width >= 1200px) {
  .menu-popup .popup__header, .filter-popup .popup__header {
    padding-left: 75px;
  }
}

.menu-popup .popup__content, .filter-popup .popup__content {
  position: relative;
}

@media (width >= 1200px) {
  .menu-popup .popup__content, .filter-popup .popup__content {
    padding: 0 50px;
  }
}

.search-popup {
  background-color: #fff;
  width: 100%;
  top: 0;
  box-shadow: 0 4px 4px #00000040;
}

.search-popup .popup__close {
  position: absolute;
  top: 5px;
  right: 15px;
}

.search-popup .popup__content {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .search-popup .popup__content {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.search-popup .popup__content {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  display: flex;
}

.search-popup .header__search {
  width: 100%;
}

.search-popup .header__input {
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  outline: none;
  width: 100%;
  height: 40px;
  padding-left: 35px;
}

.search-popup .header__input::placeholder {
  color: #938b8c;
  font-size: 14px;
  font-weight: 400;
}

.search-popup .header-search__btn {
  background-color: #0000;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.search-popup .header-search__btn svg {
  fill: #938b8c;
  width: 15px;
  height: 15px;
}

.search_loading_icon {
  display: none;
  position: absolute;
  left: 0;
  transform: translateX(-100%);
}

.nsearchinput-pl .title {
  color: #0e1215;
  font-size: 14px;
  font-style: normal;
  font-weight: 400 !important;
}

.nsearchinput-pl .title b {
  margin-right: 5px;
  font-weight: 400 !important;
}

.nsearchinput-pl.well {
  background-color: #fff;
  max-width: 90%;
  height: 480px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 0 5px #00000040;
  margin-top: 40px !important;
}

@media (width >= 1200px) {
  .nsearchinput-pl.well {
    max-width: 100%;
    margin-top: 50px !important;
  }
}

.nsearchinput-pl.well .nav-list {
  margin: 0;
  padding: 0;
}

.nsearchinput-pl.well li {
  height: 50px;
  margin: 0 15px;
  padding: 0;
  list-style: none;
}

.nsearchinput-pl.well li:hover {
  background: #f6f6f6;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.nsearchinput-pl.well li:hover .title {
  color: #0ac0dd;
}

.nsearchinput-pl.well a {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  height: 100%;
  line-height: normal;
  text-decoration: none;
  display: flex;
}

.nsearchinput-pl.well a img {
  width: 30px;
  height: 30px;
}

.user-popup {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  background-color: #fff;
  width: 80%;
  transition: opacity .2s ease-in-out, z-index .2s ease-in-out, visibility .2s ease-in-out, transform .2s ease-in-out;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 768px) {
  .user-popup {
    width: 300px;
  }
}

@media (width >= 1200px) {
  .user-popup {
    width: 190px;
    margin-right: 135px;
    position: fixed;
    right: auto;
    transform: translateY(145px);
  }

  .user-popup.activeScroll {
    transform: translateY(80px);
  }
}

.user-popup.init {
  display: block;
}

.user-popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: translateX(0);
}

@media (width >= 1200px) {
  .user-popup.activeClass {
    margin-right: 135px;
    right: auto;
    transform: translateY(130px);
  }

  .user-popup.activeClass.activeScroll {
    transform: translateY(70px);
  }
}

.user-popup .popup__header {
  border-bottom: 1px solid var(--grey-for-lines);
}

@media (width >= 1200px) {
  .user-popup .popup__header {
    display: none;
  }
}

.user-popup .account-details {
  margin: 0;
  padding: 0;
}

.user-popup .dropdown-link {
  color: #938b8c;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  height: 100%;
  margin: 0 15px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

@media (width >= 1200px) {
  .user-popup .dropdown-link {
    font-size: 14px;
  }
}

.user-popup li {
  height: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.user-popup li:hover .dropdown-link {
  color: #0ac0dd;
  background-color: #f6f6f6;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.cart-popup {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  background-color: #fff;
  width: 80%;
  transition: opacity .2s ease-in-out, z-index .2s ease-in-out, visibility .2s ease-in-out, transform .2s ease-in-out;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 768px) {
  .cart-popup {
    width: 300px;
  }
}

@media (width >= 1200px) {
  .cart-popup {
    width: 260px;
    margin-right: 25px;
    position: fixed;
    right: auto;
    transform: translateY(145px);
  }

  .cart-popup.activeScroll {
    transform: translateY(80px);
  }
}

.cart-popup.init {
  display: block;
}

.cart-popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: translateX(0);
}

@media (width >= 1200px) {
  .cart-popup.activeClass {
    margin-right: 25px;
    right: auto;
    transform: translateY(130px);
  }

  .cart-popup.activeClass.activeScroll {
    transform: translateY(70px);
  }

  .cart-popup .popup__header {
    display: none;
  }
}

.cart-popup .popup__content {
  padding: 0 15px 15px;
}

.cart-popup .cart-empty {
  margin: 0;
  padding: 15px 0 0;
  font-size: 14px;
  font-weight: 400;
}

.cart-popup .order-summary svg {
  width: 15px;
  height: 15px;
}

.cart-popup .order-summary ul {
  margin: 0;
  padding: 0;
}

.cart-popup .order-summary__top {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  display: flex;
}

.cart-popup .order-summary__top .cost-summary__title {
  font-size: 15px;
  font-weight: 400;
}

.cart-popup .order-summary-product {
  border-bottom: 1px solid var(--grey-for-lines);
  background: #f6f6f6;
  border-bottom: 1px solid #d9d9d9;
  margin: 0;
  padding: 25px 15px;
  list-style: none;
}

.cart-popup .order-summary-product:first-child {
  border-top: 1px solid #d9d9d9;
}

.cart-popup .cost-summary {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 30px;
  display: flex;
}

.cart-popup .cost-summary .cost-summary__title {
  color: #0e1215;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  display: flex;
}

@media (width >= 1200px) {
  .cart-popup .cost-summary .cost-summary__title {
    font-size: 13px;
  }
}

.cart-popup .cost-summary b {
  color: #0e1215;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

@media (width >= 1200px) {
  .cart-popup .cost-summary b {
    font-size: 13px;
  }
}

.cart-popup .order-summary-product__wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  display: flex;
  position: relative;
}

.cart-popup .order-summary-product__wrap .product-image {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  order: 2;
  width: 60px;
  height: auto;
  margin: 0 !important;
}

.cart-popup .order-summary-product__wrap .product-title {
  width: 100%;
}

.cart-popup .order-summary-product__wrap .product-title--inner {
  color: #0e1215;
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  display: block;
}

.cart-popup .order-summary-product__wrap .product-title--inner b {
  color: #0e1215;
  font-weight: 500;
}

.cart-popup .order-summary-product__wrap .price {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  display: flex;
  padding-top: 60px !important;
}

.cart-popup .order-summary-product__wrap .close-btn {
  position: absolute;
  right: 0;
}

.cart-popup .order-summary-product__wrap .close-btn svg {
  fill: #938b8c;
  width: 13px;
  height: 13px;
}

.cart-popup .button-summary {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.cart-popup .order-summary__scrollable {
  max-height: 380px;
  overflow-y: auto;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  pointer-events: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
}

.splide__pagination li {
  pointer-events: auto;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  display: inline-block;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  contain: strict;
  border: 2px solid #999;
  border-left-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: 1s linear infinite splide-loading;
  display: inline-block;
  position: absolute;
  inset: 0;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}

.splide__arrow:disabled {
  opacity: .3;
}

.splide__arrow:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__pagination {
  z-index: 1;
  padding: 0 1em;
  position: absolute;
  bottom: .5em;
  left: 0;
  right: 0;
}

.splide__pagination__page {
  opacity: .7;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  display: inline-block;
  position: relative;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__pagination__page:focus-visible, .splide.is-focus-in .splide__pagination__page:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: #0000;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible, .splide.is-focus-in .splide__toggle:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid #0000;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  flex-direction: column;
  padding: 1em 0;
  display: flex;
  inset: 0 .5em 0 auto;
}
/*# sourceMappingURL=main.css.map */
