* {
  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: Albert Sans, sans-serif;
  display: block;
  position: relative;
}

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

a {
  text-decoration: none;
}

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

.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: 1460px;
    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: 100%;
    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: var(--gd-red) !important;
}

.text-white {
  color: var(--gd-white);
}

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

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

.text-black {
  color: var(--gd-black) !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, .mobile-hide {
  display: none !important;
}

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

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

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

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

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

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

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

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

.box-overlay {
  background-color: var(--gd-black);
  opacity: .3;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}

@media (width >= 1200px) {
  .jsDropdownWrap {
    position: relative;
  }
}

.jsDropdownTrigger {
  cursor: pointer;
}

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

.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 var(--gd-transition) 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: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
}

.popup {
  background-color: var(--gd-gray-light);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  transition-property: opacity, z-index, visibility, transform;
  display: none;
  position: fixed;
  top: 0;
}

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

.popup.init {
  display: block;
}

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

.popup--filters {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transition: all .3s ease-in-out;
  transform: translateX(-100%);
}

.popup--filters.activeClass {
  transform: translateX(0);
}

.popup--form {
  background-color: var(--gd-white);
  opacity: 1;
  visibility: visible;
  z-index: 5;
  width: 100%;
  transition: all .3s ease-in-out;
  right: 0;
  transform: translateX(100%);
}

@media (width >= 768px) {
  .popup--form {
    width: 680px;
  }
}

.popup--form.activeClass {
  transform: translateX(0);
}

.popup--sort {
  background-color: var(--gd-white);
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transition: all .3s ease-in-out;
  transform: translateY(-100%);
}

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

.popup--search {
  background-color: var(--gd-white);
  height: auto;
  top: 30px;
}

.popup--search.activeScroll {
  top: 0;
}

@media (width >= 1200px) {
  .popup--user {
    width: 280px;
    height: auto;
    margin-right: 110px;
    padding: 20px;
    top: 90px;
  }

  .popup--user.activeScroll {
    top: 50px;
  }

  .popup--cart {
    width: 337px;
    height: auto;
    padding: 20px;
    top: 90px;
  }

  .popup--cart.activeScroll {
    top: 50px;
  }
}

.popup__header {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 0;
  display: flex;
}

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

  .popup__header--cart {
    width: 260px;
  }
}

.popup__title {
  text-transform: uppercase;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 19px;
  font-weight: 400;
  display: flex;
}

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

.popup__title--filter {
  gap: 7px;
}

.popup__title--filter svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1px;
  width: 15px;
  height: 15px;
}

.popup__close {
  cursor: pointer;
}

.popup__close svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1px;
  width: 12px;
  height: 12px;
}

@media (width >= 1200px) {
  .popup__close {
    position: absolute;
    top: 10px;
    right: 20px;
  }
}

.popup__content {
  position: relative;
}

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

.overlay.activeClass {
  opacity: .7;
  visibility: visible;
  z-index: 4;
}

.main-btn {
  background-color: var(--gd-white);
  color: var(--gd-black);
  cursor: pointer;
  transition: var(--gd-transition) background-color ease-in-out;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.main-btn svg {
  fill: var(--gd-black);
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

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

  .main-btn svg {
    fill: var(--gd-black);
    width: 15px;
    height: 15px;
  }
}

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

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

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

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

.main-btn--dark-gray svg {
  fill: var(--gd-white);
}

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

.main-btn--black {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
}

.main-btn--black svg {
  fill: var(--gd-white);
}

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

.main-btn--black:hover {
  background-color: var(--gd-red);
  border: 1px solid var(--gd-red);
  color: var(--gd-white);
}

.main-btn--underline {
  background-color: #0000;
  border: none;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
}

.main-btn--underline:hover {
  color: var(--gd-red);
  background-color: #0000;
  text-decoration: underline;
}

.main-btn--item-btn {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border: none;
  width: 100%;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
}

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

.main-btn--store-finder {
  background-color: var(--gd-gray-light);
  color: var(--gd-black);
  border: none;
  width: 100%;
  height: 40px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
}

.main-btn--store-finder:hover {
  background-color: var(--gd-gray-light);
  text-shadow: .1px 0 0 var(--gd-black);
}

.main-btn--cart-quote {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border: none;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: max-content;
  height: 45px;
  margin: 25px 0 40px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

@media (width >= 1200px) {
  .main-btn--cart-quote {
    margin: 25px 0;
  }
}

.main-btn--cart-quote i {
  font-size: 14px;
}

.main-btn--cart-quote:hover {
  background-color: var(--gd-red);
}

.main-btn--update-changes {
  background-color: var(--grey-for-lines);
  color: var(--gd-white);
  border: none;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 45px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.main-btn--cart-checkout {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border: none;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

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

.main-btn--cart-checkout svg {
  fill: var(--gd-white);
  width: 20px;
  height: 20px;
  margin: 0;
}

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

.products-list .splide__pagination, .prod-imgs .splide__pagination, .contactus-b .splide__pagination, .upsell-page__products .splide__pagination {
  margin: 0;
  padding: 0;
  bottom: -50px;
  display: flex !important;
}

.products-list .splide__pagination li, .prod-imgs .splide__pagination li, .contactus-b .splide__pagination li, .upsell-page__products .splide__pagination li {
  flex: 1 1 0;
}

.products-list .splide__pagination .splide__pagination__page, .prod-imgs .splide__pagination .splide__pagination__page, .contactus-b .splide__pagination .splide__pagination__page, .upsell-page__products .splide__pagination .splide__pagination__page {
  background-color: var(--grey-for-lines);
  border-radius: 0;
  width: 100%;
  height: 1px;
}

.products-list .splide__pagination .splide__pagination__page.is-active, .prod-imgs .splide__pagination .splide__pagination__page.is-active, .contactus-b .splide__pagination .splide__pagination__page.is-active, .upsell-page__products .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--grey-for-lines);
  height: 7px;
  transform: none;
}

.prod-imgs .splide__pagination {
  bottom: -30px;
}

.read-more {
  max-height: 100px;
  transition: max-height .3s ease-in-out;
  overflow: hidden;
}

.read-more--category {
  max-height: 250px;
}

.read-more--seo-first {
  max-height: 75px;
}

.read-more--seo-second {
  max-height: 85px;
}

.read-more__btn {
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
  display: block;
}

.breadcrumbs {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.breadcrumbs__nav {
  white-space: nowrap;
  overflow-x: auto;
}

.breadcrumbs__nav::-webkit-scrollbar {
  background-color: var(--gd-gray-light);
  border-radius: 10px;
  width: 5px;
  height: 4px;
}

.breadcrumbs__nav::-webkit-scrollbar-thumb {
  background: var(--grey-for-lines);
}

.breadcrumbs__ellipse {
  background-color: var(--gd-red);
  border-radius: 50%;
  width: 3px;
  height: 3px;
}

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

.breadcrumbs__link {
  color: var(--gd-black);
  text-decoration: none;
}

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

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

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

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

#n-product .breadcrumbs, .page-buyingguide-single .breadcrumbs {
  border-bottom: 1px solid var(--grey-for-lines);
  display: block;
}

#n-product .breadcrumbs__list, .page-buyingguide-single .breadcrumbs__list {
  padding: 20px 0;
}

@media (width >= 1200px) {
  #n-product .breadcrumbs__nav, .page-buyingguide-single .breadcrumbs__nav {
    width: 500px;
    margin: 0 auto;
  }
}

#n-product .breadcrumbs__list-item, .page-buyingguide-single .breadcrumbs__list-item {
  display: none;
}

#n-product .breadcrumbs__list-item.activeClass, .page-buyingguide-single .breadcrumbs__list-item.activeClass {
  display: block;
}

#n-product .breadcrumbs__list-item.activeClass:last-child, .page-buyingguide-single .breadcrumbs__list-item.activeClass:last-child {
  display: none;
}

#n-product .breadcrumbs__list-dots, .page-buyingguide-single .breadcrumbs__list-dots {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

#n-product .breadcrumbs__list-dots.activeClass, .page-buyingguide-single .breadcrumbs__list-dots.activeClass {
  display: none;
}

#n-product .breadcrumbs__dot, .page-buyingguide-single .breadcrumbs__dot {
  margin: 0 6px;
  font-size: 12px;
  font-weight: 300;
}

#n-product .breadcrumbs__list-item:first-child, #n-product .breadcrumbs__list-item:nth-last-child(2), #n-product .breadcrumbs__list-item:nth-last-child(3), .page-buyingguide-single .breadcrumbs__list-item:first-child, .page-buyingguide-single .breadcrumbs__list-item:nth-last-child(2), .page-buyingguide-single .breadcrumbs__list-item:nth-last-child(3) {
  display: block;
}

.section-title {
  margin: 0;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

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

.section-title--item {
  text-align: center;
  margin-bottom: 60px;
  display: block;
}

.page-title {
  margin: 0;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 30px;
  font-weight: 500;
}

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

.section-text {
  background-color: var(--gd-gray-light);
  padding: 100px 0;
}

@media (width >= 480px) {
  .section-text {
    padding: 85px 0;
  }
}

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

  .section-text--seo-first {
    padding: 37.5px 0;
  }
}

.section-text--no-bg {
  background-color: #0000;
  padding: 0;
}

@media (width >= 768px) {
  .section-text__inner {
    width: 500px;
    margin: 0 auto;
  }
}

.section-text__inner p {
  margin: 1rem 0 0;
  font-size: 15px;
  font-weight: 400;
}

.section-text__inner p strong {
  font-weight: 400;
}

.section-text__inner a {
  color: var(--gd-red);
  font-weight: 500;
}

@media (width >= 768px) {
  #n-home .section-text__inner {
    width: 80%;
  }
}

#podium-bubble {
  z-index: 5 !important;
}

#n-content .n-responsive-content {
  font-size: 14px;
  font-weight: 400;
}

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

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

