@import "https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap";
* {
  box-sizing: border-box;
}

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

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

html body {
  overscroll-behavior: none;
  margin: 0;
  font-family: Libre Baskerville, serif;
  line-height: 1.5;
  display: block;
  position: relative;
}

html a {
  color: #08090a;
  text-decoration: none;
}

html a:hover {
  text-decoration: none;
}

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

.loader {
  animation: 2s linear infinite spin;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

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

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

@media (width >= 480px) {
  .max-width-sm {
    padding: 0 30px;
  }
}

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

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

@media (width >= 480px) {
  .max-width-md {
    padding: 0 30px;
  }
}

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

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

@media (width >= 480px) {
  .max-width-lg {
    padding: 0 30px;
  }
}

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

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

@media (width >= 480px) {
  .max-width-xl {
    padding: 0 30px;
  }
}

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

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

@media (width >= 480px) {
  .max-width-full {
    padding: 0 30px;
  }
}

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

.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: #bc2041 !important;
}

.text-white {
  color: #fff;
}

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

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

.text-black {
  color: #08090a !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: block !important;
  }

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

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

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

.section-margin-bg {
  margin-top: 90px;
}

@media (width >= 1200px) {
  .section-margin-bg {
    margin-top: 140px;
  }
}

.section-margin {
  margin: 0 0 30px;
}

.section-margin--no-readmore {
  margin: 0 0 50px;
}

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

.jsDropdownWrap {
  position: relative;
}

.jsDropdownTrigger {
  cursor: pointer;
}

.dropdown {
  background-color: var(--gd-white-dark);
  opacity: 0;
  visibility: hidden;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
  margin: 0;
  padding: 8px;
  list-style: none;
  transition: bottom .4s ease-in-out, opacity .4s ease-in-out, visibility .4s ease-in-out;
  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 {
  transition: background-color .4s ease-in-out ease-in-out;
  min-width: max-content;
  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 >= 480px) {
  .popups {
    padding: 0 30px;
  }
}

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

.popup {
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  background-color: #f8f8f8;
  width: 100%;
  height: 100%;
  transition: all .4s ease-in-out;
  display: none;
  position: fixed;
  top: 0;
  transform: translateY(-100%);
}

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

.popup.init {
  display: block;
}

.popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: translateY(0);
}

.popup--search {
  transform: translateY(-100%);
}

.popup--search.activeClass {
  transform: translateY(0);
}

@media (width >= 480px) {
  .popup {
    width: 375px;
  }
}

@media (width >= 1200px) {
  .popup--user {
    border-top: 1px solid #00f;
    border-bottom: 1px solid #00f;
    width: 190px;
    height: max-content;
    margin-right: 265px;
    position: absolute;
    right: auto;
    transform: translateY(114px);
    box-shadow: 0 4px 4px #00000040;
  }

  .popup--user.activeClass {
    right: auto;
    transform: translateY(114px);
  }

  .popup--user .popup__content {
    margin: 0;
  }

  .popup--user-sticky {
    position: fixed;
  }

  .popup--user-sticky.activeScroll {
    transform: translateY(61px);
  }

  .popup--cart {
    border-top: 1px solid #00f;
    border-bottom: 1px solid #00f;
    width: 340px;
    height: max-content;
    position: absolute;
    right: auto;
    transform: translateY(110px);
    box-shadow: 0 4px 4px #00000040;
  }

  .popup--cart.activeClass {
    right: auto;
    transform: translateY(112px);
  }

  .popup--cart .popup__content {
    margin: 0;
    padding: 25px;
  }

  .popup--cart-sticky {
    position: fixed;
  }

  .popup--cart-sticky.activeScroll {
    transform: translateY(61px);
  }
}

.popup--filter {
  background-color: #fff;
}

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

@media (width >= 480px) {
  .popup__header {
    padding: 0 20px 0 15px;
  }
}

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

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

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

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

@media (width >= 1200px) {
  .popup__title-wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
    display: flex;
  }
}

.popup__close-wrap {
  cursor: pointer;
  background-color: #fff;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  display: flex;
}

.popup__close-wrap svg {
  fill: #00f;
  width: 20px;
  height: 20px;
}

.popup__text {
  color: #00f;
  font-size: 20px;
  font-weight: 500;
}

.popup__cart-wrap {
  border: 1.5px solid #08090a;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
}

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

.popup__cart-wrap svg {
  cursor: pointer;
  fill: #fff;
  width: 25px;
  height: 25px;
}

.popup__cart-total {
  color: #fff;
  background-color: #00f;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 5px;
  right: -5px;
  transform: translateY(-50%);
}

.popup__content {
  margin-top: 20px;
  padding: 0 15px;
  position: relative;
}

.overlay {
  opacity: 0;
  transition: .4s ease-in-out ease-in-out opacity;
  visibility: hidden;
  z-index: -1;
  background-color: #08090a;
  width: 100vw;
  height: 150vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

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

.main-btn {
  color: #08090a;
  cursor: pointer;
  text-transform: uppercase;
  transition: .4s ease-in-out 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;
}

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

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

  .main-btn svg {
    fill: #08090a;
    width: 15px;
    height: 15px;
  }
}

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

.main-btn--blue {
  color: #fff;
  text-transform: capitalize;
  background-color: #00f;
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 45px;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.main-btn--blue:hover {
  color: #fff;
  background-color: #0202c5;
}

.main-btn--black {
  color: #fff;
  text-transform: capitalize;
  background-color: #08090a;
  border: 1px solid #08090a;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 45px;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.main-btn--black:hover {
  color: #fff;
  background-color: #08090a;
}

.main-btn--cart {
  color: #08090a;
  text-transform: capitalize;
  background-color: #0000;
  border: 1px solid #08090a;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  margin-top: 30px;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
}

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

.main-btn--cart:hover {
  color: #fff;
  background-color: #08090a;
}

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

.main-btn--cart-login {
  color: #08090a;
  border: 1px solid #08090a;
}

.main-btn--cart-login:hover {
  color: #fff;
  background-color: #08090a;
}

.main-btn--view-cart {
  border: 1px solid #08090a;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.main-btn--view-cart:hover {
  color: #fff;
  background-color: #00f;
  border: 1px solid #00f;
}

.main-btn--checkout {
  color: #fff;
  background-color: #00f;
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 40px;
  margin-top: 12px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.main-btn--checkout svg {
  fill: #fff;
  width: 10px;
  height: 10px;
}

.main-btn--checkout:hover {
  background-color: #0202c5;
  border: 1px solid #0202c5;
}

.main-btn--check {
  text-transform: capitalize;
  background-color: #d9d9d9;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.main-btn--check:hover {
  background-color: #00f;
  border: 1px solid #00f;
}

.main-btn--gray {
  text-transform: capitalize;
  border: 1px solid #d9d9d9;
  gap: 8px;
  height: 55px;
  margin-top: 25px;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
}

.main-btn--gray:hover {
  background-color: #d9d9d9;
}

.main-btn--gray i {
  font-size: 16px;
}

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

.main-btn--cart-checkout {
  color: #fff;
  background-color: #00f;
  border: 1px solid #00f;
  border-radius: 3px;
  gap: 8px;
  height: 55px;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize !important;
  padding: 0 !important;
}

.main-btn--cart-checkout svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}

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

.main-btn--cart-checkout:hover {
  background-color: #0202c5;
}

.main-btn--clear-filters {
  color: #797d86;
  text-transform: capitalize;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 400;
}

.main-btn--clear-filters svg {
  fill: #797d86;
  height: 10px;
}

.main-btn--clear-filters:hover {
  color: #00f;
}

.main-btn--clear-filters:hover svg {
  fill: #00f;
}

.main-btn--transperent {
  text-transform: capitalize;
  background-color: #0000;
  border: none;
  font-size: 18px;
  font-weight: 600;
}

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

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

.main-btn--prod-cart:hover {
  color: #fff;
  background-color: #0202c5;
}

.hero .splide__pagination {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  display: flex;
  bottom: 60px;
}

@media (width >= 480px) {
  .hero .splide__pagination {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .hero .splide__pagination {
    max-width: 1645px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

@media (width >= 480px) {
  .hero .splide__pagination {
    bottom: 80px;
  }
}

@media (width >= 1200px) {
  .hero .splide__pagination {
    bottom: 140px;
  }
}

.hero .splide__pagination__page {
  opacity: 1;
  background-color: #fff;
  border-radius: 0;
  width: 50px;
  height: 2px;
  margin: 0;
  position: relative;
}

.hero .splide__pagination__page span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hero .splide__pagination__page.is-active {
  background-color: #00f;
  width: 50px;
  height: 4px;
  transform: scale(1);
}

.hero .splide__pagination__page.is-active span {
  color: #00f;
  font-size: 22px;
  font-weight: 600;
}

.hero .splide__arrow {
  background-color: #0000;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
  top: 100%;
  transform: translateY(0);
}

.hero .splide__arrow svg {
  fill: #00f;
  width: 20px;
  height: 20px;
}

@media (width >= 1200px) {
  .hero .splide__arrow {
    top: calc(100% - 140px);
  }
}

.categories .splide__arrow, .products-list .splide__arrow, .blogs .splide__arrow {
  background-color: #f8f8f8;
  border-radius: 0 3px 3px 0;
  width: 35px;
  height: 35px;
}

@media (width >= 1200px) {
  .categories .splide__arrow, .products-list .splide__arrow, .blogs .splide__arrow {
    width: 45px;
    height: 45px;
  }
}

.categories .splide__arrow svg, .products-list .splide__arrow svg, .blogs .splide__arrow svg {
  fill: #00f;
}

.categories .splide__arrow--prev, .products-list .splide__arrow--prev, .blogs .splide__arrow--prev {
  top: -65px;
  left: auto;
  right: 35px;
}

@media (width >= 1200px) {
  .categories .splide__arrow--prev, .products-list .splide__arrow--prev, .blogs .splide__arrow--prev {
    right: 45px;
  }
}

.categories .splide__arrow--next, .products-list .splide__arrow--next, .blogs .splide__arrow--next {
  top: -65px;
  right: 0;
}

.trophies-list .splide__arrow, .blog-slider .splide__arrow {
  background-color: #f8f8f8;
  border-radius: 0 3px 3px 0;
  width: 35px;
  height: 35px;
}

@media (width >= 1200px) {
  .trophies-list .splide__arrow, .blog-slider .splide__arrow {
    width: 45px;
    height: 45px;
  }
}

.trophies-list .splide__arrow svg, .blog-slider .splide__arrow svg {
  fill: #00f;
}

.trophies-list .splide__arrow--prev, .blog-slider .splide__arrow--prev {
  top: -65px;
  left: auto;
  right: 35px;
}

@media (width >= 1200px) {
  .trophies-list .splide__arrow--prev, .blog-slider .splide__arrow--prev {
    right: 45px;
  }
}

.trophies-list .splide__arrow--next, .blog-slider .splide__arrow--next {
  top: -65px;
  right: 0;
}

.trophies-list .splide__pagination, .blog-slider .splide__pagination {
  padding: 0;
  display: flex;
  bottom: -40px;
}

.trophies-list .splide__pagination li, .blog-slider .splide__pagination li {
  flex: 1 1 0;
}

.trophies-list .splide__pagination .splide__pagination__page, .blog-slider .splide__pagination .splide__pagination__page {
  background-color: #d9d9d9;
  border-radius: 0;
  width: 100%;
  height: 3px;
}

.trophies-list .splide__pagination .splide__pagination__page.is-active, .blog-slider .splide__pagination .splide__pagination__page.is-active {
  background-color: #00c2ff;
  height: 3px;
  transform: none;
}

.testimonials .splide__arrow {
  background-color: #f8f8f8;
  border-radius: 0 3px 3px 0;
  width: 35px;
  height: 35px;
}

@media (width >= 1200px) {
  .testimonials .splide__arrow {
    width: 45px;
    height: 45px;
  }
}

.testimonials .splide__arrow svg {
  fill: #00f;
}

.testimonials .splide__arrow--prev {
  top: -120px;
  left: auto;
  right: 35px;
}

@media (width >= 1200px) {
  .testimonials .splide__arrow--prev {
    top: 45px;
    right: 65px;
  }
}

.testimonials .splide__arrow--next {
  top: -120px;
  right: 0;
}

@media (width >= 1200px) {
  .testimonials .splide__arrow--next {
    top: 45px;
    right: 25px;
  }
}

.sub-categories .splide__arrow, .product__images .splide__arrow {
  background-color: #f8f8f8;
  border-radius: 0 3px 3px 0;
  width: 35px;
  height: 35px;
}

@media (width >= 1200px) {
  .sub-categories .splide__arrow, .product__images .splide__arrow {
    width: 45px;
    height: 45px;
  }
}

.sub-categories .splide__arrow svg, .product__images .splide__arrow svg {
  fill: #00f;
}

.products-list--more-cats .splide__arrow--prev {
  top: -85px;
}

@media (width >= 480px) {
  .products-list--more-cats .splide__arrow--prev {
    top: -65px;
  }
}

.products-list--more-cats .splide__arrow--next {
  top: -85px;
}

@media (width >= 480px) {
  .products-list--more-cats .splide__arrow--next {
    top: -65px;
  }
}

.read-more {
  max-height: 220px;
  transition: all .4s ease-in-out;
  overflow: hidden;
}

.read-more--single-sku {
  max-height: 100px;
}

.readmore__btn-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  display: flex;
}

.readmore__btn-wrap svg {
  fill: #00f;
  width: 15px;
  height: 15px;
}

.read-more__btn {
  color: #00f;
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.breadcrumbs {
  width: 100%;
  padding: 20px 0;
}

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

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

@media (width >= 1200px) {
  .breadcrumbs__nav {
    max-width: 1645px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

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

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

.breadcrumbs__link:hover {
  text-transform: none;
}

.breadcrumbs__link--home {
  color: #00f;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  display: flex;
}

.breadcrumbs__link--home svg {
  fill: #00f !important;
  width: 20px !important;
  height: 20px !important;
}

.breadcrumbs__list-item {
  letter-spacing: 0;
  margin-right: 6px;
  font-size: 14px;
}

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

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

.breadcrumbs__list-item:nth-last-child(2) .breadcrumbs__link {
  color: var(--dark-grey-for-text);
  pointer-events: none;
}

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

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

#n-category .breadcrumbs__list {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

#n-category .breadcrumbs__list-item svg {
  fill: #fff;
}

#n-category .breadcrumbs__link {
  color: #fff;
}

#n-category .breadcrumbs__link--home {
  color: #00f;
}

#n-product .breadcrumbs {
  padding: 10px 0 20px;
}

.main__wrap--sticky {
  margin-top: 151px;
}

@media (width >= 480px) {
  .main__wrap--sticky {
    margin-top: 170px;
  }
}

@media (width >= 1200px) {
  .main__wrap--sticky {
    margin-top: 275px;
  }
}

.section-title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 28px;
  font-weight: 500;
  display: block;
  position: relative;
}

.section-title span {
  color: #00f;
}

.section-title svg {
  stroke: #08090a;
  stroke-width: 1.5px;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
}

@media (width >= 1200px) {
  .section-title svg {
    width: 30px;
    height: 30px;
  }

  .section-title {
    font-size: 32px;
  }
}

.section-title--account {
  margin: 50px 0;
}

.section-title--more-cats {
  margin-right: 100px;
}

@media (width >= 480px) {
  .section-title--more-cats {
    margin-right: 0;
  }
}

.section-title--blog-name {
  text-align: center;
  margin: 80px 0 100px;
}

.section-text h1, .section-text h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .section-text h1, .section-text h2 {
    font-size: 32px;
  }
}