.product-box__sku {
  color: var(--gd-red);
  text-align: center;
  text-transform: capitalize;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.product-box__title {
  color: var(--gd-black);
  text-align: center;
  height: 60px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.product-box__price {
  color: var(--gd-black);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 0 0 65px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.product-box__price .price--red {
  color: var(--gd-red);
}

.product-box__price .price--rrp {
  font-size: 12px;
  text-decoration: line-through;
}

.product-box__form-inline .main-btn {
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  width: 100%;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  transition-property: opacity, visibility;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.product-box__wishlist {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

.product-box__wishlist svg {
  width: 15px;
  height: 15px;
}

.product-box__wishlist--item-page svg {
  width: 18px;
  height: 18px;
}

@media (width >= 1200px) {
  .product-box__wishlist--item-page svg {
    width: 25px;
    height: 25px;
  }
}

.product-box {
  border: 1px solid var(--grey-for-lines);
  padding: 60px 45px 0 42px;
  position: relative;
}

.product-box:nth-child(odd), .product-box:nth-child(2n) {
  border-right: none;
}

.product-box:hover .main-btn {
  opacity: 1;
  visibility: visible;
}

.product-box--category, .product-box--search_results {
  grid-column: span 8;
  border: 1px solid var(--grey-for-lines) !important;
  margin: 0 -1px -1px 0 !important;
}

.product-box--resized {
  padding: 15px;
}

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

.product-box--resized .product-box__title {
  height: 80px;
}

.product-box--resized .product-box__sku {
  height: 30px;
}

.product-box__badges-wrap {
  position: absolute;
  top: 15px;
  left: 15px;
}

.product-box__badges-single {
  border: 1px solid var(--gd-red);
  color: var(--gd-red);
  margin-bottom: 5px;
  padding: 3px;
  font-size: 11px;
  font-weight: 400;
}

.product-box__badges-single--new-item {
  text-align: center;
  margin-top: 5px;
}

.header-top {
  background-color: var(--gd-black);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  display: flex;
}

.header-top__title {
  color: var(--gd-white);
  font-size: 12px;
  font-weight: 400;
}

.header-main {
  background-color: var(--gd-white);
  border-bottom: 1px solid var(--grey-for-lines);
  z-index: 5;
  height: 60px;
  position: relative;
}

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

.header-main__wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

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

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

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

  .header-main__right .header-main__icon {
    padding-left: 15px;
  }
}

.header-main__logo {
  transition: var(--gd-transition) ease-in-out;
  width: auto;
  max-width: 190px;
  height: auto;
  max-height: 100%;
  transition-property: max-width;
}

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

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

.header-main__icon {
  cursor: pointer;
}

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

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

.header-main__icon--search-icon {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.7px;
}

.header-main__icon--store-desktop {
  display: none;
  overflow: hidden;
}

.header-main__icon--store-desktop svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: .9px;
}

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

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

.header-main__icon--cart-desktop, .header-main__icon--user-desktop, .header-main__icon--wishlist-desktop {
  display: none;
}

@media (width >= 1200px) {
  .header-main__icon--cart-desktop, .header-main__icon--user-desktop, .header-main__icon--wishlist-desktop {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }
}

.header-main__icon--cart-desktop, .header-main__icon--user-desktop {
  height: 100%;
}

.header-main__icon--user-desktop {
  padding-left: 30px;
}

@media (width <= 1500px) and (width >= 1200px) {
  .header-main__icon--user-desktop {
    padding-left: 15px;
  }
}

.header-main__icon:hover, .header-main__icon.activeClass {
  transform: scale(1.1);
}

.header-main__cart-count {
  font-size: 11px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
}

@media (width >= 1200px) {
  .header-main__cart-count {
    padding-left: 15px;
    font-size: 10px;
  }
}

.header-main__search-wrap {
  width: 240px;
  position: relative;
}

.menu {
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  height: calc(100vh - 85px);
  overflow-y: auto;
}

.menu__wrap {
  border-bottom: 1px solid var(--grey-for-lines);
  margin-bottom: 30px;
}

.filters__wrap {
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  height: calc(100vh - 100px);
  overflow-y: auto;
}

.filters {
  background-color: var(--gd-gray-light);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  width: 100%;
  transition-property: opacity, z-index, visibility;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.filters.init {
  display: block;
}

.filters.activeClass {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.filters--submenu {
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  z-index: 99;
  height: 100%;
  transition-property: opacity, z-index, visibility;
  display: block;
  top: 0;
  left: 0;
}

.filters--submenu.activeClass {
  opacity: 1;
  visibility: visible;
}

.filters__body {
  border-bottom: 1px solid var(--grey-for-lines);
}

.filters-header {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin-bottom: 23px;
  font-size: 17px;
  font-weight: 400;
  display: flex;
}

.filters-header svg {
  fill: var(--gd-black);
  width: 10px;
  height: 10px;
  transform: rotate(180deg);
}

.filters-header:hover {
  color: var(--gd-red);
}

.filters-header:hover svg {
  fill: var(--gd-red);
}

.filters__title {
  color: var(--gd-black);
  text-transform: uppercase;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: max-content;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.filters__title svg {
  fill: var(--gd-black);
  width: 10px;
  height: 10px;
}

.filters__title--lvl2 {
  text-transform: uppercase;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 300;
  display: flex;
}

.filters__title--lvl3 {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 300;
}

.filters__title:hover {
  color: var(--gd-red);
}

.filters__title:hover svg {
  fill: var(--gd-red);
}

.header-search__form {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  display: flex;
}

.header-search__input {
  background-color: var(--gd-gray-light);
  color: var(--gd-black);
  border: none;
  width: 100%;
  height: 40px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 300;
}

.header-search__input::placeholder {
  font-size: 12px;
  font-weight: 300;
}

.header-search__btn {
  cursor: pointer;
  background-color: #0000;
  border: none;
  padding: 0;
  position: absolute;
  right: 45px;
}

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

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

.header-search__btn svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.7px;
  width: 22px;
  height: 22px;
}

.header-search__btn svg:hover {
  transform: scale(1.1);
}

.search_loading_icon {
  display: none !important;
}

.nsearchinput-pl {
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  height: 390px;
  padding: 30px 15px;
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 4px 4px #00000040;
  background-color: var(--gd-gray-light) !important;
  margin-top: 40px !important;
}

@media (width >= 480px) {
  .nsearchinput-pl {
    padding: 30px;
  }
}

@media (width >= 1200px) {
  .nsearchinput-pl {
    margin-left: auto;
    width: 415px !important;
    padding: 30px !important;
  }
}

.nsearchinput-pl .nav-list {
  margin: 0;
  padding: 0;
}

.nsearchinput-pl li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nsearchinput-pl li:hover .title {
  color: var(--gd-red);
}

.nsearchinput-pl a {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 17px;
  margin-bottom: 15px;
  text-decoration: none;
  display: flex;
}

.nsearchinput-pl .title {
  color: var(--gd-black);
  font-size: 13px;
  font-weight: 400;
}

.nsearchinput-pl .title b {
  font-weight: 400 !important;
}

.nsearchinput-pl img {
  width: auto;
  max-width: 30px;
  height: auto;
  max-height: 100%;
}

.user-info {
  border-bottom: 1px solid var(--grey-for-lines);
  margin: 0 0 30px;
  padding: 0;
}

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

.user-info__link {
  color: var(--gd-black);
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 300;
  text-decoration: none;
  display: block;
  position: relative;
}

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

.user-info__link:hover {
  color: var(--gd-red);
  text-shadow: 0 0 .65px var(--gd-red), 0 0 .65px var(--gd-red);
}

.order-summary__scroll {
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  height: max-content;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

.order-summary__scroll--add-scroll {
  height: 378px;
}

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

.order-summary__single {
  border-top: 1px solid var(--grey-for-lines);
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  gap: 17px;
  width: calc(100% - 40px);
  margin: 0;
  padding: 20px 0;
  list-style: none;
  display: flex;
}

.order-summary__single:first-child {
  border-top: none;
  padding-top: 0;
}

.order-summary__product-title {
  color: var(--gd-black);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
}

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

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

.order-summary__qty {
  background-color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 35px;
  margin-top: 15px;
  display: flex;
}

.order-summary__remove {
  color: var(--gd-black);
  margin-top: 10px;
  font-size: 10px;
  font-weight: 200;
  text-decoration: underline;
  display: block;
}

.order-summary__remove:hover {
  color: var(--gd-red);
  text-decoration: underline;
}

.order-summary__product-cost {
  margin-left: auto;
  font-size: 15px;
  font-weight: 400;
}

.order-summary__bottom-wrap {
  border-top: 1px solid var(--grey-for-lines);
}

.order-summary__cost {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 15px;
  display: flex;
  font-weight: 400 !important;
}

.order-summary__cost b {
  font-weight: 400 !important;
}

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

.order-summary__btn-wrap {
  width: 100%;
  margin-top: 20px;
}

.order-summary__btn-wrap .main-btn {
  width: 100%;
}

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

.desc-nav {
  height: 100%;
  margin-left: 60px;
  margin-right: auto;
}

@media (width <= 1500px) and (width >= 1200px) {
  .desc-nav {
    margin-left: 20px;
  }
}

.desc-nav__wrap {
  height: 100%;
}

.desc-nav__list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}

.desc-nav__item {
  white-space: nowrap;
  height: 100%;
  margin: 0;
  padding: 0 25px 0 0;
  list-style: none;
}

@media (width <= 1500px) and (width >= 1200px) {
  .desc-nav__item {
    padding-right: 10px;
  }
}

.desc-nav__link {
  color: var(--gd-black);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid #0000;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: end;
  height: 100%;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  position: relative;
}

.desc-nav__link:before {
  content: attr(title);
  opacity: 0;
  font-weight: 200;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%);
}

.desc-nav__overlay {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  background-color: #000c;
  width: 100%;
  height: calc(100vh - 100px);
  position: absolute;
  top: 100%;
  left: 0;
}

.desc-nav__sublist {
  background-color: var(--gd-gray-light);
  border-top: 1px solid var(--grey-for-lines);
  opacity: 0;
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  visibility: hidden;
  z-index: 3;
  transition: var(--gd-transition) ease-in-out;
  width: 100%;
  height: 310px;
  transition-property: opacity, visibility, transform;
  transition-delay: 50ms;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 4px 4px #00000040;
}

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

.desc-nav__item--dropdown.activeClass .desc-nav__overlay {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.desc-nav__item--dropdown:hover .desc-nav__link, .desc-nav__item:hover .desc-nav__link {
  border-bottom: 3px solid var(--gd-red);
  color: var(--gd-black);
  text-decoration: none;
}

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

.desc-nav__sublist-list {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  gap: 25px 100px;
  width: calc(100% - 300px);
  margin: 0 0 0 auto;
  padding: 40px 0 0;
  display: flex;
  position: relative;
}

@media (width <= 1500px) and (width >= 1200px) {
  .desc-nav__sublist-list {
    width: calc(100% - 265px);
  }
}

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

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

.desc-nav__subitem--lvl2 .nav-link {
  color: var(--gd-black);
  text-transform: uppercase;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.desc-nav__subitem--lvl2 .nav-link:hover {
  color: var(--gd-red);
}

.desc-nav__subitem--lvl3 .nav-link {
  text-transform: capitalize;
  padding-top: 15px;
  font-weight: 300;
  display: block;
}

.desc-nav__subitem--lvl3 .nav-link:hover {
  text-shadow: 0 0 .65px var(--gd-red), 0 0 .65px var(--gd-red);
}

.gd-header__wrap {
  background-color: var(--gd-white);
  transition: var(--gd-transition) ease-in-out;
  z-index: 2;
  width: 100%;
  transition-property: all;
  position: fixed;
  top: 0;
  left: 0;
}

.gd-header__wrap.down {
  top: -30px;
  box-shadow: 0 0 4px #00000040;
}

.gd-header__wrap.down .header-main {
  height: 50px;
}

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

.gd-header__wrap.down .desc-nav__overlay {
  height: calc(100vh - 70px);
}

.gd-header__wrap.up {
  top: -30px;
  box-shadow: 0 0 4px #00000040;
}

.gd-header__wrap.up .header-main {
  height: 50px;
}

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

.gd-header__wrap.up .desc-nav__overlay {
  height: calc(100vh - 70px);
}

.main__wrap {
  margin-top: 90px;
}

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

.usp {
  background-color: var(--gd-white);
  border-top: 1px solid var(--grey-for-lines);
}

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

.usp__inner {
  padding: 65px 0;
}

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

.usp__img {
  filter: grayscale();
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: flex;
}

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

.usp-title {
  color: var(--gd-black);
  text-transform: uppercase;
  margin: 15px 0 20px;
  font-size: 24px;
  font-weight: 400;
}

.usp-link {
  color: var(--gd-black);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}

.usp__single {
  margin-bottom: 60px;
  display: block;
}

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

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

  .usp__single:nth-child(2) {
    margin-left: -115px;
  }
}

.usp__single:hover .usp__img {
  filter: grayscale(0);
}

.gd-footer {
  background-color: var(--gd-gray-light);
  padding: 45px 0 0;
}

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

@media (width >= 1200px) {
  .gd-footer {
    padding: 80px 0 0;
  }
}

.newsletter {
  text-align: center;
  margin: 0 auto;
  position: relative;
}

@media (width >= 768px) {
  .newsletter {
    width: 500px;
  }
}

@media (width >= 1200px) {
  .newsletter {
    width: 640px;
  }
}

.newsletter__title {
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: 300;
}

.newsletter__input {
  color: var(--gd-black);
  border: none;
  width: 100%;
  height: 45px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
}

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

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

.newsletter__btn svg {
  fill: var(--gd-red);
  width: 21px;
  height: 21px;
}

.newsletter__btn:hover svg {
  transform: scale(1.1);
}

.footer-menu {
  z-index: 1;
  padding-top: 60px;
  position: relative;
}

@media (width >= 1200px) {
  .footer-menu {
    flex-flow: row;
    justify-content: space-between;
    align-items: start;
    padding-top: 80px;
    display: flex;
  }

  .footer-menu__single {
    flex-flow: row;
    justify-content: space-between;
    align-items: start;
    width: 70%;
    display: flex;
  }

  .footer-menu__single--right {
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: start;
    width: max-content;
    display: flex;
  }
}

.footer-menu__nav-item {
  transition: var(--gd-transition) ease-in-out;
  max-height: 45px;
  margin-bottom: 30px;
  transition-property: max-height;
  overflow: hidden;
}

.footer-menu__nav-item:last-child {
  margin-bottom: 0;
}

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

  .footer-menu__nav-item--payments {
    margin-top: 60px !important;
  }
}

.footer-menu__nav-item--payments, .footer-menu__nav-item--social {
  max-height: 100%;
}

@media (width <= 1200px) {
  .footer-menu__nav-item--payments, .footer-menu__nav-item--social {
    margin: 30px 0 0;
  }
}

.footer-menu__link {
  color: var(--gd-black);
  text-transform: uppercase;
  transition: var(--gd-transition) ease-in-out;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 400;
  transition-property: max-height;
  display: flex;
}

.footer-menu__link svg {
  width: 15px;
  height: 15px;
}

.footer-menu__link--payments img {
  width: 100%;
  max-width: 50px;
  height: auto;
  max-height: 100%;
}

.footer-menu__link--social svg {
  fill: var(--gd-red);
  width: 20px;
  height: 20px;
}

.footer-menu__link--social:hover svg {
  transform: scale(1.1);
}

.footer-menu__link:hover {
  color: var(--gd-red);
  text-shadow: 0 0 .65px var(--gd-red), 0 0 .65px var(--gd-red);
}

.footer-menu__nav-list {
  margin: 0;
  padding: 10px 0 0;
}

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

.footer-menu__nav-list--payments, .footer-menu__nav-list--social {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
}

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

.footer-menu__nav-list-item:last-child {
  margin-bottom: 0;
}

.footer-menu__title {
  color: var(--gd-black);
  text-transform: uppercase;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
}

.footer-menu__title svg {
  fill: var(--gd-red);
  width: 13px;
  height: 13px;
  transform: rotate(90deg);
}

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

  .footer-menu__title {
    height: 30px;
    margin-bottom: 20px;
  }
}

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

.footer-logo {
  background-color: var(--gd-white);
  margin: 45px 0 0;
}

@media (width >= 480px) {
  .footer-logo {
    margin: 50px 0 0;
  }
}

@media (width >= 1200px) {
  .footer-logo {
    margin: 80px 0 0;
    padding: 25px 0;
  }
}

.footer-logo__single {
  width: auto;
  max-width: 345px;
  height: auto;
  max-height: 100%;
}

@media (width >= 480px) {
  .footer-logo__single {
    max-width: 456px;
  }
}

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

.footer-bottom {
  background-color: var(--gd-black);
  z-index: 5;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  display: flex;
  position: relative;
}

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

.footer-bottom__wrap {
  position: relative;
}

.footer-bottom__top {
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

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

.footer-bottom__scroll-top {
  position: absolute;
  top: 0;
  right: 15px;
}

.footer-bottom__scroll-top svg {
  fill: var(--gd-red);
  width: 15px;
  height: 15px;
  transform: rotate(-90deg);
}

@media (width >= 1200px) {
  .footer-bottom__scroll-top svg {
    width: 20px;
    height: 20px;
  }
}

.footer-bottom__link {
  border-right: 1px solid var(--gd-white);
  color: var(--gd-white);
  padding-right: 10px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
}

.footer-bottom__link:last-child {
  border-right: none;
  margin-right: 0;
}

.footer-bottom__link:hover {
  color: var(--gd-red);
  text-shadow: 0 0 .65px var(--gd-red), 0 0 .65px var(--gd-red);
  text-decoration: underline;
}

.hero__single {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 310px;
}

.hero__single .main-btn {
  width: 160px;
  margin: 0 auto;
}

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

@media (width >= 1200px) {
  .hero__content-wrap {
    width: 600px;
    padding: 30px 40px;
  }
}

.hero__subtitle {
  margin: 15px 0 30px;
  font-size: 16px;
  font-weight: 300;
}

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

.shop-categories .main-btn {
  width: 160px;
  height: 40px;
  margin: 40px auto 0;
}

.shop-categories__wrap {
  grid-gap: 15px;
  grid-template-columns: repeat(16, 1fr);
  margin-top: 30px;
  display: grid;
}

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

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

.shop-categories__wrap.activeClass .shop-categories__single:nth-child(n+5) {
  display: block;
}

.shop-categories__img {
  transition: var(--gd-transition) ease-in-out;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  transition-property: transform;
  position: relative;
  overflow: hidden;
}

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

.shop-categories__text-wrap {
  background-color: #fffc;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 80px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width >= 768px) {
  .shop-categories__text-wrap {
    width: 140px;
    height: 100px;
  }
}

@media (width >= 1200px) {
  .shop-categories__text-wrap {
    width: 230px;
    height: 100px;
  }
}

.shop-categories__title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

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

.shop-categories__subtext {
  color: var(--gd-red);
  opacity: 0;
  text-transform: uppercase;
  transition: var(--gd-transition) ease-in-out;
  margin: 7px 0 0;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  transition-property: opacity;
}

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

.shop-categories__single {
  border: .5px solid var(--grey-for-lines);
  color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  flex-flow: wrap;
  grid-column: span 8;
  justify-content: center;
  align-items: center;
  padding: 12px;
  transition-property: transform, opacity;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

.shop-categories__single:hover .shop-categories__subtext {
  opacity: 1;
}

.shop-categories__single:hover .shop-categories__img {
  transform: scale(1.05);
}

.shop-categories__single:nth-child(n+5) {
  display: none;
}

@media (width >= 768px) and (width <= 1200px) {
  .shop-categories__single:nth-child(n+4) {
    display: none;
  }
}

.shop-categories__single--top-level {
  display: block !important;
}

.prod-list__inner {
  margin-top: 40px;
}

@media (width >= 480px) {
  .prod-list__inner {
    margin-top: 30px;
  }
}

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

.testimonials {
  background-color: var(--gd-gray-light);
  margin-top: 130px;
  padding: 55px 0;
}

@media (width >= 480px) {
  .testimonials {
    margin-top: 150px;
    padding: 60px 0;
  }
}

@media (width >= 1200px) {
  .testimonials {
    margin-top: 130px;
    padding: 75px 0;
  }
}

.testimonials--our-tale {
  margin-top: 0;
}

.testiomonials__wrap {
  margin-top: 40px;
}

@media (width >= 480px) {
  .testiomonials__wrap {
    margin-top: 30px;
  }
}

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

.testiomonials__wrap--our-tale {
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}

@media (width >= 768px) {
  .testiomonials__wrap--our-tale {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

@media (width >= 1200px) {
  .testiomonials__wrap--our-tale {
    grid-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

.testimonials__single {
  background-color: var(--gd-white);
  padding: 30px 20px;
}

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

.testimonials__rounded-text {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: 400;
  display: flex;
}

.testimonials__top {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.testiominals__bottom p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 300;
  text-align: left !important;
}

.social .widget-title {
  display: none !important;
}

.social .main-btn {
  width: 160px;
  height: 40px;
  margin: 0 auto;
}

@media (width >= 768px) {
  .social__header {
    width: 500px;
    margin: 0 auto;
  }
}

.social__subtext {
  margin: 15px 0;
  font-size: 15px;
  font-weight: 300;
}

.social__wrap {
  margin-top: 60px;
}

.category-main__top {
  background-color: var(--gd-gray-light);
  z-index: 1;
  margin-left: -15px;
  margin-right: -15px;
  position: sticky;
  top: 50px;
}

@media (width >= 480px) {
  .category-main__top {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (width >= 1200px) {
  .category-main__top {
    margin-left: -15px;
    margin-right: -15px;
    top: 60px;
  }
}

.category-main__top.activeScrolling {
  border-bottom: 1px solid var(--grey-for-lines);
}

@media (width >= 1200px) {
  .category-main__top.activeScrolling .category-main__top-wrap {
    height: 40px;
  }
}

.category-main__top-wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 35px;
  padding: 0 15px;
  display: flex;
}

@media (width >= 480px) {
  .category-main__top-wrap {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .category-main__top-wrap {
    height: 60px;
    padding: 0 15px;
  }
}

.category-main__inner-wrap {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  display: flex;
}

.category-main__filter-btn {
  cursor: pointer;
  color: var(--gd-gray-dark);
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  display: none;
}

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

.category-main__filter-btn svg {
  fill: var(--gd-gray-dark);
  width: 10px;
  height: 10px;
}

.category-main__filter-btn.activeClass svg {
  transform: rotate(180deg);
}

.category-main__filter-btn--mob {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  display: flex;
}

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

.category-main__toggle-view {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 30px;
  display: flex;
}

.category-main__main-view {
  width: 15px;
  height: 15px;
}

.category-main__main-view.activeClass, .category-main__alt-view {
  display: none;
}

.category-main__alt-view svg {
  width: 25px;
  height: 15px;
}

.category-main__alt-view svg:nth-child(2) {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1px;
  width: 15px;
  height: 15px;
}

.category-main__alt-view.activeClass {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

@media (width >= 1200px) {
  .category-main__sort-wrap {
    position: relative;
  }
}

.category-main__sort-input {
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  min-height: 100%;
  transition-property: opacity, visibility, top;
  position: absolute;
  right: 0;
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 1200px) {
  .category-main__sort-input {
    top: 50%;
    width: 220px !important;
  }
}

.category-main__sort-input.activeClass {
  opacity: 1;
  visibility: visible;
}

@media (width >= 1200px) {
  .category-main__sort-input.activeClass {
    top: 100%;
    width: 220px !important;
  }
}

.category-main__sort-input--popup {
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  padding: 0;
  position: relative;
  width: 100% !important;
}

.category-main__sort-input--popup li {
  padding-bottom: 20px;
}

.category-main__sort-input--popup li:last-child {
  padding-bottom: 0;
}

.category-main__sort-input--popup a {
  color: var(--gd-black);
  font-size: 15px;
  font-weight: 300;
  display: block;
}

.category-main__sort-input--popup a:hover {
  text-shadow: .1px 0 0 var(--gd-red);
  color: var(--gd-red);
}

@media (width >= 480px) {
  .category-main__sort-input--popup a {
    font-size: 17px;
  }
}

.category-main__sort-input--popup .selected {
  text-shadow: .1px 0 0 var(--gd-red);
  color: var(--gd-red);
}

.category-main__sort-label {
  cursor: pointer;
  color: var(--gd-gray-dark);
  text-transform: uppercase;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

.category-main__sort-input {
  text-transform: uppercase;
  background-color: var(--gd-white);
  border: none;
  border-radius: 4px;
  width: 100%;
  padding: 1rem;
  font-size: 12px;
  font-weight: 300;
  overflow: hidden;
}

.category-main__sort-input:focus {
  border: none;
  outline: none;
}

.category-main__sort-input--popup {
  border-bottom: 1px solid var(--grey-for-lines);
  padding: 0 0 20px;
}

.category-main__sort-input option {
  cursor: pointer;
  margin-bottom: 20px;
}

.category-main__sort-input option:last-child {
  margin-bottom: 0;
}

.category-main__sort-input option:checked, .category-main__sort-input option:hover {
  color: var(--gd-red) !important;
  background-color: #0000 !important;
  font-weight: 400 !important;
}

.category-main__wrapper {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  display: flex;
}

.category-main__left {
  transition: var(--gd-transition) ease-in-out;
  flex-shrink: 0;
  width: 0;
  margin-left: -15px;
  transition-property: width;
  position: sticky;
  top: 61px;
}

.category-main__left.activeClass {
  width: 301px;
}

.category-main__left.activeScrolling .category-main__filter-heading {
  border-bottom: 1px solid var(--grey-for-lines);
}

@media (width >= 1200px) {
  .category-main__left.activeScrolling .category-main__filter-heading {
    height: 40px;
  }
}

.category-main__right {
  background-color: var(--gd-white);
  flex: 1;
  position: relative;
}

@media (width >= 1200px) {
  .category-main__right {
    padding-left: 15px;
  }
}

.category-main__product-row {
  grid-gap: 0;
  transition: var(--gd-transition) ease-in-out;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 1px;
  transition-property: grid-template-columns;
  display: grid;
}

.category-main__product-row.activeClass {
  grid-gap: 0;
  grid-template-columns: repeat(16, 1fr);
  display: grid;
}

@media (width >= 768px) {
  .category-main__product-row {
    grid-gap: 0;
    grid-template-columns: repeat(24, 1fr);
    display: grid;
  }

  .category-main__product-row.activeClass {
    grid-gap: 0;
    grid-template-columns: repeat(32, 1fr);
    display: grid;
  }
}

@media (width >= 1200px) {
  .category-main__product-row {
    grid-gap: 0;
    grid-template-columns: repeat(32, 1fr);
    margin-top: 0;
    display: grid;
  }

  .category-main__product-row.activeClass {
    grid-gap: 0;
    grid-template-columns: repeat(48, 1fr);
    display: grid;
  }
}

.category-main__empty-text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}

.category-main__filter-heading {
  background-color: var(--gd-gray-light);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.category-main__filter-title {
  text-transform: uppercase;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.category-main__filter-title svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1px;
  width: 11px;
  height: 11px;
}

.category-main__clear-btn {
  color: var(--gd-black);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 300;
}

.category-main__clear-btn:hover {
  color: var(--gd-red);
  font-weight: 400;
}

@media (width <= 1200px) {
  .category-main__clear-btn {
    margin-left: auto;
    margin-right: 40px;
  }
}

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

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

.category-main__filter-line {
  display: none;
}

@media (width >= 1200px) {
  .category-main__filter-line {
    background-color: var(--grey-for-lines);
    z-index: 1;
    width: 301px;
    height: 1px;
    display: block;
    position: absolute;
    top: 310px;
    left: 15px;
  }

  .category-main__filter-line.activeScrolling {
    opacity: 0;
    visibility: hidden;
  }
}

.filter__wrapper {
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  transition: var(--gd-transition) ease-in-out;
  transition-property: scrollbar-color padding-right;
  height: calc(100vh - 250px);
  padding-right: 15px;
  overflow: auto;
}

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

.filter__wrapper:hover {
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
}

@media (width >= 1200px) {
  .filter__wrapper {
    padding-top: 20px;
    padding-left: 15px;
  }
}

.filter-wrap {
  cursor: pointer;
  white-space: nowrap;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  display: flex;
}

.filter-wrap svg {
  fill: var(--gd-black);
  width: 10px;
  height: 10px;
}

.filter-wrap .filter-header__icon--minus {
  display: none;
}

.filter-wrap .filter-header__icon--plus, .filter-wrap.activeClass .filter-header__icon--minus {
  display: block;
}

.filter-wrap.activeClass .filter-header__icon--plus {
  display: none;
}

.filter-header {
  border-bottom: 2px solid var(--gd-black);
  font-size: 14px;
  font-weight: 400;
}

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

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

.filter-icon {
  border: 1px solid var(--grey-for-lines);
  transition: var(--gd-transition) ease-in-out;
  border-radius: 30px;
  width: 15px;
  height: 15px;
  transition-property: border;
}

.filter-icon__inner {
  color: var(--gd-red);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  font-weight: 400;
  transition-property: opacity;
  display: flex;
}

.list-group-item {
  color: var(--gd-black);
  text-transform: uppercase;
  transition: var(--gd-transition) ease-in-out;
  white-space: nowrap;
  background-color: #0000;
  border: none;
  border-left: 1px solid #0000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  height: max-content;
  margin: 15px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 300;
  list-style: none;
  display: flex;
}

.list-group-item:hover {
  text-shadow: .3px 0 0 var(--gd-red);
}

.list-group-item:hover .filter-icon {
  border: 1px solid var(--gd-black);
}

.list-group-item:hover .filter-icon__inner {
  opacity: 1;
}

.filter-box {
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.filter-remove .list-group-item {
  text-shadow: .3px 0 0 var(--gd-red);
}

.filter-remove .list-group-item .filter-icon {
  border: 1px solid var(--gd-black);
}

.filter-remove .list-group-item .filter-icon__inner {
  opacity: 1;
}

.category-main__pagination {
  margin-top: 50px;
}

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

.page-item .page-link {
  color: var(--gd-black);
  border: none;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.page-item .page-link:hover {
  color: var(--gd-red);
  background-color: #0000;
}

.page-item--info {
  order: 2;
  margin: 0 auto;
}

.page-item--prev {
  order: 1;
}

.page-item--prev svg {
  transform: rotate(180deg);
}

.page-item--next {
  order: 3;
}

.page-item svg {
  fill: var(--gd-red);
  width: 10px;
  height: 10px;
}

.product__images {
  background-color: var(--gd-gray-light);
  padding: 50px 15px;
  position: relative;
}

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

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

  .product__wrap {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

.prod-imgs {
  max-width: 100%;
  margin: 0 auto;
}

@media (width >= 1200px) {
  .prod-imgs {
    max-width: 600px;
  }

  .prod-imgs__wrap .splide__slide {
    margin-bottom: 40px;
  }

  .prod-imgs__wrap .splide__slide:last-child {
    margin-bottom: 0;
  }
}

.prod-imgs__figure {
  background-color: var(--gd-white);
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

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

#lightbox {
  flex-direction: column;
  display: flex;
}

#lightbox .lb-dataContainer {
  order: 0;
  margin-bottom: 10px;
}

#lightbox .lb-outerContainer {
  order: 1;
}

.product__sidebar {
  padding: 0 15px;
}

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

@media (width >= 1200px) {
  .product__sidebar {
    height: max-content;
    margin: 0;
    padding: 0;
    transition: all .3s ease-in-out;
    position: sticky;
    top: 60px;
  }

  .product__sidebar-wrap {
    width: 500px;
    margin: 0 auto;
  }
}

.prod-header {
  margin-top: 30px;
}

.prod-header__text {
  color: var(--gd-red);
  font-size: 14px;
  font-weight: 400;
}

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

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

.prod-header__title {
  color: var(--gd-black);
  margin: 10px 0;
  font-size: 24px;
  font-weight: 400;
}

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

.prod-header__sku {
  color: var(--gd-white-dark);
  font-size: 12px;
  font-weight: 300;
}

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

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

.prod-header__bottom-wrap {
  margin-top: 25px;
}

.prod-header__pricing-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: flex;
}

.prod-header__productprice {
  color: var(--gd-black);
  font-size: 24px;
  font-weight: 500;
}

@media (width >= 480px) {
  .prod-header__productprice {
    font-size: 26px;
  }
}

.prod-header__productprice--red {
  color: var(--gd-red);
}

.prod-header__productrrp {
  color: var(--gd-black);
  font-size: 20px;
  font-weight: 400;
  text-decoration: line-through;
}

.prod-header__productsave {
  border: 1px solid var(--gd-red);
  color: var(--gd-red);
  text-transform: uppercase;
  padding: 5px;
  font-size: 11px;
  font-weight: 400;
}

.prod-header__stock-single {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 300;
  display: flex;
}

.prod-header__stock-icon {
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.prod-header__stock-icon--red {
  background-color: var(--gd-red);
}

.prod-header__stock-icon--green {
  background-color: var(--gd-green);
}

.buying-options {
  margin-top: 30px;
}

.buying-options__qty-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: flex;
}

.buying-options__qty-inner {
  position: relative;
}

.buying-options__qty-label {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}

.buying-options__qty-input {
  -moz-appearance: textfield;
  background-color: var(--gd-gray-light);
  text-align: center;
  border: none;
  width: 90px;
  height: 45px;
  font-size: 16px;
  font-weight: 400;
}

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

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

.buying-options__inc-qty {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-right: 15px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.buying-options__dec-qty {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.buying-options__btn-wrap {
  margin-top: 20px;
}

.prod-header__available-options {
  margin-top: 25px;
}

.prod-header__available-title {
  background-color: var(--gd-gray-light) !important;
}

.prod-header__available-title th {
  font-size: 16px;
  font-weight: 300;
}

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

.prod-info__single {
  border-top: 1px solid var(--grey-for-lines);
  transition: var(--gd-transition) ease-in-out;
  max-height: 60px;
  transition-property: max-height;
  overflow: hidden;
}

.prod-info__single:last-child {
  border-bottom: 1px solid var(--grey-for-lines);
}

.prod-info__title {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.prod-info__title svg {
  border: 1px solid var(--grey-for-lines);
  transition: var(--gd-transition) ease-in-out;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 5px;
  transition-property: transform;
  transform: rotate(90deg);
}

.prod-info__title.activeClass svg {
  transform: rotate(-90deg);
}

.prod-info__data {
  padding-bottom: 15px;
}

.prod-info__data p, .prod-info__data span {
  color: var(--gd-black) !important;
  font-family: Albert Sans, sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}

.prod-info__data p:last-child {
  margin: 0;
  padding: 0;
}

.prod-info__data .table {
  margin: 0;
}

.prod-info__data .table td {
  border: none;
  padding: 0 0 5px;
  color: var(--gd-black) !important;
  font-family: Albert Sans, sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}

.prod-info__data .main-btn {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: max-content;
  display: flex;
}

.prod-info__data .prod-info__review-title {
  margin-bottom: 5px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.prod-info__data .prod-info__review-subtxt {
  margin: 8px 0 !important;
  font-size: 12px !important;
  font-weight: 300 !important;
}

.prod-social {
  margin-top: 72px;
}

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

.prod-social__title {
  color: var(--gd-white-dark);
  font-size: 14px;
  font-weight: 300;
}

.prod-social__payment-wrap {
  background-color: var(--gd-gray-light);
  margin-top: 40px;
  padding: 25px 20px;
}

.prod-social__payment-single {
  margin-right: 15px;
}

.prod-social__payment-single:last-child {
  margin-right: 0;
}

.prod-social__payment-single img {
  width: auto;
  max-width: 50px;
  height: auto;
  max-height: 100%;
}

.child-components__btn-wrap {
  margin-top: 30px;
}

.child-components__main-title {
  margin-top: 60px;
  font-size: 16px;
  font-weight: 300;
  display: block;
}

.child-components {
  background-color: var(--gd-gray-light);
  margin-top: 30px;
  padding: 20px;
}

.child-components__single {
  background-color: var(--gd-white);
  margin-bottom: 20px;
  padding: 15px;
}

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

.child-components__single {
  flex-flow: row;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  display: flex;
}

@media (width >= 768px) {
  .child-components__left {
    flex-flow: row;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
    display: flex;
  }
}

.child-components__img {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  display: flex;
}

.child-components__img img {
  width: auto;
  max-width: 50px;
  height: auto;
  max-height: 100%;
}

@media (width >= 480px) {
  .child-components__img img {
    max-width: 70px;
  }
}

@media (width >= 1200px) {
  .child-components__img img {
    max-width: 60px;
  }
}

@media (width >= 768px) {
  .child-components__info {
    width: 170px;
  }
}

.child-components__title {
  font-size: 13px;
  font-weight: 300;
}

@media (width >= 480px) {
  .child-components__title {
    font-size: 15px;
  }
}

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

.child-components__sku {
  color: var(--gd-white-dark);
  margin: 10px 0;
  font-size: 12px;
  font-weight: 300;
}

.child-components__qty {
  width: max-content;
  margin-top: 15px;
  position: relative;
}

@media (width >= 768px) {
  .child-components__qty {
    margin-top: 0;
  }
}

.child-components__input-field {
  -moz-appearance: textfield;
  background-color: var(--gd-gray-light);
  text-align: center;
  border: none;
  width: 90px;
  height: 45px;
  font-size: 16px;
  font-weight: 400;
}

.child-components__input-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.child-components__input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.child-components__input-field--sold-out {
  background-color: var(--grey-for-lines);
}

.child-components__price {
  font-size: 15px;
  font-weight: 400;
}

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

.prod-header__variation-single {
  margin-top: 25px;
}

.prod-header__variation-title {
  font-size: 16px;
  font-weight: 300;
}

.prod-header__variation-input {
  background-color: var(--gd-gray-light) !important;
  border: none !important;
  border-radius: 0 !important;
  height: 40px !important;
}

.multi-price {
  margin-top: 25px;
}

.multi-price__title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.multi-price__wrap {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
}

.multi-price__single {
  border-bottom: 1px solid var(--grey-for-lines);
  grid-gap: 0;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.multi-price__single:last-child {
  border: none;
}

.multi-price__left {
  border-right: 1px solid var(--grey-for-lines);
  height: 100%;
  padding: 5px 0 5px 15px;
}

.multi-price__right {
  padding: 5px 0 5px 15px;
}

.gd-cart {
  margin-bottom: 100px;
}

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

.gd-cart__table-wrap {
  background-color: var(--gd-gray-light);
  padding: 50px 15px;
}

@media (width >= 480px) {
  .gd-cart__table-wrap {
    padding: 50px 30px;
  }
}

@media (width >= 1200px) {
  .gd-cart__table-wrap {
    padding: 50px 80px 50px 15px;
  }

  .gd-cart__inner-left {
    width: 650px;
    margin-left: auto;
  }
}

.gd-cart__inner-right {
  padding: 80px 15px 0;
}

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

@media (width >= 1200px) {
  .gd-cart__inner-right {
    width: 500px;
    margin: 0 auto;
    padding: 190px 15px 0 0;
    position: sticky;
    top: 0;
  }
}

.gd-cart__header .section-title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  font-size: 27px;
  font-weight: 500;
  display: flex;
}

@media (width >= 480px) {
  .gd-cart__header .section-title {
    font-size: 30px;
  }
}

@media (width >= 1200px) {
  .gd-cart__header .section-title {
    font-size: 36px;
  }
}

.gd-cart__header .section-title svg {
  width: 20px;
  height: 20px;
}

@media (width >= 480px) {
  .gd-cart__header .section-title svg {
    width: 25px;
    height: 25px;
  }
}

.gd-cart__top-wrap {
  margin-top: 45px;
  margin-bottom: 20px;
}

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

.gd-cart__top-wrap .card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 480px) {
  .gd-cart__top-wrap .card-title {
    font-size: 22px;
  }
}

@media (width >= 1200px) {
  .gd-cart__top-wrap .card-title {
    font-size: 20px;
  }
}

.gd-cart__top-wrap .calculate__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

@media (width >= 480px) {
  .gd-cart__top-wrap .calculate__text {
    font-size: 15px;
  }
}

@media (width >= 1200px) {
  .gd-cart__top-wrap .calculate__text {
    font-size: 14px;
  }
}

.gd-cart__top-wrap .calculate__text a {
  color: var(--gd-red);
  text-decoration: underline;
}

.gd-cart__item {
  background-color: var(--gd-white);
  margin-bottom: 20px;
  padding: 15px;
}

@media (width >= 1200px) {
  .gd-cart__item {
    padding: 20px;
  }
}

.gd-cart__item:last-child {
  margin-bottom: 0;
}

.gd-cart__item-wrap {
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
  display: flex;
}

.gd-cart__item-pricing-wrap {
  margin-left: auto;
}

@media (width >= 1200px) {
  .gd-cart__item-info {
    flex-flow: row;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    width: 100%;
    display: flex;
  }
}

.gd-cart__item-info-box {
  position: relative;
}

.gd-cart__item-info-box--qty {
  width: max-content;
}

.gd-cart__item-img img {
  width: auto;
  max-width: 50px;
  height: auto;
  max-height: 100%;
}

@media (width >= 480px) {
  .gd-cart__item-img img {
    max-width: 70px;
  }
}

@media (width >= 1200px) {
  .gd-cart__item-img img {
    max-width: 80px;
  }
}

.gd-cart__item-title {
  color: var(--gd-black);
  margin: 0;
  font-size: 13px;
  font-weight: 300;
}

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

@media (width >= 1200px) {
  .gd-cart__item-title {
    font-size: 16px;
  }
}

.gd-cart__item-sku {
  color: var(--gd-white-dark);
  margin: 10px 0;
  font-size: 12px;
  font-weight: 300;
}

.gd-cart__item-remove {
  color: var(--gd-black);
  width: 100%;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 200;
  text-decoration: underline;
  display: block;
}

.gd-cart__item-remove:hover {
  color: var(--gd-red);
  text-decoration: underline;
}

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

.gd-cart__item-price {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: start;
  width: 60px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
}

@media (width >= 1200px) {
  .gd-cart__item-price {
    font-size: 16px;
  }
}

.gd-cart__item-input {
  background-color: var(--gd-gray-light);
  cursor: pointer;
  text-align: center;
  border: none;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 80px;
  height: 40px;
  padding: 0 10px;
  display: flex;
}

.calculate__title-wrap {
  margin-top: 80px;
}

.calculate__title-wrap .card-title {
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 480px) {
  .calculate__title-wrap .card-title {
    font-size: 22px;
  }
}

@media (width >= 1200px) {
  .calculate__title-wrap .card-title {
    font-size: 20px;
  }
}

.gd-cart__total .card-title {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 480px) {
  .gd-cart__total .card-title {
    font-size: 22px;
  }
}

@media (width >= 1200px) {
  .gd-cart__total .card-title {
    font-size: 20px;
  }
}

.gd-cart__total .gd-cart__row {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0 0;
  display: flex;
}

.gd-cart__total .gd-cart__row:last-child {
  margin: 0;
}

.gd-cart__total .gd-cart__row--discount {
  border-top: 1px solid var(--grey-for-lines);
  margin-top: 30px;
  padding-top: 20px;
}

.gd-cart__total .gd-cart__row--discount .title {
  font-size: 16px;
  font-weight: 400;
}

.gd-cart__total .gd-cart__row--discount .subtext {
  font-size: 16px;
  font-weight: 300;
}

.gd-cart__total .gd-cart__row-text {
  color: var(--gd-black);
  font-size: 16px;
  font-weight: 300;
}

.gd-cart__total .gd-cart__row-value {
  font-size: 16px;
  font-weight: 400 !important;
}

.gd-cart__total .gd-cart__total-price {
  background-color: var(--gd-gray-light);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin: 40px 0 15px;
  padding: 0 15px;
  display: flex;
}

.gd-cart__total .gd-cart__total-price .gd-cart__total-title {
  text-transform: uppercase;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.calculate__card {
  background-color: var(--gd-white);
  margin-top: 30px;
  padding: 30px 20px;
}

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

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

.calculate__form .calculate__form-text {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin-right: auto;
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

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

.calculate__form input, .calculate__form select {
  border: 1px solid var(--grey-for-lines);
  color: var(--gd-black);
  text-align: center;
  width: 100%;
  height: 45px;
  font-size: 14px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .calculate__form input, .calculate__form select {
    width: 130px;
    margin-left: auto;
  }
}

.calculate__form .main-btn {
  background-color: var(--gd-gray-light);
  border: none;
  font-size: 16px;
  font-weight: 500;
}

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

.calculate__truck {
  width: 20px;
  height: 20px;
}

.calculate__info {
  width: 10px;
  height: 10px;
}

.calculate__card-text {
  border-top: 1px solid var(--grey-for-lines);
  margin-top: 30px;
  padding-top: 30px;
}

.gd-cart__shipping-row {
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  gap: 15px;
  display: flex;
}

.gd-cart__row-value {
  font-size: 15px;
  font-weight: 300 !important;
}

.gd-cart__row-text {
  color: var(--gd-white-dark);
  margin: 0;
  font-size: 13px;
  font-weight: 300;
}

.cart-line {
  background-color: var(--gd-white);
  z-index: 3;
  width: 100%;
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 0 -1px 4px #00000040;
  transform: translateY(0) !important;
}

.cart-line.activeClass {
  transform: translateY(100%) !important;
}

.cart-line__wrap {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  display: flex;
}

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

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

.section-banner {
  background-color: var(--gd-gray-light);
  transition: var(--gd-transition) ease-in-out;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 310px;
  transition-property: margin-top;
  display: flex;
}

.section-banner.activeClass {
  margin-top: -310px;
}

.section-banner--category {
  height: 250px;
}

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

.npopup-body .footer {
  background-color: var(--gd-white);
  margin: 0;
  padding: 0;
}

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

.npopup-body .btn {
  text-transform: capitalize;
  border: 1px solid var(--grey-for-lines);
  color: var(--gd-black);
  background-color: #0000;
  border-radius: 0;
  font-weight: 500;
  font-size: 14px !important;
}

.npopup-body .btn:hover {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--gd-gray-light);
}

.npopup-body .right .btn {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  border-radius: 0;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 35px;
  display: flex;
  position: relative;
  padding: 0 15px !important;
}

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

.npopup-body .right .btn:hover {
  border: 1px solid var(--gd-red);
  background-color: var(--gd-red);
}

#n-customer .main__wrap {
  width: 100%;
  margin-top: 90px;
  padding: 0 15px;
}

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

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

#n-customer .page-header {
  margin: 0 !important;
}

#n-customer h1 {
  text-align: center;
  padding: 25px 0;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 !important;
}

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

#n-customer .card .btn {
  background-color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  border: none;
  border-radius: 0;
  height: 45px;
  transition-property: background-color;
}

#n-customer .card .btn:hover, #n-customer .card .btn:focus {
  background-color: var(--gd-red);
  box-shadow: none;
}

#n-customer_account .main__wrap {
  width: 100%;
  margin-top: 90px;
  padding: 0 15px;
}

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

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

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

#n-customer_account .page-header {
  margin: 0 !important;
}

#n-customer_account .page-header p {
  font-size: 16px;
  font-weight: 400 !important;
}

#n-customer_account .page-header p a {
  color: var(--gd-red) !important;
}

#n-customer_account h1 {
  text-align: center;
  padding: 25px 0;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 !important;
}

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

#n-customer_account .n-customer_account-box .btn {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--gd-gray-light);
  border-radius: 0;
}

#n-customer_account .n-customer_account-box .btn:hover {
  background-color: var(--grey-for-lines);
}

#n-customer_account .n-customer_account-box .btn h3, #n-customer_account .n-customer_account-box .btn p {
  color: var(--gd-black);
}

#n-customer_account .card-body .btn-info {
  background-color: var(--gd-black);
  border: none;
  border-radius: 0;
}

#n-customer_account .card-body .btn-info:hover, #n-customer_account .card-body .btn-info:active, #n-customer_account .card-body .btn-info:focus {
  background-color: var(--gd-red);
  box-shadow: none;
}

#n-customer_account .card-body .btn-outline-secondary {
  background-color: var(--gd-gray-light);
  color: var(--gd-black);
  border-radius: 0;
  border: none !important;
}

#n-customer_account .card-body .btn-outline-secondary:hover, #n-customer_account .card-body .btn-outline-secondary:active, #n-customer_account .card-body .btn-outline-secondary:focus {
  background-color: var(--grey-for-lines);
  box-shadow: none;
}