.section-text p {
  font-size: 16px;
  font-weight: 400;
}

.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: #08090a;
  background-color: #0000;
  border: 1px solid #d9d9d9;
  font-weight: 500;
  font-size: 14px !important;
}

.npopup-body .btn:hover {
  background-color: #d9d9d9;
}

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

.npopup-body .right .btn:before {
  content: "";
  margin-top: -3px;
  margin-right: 6px;
  font-family: "Font Awesome 5 Pro";
}

.npopup-body .right .btn:hover {
  background-color: #0202c5;
}

.cart-page__empty {
  width: 100%;
  padding: 0 15px;
  margin: 50px auto !important;
}

@media (width >= 480px) {
  .cart-page__empty {
    padding: 0 30px;
  }
}

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

.cart-page__empty .col-12 {
  margin: 0;
  padding: 0;
}

.cart-page__empty .btn {
  background-color: #00f;
  border: none;
  border-radius: 3px;
}

.cart-page__empty .btn:hover {
  background-color: #0202c5;
}

#n-checkout .btn-success {
  background-color: #00f;
  border: 1px solid #00f;
  border-radius: 3px;
}

#n-checkout .btn-success:hover {
  background-color: #0202c5;
  border: 1px solid #0202c5;
}

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

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

@media (width >= 480px) {
  #n-customer_account .main__wrap, #n-customer .main__wrap {
    padding: 0 30px;
  }
}

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

#n-customer_account .main__wrap--sticky, #n-customer .main__wrap--sticky {
  margin-top: 161px;
}

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

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

#n-customer_account h1, #n-customer h1 {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 28px;
  font-weight: 500;
  display: block;
  position: relative;
}

#n-customer_account h1 span, #n-customer h1 span {
  color: #00f;
}

#n-customer_account h1 svg, #n-customer h1 svg {
  stroke: #00f;
  stroke-width: 1.5px;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
}

@media (width >= 1200px) {
  #n-customer_account h1 svg, #n-customer h1 svg {
    width: 30px;
    height: 30px;
  }

  #n-customer_account h1, #n-customer h1 {
    font-size: 32px;
  }
}

#n-customer_account .btn, #n-customer .btn {
  background-color: #00f;
  border: 1px solid #00f;
  border-radius: 3px;
  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: #0202c5;
  border: 1px solid #0202c5;
}

#n-customer_account .btn-outline-secondary, #n-customer .btn-outline-secondary {
  color: #08090a;
  background-color: #0000;
  border: 1px solid #00f;
}

#n-customer_account .btn-outline-secondary:hover, #n-customer .btn-outline-secondary:hover {
  color: #fff;
  background-color: #00f;
}

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

#n-content .main__wrap h1 {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 28px;
  font-weight: 500;
  display: block;
  position: relative;
}

#n-content .main__wrap h1 span {
  color: #00f;
}

#n-content .main__wrap h1 svg {
  stroke: #00f;
  stroke-width: 1.5px;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
}

@media (width >= 1200px) {
  #n-content .main__wrap h1 svg {
    width: 30px;
    height: 30px;
  }

  #n-content .main__wrap h1 {
    font-size: 32px;
  }
}

@media (width >= 480px) {
  #n-content .main__wrap {
    padding: 0 30px;
  }
}

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

#n-content .main__wrap .breadcrumbs__list-item, #n-content .main__wrap .breadcrumbs__link {
  color: #08090a;
}

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

#n-content .main__wrap .btn {
  background-color: #00f;
  border: 1px solid #00f;
  border-radius: 3px;
  outline: none;
}

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

#n-content .main__wrap--sticky {
  margin-top: 161px;
}

@media (width >= 480px) {
  #n-content .main__wrap--sticky {
    margin-top: 180px;
  }
}

@media (width >= 1200px) {
  #n-content .main__wrap--sticky {
    margin-top: 285px;
  }
}

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

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

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

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

.upsell-page .main-btn:hover {
  color: #fff;
}

.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;
  }
}

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

@media (width >= 480px) {
  .checkout-empty-cart {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .checkout-empty-cart {
    max-width: 1645px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

.checkout-empty-cart .btn {
  color: #fff;
  background-color: #00f;
  border: 1px solid #00f;
  outline: none;
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .checkout-empty-cart .btn {
    font-size: 24px;
  }
}

.checkout-empty-cart .btn:hover, .checkout-empty-cart .btn:focus-within {
  color: #fff;
  background-color: #0202c5;
  border: 1px solid #0202c5;
}

.account-box .card {
  background-color: #f8f8f8;
  border: none;
  padding: 15px !important;
}

.account-box .card-header {
  border: none;
  font-size: 20px;
  font-weight: 400;
  background-color: #f8f8f8 !important;
}

@media (width >= 1200px) {
  .account-box .card-header {
    font-size: 25px;
  }
}

.account-box label {
  font-size: 15px;
  font-weight: 300;
}

.account-box label s {
  color: #00f;
  text-decoration: none;
}

.account-box .form-text {
  color: #797d86;
  font-size: 12px;
  font-weight: 300;
}

.account-box .form-text i {
  color: #00f;
}

.account-box .form-control {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  height: 45px;
}

.account-box .btn {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

.account-box .btn svg {
  fill: #fff;
  stroke-width: 1px;
  width: 15px;
  height: 15px;
}

.product-box {
  background-color: #f8f8f8;
  padding: 15px;
  position: relative;
}

@media (width >= 1200px) {
  .product-box {
    padding: 25px;
  }
}

.products-box__img {
  mix-blend-mode: multiply;
  border: 1px solid #08090a;
  border-radius: 3px;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

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

.products-box__img video {
  opacity: 0;
  visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.products-box__img:hover video {
  opacity: 1;
  visibility: visible;
}

.product-box__info {
  padding-top: 15px;
}

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

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

.product-box__color-variations {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 15px;
  display: flex;
}

.product-box__color-variations .nSwatch {
  border: 1px solid #08090a;
  border-radius: 3px;
  width: 15px;
  height: 15px;
}

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

.product-box__rating svg {
  fill: #00c2ff;
  width: 12px;
  height: 12px;
}

.product-box__title {
  color: #08090a;
  width: 100%;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

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

.product-box__title:hover {
  color: #08090a;
}

.product-box__sizes {
  color: #08090a;
  padding-top: 5px;
  font-size: 13px;
  font-weight: 400;
}

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

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

@media (width >= 1200px) {
  .product-box__price {
    gap: 8px;
  }
}

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

@media (width >= 480px) {
  .product-box__price .price {
    font-size: 20px;
  }
}

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

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

.product-box__price .price--red {
  color: #08090a;
}

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

.product-box__badges {
  z-index: 1;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
}

@media (width >= 1200px) {
  .product-box__badges {
    top: 40px;
    right: 40px;
  }
}

.product-box__badges .badge {
  color: #00c2ff;
  font-size: 11px;
  font-weight: 400;
  position: relative;
}

.product-box__badges .badge--perc-off {
  color: #fff;
  background-color: #08090a;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.product-box__badges .badge svg {
  fill: #0000;
  stroke: #00c2ff;
  stroke-width: 1px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#n-category .main-btn--cart {
  font-size: 14px;
}

@media (width >= 1200px) {
  #n-category .main-btn--cart {
    font-size: 16px;
  }
}

#n-category .product-box {
  padding: 20px 7px;
}

@media (width >= 1200px) {
  #n-category .product-box {
    padding: 25px 20px;
  }
}

.nactivity {
  display: none !important;
}

.top {
  background-color: #f8f8f8;
  border-bottom: 1px solid #08090a;
}

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

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

.top__text-wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 30px;
  display: flex;
}

@media (width >= 480px) {
  .top__text-wrap {
    height: 45px;
  }
}

.top__text {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

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

.top__link {
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
}

.top__link:hover {
  color: #00f;
  text-decoration: underline;
}

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

.top__img {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
}

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

.top__tel {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

.top__tel svg {
  width: 15px;
  height: 15px;
}

.top__menu {
  margin: 0;
}

.top__menu-link {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  display: flex;
}

.top__menu-link--nextlvl {
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  padding-left: 10px;
  font-size: 14px;
  display: flex;
}

.top__menu-link--nextlvl:hover {
  color: #00f;
  background-color: #d9d9d9;
}

.top__right-links {
  display: none;
}

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

.top__menu-icon {
  fill: #0000;
  stroke: #08090a;
  stroke-width: .5px;
  width: 15px;
  height: 15px;
}

.top__menu-drop-icon {
  width: 10px;
  height: 10px;
}

.top__menu-dropdown {
  z-index: 6;
  background-color: #f8f8f8;
  border-top: 1px solid #00f;
  border-bottom: 1px solid #00f;
  width: 190px;
  height: max-content;
  margin: 0;
  padding: 10px 15px;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 4px #00000040;
}

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

.top__menu-item--nextlvl {
  position: relative;
}

.top__menu-item--nextlvl:hover .top__menu-dropdown {
  display: block !important;
}

.top__menu-item--nextlvl:hover .top__menu-drop-icon {
  transform: rotate(180deg);
}

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

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

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

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

.header-main__icon {
  cursor: pointer;
}

@media (width >= 1200px) {
  .header-main__icon {
    height: 50%;
  }
}

.header-main__icon svg {
  fill: #08090a;
  width: 25px;
  height: 25px;
}

.header-main__icon--search svg {
  fill: #0000;
  stroke: #00f;
  stroke-width: 1.8px;
}

.header-main__icon--heart {
  display: none;
}

@media (width >= 1200px) {
  .header-main__icon--heart {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    display: flex;
  }
}

.header-main__icon--heart svg {
  fill: #0000;
  stroke: #08090a;
  stroke-width: 1.7px;
}

@media (width >= 1200px) {
  .header-main__icon--user {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    display: flex;
  }
}

.header-main__icon--user svg {
  width: 22px;
  height: 22px;
}

.header-main__icon--user-desk {
  display: none;
}

@media (width >= 1200px) {
  .header-main__icon--user-desk {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    display: flex;
  }
}

.header-main__icon--cart {
  border-left: 1px solid #08090a;
  padding-left: 15px;
  position: relative;
}

@media (width >= 1200px) {
  .header-main__icon--cart {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    padding-left: 30px;
    display: flex;
  }
}

.header-main__icon--cart svg {
  stroke: #08090a;
  stroke-width: .2px;
}

.header-main__icon--cart-desk {
  display: none;
}

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

  .header-main__icon--e-speed {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    display: flex;
  }
}

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

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

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

.header-main__right {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  display: flex;
}

@media (width >= 1200px) {
  .header-main__right {
    gap: 30px;
    height: 100%;
  }
}

.header-main__cart-count {
  color: #fff;
  background-color: #00f;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: -5px;
  right: -5px;
}

@media (width >= 1200px) {
  .header-main__cart-count {
    top: 0;
    right: -5px;
  }
}

.header-main__title {
  font-size: 18px;
  font-weight: 400;
}

.header-main__subtext {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
}

.menu__wrap, .filters__wrap {
  height: calc(100vh - 150px);
  overflow-y: auto;
}

.filters {
  opacity: 0;
  visibility: hidden;
  background-color: #f8f8f8;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out, top .3s 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;
  height: 100%;
  transition: transform .3s ease-in-out;
  display: block;
  top: 0;
  left: 0;
}

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

.filters__filter {
  border-radius: 3px;
  margin-bottom: 10px;
}

.filters__filter--lvl2, .filters__filter--lvl3 {
  margin: 0 15px 10px;
}

.filters-header {
  color: #08090a;
  cursor: pointer;
  background-color: #d9d9d9;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  height: 50px;
  margin: 0 15px 10px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

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

.filters-header svg {
  width: 15px;
  height: 15px;
}

.menu-add__icon {
  border: 1px solid #08090a;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.menu-add__icon svg {
  width: 15px;
  height: 15px;
}

.filters__title {
  color: #08090a;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

.filters__title svg {
  border: 1px solid #08090a;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  padding: 3px;
}

.filters__title:hover {
  color: #00f;
  background-color: #d9d9d9;
}

.filters__title:hover svg {
  fill: #fff;
  background-color: #00f;
  border: 1px solid #00f;
}

.filters__title--lvl2 {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  display: flex;
  position: relative;
}

.filters__title--lvl2 .filter__lines-icon {
  opacity: 0;
  stroke: #00f;
  border: none;
  width: 15px;
  height: 15px;
  padding: 0;
  position: absolute;
}

.filters__title--lvl2:hover {
  background-color: #0000;
}

.filters__title--lvl2:hover .filter__lines-icon {
  opacity: 1;
  background-color: #0000;
  border: none;
}

.filters__title--lvl2:hover span {
  padding-left: 15px;
}

.filters__title--lvl3 {
  font-size: 17px;
  font-weight: 300;
}

.filters__title--lvl3:hover {
  background-color: #0000;
}

.header-main__searchbar {
  display: none;
}

@media (width >= 1200px) {
  .header-main__searchbar {
    width: calc(100% - 915px);
    display: block;
  }
}

.header__search-form {
  margin-top: 30px;
  position: relative;
}

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

.header__input {
  background-color: #fff;
  border: 1px solid #08090a;
  border-radius: 3px;
  width: 100%;
  height: 45px;
  padding-left: 30px;
}

.header__input::placeholder {
  color: #08090a;
  font-size: 15px;
  font-weight: 300;
}

.header-search__btn {
  cursor: pointer;
  background-color: #0000;
  border: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.header-search__btn svg {
  fill: #08090a;
  width: 20px;
  height: 20px;
}

@media (width >= 1200px) {
  .header-search__btn {
    right: 15px;
  }
}

.header__search-icon {
  fill: #0000;
  stroke: #00f;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

@media (width >= 1200px) {
  .header__search-icon {
    left: 15px;
  }
}

.search_loading_icon {
  display: none !important;
}

.nsearchinput-pl .title {
  color: #08090a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500 !important;
}

.nsearchinput-pl .title b {
  margin-right: 5px;
  font-weight: 500 !important;
}

.nsearchinput-pl.well {
  scrollbar-color: #00f #f8f8f8;
  scrollbar-width: thin;
  z-index: 5;
  background-color: #f8f8f8;
  border-top: 1px solid #08090a;
  max-width: 100%;
  height: 410px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 0 4px #00000040;
  margin-top: 50px !important;
}

.nsearchinput-pl.well .nav-list {
  margin: 25px 10px;
  padding: 0;
}

.nsearchinput-pl.well li {
  height: max-content;
  margin: 0;
  padding: 15px 15px 30px;
  list-style: none;
}

.nsearchinput-pl.well li:hover {
  background-color: #d9d9d9;
}

.nsearchinput-pl.well li:hover .title {
  color: #00f;
}

.nsearchinput-pl.well a {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
  display: flex;
}

.nsearchinput-pl.well a img {
  border: 1px solid #00f;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  padding: 3px;
}

@media (width >= 1200px) {
  .nsearchinput-pl.well a img {
    width: 50px;
    height: 50px;
  }
}

.nsearchinput-pl.well a .title {
  font-size: 14px;
  font-weight: 500;
}

.nsearchinput-pl.well a:hover {
  background-color: #d9d9d9 !important;
}

.account-details {
  max-height: 650px;
  margin: 30px 0 0;
  padding: 0;
  overflow-y: auto;
}

@media (width >= 1200px) {
  .account-details {
    max-height: 100%;
    margin: 10px 0;
  }
}

.account-details li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-details .dropdown-link {
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.account-details .dropdown-link:hover {
  color: #00f;
  background-color: #d9d9d9;
}

@media (width >= 480px) {
  .account-details .dropdown-link {
    font-size: 19px;
  }
}

@media (width >= 1200px) {
  .account-details .dropdown-link {
    height: 40px;
    font-size: 14px;
  }
}

.account-details .dropdown-link:last-child {
  margin-bottom: 0;
}

.order-summary {
  margin-top: 30px;
}

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

.order-summary__cost {
  background-color: #d9d9d9;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  display: flex;
}

.cost-summary__title {
  font-size: 14px;
  font-weight: 500;
}

.order-summary__scroll {
  scrollbar-color: #00f #f8f8f8;
  scrollbar-width: thin;
  height: 300px;
  margin: 30px 0;
  padding: 0;
  overflow-y: auto;
}

@media (height <= 500px) {
  .order-summary__scroll {
    height: 120px;
  }
}

@media (height <= 600px) {
  .order-summary__scroll {
    height: 180px;
  }
}

@media (width >= 1200px) {
  .order-summary__scroll {
    height: 200px;
  }
}

.order-summary__single {
  background-color: #fff;
  flex-wrap: nowrap;
  grid-template-columns: .5fr 2fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.order-summary__single:last-child {
  margin-bottom: 0;
}

@media (width >= 1200px) {
  .order-summary__single {
    grid-template-columns: 1fr 2fr;
  }
}

.order-summary__img {
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

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

.order-summary__product-title {
  color: #00f;
  font-size: 14px;
  font-weight: 500;
}

@media (width >= 480px) {
  .order-summary__product-title {
    font-size: 15px;
  }
}

.order-summary__product-cost {
  color: #08090a;
  margin: 30px 0 15px;
  font-size: 15px;
  font-weight: 600;
}

.order-summary__remove {
  color: #797d86;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
}

.order-summary__remove:hover {
  color: #00f;
  text-decoration: underline;
}

.order-summary__btn-wrap {
  background-color: #fff;
  padding: 20px 15px;
}

.order-summary__empty-cart {
  margin: 0;
  padding: 0;
}

.desc-nav {
  background-color: #08090a;
}

.desc-nav--sticky {
  z-index: 2;
  width: 100%;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 100%;
}

.desc-nav__wrap, .header-main__desk-nav {
  height: 100%;
}

.desc-nav__list {
  flex-flow: wrap;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
}

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

.desc-nav__link {
  color: #fff;
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color .3s ease-in-out;
  display: flex;
  position: relative;
}

.desc-nav__sublist {
  opacity: 0;
  scrollbar-color: #00f #f8f8f8;
  scrollbar-width: thin;
  visibility: hidden;
  z-index: 2;
  background-color: #f8f8f8;
  border-top: 1px solid #00f;
  border-bottom: 1px solid #00f;
  width: max-content;
  height: max-content;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 4px 4px #00000040;
}

.desc-nav__sublist.activeClass {
  padding-right: 80px;
}

.desc-nav__item--dropdown {
  position: relative;
}

.desc-nav__item--dropdown:hover .desc-nav__sublist {
  opacity: 1;
  visibility: visible;
}

.desc-nav__item--dropdown:hover .desc-nav__link, .desc-nav__item:hover .desc-nav__link {
  color: #00f;
}

.desc-nav__item--dropdown:hover .desc-nav__link:before, .desc-nav__item:hover .desc-nav__link:before {
  opacity: 1;
}

.desc-nav__sublist-inner {
  grid-template-columns: 2fr 1fr;
  padding: 30px 45px;
  display: grid;
}

.desc-nav__sublist-inner--no-adv {
  grid-template-columns: 1fr;
  padding: 30px 45px;
  display: grid;
}

.desc-nav__lvl1-link {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  margin-bottom: 30px;
  text-decoration: none;
  display: flex;
}

.desc-nav__sublist-list {
  grid-template-rows: repeat(15, min-content);
  grid-auto-flow: column;
  column-gap: 60px;
  padding: 0;
  display: grid;
}

@media (width <= 1350px) and (width >= 1200px) {
  .desc-nav__sublist-list {
    grid-template-rows: repeat(20, min-content);
  }
}

.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 {
  margin-bottom: 10px;
}

.desc-nav__subitem--lvl2:last-child {
  margin-bottom: 0;
}

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

.desc-nav__subitem--lvl2 .nav-link svg {
  fill: #0000;
  opacity: 0;
  stroke: #00f;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.desc-nav__subitem--lvl2:hover svg {
  opacity: 1;
}

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

.desc-nav__subitem--lvl3 .nav-link {
  color: #08090a;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

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

.desc-nav__subitem--lvl3 .nav-link:hover {
  color: #08090a;
}

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

.nav-desc__border {
  background-color: #00f;
  width: 0;
  height: 4px;
  transition: width .3s ease-in, left .3s ease-in;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.megamenu-advert__single {
  width: 557px;
  height: 410px;
  position: relative;
}

.megamenu-advert__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.megamenu-advert__text-wrap {
  text-align: right;
  height: 100%;
  padding: 60px 45px 0;
  position: absolute;
  top: 0;
  right: 0;
}

.megamenu-advert__text-wrap .main-btn {
  margin-left: auto;
}

.megamenu-advert__title {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
}

.megamenu-advert__subtext {
  color: #fff;
  text-align: right;
  border-right: 5px solid #fff;
  width: 150px;
  margin: 30px 0 60px auto;
  padding: 0 20px 0 0;
  font-size: 18px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .header-usp {
    background-color: #fff;
    margin: 15px 0;
  }

  .header-usp .splide__list {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    display: grid !important;
  }
}

.header-usp--sticky {
  background-color: #fff;
  width: 100%;
  transition: all .5s ease-in-out;
  top: 100%;
  position: absolute !important;
}

@media (width >= 1200px) {
  .header-usp--sticky {
    margin: 0;
    padding: 15px 0;
    top: calc(100% + 50px);
  }
}

.header-usp__single {
  background-color: #f8f8f8;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 60px;
  display: flex;
}

@media (width >= 1200px) {
  .header-usp__single {
    gap: 15px;
  }
}

.header-usp__img {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  display: flex;
}

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

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

.header-usp__title {
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 480px) {
  .header-usp__title {
    font-size: 18px;
  }
}

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

.gd-header__wrap--sticky {
  z-index: 5;
  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--sticky.down {
  transition: all .2s ease-in-out;
  top: -31px;
}

.gd-header__wrap--sticky.down .header-usp--sticky {
  transform: translateY(-100%);
}

@media (width >= 480px) {
  .gd-header__wrap--sticky.down {
    top: -46px;
  }
}

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

  .gd-header__wrap--sticky.down .header-main__wrap--sticky {
    height: 80px;
  }

  .gd-header__wrap--sticky.down .desc-nav--sticky {
    transform: translateY(-100%);
  }

  .gd-header__wrap--sticky.down .header-usp--sticky {
    transform: translateY(-200%);
  }
}

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

.gd-header__wrap--sticky.up .header-usp--sticky {
  transform: translateY(-100%);
}

@media (width >= 480px) {
  .gd-header__wrap--sticky.up {
    top: -46px;
  }
}

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

  .gd-header__wrap--sticky.up .header-main__wrap--sticky {
    height: 80px;
  }

  .gd-header__wrap--sticky.up .desc-nav--sticky {
    transform: translateY(0);
  }

  .gd-header__wrap--sticky.up .header-usp--sticky {
    transform: translateY(-200%);
  }
}

.gd-footer {
  background-color: #0e0f0f;
  border-top: 5px solid #00f;
  margin-top: 130px;
}

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

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

@media (width >= 480px) {
  .gd-footer__wrap {
    padding: 0 30px;
  }
}

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

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

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

.footer-menu__nav-item--logo-text p {
  color: #fff;
  margin: 0;
  padding-top: 25px;
  font-size: 18px;
  font-weight: 300;
}

.footer-menu__nav-item--logo-text a {
  background-color: #fff;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 15px;
  display: flex;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--logo-text a {
    margin-top: 0;
    padding: 20px;
  }

  .footer-menu__nav-item--logo-text {
    border-right: 5px solid #00f;
    height: 100%;
    padding-right: 50px !important;
  }
}

.footer-menu__newsletter-txt p {
  margin: 0;
}

.footer-menu__nav-item--social {
  background-color: #fff;
  border: 5px solid #00f;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 80px 0;
  padding: 30px 0;
  display: flex;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--social {
    border-top: none;
    border-bottom: none;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 100%;
    margin: 0;
    padding: 0 30px;
    display: flex;
  }
}

.social__link {
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.social__link svg {
  fill: #00f;
  width: 35px;
  height: 35px;
}

@media (width >= 1200px) {
  .social__link {
    width: 70px;
    height: 70px;
  }

  .social__link svg {
    fill: #00f;
    width: 35px;
    height: 35px;
  }
}

.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__nav-item--newsletter {
  margin-bottom: 80px;
}

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

.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;
  }
}

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

.newsletter__title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.newsletter__subtext {
  color: #fff;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
}

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

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

.newsletter__form .newsletter__icon {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.newsletter__input {
  background-color: #fff;
  border: none;
  border-radius: 3px;
  width: 100%;
  height: 45px;
  padding-left: 25px;
}

.newsletter__input::placeholder {
  color: #797d86;
  font-size: 15px;
  font-weight: 300;
}

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

.newsletter__btn {
  cursor: pointer;
  background-color: #0000;
  border: none;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.newsletter__btn svg {
  fill: #00f;
  width: 25px;
  height: 25px;
}

.footer__goTop {
  color: #fff;
  background-color: #00f;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  position: absolute;
  top: -40px;
  right: 0;
}

@media (width >= 1200px) {
  .footer__goTop {
    width: 100px;
    height: 100px;
    font-size: 13px;
    top: -50px;
  }
}

.footer__goTop:hover {
  color: #fff;
  background-color: #0202c5;
}

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

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

.footer-menu__right-wrap {
  border-top: 5px solid #00f;
  padding-top: 60px;
}

@media (width >= 1200px) {
  .footer-menu__right-wrap {
    border-top: none;
    border-left: 5px solid #00f;
    flex-flow: row;
    justify-content: space-between;
    align-items: start;
    margin-top: 0;
    padding-top: 0;
    padding-left: 50px;
    display: flex;
  }

  .footer-menu__left-wrap {
    grid-gap: 50px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

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

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

.footer-menu__nav-item--acc {
  max-height: 45px;
  margin-bottom: 55px;
  transition: max-height .3s ease-in-out;
  overflow: hidden;
}

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

  .footer-menu__nav-item {
    padding: 90px 0;
  }

  .footer-menu__nav-item--social {
    padding: 40px 30px;
  }
}

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

.footer-menu__link:hover {
  color: #00f;
}

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

.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 {
  color: #fff;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  height: 45px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

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

.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 {
  fill: #fff;
  width: 17px;
  height: 17px;
}

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

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

.footer-menu__title:last-child {
  border-bottom: none;
}

.ft-bottom {
  background-color: #0e0f0f;
  border-top: 5px solid #00f;
  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: #fff;
  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;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin: 0;
    display: flex;
  }
}

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

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

.ft-bottom__icon {
  background: #fff;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 35px;
  padding: 5px;
  display: flex;
}

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

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

.hero__single {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: end;
  height: 550px;
  display: flex;
  position: relative;
}

@media (width >= 480px) {
  .hero__single {
    height: 600px;
  }
}

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

.hero__title {
  color: #fff;
  padding-top: 15px;
  padding-bottom: 50px;
  font-family: Libre Baskerville, serif;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 480px) {
  .hero__title {
    font-size: 50px;
  }
}

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

.hero__subtitle {
  color: #fff;
  margin: 0;
  font-family: Libre Baskerville, serif;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 480px) {
  .hero__subtitle {
    font-size: 27px;
  }
}

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

.hero__content-wrap {
  text-align: right;
  z-index: 3;
  position: relative;
}

.hero__inner {
  width: 203px;
  margin-left: auto;
  padding-bottom: 130px;
}

@media (width >= 480px) {
  .hero__inner {
    width: 290px;
    padding-bottom: 130px;
  }
}

@media (width >= 1200px) {
  .hero__inner {
    width: max-content;
    padding-top: 110px;
    padding-bottom: 0;
  }
}

.hero__inner .main-btn {
  margin-left: auto;
}

.trophies-list__single {
  width: 100%;
  height: 100%;
  transition: all .4s ease-in-out;
  overflow: hidden;
}

.trophies-list__single img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  transition: all .4s ease-in-out;
  transform: scale(1);
}

.trophies-list__single:hover {
  filter: grayscale(10%);
}

.trophies-list__single:hover img {
  transform: scale(1.1);
}

.categories__img {
  mix-blend-mode: multiply;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 90px;
  margin: auto;
  display: flex;
}

@media (width >= 480px) {
  .categories__img {
    width: 120px;
    height: 145px;
  }
}

@media (width >= 1200px) {
  .categories__img {
    width: 140px;
    height: 170px;
  }
}

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

.categories__title {
  height: 50px;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 400;
  transition: all .4s ease-in-out;
  display: block;
}

@media (width >= 480px) {
  .categories__title {
    font-size: 21px;
  }
}

@media (width >= 1200px) {
  .categories__title {
    height: 100px;
    padding: 0;
    font-size: 25px;
  }
}

.categories__single {
  text-align: center;
  background-color: #f8f8f8;
  border: 1px solid #0000;
  border-radius: 3px;
  height: max-content;
  padding: 35px 0;
  transition: all .4s ease-in-out;
  position: relative;
  margin-bottom: 25px !important;
}

.categories__single .main-btn {
  opacity: 0;
  width: 130px;
  transition: all .4s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (width >= 480px) {
  .categories__single .main-btn {
    width: 160px;
  }
}

.categories__single:hover {
  border: 1px solid #08090a;
}

.categories__single:hover .main-btn {
  opacity: 1;
  bottom: -22.5px;
}

.categories__single:hover .categories__title {
  color: #08090a;
  text-decoration: underline;
}

@media (width >= 1200px) {
  .categories__wrap .splide__list {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 70px 20px !important;
    display: grid !important;
  }
}

.showcase__wrap {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  display: grid;
}

@media (width >= 1200px) {
  .showcase__wrap {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1.5fr 1fr 1fr;
    height: 850px;
  }
}

.showcase__text-wrap {
  z-index: 2;
  font-family: Libre Baskerville, serif;
  position: relative;
}

.showcase__subtext {
  color: #fff;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 480px) {
  .showcase__subtext {
    font-size: 27px;
  }
}

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

.showcase__title {
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
}

@media (width >= 480px) {
  .showcase__title {
    font-size: 50px;
  }
}

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

.showcase__single {
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.showcase__single--0 {
  grid-area: 1 / 1 / 2 / 3;
  height: 500px;
}

@media (width >= 1200px) {
  .showcase__single--0 {
    height: 100%;
  }
}

.showcase__single--0 .showcase__text-wrap {
  padding: 30px;
}

@media (width >= 480px) {
  .showcase__single--0 .showcase__text-wrap {
    padding: 50px;
  }
}

@media (width >= 1200px) {
  .showcase__single--0 .showcase__text-wrap {
    width: 500px;
    padding: 60px 45px;
  }
}

.showcase__single--0 .showcase__text-wrap .showcase__title {
  margin-bottom: 50px;
}

@media (width >= 1200px) {
  .showcase__single--0 {
    grid-area: 1 / 1 / 3 / 2;
  }
}

.showcase__single--1 {
  flex-flow: wrap;
  grid-area: 2 / 1 / 3 / 2;
  justify-content: center;
  align-items: center;
  height: 165px;
  display: flex;
}

@media (width >= 480px) {
  .showcase__single--1 {
    height: 320px;
  }
}

.showcase__single--1 .showcase__title {
  text-align: center;
}

@media (width >= 1200px) {
  .showcase__single--1 {
    grid-area: 1 / 2 / 2 / 3;
    height: 100%;
  }
}

.showcase__single--2 {
  flex-flow: wrap;
  grid-area: 2 / 2 / 3 / 3;
  justify-content: center;
  align-items: center;
  height: 165px;
  display: flex;
}

@media (width >= 480px) {
  .showcase__single--2 {
    height: 320px;
  }
}

@media (width >= 1200px) {
  .showcase__single--2 {
    grid-area: 1 / 3 / 2 / 4;
    height: 100%;
  }
}

.showcase__single--3 {
  flex-flow: wrap;
  grid-area: 3 / 1 / 4 / 2;
  justify-content: center;
  align-items: center;
  height: 165px;
  display: flex;
}

@media (width >= 480px) {
  .showcase__single--3 {
    height: 320px;
  }
}

@media (width >= 1200px) {
  .showcase__single--3 {
    grid-area: 2 / 2 / 3 / 3;
    height: 100%;
  }
}

.showcase__single--4 {
  flex-flow: wrap;
  grid-area: 3 / 2 / 4 / 3;
  justify-content: center;
  align-items: center;
  height: 165px;
  display: flex;
}

@media (width >= 480px) {
  .showcase__single--4 {
    height: 320px;
  }
}

.showcase__single--4 .showcase__title {
  text-align: center;
}

@media (width >= 1200px) {
  .showcase__single--4 {
    grid-area: 2 / 3 / 3 / 4;
    height: 100%;
  }
}

.showcase__single:before {
  content: "";
  z-index: 1;
  background-color: #00f0;
  width: 100%;
  height: 100%;
  transition: all .4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.showcase__single:hover:before {
  background-color: #00f3;
}

.showcase-sku {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.showcase-sku__wrap {
  padding-top: 65px;
  padding-bottom: 65px;
}

@media (width >= 1200px) {
  .showcase-sku__wrap {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.showcase-sku__inner {
  border: 5px solid #00f;
  padding: 25px 0 50px;
}

@media (width >= 768px) {
  .showcase-sku__inner {
    padding: 25px 0 50px;
  }
}

@media (width >= 1200px) {
  .showcase-sku__inner {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 0 100px 0 0;
    display: flex;
  }
}

.showcase-sku__single {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  padding: 40px 30px;
}

.showcase-sku__single--img {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

@media (width >= 768px) {
  .showcase-sku__single--img {
    margin-bottom: 0;
    margin-left: -15px;
    margin-right: 0;
  }
}

@media (width >= 1200px) {
  .showcase-sku__single--img {
    margin-left: 0;
  }
}

.showcase-sku__single--text {
  margin-left: -15px;
  margin-right: -15px;
}

@media (width >= 768px) {
  .showcase-sku__single--text {
    margin-left: 0;
  }
}

@media (width >= 1200px) {
  .showcase-sku__single--text {
    margin-right: 0;
  }
}

@media (width >= 768px) {
  .showcase-sku__single {
    width: 50%;
  }
}

@media (width >= 1200px) {
  .showcase-sku__single {
    margin: -50px 0;
    padding: 60px 50px;
  }
}

.showcase-sku__single .main-btn {
  margin: 0 auto;
}

.showcase-sku__img {
  width: 209px;
  height: 282px;
  margin: 0 auto;
}

@media (width >= 768px) {
  .showcase-sku__img {
    width: 237px;
    height: 319px;
  }
}

@media (width >= 1200px) {
  .showcase-sku__img {
    width: 425px;
    height: 570px;
  }
}

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

.showcase-sku__img--alt {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 146px;
  height: 90px;
  margin-top: 30px;
  display: flex;
}

@media (width >= 768px) {
  .showcase-sku__img--alt {
    width: 170px;
    height: 105px;
  }
}

@media (width >= 1200px) {
  .showcase-sku__img--alt {
    width: 344px;
    height: 213px;
  }
}

.showcase-sku__subtext {
  margin: 0;
  font-family: Libre Baskerville, serif;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 480px) {
  .showcase-sku__subtext {
    font-size: 27px;
  }
}

@media (width >= 1200px) {
  .showcase-sku__subtext {
    font-size: 36px;
  }
}

.showcase-sku__main-text {
  margin: 0;
  font-family: Libre Baskerville, serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
}

@media (width >= 480px) {
  .showcase-sku__main-text {
    font-size: 40px;
  }
}

@media (width >= 1200px) {
  .showcase-sku__main-text {
    font-size: 70px;
  }
}

.showcase-sku__single-wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

@media (width >= 768px) {
  .showcase-sku__single-wrap {
    flex-wrap: nowrap;
    gap: 35px;
  }
}

@media (width >= 1200px) {
  .showcase-sku__single-wrap {
    flex-wrap: nowrap;
    column-gap: 100px;
    padding-left: 25px;
  }
}

.showcase-sku__title {
  color: #fff;
  text-align: center;
  padding-bottom: 25px;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 480px) {
  .showcase-sku__title {
    font-size: 40px;
  }
}

@media (width >= 1200px) {
  .showcase-sku__title {
    writing-mode: vertical-rl;
    padding-bottom: 0;
    font-size: 70px;
    transform: rotate(180deg);
  }
}

@media (width >= 768px) {
  .brands {
    margin-top: 50px;
    margin-bottom: 200px;
  }
}

.brands__wrap {
  grid-gap: 0;
  border: 5px solid #00f;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 35px;
  padding: 50px 0;
  display: grid;
}

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

.brands__single {
  background-color: #f8f8f8;
  border: 2px solid #0000;
  border-radius: 3px;
  padding: 15px;
}

.brands__single:hover {
  border: 2px solid #00f;
}

@media (width >= 768px) {
  .brands__single--0, .brands__single--1, .brands__single--2, .brands__single--3 {
    margin-bottom: -50px;
    transform: translateY(-50%);
  }

  .brands__single--4, .brands__single--5, .brands__single--6, .brands__single--7 {
    transform: translateY(50%);
  }
}

.brands__single--0, .brands__single--2, .brands__single--4, .brands__single--6 {
  margin-left: -10px;
}

@media (width >= 768px) {
  .brands__single--0, .brands__single--2, .brands__single--4, .brands__single--6 {
    margin-left: 0;
  }
}

.brands__single--1, .brands__single--3, .brands__single--5, .brands__single--7 {
  margin-right: -10px;
}

@media (width >= 768px) {
  .brands__single--1, .brands__single--3, .brands__single--5, .brands__single--7 {
    margin-right: 0;
  }
}

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

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

.testimonials {
  background-color: #08090a;
  padding: 40px 0;
}

@media (width >= 480px) {
  .testimonials {
    padding: 55px 0;
  }
}

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

.testimonials__wrap {
  position: relative;
}

@media (width >= 1200px) {
  .testimonials__wrap {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 70px;
    display: flex;
  }

  .testimonials__inner {
    width: 60%;
    margin-left: auto;
  }
}

.testimonials__single {
  background-color: #fff;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 20px;
  display: flex;
}

@media (width >= 480px) {
  .testimonials__single {
    padding: 35px;
  }
}

@media (width >= 1200px) {
  .testimonials__single {
    padding: 85px 70px;
  }
}

.testimonials__title {
  color: #fff;
  width: 70%;
  margin-bottom: 40px;
  font-family: Libre Baskerville, serif;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 480px) {
  .testimonials__title {
    width: 50%;
    margin-bottom: 50px;
    font-size: 40px;
  }
}

@media (width >= 1200px) {
  .testimonials__title {
    width: 100%;
    font-size: 70px;
  }
}

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

.testimonials__rating p {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 0;
  display: flex;
}

.testimonials__rating svg {
  fill: #00c2ff;
  width: 15px;
  height: 15px;
}

.testimonials__description {
  margin: 25px 0;
}

.testimonials__description p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
}

.testimonials__author {
  font-size: 19px;
  font-weight: 500;
}

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

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

@media (width >= 1200px) {
  .blog__single:nth-child(2n) {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: start;
    display: flex;
  }
}

.blog__content {
  background-color: #f8f8f8;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 70px 25px;
  display: flex;
}

@media (width >= 480px) {
  .blog__content {
    padding: 130px 30px;
  }
}

@media (width >= 1200px) {
  .blog__content {
    padding: 120px 50px;
  }
}

.blog-date {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.blog-title {
  color: #00f;
  text-transform: capitalize;
  margin: 25px 0;
  font-size: 22px;
  font-weight: 500;
  display: block;
}

.blog-description {
  height: 100px;
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  overflow: hidden;
}

.blog-description p {
  margin: 0;
}

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

.videos__single {
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  position: relative;
}

.videos__single iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cat-top {
  flex-flow: wrap;
  justify-content: center;
  align-items: end;
  height: 350px;
  padding-bottom: 50px;
  display: flex;
}

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

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

@media (width >= 480px) {
  .cat-top {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    height: 350px;
    padding-bottom: 0;
    display: flex;
  }
}

@media (width >= 1200px) {
  .cat-top {
    height: max-content;
    padding: 75px 0;
  }
}

.category-title {
  color: #fff;
  margin: 0;
  font-family: Libre Baskerville, serif;
  font-size: 35px;
  font-weight: 500;
}

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

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

.sub-categories {
  margin-top: 60px;
}

@media (width >= 1200px) {
  .sub-categories {
    margin-top: 110px;
  }
}

.sub-categories__single {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

@media (width >= 480px) {
  .sub-categories__single {
    font-size: 21px;
  }
}

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

.sub-categories__single span {
  position: relative;
}

.sub-categories__single span:before {
  content: "";
  background-color: #0000;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-categories__single:hover {
  color: #00f;
}

.sub-categories__single:hover span:before {
  background-color: #00f;
}

@media (width >= 768px) {
  .sub-categories__wrap {
    padding: 0 75px;
  }
}

.cat-products {
  margin-top: 80px;
}

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

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

@media (width >= 480px) {
  .cat-products__wrapper {
    padding: 0 30px;
  }
}

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

.cat-products__left {
  scrollbar-color: #00f #f8f8f8;
  scrollbar-width: thin;
  background-color: #fff;
  border: 1px solid #00f;
  border-radius: 3px;
  width: 330px;
  height: max-content;
  max-height: 880px;
  padding: 40px 15px;
  position: sticky;
  top: 140px;
  overflow: auto;
}

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

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

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

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

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

@media (width >= 480px) {
  .cat-products__empty-cat {
    padding: 0 30px;
  }
}

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

.cat-products__empty-cat .subtext {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .cat-products__empty-cat .subtext {
    font-size: 24px;
  }
}

.cat-header {
  margin-bottom: 60px;
  padding: 0 15px;
}

.cat-header .page-link {
  padding-right: 0;
}

.cat-header .results {
  margin: 0 auto;
  padding-right: 150px;
  font-size: 16px;
  font-weight: 400;
}

.cat-header__wrap {
  border: 1px solid #00f;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px;
  display: flex;
}

.cat-header__wrap .filter-btn {
  background-color: #f8f8f8;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.cat-header__wrap .filter-btn svg {
  fill: #0000;
  stroke: #08090a;
  stroke-width: 1px;
  width: 15px;
  height: 15px;
}

.cat-header__wrap .sort-opt {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: max-content;
  height: 100%;
  display: flex;
}

.cat-header__wrap .form-control {
  text-align: left;
  background-color: #f8f8f8;
  border: none;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  height: 40px !important;
}

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

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

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

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

.filter__wrapper .sort-op__container {
  margin-bottom: 35px;
}

.filter__wrapper .sort-op__container .form-control {
  cursor: pointer;
  background-color: #f8f8f8;
  border: none;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
}

.filter__title {
  background-color: #f8f8f8;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

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

.filter__title svg {
  fill: #0000;
  stroke: #08090a;
  stroke-width: 1px;
  width: 15px;
  height: 15px;
}

.sort-op__title {
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.filter-wrap {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.filter-wrap .icon-open {
  display: none;
}

.filter-wrap .icon-close {
  display: block;
}

.filter-wrap.activeClass .icon-close {
  display: none;
}

.filter-wrap.activeClass .icon-open {
  display: block;
}

.filter-header {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.filter-header .icon-lines {
  stroke: #00f;
  stroke-width: 1.5px;
  width: 12px;
  height: 12px;
}

.filter-box__inner {
  background-color: #fff;
  border-radius: 3px;
  width: 75%;
  height: 75%;
}

.list-group-item {
  background-color: #f8f8f8;
  border: none;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  border-radius: 3px !important;
}

.list-group-item:hover {
  color: #00f;
  background-color: #d9d9d9;
}

.list-group-item:hover .filter-box__inner {
  background-color: #00f;
}

.list-group-item .brands-img {
  width: 45px;
  height: 25px;
}

.list-group-item .brands-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.filter-box {
  background-color: #fff;
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.filter-less .filter-add:nth-child(n+9) {
  display: none;
}

.filter__show-more {
  cursor: pointer;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
}

.filter__show-more:hover {
  color: #00f;
}

.filter-remove .list-group-item {
  background-color: #d9d9d9;
}

.filter-remove .filter-box__inner {
  background-color: #00f;
}

.list-group-item--price {
  padding: 15px 20px;
}

.filter-btns__wrap {
  margin-top: 30px;
}

.filter-btn__filter {
  color: #fff;
  background-color: #00f;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.filter-btn__filter:hover {
  background-color: #0202c5;
}

.filter-btn__clear {
  color: #797d86;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  display: flex;
}

.filter-btn__clear:hover {
  color: #00f;
  text-decoration: underline;
}

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

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

.ui-slider-handle {
  -ms-touch-action: none;
  color: #fff;
  cursor: default;
  touch-action: none;
  z-index: 2;
  background: #fff;
  border: 1px solid #797d86;
  width: 10px;
  height: 10px;
  margin-left: -1px;
  position: absolute;
  top: -2px;
}

.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;
}

.cat-footer {
  border: 1px solid #00f;
  border-radius: 3px;
  margin-top: 60px;
  padding: 15px 25px;
}

.pagination {
  margin: 0;
}

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

.page-item--next {
  margin-left: auto;
}

.page-item--prev {
  margin-right: auto;
}

.page-link {
  color: #00f;
  border: none;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.page-link:hover {
  background-color: #0000;
}

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

.page-link__arrow-box {
  background-color: #f8f8f8;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.page-link__arrow-box svg {
  fill: #00f;
  width: 20px;
  height: 20px;
}

.product-info__heading {
  border-top: 1px solid #00f;
  border-bottom: 1px solid #00f;
}

.product-info__inner {
  scrollbar-color: #00f #f8f8f8;
  scrollbar-width: thin;
  white-space: nowrap;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  display: flex;
  overflow-x: auto;
}

@media (width >= 480px) {
  .product-info__inner {
    gap: 70px;
  }
}

@media (width >= 1200px) {
  .product-info__inner {
    gap: 200px;
  }
}

.product-info__tab {
  color: #797d86;
  cursor: pointer;
  border-top: 5px solid #0000;
  padding: 20px 0;
  font-size: 25px;
  font-weight: 400;
  transition: all .4s ease-in-out;
  display: block;
}

@media (width >= 480px) {
  .product-info__tab {
    font-size: 28px;
  }
}

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

.product-info__tab.activeClass, .product-info__tab:hover {
  color: #00f;
  border-top: 5px solid #00f;
}

.product-info__content {
  padding-top: 50px;
}

.product-info__details {
  display: none;
}

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

.product-info__details p {
  font-size: 18px;
  font-weight: 400;
}

.product-info__details--specs .table {
  width: 50%;
  margin: 0;
}

.product-info__details--specs .table td {
  border: none;
}

.product-info__details ul {
  margin: 0;
  padding: 0;
}

.product-info__details li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info__details li:before {
  color: #00f;
  content: "✓ ";
  font-weight: 500;
}

.product-info__details--reviews h2 {
  font-size: 1.1rem;
}

.product-info__details--reviews p, .product-info__details--reviews ul {
  color: #08090a;
  font-size: 18px;
  font-weight: 400;
}

.product-info__details--reviews .review-name {
  font-size: 18px;
  font-weight: 500;
}

.product-info__details--reviews .review-description {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.product-info__details--reviews .prod-header__rating {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 15px 0;
  display: flex;
}

.product-info__details--reviews .prod-header__rating svg {
  fill: #00c2ff;
  width: 10px;
  height: 10px;
}

.product-info__details--reviews .reviews-title {
  font-size: 18px;
  font-weight: 500;
}

.product-info__details--reviews .reviews-subtext {
  margin: 0;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

.product-info__details--reviews .reviews-btn {
  color: #00f;
  text-transform: capitalize;
  background-color: #0000;
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 180px;
  height: 35px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.product-info__details--reviews .reviews-btn svg {
  fill: #00f;
  width: 12px;
  height: 12px;
}

.product-info__details--reviews .reviews-btn:hover {
  color: #fff;
  background-color: #00f;
}

.product-info__details--reviews .reviews-btn:hover svg {
  fill: #fff;
}

.product__images {
  margin-bottom: 50px;
}

@media (width >= 1200px) {
  .product__images {
    height: max-content;
    margin-bottom: 0;
    position: sticky;
    top: 150px;
  }
}

.prod-imgs {
  position: relative;
}

.prod-imgs .main-btn {
  display: none;
}

@media (width >= 768px) {
  .prod-imgs .main-btn {
    margin: 30px auto;
    display: flex;
  }

  .prod-imgs .main-btn.activeClass svg {
    transform: rotate(180deg);
  }
}

.prod-imgs .activeClass .splide__grid .prod-imgs__single:nth-child(n+5) {
  display: block;
}

@media (width >= 768px) {
  .prod-imgs .splide__grid {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
  }
}

.prod-imgs .splide__grid--single .prod-imgs__single {
  grid-column: span 2;
}

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

@media (width >= 768px) {
  .prod-imgs__single {
    grid-column: span 1;
  }

  .prod-imgs__single:nth-child(n+5) {
    display: none;
  }
}

.prod-imgs__figure {
  mix-blend-mode: multiply;
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 85%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.prod-imgs__figure img, .prod-imgs__figure video {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product {
  background-color: #f8f8f8;
  padding: 55px 0;
}

@media (width >= 1200px) {
  .product__wrap {
    grid-template-columns: 1.5fr 1fr;
    gap: 75px;
    display: grid;
  }
}

.prod-header__title {
  color: #00f;
  margin: 0;
  font-size: 23px;
  font-weight: 500;
}

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

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

.prod-header__sku {
  text-transform: uppercase;
  width: 100%;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 400;
  display: block;
}

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

.prod-header__top-wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.prod-header__review-wrap {
  margin-left: auto;
}

.prod-header__rating svg {
  fill: #00c2ff;
  width: 12px;
  height: 12px;
}

.prod-header__brand {
  font-size: 17px;
  font-weight: 400;
}

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

.prod-header__mid-wrap {
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  padding: 15px;
  display: flex;
}

.prod-header__badge {
  color: #00f;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.prod-header__badge svg {
  fill: #0000;
  stroke: #00f;
  stroke-width: .5px;
  width: 15px;
  height: 15px;
}

.prod-header__review-counter {
  color: #00f;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.prod-header__review-counter svg {
  fill: #00f;
  width: 15px;
  height: 15px;
}

.prod-header__price-wrap {
  width: 100%;
}

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

.prod-header__price {
  color: #08090a;
  font-size: 21px;
  font-weight: 600;
}

.prod-header__price--purple {
  color: #00f;
  font-size: 23px;
  font-weight: 600;
}

@media (width >= 480px) {
  .prod-header__price--purple {
    font-size: 27px;
  }
}

@media (width >= 1200px) {
  .prod-header__price--purple {
    font-size: 26px !important;
  }
}

.prod-header__price--was {
  font-size: 20px;
  font-weight: 500;
}

@media (width >= 480px) {
  .prod-header__price--was {
    font-size: 24px;
  }
}

@media (width >= 1200px) {
  .prod-header__price--was {
    font-size: 23px;
  }

  .prod-header__price {
    font-size: 24px;
  }
}

.prod-header__price--exgst {
  font-size: 15px;
  font-weight: 600;
}

@media (width >= 480px) {
  .prod-header__price--exgst {
    font-size: 22px;
  }
}

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

.prod-header__price-old {
  color: #797d86;
  font-size: 12px;
  font-weight: 300;
  text-decoration: line-through;
}

@media (width >= 768px) {
  .prod-header__price-old {
    font-size: 18px;
  }
}

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

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

.prod-header__price-time {
  color: #bc2041;
  text-transform: capitalize;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
}

.prod-header__kit {
  margin-top: 40px;
}

.prod-header__kit-text {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.prod-header__kit-wrap {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 10px 20px;
}

.prod-header__kit-single {
  border-bottom: 1px solid #d9d9d9;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.prod-header__kit-single svg {
  stroke: #00f;
  stroke-width: 1px;
  width: 10px;
  height: 10px;
}

.prod-header__kit-single:last-child {
  border-bottom: none;
}

.prod-header__sub-text {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  margin-top: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.prod-header__sub-text ul {
  margin: 0;
  padding: 0;
}

.prod-header__sub-text li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prod-header__sub-text li:before {
  content: "✓ ";
  color: #00f;
  font-weight: 500;
}

.prod-header__sub-text a, .prod-header__sub-text a:hover {
  color: #00f;
  text-decoration: underline;
}

.prod-header__login {
  background-color: #d9d9d9;
  border-radius: 3px;
  padding: 30px 20px;
}

.prod-header__login-title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.prod-header__login-title svg {
  width: 15px;
  height: 15px;
}

.prod-header__login-subtext {
  margin: 15px 0 30px;
  font-size: 14px;
  font-weight: 400;
}

.prod-header__login-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  display: flex;
}

.prod-header__btn-reg {
  color: #00f;
  background-color: #fff;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 45px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.prod-header__btn-reg:hover {
  color: #fff;
  background-color: #00f;
}

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

.prod-header__btn-log {
  font-size: 16px;
  font-weight: 18px;
  text-decoration: underline;
}

.prod-header__btn-log:hover {
  color: #00f;
  text-decoration: underline;
}

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

.buying-options {
  margin-top: 60px;
}

.buying-options__wrap {
  grid-template-columns: 1fr max-content;
  grid-template-areas: "qty ."
                       "btn wishlist";
  gap: 15px 20px;
  display: grid;
}

@media (width >= 1200px) {
  .buying-options__wrap {
    grid-template-columns: 1fr 3fr max-content;
    grid-template-areas: "qty btn wishlist";
    gap: 20px;
  }
}

.buying-options__wrap--no-pricing {
  grid-template-columns: 3fr max-content;
  grid-template-areas: "btn wishlist";
  display: grid;
}

.buying-options__qty {
  grid-area: qty;
  width: 130px;
}

.buying-options__qty .form-control {
  text-align: center;
  border: 1px solid #d9d9d9;
  height: 50px;
}

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

.buying-options__wishlist {
  flex-flow: wrap;
  grid-area: wishlist;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.buying-options__wishlist svg {
  fill: #0000;
  stroke: #00c2ff;
  stroke-width: 1.6px;
  width: 35px;
  height: 35px;
}

.shipping-card {
  margin-top: 40px;
}

.shipping-card__title {
  font-style: 16px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 500;
}

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

.shipping-card__inner {
  grid-template-columns: 1fr;
  row-gap: 15px;
  padding: 25px;
  display: grid;
}

.shipping-card__inner input, .shipping-card__inner select {
  color: #08090a;
  text-transform: capitalize;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 400;
}

.shipping-card__inner input::placeholder, .shipping-card__inner select::placeholder {
  color: #08090a;
}

.shipping-card__inner .main-btn {
  color: #fff;
  text-transform: capitalize;
  background-color: #d9d9d9;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.shipping-card__inner .main-btn:hover {
  background-color: #00f;
}

.prod-header__share {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  display: flex;
}

.prod-header__share-title {
  font-size: 12px;
  font-weight: 400;
}

.prod-header__share-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  display: flex;
}

.prod-header__share-wrap li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prod-header__share-item {
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.prod-header__share-item svg {
  fill: #00f;
  width: 10px;
  height: 10px;
}

.prod-header__share-item:hover {
  background-color: #00f;
}

.prod-header__share-item:hover svg {
  fill: #fff;
}

._itmspec_listopt {
  margin-top: 40px;
}

.variation-name {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.variation-name label {
  margin: 0;
}

.variation-name ul {
  margin: 0;
  padding: 0;
}

.variation-name li {
  margin: 0;
  padding: 0;
  list-style: none;
}

._itmspec_optpl .form-control {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  height: 45px;
  font-size: 15px;
  font-weight: 400;
}

.table-bulk {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  margin-top: 40px;
}

.table-bulk th {
  border-bottom: none;
}

.calculate__text {
  font-size: 15px;
  line-height: 1;
}

.calculate__text a {
  text-decoration: underline;
  color: #00f !important;
}

.calculate__input-wrap {
  position: relative;
}

.calculate__input-error {
  color: #bc2041;
  width: 100%;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}

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

  .calculate__title-wrap .card-title, .calculate__title-wrap .calculate__text {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
}

.calculate__form .calculate__input, .calculate__form select {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 0 15px;
}

.calculate__form .calculate__input.error, .calculate__form select.error {
  border-color: #bc2041;
}

.calculate__form .calculate__input, .calculate__form select, .calculate__form .main-btn {
  color: #08090a;
  width: 100%;
  height: 45px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .calculate__form .calculate__input, .calculate__form select, .calculate__form .main-btn {
    margin-bottom: 0;
  }
}

.calculate__form .calculate__input::placeholder, .calculate__form select::placeholder, .calculate__form .main-btn::placeholder {
  color: #08090a;
  font-size: 14px;
  font-weight: 300;
}

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

.calculate__card {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  margin: 30px 0 90px;
  padding: 28px 22px 39px;
}

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

.calculate__form-text {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1;
  display: flex;
}

@media (width >= 1200px) {
  .calculate__form-text {
    margin-bottom: 0;
    font-size: 16px;
  }
}

.calculate__truck {
  fill: #00f;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

@media (width >= 1200px) {
  .calculate__truck {
    margin-right: 7px;
  }
}

.calculate__info {
  width: 15px;
  height: 15px;
  margin-left: 5px;
}

@media (width >= 1200px) {
  .calculate__info {
    margin-left: 7px;
  }
}

.calculate__card-text {
  border-top: 1px solid #d9d9d9;
  margin-top: 30px;
  padding-top: 30px;
  font-size: 16px;
  font-weight: 400;
}

.gd-cart__header {
  margin: 25px 0 50px;
}

.gd-cart {
  padding: 20px 0 100px;
}

.gd-cart hr {
  display: none;
}

.gd-cart .panel-body {
  margin-top: 40px;
}

.gd-cart .panel-body h4, .gd-cart .panel-body li, .gd-cart .panel-body p {
  font-size: 12px;
}

.gd-cart .panel-body img {
  margin: 0;
  width: 70px !important;
}

.gd-cart .footer-copy__payment-list {
  margin: 10px -3px 0;
}

.gd-cart .footer-copy__item {
  margin: 3px;
}

@media (width >= 1200px) {
  .gd-cart .footer-copy__item {
    width: 44px;
    height: 27px;
  }
}

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

@media (width >= 480px) {
  .gd-cart__wrap {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .gd-cart__wrap {
    flex-flow: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1645px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
  }
}

.gd-cart__back {
  color: #00f;
  background-color: #0000;
  border: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0 0 35px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  display: flex;
}

.gd-cart__back svg {
  fill: #00f;
  width: 7px;
  height: 7px;
  margin-right: 5px;
}

.gd-cart__table .card-title {
  margin-bottom: 40px;
}

.gd-cart__table-wrap {
  margin-bottom: 90px;
}

@media (width >= 1200px) {
  .gd-cart__table-wrap {
    width: calc(100% - 550px);
  }
}

.gd-cart__table-wrap .main-btn {
  width: 100%;
}

@media (width >= 1200px) {
  .gd-cart__total-sidebar {
    width: 450px;
    position: relative;
  }
}

.gd-cart__total-sidebar-wrap {
  position: sticky;
  top: 140px;
}

.gd-cart__item {
  background-color: #f8f8f8;
  border-bottom: 1px solid #d9d9d9;
}

.gd-cart__item-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 25px;
  display: flex;
  position: relative;
}

@media (width >= 1200px) {
  .gd-cart__item-wrap {
    flex-wrap: nowrap;
    padding: 35px 20px;
  }
}

.gd-cart__item-img {
  border: 1px solid #00f;
  border-radius: 3px;
  width: 50px;
  margin: 0;
  padding: 5px;
}

@media (width >= 1200px) {
  .gd-cart__item-img {
    width: 60px;
  }
}

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

.gd-cart__item-remove {
  background-color: #fff;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  display: flex;
  position: absolute;
  top: 25px;
  right: 30px;
}

@media (width >= 1200px) {
  .gd-cart__item-remove {
    position: relative;
    top: 0;
    right: 0;
  }
}

.gd-cart__item-remove svg {
  fill: #00f;
  width: 20px;
  height: 20px;
}

.gd-cart__item-info {
  width: max-content;
  margin: 0 25px;
}

@media (width >= 1200px) {
  .gd-cart__item-info {
    flex-flow: row;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    margin: 0 0 0 25px;
    display: flex;
  }
}

.gd-cart__item-title {
  color: #00f;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .gd-cart__item-title {
    font-size: 16px;
  }
}

.gd-cart__item-sku {
  color: #797d86;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .gd-cart__item-sku {
    font-size: 14px;
  }
}

.gd-cart__item-brand {
  color: #08090a;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .gd-cart__item-brand {
    font-size: 14px;
  }
}

.gd-cart__item-info-box--end {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  display: flex;
}

@media (width >= 1200px) {
  .gd-cart__item-info-box--end {
    flex-flow: row;
    justify-content: flex-end;
    align-items: start;
    gap: 70px;
    margin-top: 0;
    display: flex;
  }
}

.gd-cart__item-input {
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  width: 103px;
  height: 45px;
}

.gd-cart__item-price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

@media (width >= 1200px) {
  .gd-cart__item-price {
    font-size: 18px;
  }
}

.gd-cart__total {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 26px 22px;
}

.gd-cart__total .card-title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 500;
}

.gd-cart__total--total {
  background-color: #08090a;
  border: 1px solid #08090a;
  border-radius: 3px;
  margin-top: 20px;
  padding: 20px;
}

.gd-cart__row {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

.gd-cart__row:last-child {
  margin-bottom: 0;
}

.gd-cart__row-text, .gd-cart__row-value {
  margin: 0;
  font-size: 15px;
}

@media (width >= 1200px) {
  .gd-cart__row-text, .gd-cart__row-value {
    font-size: 16px;
  }
}

.gd-cart__row-value {
  font-weight: 600;
}

.gd-cart__shipping-row {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gd-cart__radio {
  color: #797d86;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.gd-cart__shipping-info {
  width: calc(100% - 19px);
}

.gd-cart__total-price {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.gd-cart__total-title {
  color: #fff;
  text-transform: capitalize;
  max-width: 49%;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.gd-cart__btns .main-btn {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
}

.gd-cart__btns ._cpy_thirdparty_btn {
  width: 100%;
  display: block;
}

.gd-cart__components {
  margin-bottom: 50px;
}

.gd-cart__row-value-wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cart-page .main-btn {
  width: 100%;
}

.cart-page__back-btn {
  text-transform: capitalize;
  color: #00f;
  background-color: #0000;
  border: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 300;
  display: flex;
}

.cart-page__back-btn svg {
  fill: #00f;
  width: 15px;
  height: 15px;
}

.cart-page__back-btn:hover {
  text-decoration: underline;
}

.cart-page__wrap {
  margin-top: 50px;
}

.cart-page .section-title {
  margin-bottom: 40px;
}

@media (width >= 1200px) {
  .cart-page .section-title {
    margin-bottom: 0;
  }
}

.cart-page .alert-danger {
  margin-top: 30px;
}

.cart-page .h1 {
  text-transform: capitalize;
  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 .table-bordered td {
  border: none;
  border-right: 1px solid #d9d9d9;
}

.cart-page .cartTable--column {
  border-right: 1px solid #d9d9d9;
}

.cart-page tbody td {
  padding: 10px;
}

@media (width >= 1200px) {
  .cart-page tbody td {
    padding: 25px;
  }

  .cart-page tbody td.cartTable--column-image {
    border-right: none;
  }

  .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: #00f;
  text-transform: capitalize;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 500;
  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 .cart-page__product-brand {
  color: #08090a;
  text-transform: capitalize;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
}

@media (width >= 1200px) {
  .cart-page tbody td .cart-page__product-brand {
    margin: 0 0 6px;
    padding-left: 15px;
    font-size: 14px;
    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: 13px;
}

.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: #d9d9d9;
}

.cart-page .cart-page__sub-head th, .cart-page .cart-page__sub-head td {
  text-transform: capitalize;
  color: #08090a;
  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: #08090a;
  font-weight: 500;
}

.cart-page .cart-page__sub-footer {
  background-color: #f8f8f8;
}

.cart-page .cart-page__sub-footer th, .cart-page .cart-page__sub-footer td {
  text-transform: capitalize;
  color: #08090a;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

@media (width >= 1200px) {
  .cart-page .cart-page__sub-footer th, .cart-page .cart-page__sub-footer td {
    font-size: 20px;
  }
}

.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 {
  color: #08090a;
  text-transform: capitalize;
  background-color: #d9d9d9;
  font-size: 8px;
  font-weight: 500;
}

@media (width >= 768px) {
  .cart-page .cartTable--heading {
    font-size: 15px;
  }
}

@media (width >= 1200px) {
  .cart-page .cartTable--heading {
    font-size: 17px;
  }
}

.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 p, .cart-page .card label {
  text-transform: capitalize;
}

.cart-page .card .card-header {
  background-color: #d9d9d9;
  border-radius: 0;
  padding: 17px 15px;
}

@media (width >= 1200px) {
  .cart-page .card .card-header {
    padding: 17px 25px;
  }
}

.cart-page .card .card-title {
  text-transform: capitalize;
  color: #08090a;
  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;
}

.cart-page .card .card-body .btn {
  text-transform: capitalize;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  background-color: #0000 !important;
}

.cart-page .card .card-body .btn:hover {
  color: #fff !important;
  background-color: #d9d9d9 !important;
  border: 1px solid #d9d9d9 !important;
}

.cart-page .card .card-body .form-control, .cart-page .card .card-body .input {
  border: 1px solid #d9d9d9 !important;
  border-radius: 0 !important;
  height: 45px !important;
}

@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 #00f;
  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;
  font-weight: 500;
  line-height: 16px;
}

@media (width >= 1200px) {
  .cart-page__cell-total {
    font-size: 18px;
    line-height: 19px;
  }
}

.cart-page__delete-btn {
  color: #797d86;
  margin: auto;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline !important;
}

.cart-page__btns-left {
  margin-bottom: 12px;
}

@media (width >= 1200px) {
  .cart-page__btns-left {
    width: 323px;
    margin-bottom: 0;
  }
}

.cart-page__btns-wrap {
  margin-bottom: 40px;
  padding: 30px 0;
}

@media (width >= 1200px) {
  .cart-page__btns-wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    display: flex;
  }

  .cart-page__btns-wrap .btn {
    width: calc(50% - 6px);
  }

  .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;
  text-transform: capitalize;
  padding: 17px 15px;
  font-size: 17px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .cart-page .cart-page__sub-table td, .cart-page .cart-page__sub-table th {
    padding: 17px 25px;
  }
}

.table th, .table td {
  border-top: 1px solid #d9d9d9;
}

.table th tr, .table td tr {
  width: 80%;
}

.cart-page__btn {
  background: #ffc439;
  border-radius: 3px;
  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%;
  margin-top: 50px;
  padding: 0 15px;
}

@media (width >= 480px) {
  .cart-page__empty-cart {
    padding: 0 30px;
  }
}

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

#n-checkout .breadcrumbs__list {
  cursor: pointer;
}

#n-checkout .select, #n-checkout .input, #n-checkout select {
  border: 1px solid #797d86;
  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: #08090a;
  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, #n-checkout .btn-primary {
  text-transform: capitalize;
  color: #08090a;
  background-color: #0000;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

#n-checkout .btn-outline-secondary:hover, #n-checkout .btn-primary:hover {
  color: #fff;
  background-color: #d9d9d9;
}

#n-checkout .btn-outline-secondary:hover .fa-reply, #n-checkout .btn-primary:hover .fa-reply {
  color: #fff;
}

@media (width >= 1200px) {
  #n-checkout .btn-outline-secondary, #n-checkout .btn-primary {
    height: 50px;
    font-size: 18px;
  }
}

#n-checkout .btn-outline-secondary .fa-reply, #n-checkout .btn-primary .fa-reply {
  color: #08090a;
}

#n-checkout .cart-page__cell-center {
  text-align: center;
}

#n-checkout .cart-page__cell-center .cart-qty {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  height: 45px;
  padding: 0;
}

@media (width >= 1200px) {
  #n-checkout .cart-page__cell-center .cart-qty {
    width: 100px;
  }
}

.quick-search__wrapper {
  width: 100%;
  margin: 50px 0 400px;
  position: relative;
}

@media (width >= 1200px) {
  .quick-search__wrapper {
    width: calc(100% - 365px);
  }
}

.quick-search__wrapper .nsearchinput-pl {
  border-top: 1px solid #00f;
  border-bottom: 1px solid #00f;
}

.quick-search__input {
  border: 1px solid #08090a;
  border-radius: 3px;
  width: 100%;
  height: 50px;
  padding-left: 60px;
}

.quick-search__input::placeholder {
  color: #797d86;
  font-size: 15px;
  font-weight: 300;
}

.quick-search__icon-search {
  fill: #0000;
  stroke: #00f;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.quick-search__icon-arrow {
  fill: #00f;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.quick-buy {
  margin: 25px 15px;
}

.quick-buy .buying-options {
  margin: 0;
}

.quick-buy .form-inline {
  display: block;
}

.quick-search__item-wrap {
  grid-template-columns: .1fr 1fr;
  grid-template-areas: "img title"
                       "price ."
                       "btns btns";
  row-gap: 15px;
  display: grid;
}

@media (width >= 480px) {
  .quick-search__item-wrap {
    grid-template-columns: .1fr 1fr;
    grid-template-areas: "img title"
                         "price btns";
    row-gap: 15px;
  }
}

@media (width >= 1200px) {
  .quick-search__item-wrap {
    grid-template-columns: .1fr 1fr .5fr 1fr;
    grid-template-areas: "img title price btns";
    align-items: center;
    gap: 0;
  }
}

.quick-img__holder {
  mix-blend-mode: multiply;
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  grid-area: img;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

@media (width >= 480px) {
  .quick-img__holder {
    width: 40px;
    height: 40px;
  }
}

@media (width >= 1200px) {
  .quick-img__holder {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}

.quick-img__holder img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding: 2.5px;
  margin: 0 !important;
}

.quick-item-name__holder {
  margin-left: -43px;
}

@media (width >= 1200px) {
  .quick-item-name__holder {
    margin-left: 0;
  }
}

.quick-buy__title {
  color: #08090a;
  grid-area: title;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

@media (width >= 480px) {
  .quick-buy__title {
    font-size: 16px;
  }
}

.quick-buy__sku {
  color: #797d86;
  margin: 10px 0 20px;
  font-size: 12px;
  font-weight: 300;
}

@media (width >= 480px) {
  .quick-buy__sku {
    margin: 0;
    font-size: 14px;
  }
}

@media (width >= 1200px) {
  .quick-buy__sku {
    margin-top: 5px;
  }
}

.quick-buy-price__holder {
  flex-flow: wrap;
  grid-area: price;
  justify-content: center;
  align-items: center;
  margin-left: 55px;
  display: flex;
}

@media (width >= 1200px) {
  .quick-buy-price__holder {
    margin-left: 0;
  }
}

.quick-buy-price {
  color: #08090a;
  font-size: 16px;
  font-weight: 500;
}

@media (width >= 480px) {
  .quick-buy-price {
    font-size: 18px;
  }
}

@media (width >= 1200px) {
  .quick-buy-price {
    text-align: center;
  }
}

.quick-buy-btn__holder {
  grid-area: btns;
  margin-left: 55px;
  position: relative;
}

@media (width >= 480px) {
  .quick-buy-btn__holder {
    margin-left: 25px;
  }
}

@media (width >= 1200px) {
  .quick-buy-btn__holder {
    margin-left: 0;
  }
}

.quick-buy-qty {
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  flex-flow: wrap;
  order: 2;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  display: flex;
  position: absolute;
  top: -45px;
  left: 70px;
}

@media (width >= 480px) {
  .quick-buy-qty {
    height: 45px;
    position: relative;
    top: 0;
    left: 0;
  }
}

.quick-buy-btn {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.quick-buy-btn .btn {
  color: #00f;
  border: 1px solid #00f;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 40px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  background-color: #fff !important;
}

@media (width >= 480px) {
  .quick-buy-btn .btn {
    width: 160px;
    height: 45px;
    margin-top: 0;
  }
}

.quick-buy-btn .btn:hover {
  color: #fff;
  background-color: #00f !important;
}

@media (width >= 480px) {
  .quick-buy-btn .btn {
    order: 2;
    margin-left: 30px;
  }
}

@media (width >= 1200px) {
  .quick-buy-btn .btn {
    margin-left: 70px;
  }

  .quick-buy-btn {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }
}

.quick-search__item {
  padding: 15px !important;
}

.quick-search__item:hover .quick-buy__title {
  color: #00f;
}

.quick-search__item:hover .quick-buy__sku {
  color: #00c2ff;
}

.quick-buy li[id*="-hero"] {
  display: none;
}

@media (width >= 480px) {
  .blog-main {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: start;
    column-gap: 50px;
    display: flex;
  }
}

.blog-main:last-child {
  margin-bottom: 0;
}

.blog-main h4 {
  margin-bottom: 20px;
}

.blog-main .text-muted {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.blog-main__img {
  width: 200px;
  height: 200px;
  margin-bottom: 30px;
}

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

@media (width >= 1200px) {
  .blog-main__img {
    margin-bottom: 0;
  }
}

.blog-main__title {
  color: #08090a;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}

.blog-main__title:hover {
  color: #00f;
  text-decoration: underline;
}

.blog-main__reviews-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin: 30px 0 20px;
  display: flex;
}

.blog-main__comment {
  font-size: 14px;
  font-weight: 300;
}

.blog-main__reviews {
  color: #08090a;
  background-color: #d9d9d9;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.blog-main__share-list {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: max-content;
  padding: 8px;
  display: flex;
}

.blog-main__share-link svg {
  fill: #00f;
  width: 15px;
  height: 15px;
}

.blog-main__infowrap {
  color: #797d86;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.blog-main__description {
  color: #08090a;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 300;
  display: block;
}

.blog-slider {
  border-bottom: 1px solid #d9d9d9;
  margin-top: 50px;
  padding-bottom: 25px;
}

.blog-slider__link {
  cursor: pointer;
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .blog-slider__link {
    padding: 10px 15px;
    font-size: 18px;
  }
}

.n-responsive-content p {
  margin: 0;
  padding: 0;
}

.n-responsive-content a {
  cursor: pointer;
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .n-responsive-content a {
    padding: 10px 15px;
    font-size: 18px;
  }
}

.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;
  -webkit-user-select: 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 */