#n-customer_account .input-group-append .btn {
  background-color: var(--gd-black);
  border-radius: 0;
  border: none !important;
}

#n-customer_account .input-group-append .btn:hover, #n-customer_account .input-group-append .btn:active, #n-customer_account .input-group-append .btn:focus {
  background-color: var(--gd-red);
  box-shadow: none;
}

#n-customer_account .btn-success {
  background-color: var(--gd-black);
  box-shadow: none;
  border-radius: 0;
  border: none !important;
}

#n-customer_account .btn-success:hover, #n-customer_account .btn-success:active, #n-customer_account .btn-success:focus {
  background-color: var(--gd-red);
  box-shadow: none !important;
}

#n-customer_account .btn-outline-secondary {
  background-color: var(--gd-gray-light);
  color: var(--gd-black);
  border-radius: 0;
  border: none !important;
}

#n-customer_account .btn-outline-secondary:hover, #n-customer_account .btn-outline-secondary:active, #n-customer_account .btn-outline-secondary:focus {
  background-color: var(--grey-for-lines);
  box-shadow: none;
}

.account-page__logged-out, .cart-page__empty-cart {
  text-align: center;
}

.account-page__logged-out h1, .cart-page__empty-cart h1 {
  text-align: center;
  padding: 25px 0;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 !important;
}

@media (width >= 480px) {
  .account-page__logged-out h1, .cart-page__empty-cart h1 {
    font-size: 32px;
  }
}

.account-page__logged-out .btn-success, .cart-page__empty-cart .btn-success {
  background-color: var(--gd-black);
  box-shadow: none;
  border-radius: 0;
  border: none !important;
}

.account-page__logged-out .btn-success:hover, .account-page__logged-out .btn-success:active, .account-page__logged-out .btn-success:focus, .cart-page__empty-cart .btn-success:hover, .cart-page__empty-cart .btn-success:active, .cart-page__empty-cart .btn-success:focus {
  outline: none;
  background-color: var(--gd-red) !important;
  box-shadow: none !important;
}

.upsell-page .section-title {
  padding: 25px 0;
}

.upsell-page .upsell-page__btn-wrap {
  margin-bottom: 25px;
}

.upsell-page .upsell-page__btn-wrap .main-btn {
  width: 100%;
}

@media (width >= 1200px) {
  .upsell-page .upsell-page__btn-wrap .main-btn {
    width: max-content;
    margin-left: auto;
    padding: 0 10px;
  }
}

.upsell-page .upsell-page__bottom-wrap {
  margin-top: 90px;
}

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

.upsell-page .upsell-page__bottom-wrap .main-btn {
  width: 100%;
}

@media (width >= 1200px) {
  .upsell-page .upsell-page__bottom-wrap .main-btn {
    width: max-content;
    margin-left: auto;
    padding: 0 10px;
  }
}

#n-product .modal-dialog {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

#n-product .modal-dialog .btn-default {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--gd-gray-light);
  color: var(--gd-black);
  border-radius: 0;
}

#n-product .modal-dialog .btn-default:hover {
  background-color: var(--grey-for-lines);
  border: 1px solid var(--grey-for-lines);
}

#n-product .modal-dialog .btn-success {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  box-shadow: 0;
  color: var(--gd-white);
  border-radius: 0;
}

#n-product .modal-dialog .btn-success:hover, #n-product .modal-dialog .btn-success:active, #n-product .modal-dialog .btn-success:focus {
  background-color: var(--gd-red);
  border: 1px solid var(--gd-red);
  box-shadow: 0;
}

#n-product .modal-backdrop {
  display: none;
  z-index: -1 !important;
}

.wholesale-page__main .main__wrap {
  margin: 90px 0 0;
  max-width: 100% !important;
  padding: 0 !important;
}

@media (width >= 1200px) {
  .wholesale-page__main .main__wrap {
    margin-top: 100px;
  }
}

.wholesale-page__main .main-btn {
  width: 250px;
  height: 50px;
  font-size: 16px;
}

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

.wholesaler-page__top-text {
  text-align: center;
  margin-bottom: 30px;
}

@media (width >= 1200px) {
  .wholesaler-page__top-text {
    width: 65%;
  }
}

.wholesaler-page__top-img {
  display: none;
}

.wholesaler-page__title {
  color: var(--gd-red);
  margin-bottom: 15px;
  font-family: Cormorant, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

@media (width >= 768px) {
  .wholesaler-page__title {
    margin-bottom: 25px;
  }
}

.wholesaler-page__title span {
  color: var(--gd-black);
  font-family: Albert Sans, sans-serif;
  font-size: 14px;
}

.wholesaler-page__title span span {
  color: var(--gd-red);
}

.wholesaler-page__label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}

@media (width >= 768px) {
  .wholesaler-page__label {
    text-align: right;
    width: 32%;
  }
}

.wholesaler-page__input-wrap {
  margin-bottom: 25px;
}

.wholesaler-page__input-wrap input {
  border-radius: 4px;
}

.wholesaler-page__help-block {
  color: var(--grey-for-lines);
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
}

.wholesaler-page__bottom-text {
  margin-top: 20px;
  font-size: 14px;
}

@media (width >= 768px) {
  .wholesaler-page__input-group {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .wholesaler-page__input-wrap {
    width: 65%;
  }
}

.wholesaler-page__scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
}

.card-login-margin-top {
  margin-top: 20px;
}

@media (width >= 768px) {
  .store-finder__top-text {
    width: 480px;
    margin: 0 auto;
  }
}

.store-finder__wrap {
  z-index: 1;
  padding: 0 15px;
  position: relative;
}

@media (width >= 480px) {
  .store-finder__wrap {
    width: 500px;
    margin: 0 auto;
    padding: 0;
  }
}

@media (width >= 1200px) {
  .store-finder__wrap {
    width: 600px;
  }
}

.store-finder__subtext {
  margin: 15px 0 0;
  font-size: 15px;
  font-weight: 300;
}

.store-finder__find-stores {
  background-color: var(--gd-black);
  color: var(--gd-white);
  cursor: pointer;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 55px;
  margin: 50px 0 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.store-finder__find-stores svg {
  fill: #0000;
  stroke: var(--gd-white);
  stroke-width: 1.5px;
  width: 15px;
  height: 15px;
}

.store-finder__find-stores:hover, .store-finder__find-stores.activeClass {
  background-color: var(--gd-red);
}

.store-finder__input-wrap {
  margin-top: 25px;
  position: relative;
}

.store-finder__input-wrap svg {
  cursor: pointer;
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.7px;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.storefinder__search-input {
  border: none;
  border-bottom: 1px solid var(--gd-black);
  color: var(--gd-black);
  outline: none;
  width: 100%;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 400;
}

.store-finder__error-text {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 300;
}

.store-finder__results {
  background-color: var(--gd-white);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  height: 0;
  margin-top: 0;
  transition: opacity .4s ease-in-out;
  position: relative;
}

.store-finder__results.activeClass {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-top: -390px;
}

@media (width >= 768px) {
  .store-finder__results.activeClass {
    margin-top: -415px;
  }
}

@media (width >= 1200px) {
  .store-finder__results.activeClass {
    margin-top: -445px;
  }

  .store-finder__results-wrap {
    grid-template-columns: 1fr 1fr;
    height: 815px;
    display: grid;
  }

  .store-finder__list-section {
    transition: background-color .4s ease-in-out;
  }

  .store-finder__list-section.activeScroll {
    background-color: var(--gd-gray-light);
  }
}

.store-finder__list-wrap {
  background-color: var(--gd-gray-light);
  padding: 45px 15px;
  transition: height .4s ease-in-out;
}

@media (width >= 480px) {
  .store-finder__list-wrap {
    padding: 45px 30px;
  }
}

@media (width >= 1200px) {
  .store-finder__list-wrap {
    padding: 40px 60px 40px 15px;
  }

  .store-finder__list-wrap.activeScroll {
    position: sticky;
    top: 25px;
  }
}

@media (width <= 1200px) {
  .store-finder__list-wrap {
    display: none;
  }

  .store-finder__list-wrap.activeClass {
    display: block;
  }
}

.store-finder__results-top {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  display: flex;
}

@media (width >= 480px) {
  .store-finder__results-top {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .store-finder__results-top {
    flex-flow: wrap;
    justify-content: center;
    align-items: start;
    height: max-content;
    padding: 0 60px 0 15px;
    display: flex;
  }
}

.store-finder__top-wrap {
  text-align: center;
  width: 100%;
  margin-top: 50px;
}

@media (width >= 1200px) {
  .store-finder__top-wrap {
    text-align: left;
    width: 660px;
    margin-top: 0;
    margin-left: auto;
    padding: 50px 0 80px;
    transition: margin-top .4s ease-in-out;
  }

  .store-finder__top-wrap.activeScroll {
    margin-top: -288px;
  }
}

.store-finder__top-wrap .main-btn {
  width: 100%;
  height: 55px;
  margin: 30px auto 0;
}

@media (width >= 768px) {
  .store-finder__top-wrap .main-btn {
    width: 500px;
    margin: 30px auto 0;
  }
}

@media (width >= 1200px) {
  .store-finder__top-wrap .main-btn {
    width: 430px;
    margin: 30px 0 0;
  }
}

.store-finder__list {
  scrollbar-width: thin;
  height: 450px;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

@media (width >= 1200px) {
  .store-finder__list {
    width: 660px;
    margin-left: auto;
  }
}

.store-finder__total-results {
  color: var(--gd-black);
  margin-top: 12px;
  font-size: 15px;
  font-weight: 300;
}

.store-finder__item {
  background-color: var(--gd-white);
  margin: 0 0 20px;
  padding: 25px 15px 25px 40px;
  list-style: none;
  position: relative;
}

@media (width >= 1200px) {
  .store-finder__item {
    padding: 33px 33px 33px 43px;
  }
}

.store-finder__item:last-child {
  margin-bottom: 0;
}

.store-finder__counter-wrap {
  position: absolute;
  left: 10px;
}

.store-finder__count {
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.store-finder__item-title-wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.store-finder__item-title {
  cursor: pointer;
  text-transform: capitalize;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: 400;
  display: flex;
}

.store-finder__item-title svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 2px;
  width: 25px;
  height: 25px;
}

.store-finder__item-subtext {
  color: var(--gd-white-dark);
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .store-finder__item-subtext {
    margin: 0;
  }
}

.store-finder__item-link {
  color: var(--gd-black);
  padding: 0;
  font-size: 15px;
  font-weight: 300;
}

.store-finder__item-link:first-child {
  margin: 12px 0 20px;
}

.store-finder__item-link-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  display: flex;
}

.store-finder__item-link-wrap svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.5px;
  width: 15px;
  height: 15px;
}

.store-finder__map-wrap {
  width: 100%;
  height: 100%;
  padding: 0 15px;
}

@media (width >= 480px) {
  .store-finder__map-wrap {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .store-finder__map-wrap {
    padding: 0;
  }
}

@media (width <= 1200px) {
  .store-finder__map-wrap {
    height: 530px;
    display: none;
  }

  .store-finder__map-wrap.activeClass {
    display: block;
  }
}

.store-finder__map {
  width: 100%;
  height: 100%;
}

.store-finder__toggle-btns {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 50px 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .store-finder__toggle-btns {
    display: none;
  }
}

.store-finder__toggle-btn {
  color: var(--gd-black);
  text-transform: uppercase;
  border-bottom: 3px solid #0000;
  font-size: 13px;
  font-weight: 400;
}

.store-finder__toggle-btn.activeClass {
  border-bottom: 3px solid var(--gd-red);
  color: var(--gd-red);
  font-weight: 500;
}

.stockist-ads.activeClass {
  display: none;
}

.stock-ads__wrap {
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}

@media (width >= 768px) {
  .stock-ads__wrap {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

.stockist-ads__img {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  transition: transform .4s ease-in-out;
  position: relative;
  overflow: hidden;
  transform: scale(1);
}

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

.stockist-ads__text-wrap {
  text-align: center;
  background-color: #fffc;
  width: calc(100% - 30px);
  padding: 40px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width >= 1200px) {
  .stockist-ads__text-wrap {
    width: 600px;
    margin: 0;
    padding: 35px 50px;
  }
}

.stockist-ads__title {
  color: var(--gd-black);
  margin: 0;
  font-size: 30px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .stockist-ads__title {
    font-size: 40px;
  }
}

.stockist-ads__subtext {
  color: var(--gd-black);
  margin: 15px 0 20px;
  font-size: 16px;
  font-weight: 300;
  display: block;
}

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

.stockist-ads__single {
  position: relative;
  overflow: hidden;
}

.stockist-ads__single .main-btn {
  width: 160px;
  height: 40px;
  margin: 0 auto;
}

.stockist-ads__single:hover .stockist-ads__img {
  transform: scale(1.05);
}

.pac-container {
  top: 555px !important;
}

@media (width >= 480px) {
  .pac-container {
    top: 585px !important;
  }
}

@media (width >= 1200px) {
  .pac-container {
    top: 615px !important;
  }
}

.section-about {
  background-color: var(--gd-white);
  padding: 50px 0;
}

@media (width >= 1200px) {
  .section-about {
    background-color: #0000;
    padding: 80px 0;
  }

  .section-about__wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: start;
    display: flex;
  }

  .section-about__single {
    width: 500px;
  }
}

.section-about__img-wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

@media (width >= 768px) {
  .section-about__img-wrap {
    flex-wrap: nowrap;
  }
}

@media (width >= 1200px) {
  .section-about__img-wrap {
    flex-direction: column;
    margin-top: 100px;
  }
}

.section-about__img {
  width: 345px;
  height: 245px;
}

@media (width >= 1200px) {
  .section-about__img {
    width: 400px;
    height: 285px;
  }
}

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

.section-about__members {
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
  display: grid;
}

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

@media (width >= 1200px) {
  .section-about__members {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 100px;
    margin-top: 100px;
    display: grid;
  }
}

.section-about__member-img img {
  border-radius: 50%;
  width: auto;
  max-width: 165px;
  height: auto;
  max-height: 100%;
}

@media (width >= 1200px) {
  .section-about__member-img img {
    max-width: 180px;
  }
}

.section-about__member-text {
  margin-top: 25px;
}

.section-about__member-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 400;
}

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

.section-about__member-subtext {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .section-about__member-subtext {
    font-size: 16px;
  }
}

.section-about__line {
  background-color: var(--grey-for-lines);
  width: 100%;
  height: 1px;
  margin: 50px 0;
}

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

.timeline {
  padding-top: 115px;
}

.timeline .section-title {
  background-color: var(--gd-white);
}

@media (width >= 1200px) {
  .timeline .section-title {
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media (width <= 1200px) {
  .timeline .section-title {
    width: 100%;
    padding: 0 15px;
  }
}

@media (width <= 1200px) and (width >= 480px) {
  .timeline .section-title {
    padding: 0 30px;
  }
}

@media (width <= 1200px) and (width >= 1200px) {
  .timeline .section-title {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

.timeline__wrap {
  margin-top: 35px;
}

.timeline__line {
  background-color: var(--grey-for-lines);
  z-index: -1;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (width >= 1200px) {
  .timeline__line {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (width <= 1200px) {
  .timeline__line {
    left: 115px;
  }
}

@media (width <= 480px) {
  .timeline__line {
    left: 85px;
  }
}

.timeline__single {
  transition: all var(--gd-transition) ease-in-out;
  grid-template-columns: 40px 20px 1fr;
  align-items: center;
  margin-bottom: 40px;
  display: grid;
}

@media (width >= 480px) {
  .timeline__single {
    grid-template-columns: 50px 20px 1fr;
  }
}

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

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

@media (width >= 1200px) {
  .timeline__single:nth-child(odd) .timeline__year {
    margin-left: auto;
    margin-right: 20px;
  }

  .timeline__single:nth-child(odd) .timeline__text-box {
    margin-left: 20px;
  }

  .timeline__single:nth-child(2n) .timeline__year {
    order: 3;
    margin-left: 20px;
  }

  .timeline__single:nth-child(2n) .timeline__text-box {
    margin-right: 20px;
  }

  .timeline__single:nth-child(2n) .timeline__circle-icon {
    order: 2;
  }

  .timeline__single:nth-child(2n) .timeline__text-box {
    order: 1;
  }
}

.timeline__single:hover .timeline__year, .timeline__single:hover .timeline__month, .timeline__single:hover .timeline__description {
  color: var(--gd-black);
}

.timeline__single:hover .timeline__circle-icon {
  background-color: var(--gd-black);
}

.timeline__single:hover .timeline__text-box {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--gd-gray-light);
}

.timeline__year {
  color: var(--grey-for-lines);
  transition: all var(--gd-transition) ease-in-out;
  font-size: 20px;
  font-weight: 500;
}

.timeline__month {
  color: var(--grey-for-lines);
  transition: all var(--gd-transition) ease-in-out;
  font-size: 18px;
  font-weight: 500;
}

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

.timeline__description {
  color: var(--grey-for-lines);
  transition: all var(--gd-transition) ease-in-out;
  font-size: 15px;
  font-weight: 300;
}

.timeline__description p {
  margin: 0;
}

@media (width <= 480px) {
  .timeline__description {
    width: 180px;
  }
}

@media (width <= 385px) {
  .timeline__description {
    width: 135px;
  }
}

.timeline__text-box {
  border: 1px solid var(--grey-for-lines);
  transition: all var(--gd-transition) ease-in-out;
  padding: 30px 20px;
}

@media (width <= 1200px) {
  .timeline__text-box {
    margin-left: 50px;
  }
}

.timeline__circle-icon {
  background-color: var(--grey-for-lines);
  transition: all var(--gd-transition) ease-in-out;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

@media (width <= 1200px) {
  .timeline__circle-icon {
    margin-left: 25px;
  }
}

@media (width <= 480px) {
  .timeline__circle-icon {
    margin-left: 20px;
  }
}

.timeline__text-wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
  display: flex;
}

.timeline__text-wrap:last-child {
  margin-bottom: 0;
}

@media (width >= 480px) {
  .timeline__text-wrap {
    grid-template-columns: .5fr 3.1fr 1fr;
    gap: 0;
    display: grid;
  }
}

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

@media (width >= 480px) {
  .timeline__img {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }
}

@media (width <= 480px) {
  .timeline__img {
    width: 90px;
    height: 90px;
  }
}

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

.section-a .main-btn {
  width: 160px;
  margin: 50px auto 0;
}

.section-a__main-text {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}

@media (width >= 768px) {
  .section-a__main-text {
    width: 500px;
    margin: 0 auto;
  }
}

.section-a__wrap {
  grid-gap: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
  margin-top: 100px;
  display: grid;
  position: relative;
}

@media (width >= 768px) {
  .section-a__wrap {
    gap: 50px 60px;
  }
}

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

.section-a__wrap.activeClass .section-a__box-single:nth-child(n+4) {
  display: block;
}

@media (width >= 768px) {
  .section-a__wrap.activeClass .section-a__box-single:nth-child(n+4) {
    display: flex;
  }
}

.section-a__box-icon {
  background-color: var(--grey-for-lines);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -95px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (width >= 768px) {
  .section-a__box-icon {
    margin-top: 0;
  }
}

.section-a__box-single {
  border: 1px solid var(--grey-for-lines);
  transition: var(--gd-transition) ease-in-out;
  padding: 15px;
  transition-property: border;
}

@media (width >= 768px) {
  .section-a__box-single {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 20px 0 20px 20px;
    display: flex;
  }
}

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

.section-a__box-single:nth-child(n+5) {
  display: none;
}

.section-a__box-single:hover {
  border: 1px solid var(--gd-red);
}

.section-a__box-single:hover .section-a__box-title {
  color: var(--gd-red);
}

.section-a__box-single:first-child .section-a__box-icon {
  opacity: 0;
  visibility: hidden;
}

@media (width >= 480px) {
  .section-a__box-single:first-child .section-a__box-icon {
    opacity: 1;
    visibility: visible;
  }
}

@media (width >= 768px) {
  .section-a__box-single:nth-child(2n) {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    display: flex;
  }

  .section-a__box-single:nth-child(2n) .section-a__box-title {
    order: 1;
  }

  .section-a__box-single:nth-child(2n) .section-a__box-img {
    order: 2;
  }

  .section-a__box-single:nth-child(2n) .section-a__box-title {
    margin: 0 auto;
  }
}

@media (width >= 1200px) {
  .section-a__box-single:nth-child(2n) {
    padding-right: 40px;
  }
}

.section-a__box-title {
  color: var(--gd-black);
  text-align: center;
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 400;
}

@media (width >= 768px) {
  .section-a__box-title {
    text-align: left;
    margin: 0;
  }
}

.section-a__box-title p {
  margin: 0;
  padding: 0;
}

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

.section-a__box-img {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-a__box-img img {
  width: auto;
  max-width: 120px;
  height: auto;
  max-height: 100%;
}

@media (width >= 768px) {
  .section-a__box-img img {
    max-width: 160px;
  }
}

@media (width >= 1200px) {
  .section-a__box-img img {
    max-width: 390px;
  }
}

.section-a__line {
  background-color: var(--grey-for-lines);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-b {
  background-color: var(--gd-gray-light);
  padding: 70px 0;
}

.section-b .products-list {
  background-color: var(--gd-white);
  margin-top: 70px;
}

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

  .section-b .splide {
    margin: 0 !important;
    position: relative !important;
  }

  .section-b .products-list {
    width: calc(100% - 555px);
    margin-top: 0;
  }

  .section-b__wrap {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
}

.section-b__wrap .main-btn {
  display: none;
}

.section-b__wrap .product-box__price {
  margin-bottom: 30px;
}

.section-c .product-box, .section-b .product-box {
  margin: 0 -1px 0 0 !important;
}

.section-d {
  background-color: var(--gd-gray-light);
  padding: 110px 0;
}

@media (width >= 768px) {
  .section-d {
    padding: 120px 0;
  }
}

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

.section-d .main-btn {
  width: 100%;
  margin: 50px auto 0;
}

@media (width >= 768px) {
  .section-d .main-btn {
    width: 350px;
  }
}

.section-d__main-text {
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 768px) {
  .section-d__main-text {
    width: 500px;
  }
}

@media (width >= 1200px) {
  .section-d__main-text {
    width: max-content;
  }
}

.section-d__main-text p {
  margin: 0;
  padding: 0;
}

.section-e__img img {
  width: auto;
  max-width: 100px;
  height: auto;
  max-height: 100%;
}

@media (width >= 1200px) {
  .section-e__img img {
    max-width: 245px;
  }
}

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

@media (width >= 768px) {
  .section-g__wrap {
    width: 500px;
    margin: 0 auto;
  }
}

.section-g__wrap .main-btn {
  width: 160px;
  margin: 20px auto 0;
}

.section-g__text {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
}

.section-g__text p {
  margin: 0;
  padding: 0;
}

.popup--form {
  padding: 0;
}

.popup--form .popup__form-wrap {
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  height: calc(100vh - 280px);
  padding: 0 15px;
  overflow-y: auto;
}

@media (width >= 768px) {
  .popup--form .popup__form-wrap {
    padding: 0 30px;
  }
}

.popup--form .popup__header {
  border: none;
  margin: 0;
  padding: 30px 15px;
}

@media (width >= 768px) {
  .popup--form .popup__header {
    padding: 30px;
  }
}

.popup--form .popup__title {
  text-transform: capitalize;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.popup--form .popup__close {
  position: relative;
  top: 0;
  left: 0;
}

.popup--form .popup__close svg {
  fill: var(--gd-black);
  stroke: none;
  stroke-width: none;
  width: 20px;
  height: 20px;
}

.popup--form .form-group__single {
  margin-bottom: 40px;
}

@media (width >= 768px) {
  .popup--form .form-group__single {
    margin-bottom: 0;
  }

  .popup--form .form-group__single--contact {
    margin-bottom: 40px;
  }
}

.popup--form .popup__content {
  margin-top: 50px;
  position: relative;
}

.popup--form .popup__content label {
  font-size: 16px;
  font-weight: 400;
}

.popup--form .popup__content input {
  border: 1px solid var(--grey-for-lines);
  border-radius: 0;
  height: 45px;
}

.popup--form .popup__content textarea {
  border: 1px solid var(--grey-for-lines);
  height: 180px;
}

.popup--form .form-group__btn-wrap {
  background-color: var(--gd-gray-light);
  padding: 15px;
  box-shadow: 0 1px 4px #00000040;
}

@media (width >= 768px) {
  .popup--form .form-group__btn-wrap {
    padding: 15px 30px;
  }
}

.popup--form .form-group__btn-wrap p {
  margin: 0;
  padding: 0;
}

.popup--form .form-group__btn-wrap .main-btn {
  width: 100%;
  height: 56px;
  font-size: 16px;
}

@media (width >= 768px) {
  .popup--form .form-group__btn-wrap .main-btn {
    font-size: 18px;
  }
}

.popup-form__subtext {
  padding-left: 15px;
  font-size: 17px;
  font-weight: 400;
}

@media (width >= 768px) {
  .popup-form__subtext {
    padding-left: 30px;
  }

  .form-group__wrap {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    margin-bottom: 40px;
    display: grid;
  }
}

.form-group__full {
  grid-gap: 0;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 40px;
  display: grid;
}

.contactus-a .section-text__inner {
  color: var(--gd-red);
  font-size: 16px;
  font-weight: 300;
}

@media (width >= 768px) {
  .contactus-a__wrap {
    text-align: center;
    width: 615px;
    margin: 0 auto;
  }

  .contactus-b .splide__list {
    gap: 25px;
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
  }
}

.contactus-b__single-box {
  border: 1px solid var(--grey-for-lines);
  transition: var(--gd-transition) ease-in-out;
  transition-property: border;
}

.contactus-b__single-box:hover {
  border: 1px solid var(--gd-red);
}

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

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

.contactus-c__wrap {
  margin: 50px auto 0;
}

@media (width >= 768px) {
  .contactus-c__wrap {
    width: 500px;
    margin: 0 auto;
  }
}

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

.contactus-c__wrap .main-btn {
  width: 160px;
  height: 45px;
  margin: 50px auto 0;
}

@media (width >= 768px) {
  .contactus-c__wrap .main-btn {
    width: 350px;
    font-size: 16px;
  }
}

.contactus-c__main-text, .contactus-c__main-text p {
  font-size: 20px;
  font-weight: 400;
}

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

.contactus-d__map {
  filter: grayscale();
}

.contactus-d__map iframe, .contactus-d__map p {
  margin: 0;
  padding: 0;
}

@media (width >= 1200px) {
  .contactus-d__map iframe, .contactus-d__map p {
    height: 100%;
  }
}

.contactus-d__description {
  background-color: var(--gd-gray-light);
  text-align: center;
  padding: 50px 20px;
}

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

.contactus-d__inner {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

@media (width >= 768px) {
  .contactus-d__inner {
    width: 500px;
    margin: 0 auto;
  }
}

.contactus-d__subtext {
  font-size: 15px;
  font-weight: 300;
}

.contact-us-d__item-box {
  margin-top: 50px;
}

@media (width >= 768px) {
  .contact-us-d__item-box {
    width: 400px;
  }
}

.contact-us-d__item-box svg {
  fill: var(--gd-black);
  width: 25px;
  height: 25px;
}

.contact-us-d__item-box--stroke svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.5px;
}

.contactus-d__box-title {
  width: 100%;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  display: block;
}

.contactus-e .section-title {
  margin-bottom: 40px;
}

.contactus-e .main-btn {
  width: 160px;
  height: 45px;
  margin: 70px auto 0;
}

@media (width >= 768px) {
  .contactus-e .main-btn {
    width: 350px;
  }

  .contactus-e__wrap {
    width: 615px;
    margin: 0 auto;
  }
}

.contactus-e__single {
  border-bottom: 1px solid var(--grey-for-lines);
  transition: var(--gd-transition) ease-in-out;
  max-height: 60px;
  transition-property: max-height;
  overflow: hidden;
}

.contactus-e__single:first-child {
  border-top: 1px solid var(--grey-for-lines);
}

.contactus-e__title {
  cursor: pointer;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.contactus-e__title svg {
  border: 1px solid var(--grey-for-lines);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 5px;
  transform: rotate(90deg);
}

.contactus-e__title.activeClass svg {
  transform: rotate(-90deg);
}

.contactus-e__data {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
}

.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 */
