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

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

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

.loader {
  border: 5px solid var(--grey-for-lines);
  border-top: 5px solid var(--gd-black-light);
  border-radius: 50%;
  width: 33px;
  height: 33px;
  animation: 2s linear infinite spin;
}

.loader--cat {
  z-index: 100;
  border-width: 11px;
  width: 90px;
  height: 90px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

@media (width >= 500px) {
  .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 >= 500px) {
  .max-width-md {
    padding: 0 30px;
  }
}

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

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

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

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

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

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

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

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

@media (width >= 500px) {
  .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 {
  display: none;
}

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

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

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

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

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

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

.section-padding-pagination {
  padding-top: 140px;
}

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

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

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

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

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

.section-margin-bg-placeholder {
  margin-top: 140px;
}

@media (width >= 500px) {
  .section-margin-bg-placeholder {
    margin-top: 150px;
  }
}

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

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

.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 0 14px 2px #6a6a6a47;
}

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

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

.dropdown__item-link {
  transition: background-color 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 >= 500px) {
  .popups {
    padding: 0 30px;
  }
}

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

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

.popup {
  background-color: var(--gd-white);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  z-index: 5;
  border-radius: 10px;
  width: calc(100% - 15px);
  height: 100%;
  padding: 0 15px;
  transition-property: opacity, z-index, visibility, top, height;
  display: none;
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
}

.popup.init {
  display: block;
}

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

@media (width >= 500px) {
  .popup {
    width: calc(100% - 30px);
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .popup {
    width: 450px;
    height: max-content;
    padding: 0 40px;
    top: 135px;
    left: auto;
    right: auto;
    transform: translateX(0);
    box-shadow: 0 4px 4px #00000040;
  }

  .popup--account {
    margin-right: 60px;
    padding-bottom: 10px;
  }

  .popup--store-location {
    margin-right: 120px;
    padding-bottom: 10px;
  }

  .popup--contactus {
    margin-right: 180px;
    padding-bottom: 10px;
  }

  .popup.activeClass {
    height: max-content;
    transition-delay: .1s;
    top: 145px;
  }

  .popup.activeScroll {
    top: 70px;
  }

  .popup--menu {
    padding-bottom: 30px;
    top: 205px;
    left: auto;
    right: auto;
  }

  .popup--menu.activeClass {
    transition-delay: .1s;
    top: 215px;
  }

  .popup--menu.activeScroll {
    top: 70px;
  }
}

@media (width >= 1200px) and (width >= 1200px) {
  .popup--menu {
    width: 470px;
  }
}

@media (width >= 1200px) {
  .popup--pricematch {
    top: 210px;
  }

  .popup--pricematch.activeClass {
    transition-delay: .1s;
    top: 220px;
  }

  .popup--pricematch.activeScroll {
    top: 90px;
  }

  .popup--enquire-form {
    top: -20px;
    right: 0;
  }

  .popup--enquire-form.activeClass {
    top: 0;
  }

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

.popup--gallery {
  height: auto;
}

.popup--gallery .popup__close {
  position: absolute;
  top: 15px;
  right: 0;
}

@media (width >= 1200px) {
  .popup--gallery .popup__close {
    top: 30px;
  }

  .popup--gallery {
    opacity: 0;
    visibility: hidden;
    width: 1487px;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .popup--gallery.activeClass {
    opacity: 1;
    visibility: visible;
    top: 220px;
  }
}

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

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

.popup__header--cart {
  height: 120px;
}

.popup__title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
  display: flex;
}

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

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

.popup__close {
  box-shadow: 0 0 3px var(--grey-for-lines);
  cursor: pointer;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

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

.popup__close--search {
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.popup__close--search svg {
  stroke: var(--gd-white);
  width: 8px;
  height: 8px;
}

@media (width >= 1200px) {
  .popup__close--search {
    opacity: 0;
  }

  .popup__close--search.activeClass {
    opacity: 1;
  }
}

.popup__content {
  position: relative;
}

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

.overlay.activeClass {
  opacity: .8;
  visibility: visible;
  z-index: 3;
}

.main-btn {
  background-color: var(--gd-white);
  color: var(--gd-black);
  cursor: pointer;
  text-transform: capitalize;
  transition: var(--gd-transition) background-color ease-in-out;
  border: none;
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.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--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);
  color: var(--gd-white);
  transition: var(--gd-transition) ease-in-out;
  z-index: 1;
  height: 45px;
  transition-property: top;
  position: relative;
  overflow: hidden;
}

.main-btn--black:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--black:hover:before {
  opacity: .5;
  left: 100%;
}

.main-btn--gray {
  background-color: var(--grey-for-inputs);
  color: var(--gd-black);
  border: none;
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}

.main-btn--gray:before {
  background-color: var(--grey-for-inputs);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--gray:hover:before {
  opacity: .5;
  left: 100%;
}

.main-btn--box-btn {
  background-color: var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.main-btn--box-btn:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--box-btn:hover:before {
  opacity: .5;
  left: 100%;
}

.main-btn--box-btn.activeClass {
  cursor: not-allowed;
  opacity: .5;
  pointer-events: none;
}

.main-btn--orange {
  background-color: var(--gd-orange);
}

.main-btn--orange:before {
  background-color: var(--gd-orange);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--orange:hover:before {
  opacity: .5;
  left: 100%;
}

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

.main-btn--red:before {
  background-color: var(--gd-red);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--red:hover:before {
  opacity: .5;
  left: 100%;
}

.main-btn--white {
  color: var(--gd-black);
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 44px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 4px #00000040;
}

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

.main-btn--white:before {
  background-color: var(--gd-white);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--white:hover:before {
  opacity: .5;
  left: 100%;
}

.main-btn--check {
  background-color: var(--grey-for-lines);
  height: 47px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  color: var(--gd-white) !important;
}

@media (width >= 1200px) {
  .main-btn--check {
    margin-bottom: 0;
  }
}

.main-btn--check:hover {
  background-color: var(--gd-blue);
}

.main-btn--update-changes {
  background-color: var(--grey-for-btns);
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 45px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-btn--update-changes:before {
  background-color: var(--grey-for-btns);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--update-changes:hover:before {
  opacity: .5;
  left: 100%;
}

.main-btn--cart-checkout {
  background-color: var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.main-btn--cart-checkout:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.main-btn--cart-checkout:hover:before {
  opacity: .5;
  left: 100%;
}

.main-btn--item-wishlist {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  margin: 0 !important;
}

.main-btn--item-wishlist i {
  font-weight: 300 !important;
}

.main-btn--item-wishlist:hover {
  color: var(--gd-blue);
}

.showcase .splide__pagination {
  margin: 0;
  padding: 0;
  bottom: -50px;
  justify-content: start !important;
  display: flex !important;
}

.showcase .splide__pagination .splide__pagination__page {
  background-color: var(--grey-for-inputs);
  border-radius: 10px;
  width: 30px;
  height: 7px;
}

.showcase .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--gd-blue);
  width: 60px;
  height: 7px;
  transform: none;
}

.products-list .splide__pagination, .prod-imgs .splide__pagination, .upcoming-releases-slider .splide__pagination {
  margin: 0;
  padding: 0;
  bottom: -50px;
  justify-content: start !important;
  display: flex !important;
}

.products-list .splide__pagination .splide__pagination__page, .prod-imgs .splide__pagination .splide__pagination__page, .upcoming-releases-slider .splide__pagination .splide__pagination__page {
  background-color: var(--grey-for-inputs);
  border-radius: 10px;
  width: 30px;
  height: 7px;
}

.products-list .splide__pagination .splide__pagination__page.is-active, .prod-imgs .splide__pagination .splide__pagination__page.is-active, .upcoming-releases-slider .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--gd-blue);
  width: 60px;
  height: 7px;
  transform: none;
}

.products-list .splide__arrow, .prod-imgs .splide__arrow, .upcoming-releases-slider .splide__arrow {
  background-color: var(--gd-black);
  z-index: 1;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  opacity: 1 !important;
}

.products-list .splide__arrow:disabled, .prod-imgs .splide__arrow:disabled, .upcoming-releases-slider .splide__arrow:disabled {
  display: none;
}

.products-list .splide__arrow svg, .prod-imgs .splide__arrow svg, .upcoming-releases-slider .splide__arrow svg {
  fill: var(--gd-white);
}

.products-list .splide__arrow--prev, .prod-imgs .splide__arrow--prev, .upcoming-releases-slider .splide__arrow--prev {
  top: 45%;
  left: auto;
  right: 0;
}

.products-list .splide__arrow--next, .prod-imgs .splide__arrow--next, .upcoming-releases-slider .splide__arrow--next {
  top: 55%;
  right: 0;
}

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

@media (width >= 1200px) {
  .prod-imgs .splide__pagination {
    bottom: -170px;
  }
}

.prod-imgs .splide__arrow {
  z-index: 0;
}

@media (width >= 1200px) {
  .prod-imgs .splide__arrow--prev, .prod-imgs .splide__arrow--next {
    right: -100px;
  }

  .prod-imgs--gallery .splide__arrow--prev, .prod-imgs--gallery .splide__arrow--next {
    right: -250px;
  }
}

.prod-imgs--gallery .splide__pagination {
  bottom: -25px !important;
}

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

.read-more__btn {
  margin-top: 25px;
  display: block;
}

.breadcrumbs {
  width: 100%;
}

.breadcrumbs__nav {
  scrollbar-color: var(--gd-blue) var(--grey-for-btns);
  scrollbar-width: thin;
  white-space: nowrap;
  width: 100%;
  padding: 0 15px;
  overflow-x: auto;
}

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

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

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

@media (width >= 1200px) {
  #n-product .breadcrumbs {
    width: 850px;
  }
}

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

@media (width >= 500px) {
  #n-product .breadcrumbs__nav {
    padding: 0 30px;
  }
}

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

#n-product .breadcrumbs__list {
  justify-content: start;
  padding: 25px 0;
}

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

.breadcrumbs__link:hover {
  text-transform: none;
  text-shadow: 1px 0px 0px var(--gd-black);
}

.breadcrumbs__link--home {
  color: var(--gd-blue);
}

.breadcrumbs__link--home:hover {
  text-shadow: 1px 0px 0px var(--gd-blue);
}

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

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

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

.breadcrumbs__list-item svg {
  fill: var(--gd-black);
  width: 5px;
  height: 5px;
}

.section-title {
  color: var(--gd-black);
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

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

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

.section-title--white svg {
  fill: var(--gd-white);
  width: 15px;
  height: 15px;
}

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

.section-title--cat {
  font-size: 30px;
}

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

.section-text--bg {
  background-color: var(--grey-for-btns);
  padding: 60px 0;
}

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

.section-text--bg .main-btn, .section-text--upcoming .main-btn {
  width: 200px;
  margin: 50px auto 0;
}

.section-text__wrap {
  padding: 0 15px;
}

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

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

.section-text__wrap h1, .section-text__wrap h2 {
  margin-bottom: 20px;
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 500px) {
  .section-text__wrap h1, .section-text__wrap h2 {
    font-size: 28px;
  }
}

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

.section-text__wrap p {
  font-size: 18px;
  font-weight: 300;
}

#n-product .modal {
  background-color: #0000;
  z-index: 40 !important;
}

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

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

#recent_sales_ticker {
  z-index: 5;
}

.default-page .n-responsive-content {
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .default-page .n-responsive-content {
    font-size: 18px;
  }
}

.default-page .n-responsive-content h2, .default-page .n-responsive-content h3, .default-page .n-responsive-content h4 {
  font-size: 20px !important;
}

.default-page__head {
  padding: 50px 0;
}

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

.successaddmessage .left {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  float: none !important;
}

.successaddmessage .npopup-view, .successaddmessage .npopup-continue {
  width: 100%;
  margin: 0;
}

@media (width >= 768px) {
  .successaddmessage .npopup-view, .successaddmessage .npopup-continue {
    width: 160px;
  }
}

.successaddmessage .npopup-view {
  margin-top: 10px;
}

@media (width >= 768px) {
  .successaddmessage .npopup-view {
    margin-top: 0;
  }
}

.successaddmessage .right {
  display: none;
}

.product-box__img {
  transition: var(--gd-transition) ease-in-out;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  transition-property: transform;
  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__title {
  color: var(--gd-black);
  text-align: center;
  height: 150px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

@media (width >= 500px) {
  .product-box__title {
    height: 150px;
  }
}

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

.product-box__price {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 35px;
  display: flex;
}

.product-box__price .price {
  color: var(--gd-black);
  font-size: 20px;
  font-weight: 500;
}

.product-box__price .price--rrp {
  color: var(--grey-for-lines);
  font-size: 13px;
  font-weight: 300;
  text-decoration: line-through;
}

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

.product-box__badges-wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: start;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.product-box__badge-single {
  width: 75px;
  height: 75px;
  position: relative;
}

@media (width >= 1200px) {
  .product-box__badge-single {
    width: 95px;
    height: 95px;
  }
}

.product-box__badge-single svg {
  width: 100%;
  height: 100%;
}

.product-box__badge-single span {
  color: var(--gd-white);
  text-align: center;
  z-index: 1;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-family: Orbitron, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: block;
  position: absolute;
}

@media (width >= 1200px) {
  .product-box__badge-single span {
    width: 55px;
    height: 55px;
    font-size: 15px;
  }
}

.product-box__badge-single--sale svg {
  position: absolute;
  top: 0;
  left: 0;
}

.product-box__badge-single--sale span {
  display: flex;
  left: 0;
  transform: rotate(-45deg);
}

.product-box__badge-single--pre-order {
  margin-left: auto;
}

.product-box__badge-single--pre-order svg {
  position: absolute;
  top: 0;
  right: 0;
}

.product-box__badge-single--pre-order span {
  display: flex;
  right: 0;
  transform: rotate(45deg);
}

.product-box__badge-single--pre-order svg {
  fill: var(--gd-orange);
}

.product-box__badge-single--sale svg {
  fill: linear-gradient(to top, #b3140e, #d9281e 38%, #e03027 44%, #ea3d35 56%, #ee413a 67%, #fd5b47);
}

.product-box__status {
  margin-top: 10px;
}

.product-box__single-status {
  border-radius: 5px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: max-content;
  padding: 5px;
  font-size: 10px;
  font-weight: 400;
  display: flex;
}

@media (width >= 1200px) {
  .product-box__single-status {
    font-size: 12px;
  }
}

.product-box__single-status .product-box__status-icon {
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.product-box__single-status--in-stock {
  background-color: var(--gd-green-light);
  color: var(--gd-green);
}

.product-box__single-status--in-stock .product-box__status-icon {
  background-color: var(--gd-green);
}

.product-box__single-status--no-stock {
  background-color: var(--gd-red-light);
  color: var(--gd-red);
}

.product-box__single-status--no-stock .product-box__status-icon {
  background-color: var(--gd-red);
}

.product-box__single-status--pre-order {
  background-color: var(--gd-orange-light);
  color: var(--gd-orange);
}

.product-box__single-status--pre-order .product-box__status-icon {
  background-color: var(--gd-orange);
}

.product-box__single-status--extra-info {
  background-color: var(--gd-blue-light);
  color: var(--gd-blue);
  margin-top: 5px;
}

.product-box__single-status--extra-info .product-box__status-icon {
  background-color: var(--gd-blue);
}

.product-box {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
  grid-column: span 8;
  padding: 15px;
  position: relative;
}

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

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

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

.product-box:hover .product-box__img {
  transform: scale(1.05);
}

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

@media (width >= 500px) {
  .top {
    height: 45px;
  }
}

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

.top__text {
  color: var(--gd-white);
  width: 100%;
  font-family: Orbitron, sans-serif;
  font-size: 10px;
  font-weight: 400;
  display: block;
}

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

.header-main {
  background-color: var(--gd-black);
  z-index: 5;
  position: relative;
}

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

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

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

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

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

  .header-main__right .header-main__icon {
    margin-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
  }
}

.header-main__logo {
  transition: var(--gd-transition) ease-in-out;
  transition-property: max-width margin-left;
  width: auto;
  max-width: 209px;
  height: auto;
  max-height: 100%;
  padding: 10px 0;
}

@media (width >= 1200px) {
  .header-main__logo {
    max-width: 328px;
    margin-left: -42px;
    padding: 10px 0 0;
  }
}

.header-main__icon {
  cursor: pointer;
  position: relative;
}

.header-main__icon svg {
  fill: var(--gd-white);
  transition: var(--gd-transition) ease-in-out;
  width: 21px;
  height: 21px;
  transition-property: scale;
}

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

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

.header-main__icon--stroke-rounded svg {
  fill: #0000;
  stroke: var(--gd-blue);
  stroke-linecap: round;
  stroke-width: 3px;
}

@media (width >= 1200px) {
  .header-main__icon--stroke-rounded svg {
    stroke: var(--gd-white);
  }
}

.header-main__icon--stroke-rounded-desk {
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  transition-property: opacity visibility;
  visibility: hidden;
  display: none;
}

@media (width >= 1200px) {
  .header-main__icon--stroke-rounded-desk {
    display: block;
  }
}

.header-main__icon--stroke-rounded-desk svg {
  fill: #0000;
  stroke: var(--gd-white);
  stroke-linecap: round;
  stroke-width: 3px;
  height: 60px;
}

@media (width >= 1200px) {
  .header-main__icon--stroke-rounded-desk.activeScroll {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
}

.header-main__icon--stroke {
  fill: #0000;
  stroke: var(--gd-white);
  stroke-width: 1px;
}

.header-main__icon--tel {
  padding-left: 60px !important;
}

.header-main__cart-count {
  background-color: var(--gd-blue);
  color: var(--gd-white);
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  position: absolute;
  top: -8px;
  right: -8px;
}

.menu {
  scrollbar-color: var(--gd-black-2) white;
  scrollbar-width: thin;
  height: calc(100vh - 200px);
  overflow-y: auto;
}

@media (width >= 1200px) {
  .menu {
    height: 550px;
  }
}

.menu__wrap {
  margin: 30px 0;
}

.filters__wrap {
  scrollbar-color: var(--gd-black-2) var(--gd-white);
  scrollbar-width: thin;
  height: calc(100vh - 200px);
  overflow-y: auto;
}

@media (width >= 1200px) {
  .filters__wrap {
    height: 550px;
  }
}

.filters {
  background-color: var(--gd-white);
  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-header {
  color: var(--gd-black);
  cursor: pointer;
  text-shadow: 1px 0px 0px var(--gd-black);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin: 30px 0 20px;
  font-size: 18px;
  display: flex;
}

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

.filters__filter {
  width: calc(100% - 15px);
}

.filters__title {
  color: var(--gd-black);
  text-transform: capitalize;
  transition: var(--gd-transition) ease-in-out;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: max-content;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition-property: text-shadow;
  display: flex;
}

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

.filters__title span {
  transition: var(--gd-transition) ease-in-out;
  border-bottom: 3px solid #0000;
  transition-property: border-bottom;
}

.filters__title:hover {
  color: var(--gd-black);
  text-shadow: 1px 0px 0px var(--gd-black);
}

.filters__title:hover span {
  border-bottom: 3px solid var(--gd-blue);
}

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

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

.filters__title--lvl2:hover {
  color: var(--gd-black);
  text-shadow: .5px 0px 0px var(--gd-black);
}

.filters__title--lvl2:hover span {
  border-bottom: 3px solid var(--gd-blue);
}

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

.filters__view-all {
  border-bottom: 3px solid var(--gd-blue);
  color: var(--gd-black);
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.header-bottom {
  background-color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  transition-property: transform;
  display: none;
}

@media (width >= 1200px) {
  .header-bottom {
    display: block;
  }
}

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

.header-bottom__left {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  height: 100%;
  display: flex;
}

.header-bottom__line {
  background-color: var(--gd-white);
  width: 1px;
  height: 20px;
}

.header-bottom__icon {
  color: var(--gd-white);
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.header-bottom__icon svg {
  fill: #0000;
  stroke: var(--gd-blue);
  stroke-linecap: round;
  stroke-width: 3px;
  width: 22px;
  height: 22px;
}

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

.header-bottom__menu-add {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}

.header-bottom__menu-list {
  flex-flow: wrap;
  justify-content: center;
  align-items: end;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.header-bottom__menu-link {
  flex-flow: wrap;
  justify-content: center;
  align-items: end;
  height: 100%;
  display: flex;
}

.header-bottom__menu-link span {
  color: var(--gd-white);
  transition: var(--gd-transition) ease-in-out;
  border-bottom: 4px solid #0000;
  flex-flow: wrap;
  justify-content: center;
  align-items: end;
  height: 100%;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  transition-property: text-shadow, border-bottom;
  display: flex;
}

.header-bottom__menu-link:hover span {
  border-bottom: 4px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-white);
}

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

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

.header-bottom__text {
  color: var(--gd-blue);
  font-size: 16px;
  font-weight: 400;
}

.header-bottom__price-match {
  background-color: var(--gd-blue);
  color: var(--gd-white);
  cursor: pointer;
  z-index: 1;
  border-radius: 7px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 30px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-bottom__price-match:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.header-bottom__price-match:hover:before {
  opacity: .5;
  left: 100%;
}

.gd-header__wrap {
  transition: var(--gd-transition) ease-in-out;
  z-index: 5;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition-property: all !important;
}

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

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

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

.gd-header__wrap.down .header-main__logo {
  transition: var(--gd-transition) ease-in-out;
  transition-property: max-width margin-left;
  max-width: 164px;
}

@media (width >= 500px) {
  .gd-header__wrap.down .header-main__logo {
    max-width: 164px;
  }
}

@media (width >= 1200px) {
  .gd-header__wrap.down .header-main__logo {
    max-width: 279px;
    margin-left: 0;
  }
}

.gd-header__wrap.down .header-bottom {
  margin-top: -50px;
  transition-property: all;
}

.gd-header__wrap.up {
  top: -44px;
}

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

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

.gd-header__wrap.up .header-main__logo {
  transition: var(--gd-transition) ease-in-out;
  transition-property: max-width margin-left;
  max-width: 164px;
  margin-left: 0;
}

@media (width >= 500px) {
  .gd-header__wrap.up .header-main__logo {
    max-width: 164px;
  }
}

@media (width >= 1200px) {
  .gd-header__wrap.up .header-main__logo {
    max-width: 279px;
  }
}

.gd-header__wrap.up .header-bottom {
  margin-top: -50px;
  transition-property: all;
}

.main__wrap {
  margin-top: 123px;
}

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

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

.main__wrap--checkout-page {
  margin-top: 80px;
}

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

.gd-footer {
  z-index: 2;
  position: relative;
}

.footer {
  background-color: var(--gd-black);
  padding: 40px 0 60px;
}

.footer__wrap {
  position: relative;
}

.footer__top {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  display: flex;
}

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

.footer__logo {
  width: 345px;
  height: 97px;
}

@media (width >= 500px) {
  .footer__logo {
    width: 384px;
    height: 109px;
  }
}

@media (width >= 1200px) {
  .footer__logo {
    width: 383px;
    height: 110px;
  }
}

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

.footer-menu {
  z-index: 1;
  margin-top: 50px;
  position: relative;
}

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

@media (width >= 1200px) and (width <= 1450px) {
  .footer-menu {
    gap: 50px;
  }
}

@media (width >= 1200px) {
  .footer-menu__single {
    flex-flow: row;
    justify-content: flex-start;
    align-items: start;
    gap: 150px;
    display: flex;
  }
}

@media (width >= 1200px) and (width <= 1450px) {
  .footer-menu__single {
    gap: 50px;
  }
}

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

  .footer-menu__single--newsletter {
    width: 400px;
  }
}

.footer-menu__nav-item {
  transition: var(--gd-transition) ease-in-out;
  max-height: 60px;
  margin-bottom: 25px;
  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--full-height {
  max-height: 100%;
  margin-top: 25px;
}

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

.footer-menu__link {
  color: var(--gd-white);
  transition: var(--gd-transition) ease-in-out;
  border-bottom: 3px solid #0000;
  flex-wrap: nowrap;
  gap: 7px;
  font-size: 17px;
  font-weight: 400;
  transition-property: border, text-shadow;
  display: inline-block;
}

.footer-menu__link svg {
  fill: var(--gd-white);
  width: 15px;
  height: 15px;
}

.footer-menu__link:hover {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-white);
}

.footer-menu__title {
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  font-family: Orbitron, sans-serif;
  font-size: 22px;
  font-weight: 500;
  display: flex;
}

.footer-menu__title svg {
  fill: var(--gd-blue);
  stroke: var(--gd-white);
  stroke-width: 1px;
  transition: var(--gd-transition);
  width: 16px;
  height: 16px;
  position: relative;
  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);
}

.form-menu__subtext {
  color: var(--gd-white);
  font-size: 17px;
  font-weight: 300;
}

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

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

.footer-menu__nav-list--newsletter-form .mp-aq-form .embedded_form-container, .footer-menu__nav-list--newsletter-form .mp-aq-form .ui-sortable {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-menu__nav-list--newsletter-form .mp-aq-form .mp-element {
  margin: 0;
  padding: 0;
}

.footer-menu__nav-list--newsletter-form .mp-aq-form .mp-element p {
  display: none;
}

.footer-menu__nav-list--newsletter-form .mp-aq-form .form-element {
  color: var(--gd-white);
  padding-left: 15px;
  font-size: 14px;
  font-weight: 300;
  background-color: var(--gd-black-2) !important;
  border: none !important;
  border-radius: 10px !important;
  height: 45px !important;
}

.footer-menu__nav-list--newsletter-form .mp-aq-form .form-element::placeholder {
  color: var(--gd-white);
}

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

.footer__go-top {
  background-color: var(--gd-black-2);
  cursor: pointer;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
  position: absolute;
  top: 0;
  right: 15px;
  overflow: hidden;
}

@media (width >= 500px) {
  .footer__go-top {
    right: 30px;
  }
}

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

.footer__go-top svg {
  fill: var(--gd-blue);
  width: 25px;
  height: 25px;
}

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

.footer__circular-text {
  font-family: Orbitron, sans-serif;
  animation: 6s linear infinite rotateText;
  position: absolute;
  top: 0;
  left: 0;
  fill: var(--gd-white) !important;
  width: 100% !important;
  height: 100% !important;
}

@keyframes rotateText {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.usp {
  background-color: var(--gd-black-2);
  padding: 50px 0;
}

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

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

.usp__img {
  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-white);
  margin: 10px 0 15px;
  font-size: 24px;
  font-weight: 400;
}

.usp__subtext {
  color: var(--gd-white);
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
}

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

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

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

.usp__single:hover .usp__title {
  color: var(--gd-blue);
}

@media (width >= 1200px) {
  .usp__single:nth-child(2) {
    margin-left: -115px;
  }
}

.footer-bottom {
  background-color: var(--gd-black);
  padding: 40px 0;
}

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

.footer-bottom__wrap {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  display: flex;
}

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

.footer-bottom__share-title {
  font-size: 14px;
  font-weight: 400;
}

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

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

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

.footer-bottom__social--prod-imgs {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

@media (width >= 1200px) {
  .footer-bottom__social--prod-imgs {
    margin-top: 40px;
  }
}

.footer-bottom__social--prod-imgs svg {
  fill: var(--gd-black) !important;
}

.footer-bottom__social--prod-imgs .footer-bottom__social-link--icon-x {
  stroke-width: .8px;
  stroke: var(--gd-white) !important;
}

.footer-bottom__social--prod-imgs .footer-bottom__social-link:hover svg {
  fill: var(--gd-blue) !important;
}

.footer-bottom__social--prod-imgs .footer-bottom__social-link:hover svg--icon-x {
  stroke: var(--gd-blue) !important;
}

.footer-bottom__social-link svg {
  fill: var(--gd-white);
  width: 25px;
  height: 25px;
}

.footer-bottom__social-link--icon-x {
  stroke: var(--gd-black);
  stroke-width: .8px;
}

.footer-bottom__social-link:hover svg {
  fill: var(--gd-blue);
}

.footer-bottom__social-link:hover svg--icon-x {
  stroke: var(--gd-blue);
}

.footer-bottom__text-wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  display: flex;
}

@media (width >= 1200px) {
  .footer-bottom__text-wrap {
    margin-left: 300px;
  }
}

.footer-bottom__text-single {
  color: var(--gd-white);
  font-size: 14px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .footer-bottom__text-single {
    font-size: 12px;
  }
}

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

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

.footer-bottom__icon {
  background-color: var(--gd-white);
  border-radius: 5px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 30px;
  display: flex;
}

.footer-bottom__icon img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding: 5px;
}

.header-search__btn {
  z-index: 5;
  background-color: #0000;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-55%);
}

.header-search__btn svg {
  fill: var(--gd-white);
  stroke: none;
  width: 14px;
  height: 14px;
}

.header-search__form {
  margin: 30px 0;
}

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

.header-search__input {
  background-color: var(--gd-black-2);
  color: var(--gd-white);
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 45px;
  padding: 0 35px;
  font-size: 14px;
  font-weight: 300;
}

.header-search__input::placeholder {
  color: var(--gd-white);
  font-size: 14px;
  font-weight: 300;
}

.header-search__input:focus-visible {
  outline: 1px solid var(--gd-blue);
}

@media (width >= 1200px) {
  .header-main__search-wrap {
    width: calc(100% - 950px);
    margin-left: 130px;
    margin-right: auto;
    position: relative;
  }
}

.nsearchinput-pl.well {
  width: 100%;
  left: 0;
  border-radius: 10px !important;
  margin-top: 50px !important;
}

@media (width >= 1200px) {
  .nsearchinput-pl.well {
    padding: 25px 0 25px 30px;
    box-shadow: 0 4px 4px #00000040;
  }
}

.nsearchinput-pl.well .nav {
  scrollbar-color: var(--gd-black-2) var(--gd-white);
  scrollbar-width: thin;
  height: 415px;
  overflow-y: auto;
}

.nsearchinput-pl.well li a {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nsearchinput-pl.well li:hover .title {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

.nsearchinput-pl.well .title {
  color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  border-bottom: 3px solid #0000;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  transition-property: text-shadow, border-bottom;
}

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

.store-location__menu {
  margin: 30px 0;
  padding: 0;
}

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

.store-location__list:nth-last-child(2) {
  border-bottom: 1px solid var(--grey-for-lines);
  margin-bottom: 30px;
}

.store-location__link {
  color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  border-bottom: 3px solid #0000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  transition-property: text-shadow, border-bottom;
  display: flex;
}

.store-location__link svg {
  fill: var(--gd-blue);
  width: 18px;
  height: 18px;
}

@media (width >= 500px) {
  .store-location__link {
    font-size: 20px;
  }
}

.store-location__link:hover {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

.contactus__menu {
  margin: 30px 0;
  padding: 0;
}

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

.contactus__list:nth-last-child(2) {
  border-bottom: 1px solid var(--grey-for-lines);
  margin-bottom: 30px;
}

.contactus__link {
  color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  border-bottom: 3px solid #0000;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  transition-property: text-shadow, border-bottom;
  display: flex;
}

.contactus__link:hover {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

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

.contactus__link svg {
  fill: var(--gd-blue);
  width: 18px;
  height: 18px;
}

.popup__product-name {
  font-size: 18px;
  font-weight: 400;
}

.popup__product-sku {
  color: var(--grey-for-lines);
  margin: 12px 0 30px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}

.popup__form-scroll {
  scrollbar-color: var(--gd-black-2) var(--gd-white);
  scrollbar-width: thin;
  height: 450px;
  margin-top: 35px;
  overflow-y: auto;
}

.form-group__single {
  margin-bottom: 30px;
}

.form-group__single label {
  color: var(--gd-black);
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.form-group__single .form-control {
  border: 1px solid var(--grey-for-inputs);
  color: var(--gd-black);
  border-radius: 10px;
  width: calc(100% - 15px);
  height: 45px;
  margin-left: 1px;
  font-size: 14px;
  font-weight: 300;
}

.form-group__single .form-control--textarea {
  height: 150px;
  padding: 10px;
}

.form-group__single .form-control--textarea::placeholder {
  font-size: 14px;
  font-weight: 300;
}

.form-group__single .form-control:focus-visible {
  outline: 1px solid var(--gd-blue);
}

.form-group__single .form-control:focus {
  box-shadow: none;
}

.form-group__btn-wrap {
  border-radius: 0 0 10px 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin: auto -15px;
  padding: 15px 0;
  display: flex;
  box-shadow: 0 0 4px #00000040;
}

.form-group__btn-wrap .main-btn {
  width: calc(100% - 20px);
}

@media (width >= 500px) {
  .form-group__btn-wrap {
    margin: auto -30px;
  }

  .form-group__btn-wrap .main-btn {
    width: calc(100% - 40px);
  }
}

@media (width >= 1200px) {
  .form-group__btn-wrap {
    margin: auto -40px;
  }

  .form-group__btn-wrap .main-btn {
    width: calc(100% - 80px);
  }
}

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

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

.user-info__link {
  color: var(--gd-black);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  display: flex;
}

.user-info__link span {
  color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  border-bottom: 3px solid #0000;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 400;
  transition-property: text-shadow, border-bottom;
}

@media (width >= 500px) {
  .user-info__link span {
    font-size: 20px;
  }
}

.user-info__link svg {
  fill: var(--gd-blue);
  width: 18px;
  height: 18px;
}

.user-info__link:hover span {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

.user-info__link--log {
  margin-top: 30px;
}

.order-summary__scroll {
  scrollbar-color: var(--gd-black-2) var(--gd-white);
  scrollbar-width: thin;
  margin: 20px 0;
  padding: 0;
  overflow-y: auto;
}

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

.order-summary__single {
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  gap: 12px;
  width: calc(100% - 15px);
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
}

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

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

.order-summary__info {
  width: 200px;
}

.order-summary__product-title {
  color: var(--gd-black);
  font-size: 15px;
  font-weight: 400;
}

.order-summary__product-title b {
  font-weight: 500 !important;
}

.order-summary__product-title:hover {
  color: var(--gd-blue);
}

.order-summary__product-cost {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.order-summary__remove {
  box-shadow: 0 0 3px var(--grey-for-lines);
  cursor: pointer;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: auto;
  display: flex;
}

.order-summary__remove svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 2px;
  width: 10px;
  height: 10px;
}

.order-summary__bottom-wrap {
  border-radius: 0 0 10px 10px;
  margin: 0 -15px;
  padding: 20px 15px;
  box-shadow: 0 0 4px #00000040;
}

@media (width >= 500px) {
  .order-summary__bottom-wrap {
    margin: 0 -30px;
    padding: 20px 30px;
  }
}

@media (width >= 1200px) {
  .order-summary__bottom-wrap {
    margin: 0 -40px;
    padding: 20px 40px;
  }
}

.order-summary__bottom-wrap .main-btn {
  width: 100%;
  margin-top: 15px;
}

.order-summary__bottom-wrap .main-btn svg {
  fill: var(--gd-white);
}

.order-summary__bottom-wrap .main-btn--gray {
  background-color: var(--grey-for-inputs);
  border: none;
  height: 45px;
  font-size: 16px;
}

.order-summary__cost {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.order-summary__shipping-txt {
  color: var(--gd-blue);
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: -55px;
}

#n-checkout .order-summary__shipping-txt {
  position: relative;
  top: 0;
}

.order-summary__empty-cart {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 400;
}

.hero .main-btn {
  width: 200px;
  height: 47px;
  margin: 0 auto;
}

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

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

.hero__img {
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero__text-wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

@media (width >= 768px) {
  .hero__text-wrap {
    width: 500px;
  }
}

.hero__title {
  color: var(--gd-white);
  font-family: Orbitron, sans-serif;
  font-size: 40px;
  font-weight: 500;
}

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

.hero__description {
  color: var(--gd-white);
  margin: 15px 0 30px;
  padding: 0;
  font-size: 20px;
  font-weight: 300;
}

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

.shop-categories {
  margin-top: 30px;
}

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

.shop-categories .main-btn {
  width: 200px;
  height: 45px;
  margin: 60px auto 0;
}

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

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

@media (width >= 1200px) {
  .shop-categories__wrap {
    grid-gap: 0;
    grid-template-columns: repeat(48, 1fr);
    gap: 50px 30px;
    margin-top: 50px;
    display: grid;
  }
}

@media (width >= 1200px) and (width <= 1450px) {
  .shop-categories__wrap {
    gap: 50px 15px;
  }
}

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

.shop-categories__img {
  transition: var(--gd-transition) ease-in-out;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 130%;
  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 {
  transition: var(--gd-transition) ease-in-out;
  z-index: 2;
  width: 100%;
  transition-property: bottom, font-size;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.shop-categories__title {
  color: var(--gd-white);
  transition: var(--gd-transition);
  text-align: center;
  width: 100%;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 400;
  transition-property: font-size;
  display: block;
}

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

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

.shop-categories__single {
  border-radius: 10px;
  grid-column: span 8;
  position: relative;
  overflow: hidden;
}

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

.shop-categories__single:before {
  content: "";
  opacity: 0;
  transition: all var(--gd-transition) ease-in-out;
  z-index: 1;
  background: linear-gradient(#0000004d -3.33%, #1e0e279e 45.71%, #209bd9 100%);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.shop-categories__single:hover:before {
  opacity: 1;
  animation: 2s linear infinite anime-overlay;
}

.shop-categories__single:hover .shop-categories__text-wrap {
  bottom: 35px;
}

.shop-categories__single:hover .shop-categories__title {
  font-size: 22px;
}

@media (width >= 500px) {
  .shop-categories__single:hover .shop-categories__title {
    font-size: 23px;
  }
}

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

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

@keyframes anime-overlay {
  0% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .5;
  }
}

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

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

@media (width >= 1200px) {
  .showcase .splide__list {
    grid-template-rows: 1fr !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    gap: 20px !important;
    display: grid !important;
  }
}

.showcase__single {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.showcase__single--0 {
  grid-area: 1 / 1 / 2 / 5;
  height: 560px;
  background-position: top top !important;
}

@media (width >= 500px) {
  .showcase__single--0 {
    height: 350px;
  }
}

@media (width >= 1200px) {
  .showcase__single--0 {
    height: 400px;
    padding-top: 0;
  }
}

.showcase__single--0 .showcase__text {
  padding-top: 65px;
}

@media (width >= 1200px) {
  .showcase__single--0 .showcase__text {
    flex-flow: column wrap;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 60px;
    display: flex;
  }
}

.showcase__single--1 {
  background-position: center;
  grid-area: 2 / 1 / 3 / 2;
  height: 560px;
}

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

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

.showcase__single--1 .showcase__text {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  display: flex;
}

.showcase__single--2 {
  background-position: center;
  grid-area: 2 / 2 / 3 / 4;
  height: 560px;
}

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

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

.showcase__single--2 .showcase__text {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  display: flex;
}

.showcase__single--3 {
  background-position: center;
  grid-area: 2 / 4 / 3 / 5;
  height: 560px;
}

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

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

.showcase__single--3 .showcase__text {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  padding-top: 50px;
  display: flex;
}

.showcase__text {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: max-content;
  padding: 0 15px;
  display: flex;
}

.showcase__text .main-btn {
  margin-top: 50px;
}

.showcase__text .section-title {
  width: 100%;
}

.showcase__subtext {
  color: var(--gd-white);
  font-size: 16px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .showcase__subtext {
    margin: 0;
    padding: 15px 0 0;
    font-size: 18px;
  }
}

.product-card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding-top: 60px;
}

.product-card .main-btn {
  margin-top: 60px;
}

.single-showcase__figure {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 166%;
  position: relative;
  overflow: hidden;
}

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

.showcase-single__img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.single-showcase__text-wrap {
  width: 100%;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width >= 1200px) {
  .single-showcase__text-wrap {
    transform: translate(-50%, -35%);
  }
}

.single-showcase__subtext {
  color: var(--gd-white);
  margin: 20px 0 50px;
  font-size: 18px;
  font-weight: 300;
}

.brands {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 85px 0;
}

.brands .section-title {
  padding-bottom: 60px;
}

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

.brands__img {
  width: 110px;
  height: 50px;
  margin: 0 auto;
}

@media (width >= 1200px) {
  .brands__img {
    width: 217px;
    height: 100px;
  }
}

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

.brands__main-title {
  color: var(--gd-black);
  text-align: center;
  margin-top: 25px;
  font-size: 17px;
  font-weight: 400;
  display: block;
}

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

.brands__right {
  margin-top: 20px;
}

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

.brands__single {
  background-color: var(--gd-white);
  border-radius: 10px;
  padding: 40px 0;
}

.brands__single:hover .brands__main-title {
  color: var(--gd-blue);
}

.reviews {
  background-color: var(--grey-for-inputs);
  padding: 75px 0;
}

.cat-top {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
}

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

.category-main__sort-wrap {
  text-align: center;
  margin-top: 15px;
}

@media (width >= 768px) {
  .category-main__sort-wrap {
    text-align: right;
    margin-top: 0;
  }
}

@media (width >= 1200px) {
  .category-main__sort-wrap {
    text-align: center;
  }
}

.cat-main__wrap {
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  display: flex;
}

.cat-main__top {
  border-bottom: 1px solid var(--grey-for-lines);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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

@media (width >= 1200px) {
  .cat-main__top {
    border-bottom: none;
    margin: 0;
    padding: 0;
  }
}

.cat-main__top-left {
  width: 100%;
}

@media (width >= 1200px) {
  .cat-main__top-left {
    width: 350px;
  }
}

.cat-main__top-right {
  width: 100%;
  margin-left: auto;
}

@media (width >= 1200px) {
  .cat-main__top-right {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 350px);
    margin-bottom: 25px;
    padding-bottom: 25px;
    display: flex;
  }
}

.cat-main__top-right--new-arrivals {
  width: 100% !important;
  margin-left: 0 !important;
}

.cat-main__top-right--new-arrivals .cat-main__product-count {
  margin-left: 0;
}

.cat-main__product-count {
  margin-left: 70px;
  font-family: orbitron, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.cat-main__sort-label, .cat-main__sort-input {
  cursor: pointer;
  background-color: #0000;
  border: none;
  font-family: orbitron, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.cat-main__filter-btn {
  border: 1px solid var(--grey-for-inputs);
  cursor: pointer;
  background-color: #0000;
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 47px;
  font-family: orbitron, sans-serif;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

@media (width >= 768px) {
  .cat-main__filter-btn {
    width: 345px;
  }
}

@media (width >= 1200px) {
  .cat-main__filter-btn {
    width: 130px;
  }
}

.cat-main__filter-btn svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.5px;
  width: 15px;
  height: 15px;
}

.cat-main__filter-btn.activeClass {
  background-color: var(--grey-for-btns);
}

.cat-main__left {
  transition: var(--gd-transition) ease-in-out;
  flex-shrink: 0;
  width: 350px;
  transition-property: width;
  display: none;
  position: sticky;
  top: 205px;
}

@media (width >= 1200px) {
  .cat-main__left {
    display: block;
  }
}

.cat-main__left.activeClass {
  width: 0;
}

.cat-main__left-top {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 350px;
  margin: -88px 0 25px;
  padding-bottom: 25px;
  display: flex;
}

.cat-main__left-top--new-arrivals {
  display: none;
}

.cat-main__close-filters {
  cursor: pointer;
  opacity: 1;
  transition: var(--gd-transition) ease-in-out;
  transition-property: opacity visibility;
  visibility: visible;
}

.cat-main__close-filters span {
  color: var(--grey-for-lines);
  font-size: 16px;
  font-weight: 300;
  text-decoration: underline;
}

.cat-main__close-filters svg {
  background-color: var(--grey-for-btns);
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 2px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  padding: 5px;
}

.cat-main__close-filters.activeClass {
  opacity: 0;
  visibility: hidden;
}

.cat-main__right {
  grid-gap: 15px;
  background-color: var(--gd-white);
  z-index: 1;
  grid-template-columns: repeat(16, 1fr);
  width: 100%;
  display: grid;
  position: relative;
}

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

@media (width >= 1200px) {
  .cat-main__right {
    grid-gap: 40px;
    grid-template-columns: repeat(32, 1fr);
    margin-left: 70px;
    display: grid;
  }

  .cat-main__right.activeClass {
    grid-gap: 40px;
    grid-template-columns: repeat(40, 1fr);
    margin-left: 0;
    display: grid;
  }
}

@media (width >= 1200px) and (width <= 1500px) and (width >= 1200px) {
  .cat-main__right {
    grid-gap: 25px;
    grid-template-columns: repeat(24, 1fr);
    display: grid;
  }

  .cat-main__right.activeClass {
    grid-gap: 25px;
    grid-template-columns: repeat(32, 1fr);
    display: grid;
  }
}

.cat-main__empty-text {
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

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

.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-blue);
  font-weight: 400;
}

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

.new-filter {
  max-height: 50px;
  margin-bottom: 40px;
  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;
  }
}

.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);
  margin-top: 30px;
  padding-right: 15px;
  overflow: auto;
}

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

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

.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: 13px;
  height: 13px;
  transform: rotate(180deg);
}

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

.filter-header {
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.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: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  min-width: 16px;
  min-height: 16px;
  transition-property: border;
  display: flex;
}

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

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

.list-group-item span {
  border-bottom: 3px solid #0000;
}

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

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

.list-group-item:hover span {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

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

.filter__show-more {
  border-bottom: 1px solid var(--gd-black);
  cursor: pointer;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.filter-remove .list-group-item span {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

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

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

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

.filter-total {
  color: var(--grey-for-lines);
  margin-left: auto;
  font-size: 14px;
  font-weight: 300;
}

.filters__line {
  background-color: var(--grey-for-lines);
  width: 100%;
  height: 1px;
  margin-top: 40px;
}

.pagination {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 60px 0 0;
  padding: 0 0 30px;
  display: flex;
}

.page-link {
  background-color: #0000;
  border: none;
  padding: 0;
}

.page-link svg {
  width: 16px;
  height: 16px;
}

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

.page-link:hover svg {
  fill: var(--gd-blue);
}

.page-item--num {
  border: 2px solid #0000;
  border-radius: 5px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.page-item--num .page-link {
  color: var(--gd-black);
  margin: 0;
  padding: 0;
  font-family: Orbitron, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.page-item--num.active {
  border: 2px solid var(--gd-blue);
}

.page-item--num.active .page-link {
  background-color: #0000;
}

.page-item--num:hover {
  border: 2px solid var(--gd-blue);
}

.category-main__custom-pagination {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 60px 0 0;
  padding: 0 0 30px;
  display: flex;
}

.category-main__custom-pagination .page-item, .category-main__custom-pagination .page-item--number {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-main__custom-pagination .page-item--number {
  border: 2px solid #0000;
  border-radius: 5px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.category-main__custom-pagination .page-item--number.activeClass, .category-main__custom-pagination .page-item--number:hover {
  border: 2px solid var(--gd-blue);
  background-color: #0000;
}

.category-main__custom-pagination .page-item--number .page-link {
  color: var(--gd-black);
  margin: 0;
  padding: 0;
  font-family: Orbitron, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.category-main__custom-pagination .page-item .page-link {
  color: var(--gd-black);
  cursor: pointer;
  margin: 0;
  padding: 0;
  font-family: Orbitron, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.product-images {
  background-color: var(--grey-for-images);
  padding: 0 0 100px;
}

.product-images__wrap {
  padding: 0 15px;
}

@media (width >= 500px) {
  .product-images__wrap {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .product-images__wrap {
    width: 850px;
    margin-left: auto;
    margin-right: 45px;
    padding: 0 0 0 15px;
  }
}

@media (width >= 1200px) and (width <= 1500px) {
  .product-images__wrap {
    margin-right: 0;
  }
}

.prod-imgs {
  background-color: var(--gd-white);
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
  max-width: 100%;
  padding: 50px 0;
  position: relative;
}

@media (width >= 1200px) {
  .prod-imgs {
    max-width: 100%;
    padding: 50px 0 80px;
  }
}

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

@media (width >= 1200px) {
  .prod-imgs__wrap {
    width: 600px;
    margin: 0 auto;
  }
}

.prod-imgs__thumbnails .prod-imgs__figure {
  border: 1px solid var(--grey-for-lines);
  cursor: pointer;
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0;
  display: flex;
  transform: scale(1);
}

.prod-imgs__thumbnails .prod-imgs__figure .prod-imgs__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.prod-imgs__thumbnails .prod-imgs__figure img {
  width: 60px;
  height: auto;
}

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

.prod-imgs__thumbnails .splide__slide.is-active .prod-imgs__figure {
  border: 1px solid var(--gd-blue);
  transform: scale(1);
}

@media (width >= 1200px) {
  .prod-imgs__thumbnails {
    max-width: 600px;
    margin: 40px auto 0;
  }
}

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

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

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

@media (width >= 1200px) {
  .product__wrap {
    grid-gap: 0;
    grid-template-columns: 1fr .8fr;
    display: grid;
  }
}

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

.product-sidebar {
  width: 100%;
}

@media (width >= 1200px) {
  .product-sidebar {
    width: 510px;
    margin-top: 71px;
    margin-left: 80px;
  }
}

@media (width >= 1200px) and (width <= 1500px) {
  .product-sidebar {
    width: 100%;
    margin-left: 0;
  }
}

.product-sidebar__wrap {
  padding: 0 15px;
}

@media (width >= 500px) {
  .product-sidebar__wrap {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .product-sidebar__wrap {
    margin-left: auto;
    padding: 0 15px 0 0;
    position: sticky;
    top: 120px;
  }
}

.prod-header__title {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
}

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

@media (width >= 1200px) {
  .prod-header__title {
    margin-top: 0;
    font-size: 27px;
  }
}

.prod-header__subtext {
  color: var(--dark-grey-for-text);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
}

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

.prod-header__productprice {
  font-size: 24px;
  font-weight: 500;
}

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

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

.prod-header__productrrp {
  color: var(--grey-for-lines);
  font-size: 16px;
  font-weight: 300;
  text-decoration: line-through;
}

.prod-header__productsave {
  color: var(--gd-red);
  font-size: 16px;
  font-weight: 300;
}

.prod-header__productwasprice {
  width: 100%;
  font-size: 22px;
  font-weight: 400;
}

@media (width >= 500px) {
  .prod-header__productwasprice {
    font-size: 23px;
  }
}

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

.prod-header__productpromo {
  color: var(--gd-blue);
  width: 100%;
  font-size: 25px;
  font-weight: 500;
}

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

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

.prod-header__productsavetext, .prod-header__time-text {
  color: var(--gd-red);
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}

.prod-header__warehouse-wrap {
  margin-top: 30px;
}

.prod-header__warehouse-single {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  display: flex;
}

.prod-header__warehouse-title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  width: 150px;
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

.prod-header__warehouse-title svg {
  width: 17px;
  height: 17px;
}

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

.prod-header__warehouse-status {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 300;
  display: flex;
}

.prod-header__warehouse-status--has-stock {
  color: var(--gd-green);
}

.prod-header__warehouse-status--has-stock .prod-header__status-icon {
  background-color: var(--gd-green);
}

.prod-header__warehouse-status--no-stock {
  color: var(--gd-red);
}

.prod-header__warehouse-status--no-stock .prod-header__status-icon {
  background-color: var(--gd-red);
}

.prod-header__warehouse-info {
  cursor: pointer;
  position: relative;
}

.prod-header__warehouse-info svg {
  fill: var(--grey-for-lines);
  width: 12px;
  height: 12px;
}

.prod-header__warehouse-info svg.activeClass, .prod-header__warehouse-info:hover svg {
  fill: var(--gd-blue);
}

.prod-header__warehouse-message {
  background-color: var(--gd-white);
  border: 1px solid var(--grey-for-inputs);
  color: var(--grey-for-lines);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  transition-property: opacity visibility;
  visibility: hidden;
  z-index: 2;
  border-radius: 10px;
  width: 229px;
  padding: 25px 20px;
  font-size: 13px;
  font-weight: 300;
  display: none;
  position: absolute;
  box-shadow: 0 4px 4px #00000040;
}

.prod-header__warehouse-message.activeClass {
  opacity: 1;
  visibility: visible;
  display: block;
}

@media (width <= 768px) {
  .prod-header__warehouse-message {
    right: 0;
  }
}

.buying-options__btn-wrap .main-btn {
  font-size: 19px !important;
}

.multi-price {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
  margin-top: 40px;
  padding: 15px 20px;
}

.multi-price__heading {
  border-bottom: 1px solid var(--grey-for-inputs);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.multi-price__title-left {
  width: 70%;
  font-size: 16px;
  font-weight: 400;
}

.multi-price__title-right {
  width: 30%;
  font-size: 16px;
  font-weight: 400;
}

.multi-price__single {
  border-bottom: 1px solid var(--grey-for-inputs);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.multi-price__left {
  width: 70%;
  font-size: 14px;
  font-weight: 300;
}

.multi-price__right {
  width: 30%;
  font-size: 14px;
  font-weight: 300;
}

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

.buying-options .main-btn {
  height: 55px;
  margin: 12px 0;
}

.buying-options__order-single {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

.buying-options__qty-input {
  background-color: var(--grey-for-btns);
  text-align: center;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .buying-options__qty-input {
    height: 47px;
    font-size: 18px;
  }
}

.prod-bottom {
  margin-top: 60px;
}

.prod-bottom__text {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
  font-size: 14px;
  font-weight: 300;
}

.prod-bottom__text--availability {
  margin-top: 15px;
}

.prod-bottom__text--eol-sku {
  color: var(--gd-red);
  text-transform: uppercase;
  font-weight: 400;
  display: none;
}

.prod-bottom__text--eol-sku.activeClass {
  display: block;
}

.prod-bottom__info {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
  padding: 20px;
}

.prod-bottom__info-single {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.prod-bottom__info-single:last-child {
  margin-bottom: 0;
}

.prod-bottom__info-title, .prod-bottom__info-text {
  font-size: 14px;
  font-weight: 300;
}

.prod-bottom__pricematch-btn {
  background-color: var(--gd-blue);
  color: var(--gd-white);
  border: none;
  border-radius: 7px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin: 20px 0 30px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

.prod-bottom__pricematch-btn:before {
  background-color: var(--gd-blue);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.prod-bottom__pricematch-btn:hover:before {
  opacity: .5;
  left: 100%;
}

.prod-bottom__basegame {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 20px;
  margin: 40px 0 30px;
  padding: 25px 20px;
}

.prod-bottom__basegame-main-title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.prod-bottom__basegame-main-title svg {
  width: 15px;
  height: 15px;
}

.prod-bottom__basegame-img img {
  width: auto;
  max-width: 20px;
  height: auto;
  max-height: 100%;
}

.prod-bottom__basegame-title {
  color: var(--gd-black);
  font-size: 14px;
  font-weight: 300;
}

.prod-bottom__basegame-single {
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  gap: 20px;
  padding-top: 30px;
  display: flex;
}

.prod-bottom__basegame-single:hover .prod-bottom__basegame-title {
  color: var(--gd-blue);
}

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

.prod-info__single {
  transition: var(--gd-transition) ease-in-out;
  max-height: 100px;
  transition-property: max-height;
  overflow: hidden;
}

.prod-info__title {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  font-family: Orbitron, sans-serif;
  font-size: 28px;
  font-weight: 500;
  display: flex;
}

.prod-info__title span {
  border-bottom: 3px solid #0000;
}

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

.prod-info__title svg {
  transition: var(--gd-transition) ease-in-out;
  width: 28px;
  height: 28px;
  transition-property: transform;
  transform: rotate(90deg);
}

.prod-info__title.activeClass span {
  border-bottom: 3px solid var(--gd-blue);
}

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

.prod-info__data {
  width: calc(100% - 28px);
  padding-bottom: 15px;
}

.prod-info__data p, .prod-info__data span, .prod-info__data p span, .prod-info__data ul li {
  font-size: 16px;
  color: var(--gd-black) !important;
  font-weight: 300 !important;
}

@media (width >= 1200px) {
  .prod-info__data p, .prod-info__data span, .prod-info__data p span, .prod-info__data ul li {
    font-size: 18px;
  }
}

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

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

.prod-info__data .table td {
  padding: 15px 0;
  font-size: 16px;
  color: var(--gd-black) !important;
  font-weight: 300 !important;
}

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

.prod-info__data .table td strong {
  font-weight: 500;
}

.prod-info__data .table tr td:nth-child(2) {
  text-align: right;
}

.prod-info__data .main-btn {
  background-color: var(--gd-black);
  color: var(--gd-white);
  text-align: center;
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 50px;
  font-size: 17px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

.prod-info__data .main-btn:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.prod-info__data .main-btn:hover:before {
  opacity: .5;
  left: 100%;
}

.prod-info__data .prod-info__review-title {
  font-size: 18px;
  font-weight: 500 !important;
}

@media (width >= 1200px) {
  .prod-info__data .prod-info__review-title {
    font-size: 20px;
  }
}

.prod-info__data .prod-info__review-subtxt {
  margin: 20px 0 40px;
  font-size: 16px;
  font-weight: 300;
}

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

.radio-opt .prod-tags__wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.radio-opt .prod-tags__wrap .prod-tags__text {
  font-size: 9px;
}

.radio-opt .prod-tags__wrap .prod-tags {
  margin: 0 7px 0 0;
}

.radio-opt--flex {
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.radio-opt--flex .prod-info__radio-wrap {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
  flex-flow: wrap;
  order: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
  padding: 15px 20px;
  display: flex;
}

.radio-opt--flex .radio-opt__acc-toggle {
  order: 2;
}

.radio-opt--flex .prod-info__single {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
  order: 3;
  max-height: max-content;
  margin-bottom: 12px;
  padding: 15px 20px;
  overflow: auto;
}

.radio-opt--flex .prod-info__single:last-child {
  margin-bottom: 0;
}

.radio-opt .prod-info__single {
  width: 100%;
}

.radio-opt .prod-info__body {
  padding: 20px 0 0;
}

.radio-opt .prod-info__kitting-title {
  width: 100%;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.radio-opt .prod-info__kitting-title img {
  width: auto;
  max-width: 25px;
  height: auto;
  max-height: 100%;
  margin-right: 15px;
}

@media (width >= 1200px) {
  .radio-opt .prod-info__kitting-title img {
    max-width: 30px;
  }
}

.radio-opt__top-title {
  margin: 40px 0 20px;
  font-size: 16px;
  font-weight: 300;
}

.prod-info__title-head {
  border-bottom: 1px solid var(--grey-for-inputs);
  padding-bottom: 10px;
}

.radio-opt__wrap {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  display: flex;
}

.radio-opt__title {
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}

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

.radio-opt__acc-toggle {
  color: var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin: 25px 0;
  line-height: 20px;
  display: flex;
}

.radio-opt__acc-toggle-btn {
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

.radio-opt__acc-toggle-btn.activeClass {
  color: var(--gd-orange);
}

.radio-opt__acc-toggle-btn-mg {
  margin: 0 5px;
}

.radio-opt__btn-wrap {
  margin-top: 30px;
}

.radio-opt__btn-wrap .main-btn {
  font-size: 19px !important;
}

.radio-opt__single {
  cursor: pointer;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  width: 100%;
  display: flex;
}

.radio-opt__single--disabled {
  cursor: text;
  filter: grayscale();
  opacity: .5;
  pointer-events: none;
}

.radio-opt__single.activeClass {
  filter: grayscale(0);
  opacity: 1;
}

.radio-opt__single.activeClass .radio-opt__circle:after {
  display: block;
}

.radio-opt__circle {
  border: 1px solid var(--gd-black);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: relative;
}

@media (width >= 1200px) {
  .radio-opt__circle {
    width: 16px;
    height: 16px;
  }
}

.radio-opt__circle:after {
  background-color: var(--gd-blue);
  content: "";
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width >= 1200px) {
  .radio-opt__circle:after {
    width: 11px;
    height: 11px;
  }
}

.radio-opt__name {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.radio-opt__name p {
  margin: 3px;
  font-size: 14px;
  font-weight: 300;
}

.radio-opt__name .radio-opt__preselected-name {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

.radio-opt__name .radio-opt__name-gray {
  color: var(--gd-black);
  font-size: 14px;
}

.radio-opt__price {
  color: var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.radio-opt__price span {
  color: var(--grey-for-lines);
  font-size: 14px;
  font-weight: 400;
}

.radio-opt__price-old {
  color: var(--grey-for-lines);
  margin-left: 5px;
  font-size: 9px;
  text-decoration: line-through;
}

.radio-opt__select {
  cursor: pointer;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 5px 0;
  display: flex;
}

.radio-opt__select .radio-opt__uncheck {
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  width: 16px;
  height: 16px;
}

.radio-opt__select .radio-opt__check {
  border: 1px solid var(--gd-black);
  border-radius: 3px;
  width: 16px;
  height: 16px;
  position: relative;
}

.radio-opt__select .radio-opt__check div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-opt__select--disabled {
  cursor: text !important;
  filter: grayscale() !important;
  opacity: .5 !important;
  pointer-events: none !important;
}

.radio-opt__select.activeClass {
  filter: grayscale(0);
  opacity: 1;
}

.radio-opt__select.activeClass .radio-opt__check {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.radio-opt__select.activeClass .radio-opt__uncheck {
  display: none;
}

.radio-opt__select.activeClass .radio-opt__select-title .radio-opt__model {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

.radio-opt__select svg {
  fill: var(--gd-orange);
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.radio-opt__select-title {
  text-transform: capitalize;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 25px);
  font-size: 14px;
  display: flex;
}

.radio-opt__select-title .radio-opt__model {
  border: 3px solid #0000;
}

.radio-opt__subtitle {
  color: var(--grey-for-lines);
  margin-left: 7px;
}

.radio-opt__select-price {
  color: var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  display: flex;
}

.radio-opt__select-price-old {
  margin: 0 0 0 5px;
  font-size: 14px;
  text-decoration: line-through;
}

.radio-opt__check {
  display: none;
}

.prod-header__crosssell {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 20px;
  margin: 40px 0;
  padding: 25px 20px;
}

.prod-header__crosssell-wrapper {
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
  display: flex;
}

.prod-header__crosssell-wrapper input {
  display: none;
}

.prod-header__crosssell-single {
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
  width: 100%;
  display: flex;
}

@media (width >= 768px) {
  .prod-header__crosssell-single {
    flex-flow: row;
    gap: 20px;
  }
}

.prod-header__crosssell-info {
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  width: 100%;
  display: flex;
}

@media (width >= 768px) {
  .prod-header__crosssell-info {
    flex-flow: row;
  }
}

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

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

.prod-header__crosssell-title {
  font-size: 15px;
  font-weight: 400;
  display: block;
}

.prod-header__crosssell-price {
  margin: 10px 0 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
}

@media (width >= 768px) {
  .crosssell__btn-wrap {
    margin-left: auto;
  }
}

.prod-header__crosssell-single .main-btn {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border-radius: 10px;
  width: 125px;
  height: 40px;
  margin-left: auto;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.prod-header__crosssell-single .main-btn:before {
  content: "Add to Cart";
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prod-header__input-checkbox:checked + .prod-header__crosssell-single .main-btn {
  background-color: var(--gd-blue);
}

.prod-header__input-checkbox:checked + .prod-header__crosssell-single .main-btn:before {
  content: "Item Added";
}

.cart-line {
  background-color: var(--grey-for-btns);
  z-index: 2;
  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;
  height: 90px;
  padding: 0 15px;
  display: flex;
}

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

@media (width >= 1200px) {
  .cart-line__wrap {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 15px;
    display: flex;
  }
}

.cart-line__wrap .main-btn {
  width: 100%;
  height: 55px;
}

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

.cart-line__wrap .main-btn--sticky-pricematch {
  background-color: var(--gd-blue);
  margin-right: 15px;
}

.cart-line__wrap .main-btn--sticky-pricematch:before {
  background-color: var(--gd-blue);
}

.cart-line__wrap div {
  width: 100%;
}

@media (width >= 1200px) {
  .cart-line__wrap div {
    width: max-content;
  }
}

.cart-line__wrap--cart {
  padding: 15px 8px;
}

@media (width >= 500px) {
  .cart-line__wrap--cart {
    padding: 15px 20px;
  }
}

.cart-line__title {
  font-size: 22px;
  font-weight: 400;
}

.prod-header__price {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
}

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

.cart-line__right .main-btn {
  font-size: 19px !important;
}

.gd-cart__header {
  background-color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  transition-property: height max-width;
  z-index: 3;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.gd-cart__header.up {
  box-shadow: 0 4px 4px #00000040;
}

.gd-cart__header.up .gd-cart__header-wrap {
  transition: var(--gd-transition) ease-in-out;
  transition-property: height max-width;
  height: 70px;
}

@media (width >= 1200px) {
  .gd-cart__header.up .gd-cart__header-wrap {
    height: 110px;
  }
}

.gd-cart__header.up .gd-cart__header-logo {
  transition: var(--gd-transition) ease-in-out;
  transition-property: height max-width;
  max-width: 146px;
}

@media (width >= 1200px) {
  .gd-cart__header.up .gd-cart__header-logo {
    max-width: 296px;
  }
}

.gd-cart__header.down {
  box-shadow: 0 4px 4px #00000040;
}

.gd-cart__header.down .gd-cart__header-wrap {
  transition: var(--gd-transition) ease-in-out;
  transition-property: height max-width;
  height: 70px;
}

@media (width >= 1200px) {
  .gd-cart__header.down .gd-cart__header-wrap {
    height: 110px;
  }
}

.gd-cart__header.down .gd-cart__header-logo {
  transition: var(--gd-transition) ease-in-out;
  transition-property: height max-width;
  max-width: 146px;
}

@media (width >= 1200px) {
  .gd-cart__header.down .gd-cart__header-logo {
    max-width: 296px;
  }
}

.gd-cart__header-logo {
  transition: var(--gd-transition) ease-in-out;
  transition-property: height max-width;
  width: auto;
  max-width: 174px;
  height: auto;
  max-height: 100%;
}

@media (width >= 500px) {
  .gd-cart__header-logo {
    max-width: 209px;
  }
}

@media (width >= 1200px) {
  .gd-cart__header-logo {
    max-width: 384px;
  }
}

.gd-cart__header-wrap {
  transition: var(--gd-transition) ease-in-out;
  transition-property: height max-width;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 15px;
  display: flex;
}

@media (width >= 500px) {
  .gd-cart__header-wrap {
    padding: 0 30px;
  }
}

@media (width >= 1200px) {
  .gd-cart__header-wrap {
    grid-template-columns: 1.5fr 1fr;
    gap: 124px;
    height: 130px;
    padding: 0;
    display: grid;
  }
}

@media (width >= 1200px) and (width >= 1200px) and (width <= 1350px) {
  .gd-cart__header-wrap {
    gap: 25px;
  }
}

@media (width >= 1200px) {
  .gd-cart__header-wrap a {
    width: 700px;
    margin: 0 auto;
    padding-left: 15px;
  }
}

.gd-cart__header-wrap .section-title {
  font-size: 15px;
}

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

@media (width >= 1200px) {
  .gd-cart__header-wrap .section-title {
    text-align: right;
    width: 500px;
    padding-right: 15px;
    font-size: 40px;
  }
}

.calculate__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

.calculate__text a {
  font-weight: 400;
  text-decoration: underline;
  color: var(--gd-blue) !important;
}

.calculate__input-wrap {
  position: relative;
}

.calculate__input-error {
  color: var(--gd-red);
  width: 100%;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0);
}

@media (width >= 1200px) {
  .calculate__input-error {
    transform: translateY(110%);
  }
}

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

.calculate__title-wrap .card-title, .calculate__title-wrap .calculate__text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}

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

@media (width >= 1200px) {
  .calculate__title-wrap .card-title {
    margin-bottom: 0;
  }
}

.calculate__form .calculate__input, .calculate__form select {
  border: 1px solid var(--gd-gray-card);
  border-radius: 10px;
  padding: 0 15px;
}

.calculate__form .calculate__input.error, .calculate__form select.error {
  border-color: var(--gd-red);
}

.calculate__form .calculate__input, .calculate__form select {
  color: var(--gd-black);
  width: 100%;
  height: 47px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .calculate__form .calculate__input, .calculate__form select {
    margin-bottom: 0;
  }
}

.calculate__form .calculate__input::placeholder, .calculate__form select::placeholder {
  color: var(--gd-black);
  font-size: 14px;
  font-weight: 300;
}

.calculate__form .calculate__input.activeClass, .calculate__form select.activeClass {
  border: 1px solid var(--gd-red);
}

.calculate__form .calculate__input.activeClass::placeholder, .calculate__form select.activeClass::placeholder {
  color: var(--gd-red);
}

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

.calculate__card {
  background-color: var(--gd-white);
  border: 1px solid var(--gd-gray-card);
  border-radius: 10px;
  margin-top: 25px;
  padding: 25px;
}

.calculate__form-text {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1;
  display: flex;
}

@media (width >= 1200px) {
  .calculate__form-text {
    margin-bottom: 0;
    font-size: 16px;
  }
}

.calculate__truck {
  fill: var(--gd-blue);
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

@media (width >= 1200px) {
  .calculate__truck {
    margin-right: 7px;
  }
}

.calculate__info {
  fill: var(--grey-for-btns);
  width: 12px;
  height: 12px;
  margin-left: 5px;
}

@media (width >= 1200px) {
  .calculate__info {
    margin-left: 7px;
  }
}

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

@media (width >= 1200px) {
  .calculate__card-text {
    margin-top: 40px;
    padding-top: 40px;
  }
}

.calculate__card-text .gd-cart__row-value {
  font-size: 16px;
  font-weight: 300;
}

.calculate__card-text .gd-cart__row-value.activeClass {
  color: var(--gd-red);
}

.gd-cart__top-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 25px 0 50px;
}

.gd-cart__top-btn .main-btn {
  border-bottom: 3px solid #0000;
  border-radius: 0;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 300;
  display: flex;
}

.gd-cart__top-btn .main-btn svg {
  width: 10px;
  height: 10px;
  margin: 0;
  transform: rotate(180deg);
}

.gd-cart__top-btn .main-btn:hover {
  border-bottom: 3px solid var(--gd-blue);
  text-shadow: 1px 0px 0px var(--gd-black);
}

.gd-cart__top-btn .main-btn:hover svg {
  fill: var(--gd-blue);
}

.gd-cart {
  background-color: var(--grey-for-images);
}

.gd-cart hr {
  display: none;
}

.gd-cart .panel-body h4, .gd-cart .panel-body li, .gd-cart .panel-body p {
  font-size: 12px;
}

.gd-cart .panel-body img {
  margin: 0;
  width: 70px !important;
}

.gd-cart .footer-copy__payment-list {
  margin: 10px -3px 0;
}

.gd-cart .footer-copy__item {
  margin: 3px;
}

@media (width >= 1200px) {
  .gd-cart .footer-copy__item {
    width: 44px;
    height: 27px;
  }
}

.gd-cart__wrap {
  padding: 0 15px;
}

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

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

@media (width >= 1200px) and (width <= 1350px) {
  .gd-cart__wrap {
    gap: 35px;
  }
}

.gd-cart__back {
  color: var(--gd-blue);
  background-color: #0000;
  border: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0 0 35px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  display: flex;
}

.gd-cart__back svg {
  fill: var(--gd-blue);
  width: 7px;
  height: 7px;
  margin-right: 5px;
}

.gd-cart__table .card-title {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .gd-cart__table-wrap {
    width: 700px;
    margin: 0 auto;
    padding-bottom: 90px;
  }
}

@media (width >= 1200px) and (width >= 500px) {
  .gd-cart__table-wrap {
    padding-bottom: 100px;
  }
}

@media (width >= 1200px) and (width >= 1200px) {
  .gd-cart__table-wrap {
    padding-bottom: 160px;
    padding-left: 15px;
  }
}

.gd-cart__table-wrap .main-btn {
  width: 100%;
}

.gd-cart__table-left {
  background-color: var(--grey-for-images);
}

@media (width >= 1200px) {
  .gd-cart__total-sidebar {
    width: 500px;
    margin-top: 100px;
    padding-right: 15px;
    position: relative;
  }

  .gd-cart__total-sidebar-wrap {
    position: sticky;
    top: 160px;
  }
}

.gd-cart__item {
  margin-bottom: 20px;
}

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

.gd-cart__item-wrap {
  background-color: var(--gd-white);
  border: 1px solid var(--gd-gray-card);
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  padding: 20px;
  display: flex;
  position: relative;
}

.gd-cart__item-wrap .product-box__single-status {
  background-color: #0000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
}

.gd-cart__item-wrap .product-box__status-icon {
  align-self: center;
  min-width: 6px;
  min-height: 6px;
}

@media (width >= 1200px) {
  .gd-cart__item-wrap {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 20px;
    display: flex;
  }
}

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

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

.gd-cart__item-remove {
  background-color: var(--grey-for-btns);
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (width >= 500px) {
  .gd-cart__item-remove {
    position: relative;
    top: 0;
    right: 0;
  }
}

.gd-cart__item-remove svg {
  fill: #0000;
  stroke: var(--grey-for-lines);
  stroke-width: 1.5px;
  width: 20px;
  height: 20px;
  padding: 5px;
}

.gd-cart__item-remove:hover svg {
  stroke: var(--gd-blue);
}

.gd-cart__item-info {
  flex-flow: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin: 0 0 0 15px;
  display: flex;
}

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

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

@media (width >= 500px) {
  .gd-cart__item-title {
    width: -moz-fit-content;
    width: fit-content;
  }
}

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

.gd-cart__item-sku {
  color: var(--grey-for-lines);
  text-transform: uppercase;
  margin: 0;
  padding: 15px 0;
  font-size: 12px;
  font-weight: 400;
}

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

.gd-cart__item-info-box--end {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  margin-top: 0;
  display: flex;
}

.gd-cart__item-info-box .no-stock {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  display: flex;
}

.gd-cart__item-info-box .no-stock svg {
  margin: 0 !important;
}

.gd-cart__item-input {
  background-color: var(--grey-for-btns);
  text-align: center;
  border: none;
  border-radius: 7px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 40px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.gd-cart__item-sold {
  background-color: var(--gd-red);
  color: var(--gd-white);
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

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

.gd-cart__item-price {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.gd-cart__item-rrp {
  color: var(--gd-black);
  font-size: 11px;
  font-weight: 300;
  text-decoration: line-through;
}

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

.gd-cart__total {
  background-color: var(--gd-white);
  border-radius: 10px;
  margin-top: 80px;
  margin-bottom: 10px;
}

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

.gd-cart__total .card-title {
  border-bottom: 1px solid var(--grey-for-btns);
  margin-bottom: 30px;
  padding-bottom: 25px;
  font-size: 20px;
  font-weight: 400;
}

.gd-cart__total--total {
  background-color: var(--grey-for-btns);
  border: none;
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px;
}

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

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

.gd-cart__row-text, .gd-cart__row-value {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.gd-cart__row-value {
  width: -moz-fit-content;
  width: fit-content;
}

.gd-cart__shipping {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.gd-cart__shipping-row {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  display: flex;
}

input[type="radio"]:checked + .gd-cart__shipping-info > .gd-cart__row-value {
  border-bottom: 3px solid var(--gd-blue);
  font-weight: 600;
}

.gd-cart__radio {
  color: var(--grey-for-lines);
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.gd-cart__shipping {
  margin-bottom: 15px;
}

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

.gd-cart__shipping-info {
  width: -moz-fit-content;
  width: fit-content;
}

.gd-cart__shipping-info .gd-cart__row-value {
  margin-top: -3px;
  font-size: 14px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .gd-cart__shipping-info .gd-cart__row-value {
    font-size: 16px;
  }
}

.gd-cart__shipping-info .gd-cart__row-text {
  color: var(--grey-for-lines);
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}

.gd-cart__shipping-info ul li {
  color: var(--gd-black);
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
}

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

.gd-cart__total-title {
  color: var(--gd-black);
  text-transform: capitalize;
  max-width: 49%;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.gd-cart__btns .main-btn {
  width: 100%;
  margin: 25px 0;
  padding: 12px;
}

@media (width >= 1200px) {
  .gd-cart__btns .main-btn {
    margin: 0 0 15px;
  }
}

.gd-cart__btns .main-btn .panel-body {
  padding: 0;
  margin: 0 !important;
}

.gd-cart__btns ._cpy_thirdparty_btn {
  background-color: var(--gd-yellow);
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.gd-cart__btns ._cpy_thirdparty_btn img {
  margin: 0 auto;
}

@media (width >= 1200px) {
  .gd-cart__btns ._cpy_thirdparty_btn {
    margin-bottom: 15px;
  }
}

.gd-cart__components {
  margin-top: 15px;
}

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

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

.gd-cart__row--discount .title {
  color: var(--gd-black);
  font-size: 16px;
  font-weight: 400;
}

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

.gd-cart__top-wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.gd-cart__top-wrap .calculate__text {
  margin: 0;
}

.error-simulation {
  display: none;
}

.error-simulation.activeClass {
  display: block;
}

.gd-cart__footer {
  background-color: var(--gd-black);
  z-index: 2;
  position: relative;
}

@media (width >= 1200px) {
  .gd-cart__footer .footer-bottom__wrap {
    grid-template-columns: 1.5fr 1fr;
    gap: 124px;
    display: grid;
  }
}

@media (width >= 1200px) and (width <= 1350px) {
  .gd-cart__footer .footer-bottom__wrap {
    gap: 25px;
  }
}

.gd-cart__footer .footer-bottom__wrap .footer-bottom__text-wrap {
  margin-left: 0;
}

.gd-cart__footer .footer-bottom__wrap .footer-bottom__left-wrap {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width >= 1200px) {
  .gd-cart__footer .footer-bottom__wrap .footer-bottom__left-wrap {
    width: 700px;
    margin: 0 auto;
    padding-left: 15px;
  }

  .gd-cart__footer .footer-bottom__wrap .footer-bottom__icons {
    flex-wrap: nowrap;
    width: 500px;
    padding-right: 15px;
  }
}

.gd-cart__main {
  padding: 50px 15px;
}

.gd-cart__main .footer-menu__link {
  display: inline;
}

@media (width >= 500px) {
  .gd-cart__main {
    padding: 80px 30px;
  }
}

@media (width >= 1200px) {
  .gd-cart__main {
    grid-template-columns: 1.5fr 1fr;
    gap: 124px;
    padding: 120px 15px;
    display: grid;
  }

  .gd-cart__main a {
    width: 700px;
    margin: 0 auto;
  }

  .gd-cart__main .footer-menu__single {
    width: 500px;
  }

  .gd-cart__main .footer-menu__nav-item {
    overflow: none;
    width: 306px;
    margin-left: auto;
  }
}

@media (width >= 1200px) and (width <= 1350px) {
  .gd-cart__main {
    gap: 25px;
  }
}

.gd-cart__footer-logo {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 345px;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
  display: flex;
}

@media (width >= 500px) {
  .gd-cart__footer-logo {
    max-width: 384px;
  }
}

@media (width >= 1200px) {
  .gd-cart__footer-logo {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 625px;
    margin: 0;
    display: flex;
  }
}

.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 {
  border: 1px solid var(--grey-for-lines);
  color: var(--gd-black);
  text-transform: capitalize;
  background-color: #0000;
  border-radius: 10px;
  font-size: 14px !important;
  font-weight: 400 !important;
}

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

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

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

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

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

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

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

@media (width >= 500px) {
  #n-customer .main__wrap {
    margin-top: 124px;
  }
}

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

#n-customer .page-header {
  text-align: center;
  margin: 0;
  padding: 50px 0;
}

@media (width >= 1200px) {
  #n-customer .page-header {
    padding: 80px 0;
  }
}

#n-customer h1 {
  color: var(--gd-black);
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

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

#n-customer .card {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
}

#n-customer .card .col-md-6 {
  width: 100% !important;
}

#n-customer .card .card-header {
  border-bottom: 1px solid var(--grey-for-inputs);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

#n-customer .card .card-header svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.5px;
  width: 15px;
  height: 15px;
}

@media (width >= 500px) {
  #n-customer .card .card-header {
    font-size: 18px;
  }
}

#n-customer .card label {
  color: var(--gd-black);
  margin: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

#n-customer .card input {
  border: 1px solid var(--grey-for-inputs);
  color: var(--gd-black);
  border-radius: 10px;
  width: 100%;
  height: 45px;
  margin-left: 1px;
  font-size: 14px;
  font-weight: 300;
}

#n-customer .card input:focus-visible {
  outline: 1px solid var(--gd-blue);
}

#n-customer .card input:focus {
  box-shadow: none;
}

#n-customer .card .checkbox label {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 12px;
  display: flex;
}

@media (width >= 1200px) {
  #n-customer .card .checkbox label {
    font-size: 14px;
  }
}

#n-customer .card .checkbox label a {
  color: var(--gd-blue);
}

#n-customer .card .checkbox input {
  border: 1px solid var(--gd-blue);
  width: -moz-fit-content;
  width: fit-content;
}

#n-customer .card .form-text a {
  color: var(--gd-blue);
}

#n-customer .card .btn {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  #n-customer .card .btn {
    height: 47px;
    font-size: 18px;
  }
}

#n-customer .card .btn:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

#n-customer .card .btn:hover:before {
  opacity: .5;
  left: 100%;
}

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

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

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

@media (width >= 500px) {
  #n-customer_account .main__wrap {
    margin-top: 124px;
  }
}

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

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

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

#n-customer_account .page-header p {
  margin-top: 50px;
  font-size: 16px;
}

@media (width >= 1200px) {
  #n-customer_account .page-header p {
    margin-top: 80px;
  }
}

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

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

@media (width >= 1200px) {
  #n-customer_account .page-header p {
    font-size: 18px;
  }
}

#n-customer_account h1 {
  color: var(--gd-black);
  text-align: center;
  padding: 50px 0 0;
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 1200px) {
  #n-customer_account h1 {
    padding: 80px 0 0;
    font-size: 40px;
  }
}

#n-customer_account .col-12 > h2 {
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  #n-customer_account .col-12 > h2 {
    font-size: 18px;
  }
}

#n-customer_account .edit-account label {
  color: var(--gd-black);
  margin: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

#n-customer_account .edit-account .form.control {
  border: 1px solid var(--grey-for-inputs);
  color: var(--gd-black);
  border-radius: 10px;
  width: 100%;
  height: 45px;
  margin-left: 1px;
  font-size: 14px;
  font-weight: 300;
}

#n-customer_account .edit-account .form.control:focus-visible {
  outline: 1px solid var(--gd-blue);
}

#n-customer_account .edit-account .form.control:focus {
  box-shadow: none;
}

#n-customer_account .edit-account .checkbox label {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 12px;
  display: flex;
}

@media (width >= 1200px) {
  #n-customer_account .edit-account .checkbox label {
    font-size: 14px;
  }
}

#n-customer_account .edit-account .checkbox label a {
  color: var(--gd-blue);
}

#n-customer_account .edit-account .checkbox input {
  border: 1px solid var(--gd-blue);
  width: -moz-fit-content;
  width: fit-content;
}

#n-customer_account .edit-account .form-text a {
  color: var(--gd-blue);
}

#n-customer_account .edit-account .btn {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  #n-customer_account .edit-account .btn {
    height: 47px;
    font-size: 18px;
  }
}

#n-customer_account .edit-account .btn:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

#n-customer_account .edit-account .btn:hover:before {
  opacity: .5;
  left: 100%;
}

#n-customer_account .n-customer_account-box a {
  background-color: var(--gd-black);
  transition: var(--gd-transition) ease-in-out;
  border-radius: 10px;
  width: 100%;
  height: max-content;
  padding: 20px 0;
  transition-property: background-color;
  border: 1px solid var(--gd-black) !important;
  display: block !important;
}

#n-customer_account .n-customer_account-box a h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  #n-customer_account .n-customer_account-box a h3 {
    font-size: 18px;
  }
}

#n-customer_account .n-customer_account-box a p {
  color: var(--gd-white);
}

#n-customer_account .card {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 10px;
}

#n-customer_account .card p > a {
  color: var(--gd-blue);
}

#n-customer_account .card .badge {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border-radius: 10px;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
}

#n-customer_account .card-body .btn-info {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  #n-customer_account .card-body .btn-info {
    height: 40px;
    font-size: 16px;
  }
}

#n-customer_account .card-body .btn-info:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

#n-customer_account .card-body .btn-info:hover:before {
  opacity: .5;
  left: 100%;
}

#n-customer_account .card-body .btn-outline-secondary {
  background-color: var(--gd-blue);
  border: 1px solid var(--gd-blue);
  color: var(--gd-white);
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  #n-customer_account .card-body .btn-outline-secondary {
    height: 40px;
    font-size: 16px;
  }
}

#n-customer_account .card-body .btn-outline-secondary:before {
  background-color: var(--gd-blue);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

#n-customer_account .card-body .btn-outline-secondary:hover:before {
  opacity: .5;
  left: 100%;
}

#n-customer_account .input-group-append .btn {
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: var(--gd-black) !important;
  border-radius: 10px !important;
}

@media (width >= 1200px) {
  #n-customer_account .input-group-append .btn {
    height: 40px;
    font-size: 16px;
  }
}

#n-customer_account .input-group-append .btn:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

#n-customer_account .input-group-append .btn:hover:before {
  opacity: .5;
  left: 100%;
}

#n-customer_account .btn-success, #n-customer_account .btn-primary {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  #n-customer_account .btn-success, #n-customer_account .btn-primary {
    height: 47px;
    font-size: 18px;
  }
}

#n-customer_account .btn-success:before, #n-customer_account .btn-primary:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

#n-customer_account .btn-success:hover:before, #n-customer_account .btn-primary:hover:before {
  opacity: .5;
  left: 100% !important;
}

#n-customer_account .btn-outline-secondary {
  background-color: var(--gd-blue);
  border: 1px solid var(--gd-blue);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  #n-customer_account .btn-outline-secondary {
    height: 47px;
    font-size: 18px;
  }
}

#n-customer_account .btn-outline-secondary:before {
  background-color: var(--gd-blue);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

#n-customer_account .btn-outline-secondary:hover:before {
  opacity: .5;
  left: 100% !important;
}

.track-order__form input {
  border: 1px solid var(--grey-for-inputs);
  color: var(--gd-black);
  border-radius: 10px;
  width: 100%;
  height: 45px;
  margin-left: 1px;
  font-size: 14px;
  font-weight: 300;
}

.track-order__form input:focus-visible {
  outline: 1px solid var(--gd-blue);
}

.track-order__form input:focus {
  box-shadow: none;
}

.track-order__form p {
  font-size: 16px;
  font-weight: 400;
}

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

.track-order__form label {
  color: var(--gd-black);
  margin: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

.track-order__form .btn-primary {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  .track-order__form .btn-primary {
    height: 47px;
    font-size: 18px;
  }
}

.track-order__form .btn-primary:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.track-order__form .btn-primary:hover:before {
  opacity: .5;
  left: 100% !important;
}

.account-page__logged-out h1, .cart-page__empty-cart h1 {
  color: var(--gd-black);
  text-align: center;
  padding: 50px 0;
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .account-page__logged-out h1, .cart-page__empty-cart h1 {
    padding: 80px 0 50px;
    font-size: 40px;
  }
}

.account-page__logged-out p, .cart-page__empty-cart p {
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .account-page__logged-out p, .cart-page__empty-cart p {
    font-size: 18px;
  }
}

.account-page__logged-out .btn-success, .cart-page__empty-cart .btn-success {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  .account-page__logged-out .btn-success, .cart-page__empty-cart .btn-success {
    height: 47px;
    font-size: 18px;
  }
}

.account-page__logged-out .btn-success:before, .cart-page__empty-cart .btn-success:before {
  background-color: var(--gd-black);
  content: "";
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
  overflow: hidden;
}

.account-page__logged-out .btn-success:hover:before, .account-page__logged-out .btn-success:focus:before, .cart-page__empty-cart .btn-success:hover:before, .cart-page__empty-cart .btn-success:focus:before {
  opacity: .5;
  left: 100% !important;
}

.cart-page__empty-cart {
  margin-bottom: 50px;
}

@media (width >= 1200px) {
  .cart-page__empty-cart {
    margin-bottom: 80px;
  }
}

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

.aboutus__head {
  padding: 50px 0;
}

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

.aboutus__banner {
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 380px;
  display: flex;
}

@media (width >= 1200px) {
  .aboutus__banner {
    height: 480px;
  }
}

.aboutus__text-wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 500px) {
  .aboutus__text-wrap {
    width: 500px;
  }
}

@media (width >= 1200px) {
  .aboutus__text-wrap {
    width: 1000px;
  }
}

.aboutus__text-wrap h2 {
  color: var(--gd-white);
  margin-bottom: 20px;
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 500px) {
  .aboutus__text-wrap h2 {
    font-size: 28px;
  }
}

@media (width >= 1200px) {
  .aboutus__text-wrap h2 {
    font-size: 40px;
  }
}

.aboutus__text-wrap p {
  color: var(--gd-white);
  font-size: 16px;
  font-weight: 300;
}

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

.aboutus__timeline {
  margin-top: 90px;
  padding: 90px 0 90px 20px;
  position: relative;
}

@media (width >= 768px) {
  .aboutus__timeline {
    padding-left: 0;
  }
}

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

.aboutus-time-line__border-box {
  border: 1px solid var(--grey-for-lines);
  z-index: -1;
  background-color: #0000;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

@media (width >= 768px) {
  .aboutus-time-line__border-box {
    width: 220px;
    left: 50%;
    transform: translate(-65%, -50%);
  }
}

@media (width >= 1200px) {
  .aboutus-time-line__border-box {
    width: 540px;
    transform: translate(-83%, -50%);
  }
}

.aboutus-timeline__box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: start;
  height: 210px;
  padding: 35px;
  display: flex;
}

@media (width >= 768px) {
  .aboutus-timeline__box {
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 530px;
    margin-top: 0;
    margin-left: auto;
    padding: 0;
    display: flex;
  }
}

@media (width >= 1200px) {
  .aboutus-timeline__box {
    width: 100%;
    height: 300px;
    margin-top: 450px;
  }
}

.aboutus-timeline__left-text {
  color: var(--gd-white);
  text-align: center;
  font-family: Orbitron, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 500px) {
  .aboutus-timeline__left-text {
    font-size: 28px;
  }
}

@media (width >= 768px) {
  .aboutus-timeline__left-text {
    width: 500px;
  }
}

@media (width >= 1200px) {
  .aboutus-timeline__left-text {
    font-size: 50px;
  }
}

.aboutus-timeline__description-text {
  background-color: var(--gd-white);
  margin-top: 160px;
  font-size: 16px;
  font-weight: 300;
}

@media (width >= 768px) {
  .aboutus-timeline__description-text {
    text-align: left;
    width: 530px;
    margin-left: auto;
  }
}

@media (width >= 1200px) {
  .aboutus-timeline__description-text {
    text-align: center;
    width: 100%;
    margin-top: 180px;
    font-size: 18px;
  }
}

.aboutus-timeline__sticky-icon {
  text-align: left;
  margin: 100px 0 100px -15px;
  position: sticky;
  top: 0;
}

.aboutus-timeline__sticky-icon img {
  width: auto;
  max-width: 100px;
  height: auto;
  max-height: 100%;
}

@media (width >= 768px) {
  .aboutus-timeline__sticky-icon img {
    text-align: center;
    max-width: 199px;
    margin-left: 0;
  }
}

@media (width >= 1200px) {
  .aboutus-timeline__sticky-icon img {
    max-width: 510px;
    margin: 0;
  }
}

@media (width >= 768px) {
  .aboutus-timeline__sticky-icon {
    text-align: center;
    margin: 0;
  }
}

.aboutus-timeline__box-year {
  background: linear-gradient(#805de4 0%, #1e0e28 150.34%, #000 184.71%);
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: relative;
}

@media (width >= 1200px) {
  .aboutus-timeline__box-year {
    width: 120px;
    height: 120px;
  }
}

.aboutus-timeline__box-year:before {
  background-color: var(--grey-for-lines);
  content: "";
  z-index: -1;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
}

@media (width >= 1200px) {
  .aboutus-timeline__box-year:before {
    left: 120px;
  }
}

.aboutus-timeline__single {
  transition: var(--gd-transition) ease-in-out;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 90px;
  transition-property: background-color;
  display: grid;
}

.aboutus-timeline__single:last-child {
  margin-bottom: 0;
}

@media (width >= 768px) {
  .aboutus-timeline__single {
    grid-template-columns: 80px 420px;
    justify-content: end;
  }
}

@media (width >= 1200px) {
  .aboutus-timeline__single {
    grid-template-columns: 120px 1fr;
    justify-content: start;
    gap: 60px;
  }
}

.aboutus-timeline__single:hover .aboutus-timeline__box-text {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
}

.aboutus-timeline__single:hover .aboutus-timeline__box-text h2, .aboutus-timeline__single:hover .aboutus-timeline__box-text p {
  color: var(--gd-white);
}

.aboutus-timeline__box-title {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

@media (width >= 1200px) {
  .aboutus-timeline__box-title {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    font-size: 27px;
  }
}

.aboutus-timeline__box-text {
  background-color: var(--gd-white);
  border: 1px solid var(--grey-for-lines);
  border-radius: 10px;
  width: 100%;
  padding: 20px;
}

@media (width >= 768px) {
  .aboutus-timeline__box-text {
    width: 420px;
    padding: 30px;
  }
}

@media (width >= 1200px) {
  .aboutus-timeline__box-text {
    width: 100%;
    padding: 40px;
  }
}

.aboutus-timeline__box-text h2 {
  margin-bottom: 20px;
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .aboutus-timeline__box-text h2 {
    font-size: 22px;
  }
}

.aboutus-timeline__box-text p {
  font-size: 13px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .aboutus-timeline__box-text p {
    font-size: 18px;
  }

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

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

.card__figure img {
  border-radius: 10px;
}

.card__text-wrap {
  width: max-content;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width >= 1200px) {
  .card__text-wrap {
    top: 25%;
  }
}

.card__text-wrap .section-title {
  margin-bottom: 50px;
}

.aboutus__accordion {
  padding-top: 60px;
}

@media (width >= 1200px) {
  .aboutus__accordion {
    width: 800px;
    margin: 0 auto;
    padding-top: 80px;
  }
}

.aboutus__accordion-single {
  border: 1px solid var(--grey-for-inputs);
  cursor: pointer;
  transition: var(--gd-transition) ease-in-out;
  border-radius: 10px;
  max-height: 70px;
  margin-bottom: 20px;
  padding: 0 20px 20px;
  transition-property: max-height;
  overflow: hidden;
}

.aboutus__accordion-single:last-child {
  margin-bottom: 0;
}

.aboutus__accordion-title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 9px;
  height: 70px;
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.aboutus__accordion-title.activeClass .aboutus__accordion-icon {
  transform: rotate(0);
}

.aboutus__accordion-opt {
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.aboutus__accordion-icon {
  background-color: var(--gd-white);
  box-shadow: 0 0 3px var(--grey-for-lines);
  transition: var(--gd-transition) ease-in-out;
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-left: auto;
  font-size: 18px;
  font-weight: 500;
  transition-property: transform;
  display: flex;
  transform: rotate(45deg);
}

.aboutus__accordion-icon svg {
  fill: #0000;
  stroke: var(--gd-black);
  stroke-width: 1.5px;
  width: 15px;
  height: 15px;
}

.aboutus__accordion__data {
  flex-flow: row;
  justify-content: flex-start;
  align-items: start;
  gap: 9px;
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.contactus__heading {
  padding: 50px 0;
}

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

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

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

.contactus__card-single {
  background-color: var(--gd-black);
  text-align: center;
  border-radius: 30px;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  height: 300px;
  padding: 0 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width >= 768px) {
  .contactus__card-single {
    height: 250px;
    padding: 0 20px;
  }
}

@media (width >= 1200px) {
  .contactus__card-single {
    height: 430px;
    padding: 0 70px;
  }
}

.contactus__card-single svg {
  fill: var(--gd-white);
  width: 40px;
  height: 40px;
}

@media (width >= 768px) {
  .contactus__card-single svg {
    width: 60px;
    height: 60px;
  }
}

.contactus__card-single:before {
  content: "";
  opacity: 0;
  transition: all var(--gd-transition) ease-in-out;
  z-index: 1;
  background: linear-gradient(#0000004d -3.33%, #1e0e279e 45.71%, #209bd9 100%);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.contactus__card-single:hover:before {
  opacity: 1;
  animation: 2s linear infinite anime-overlay;
}

.contactus__card-single .main-btn {
  z-index: 2;
  position: relative;
}

.contactus__card-single a {
  color: var(--gd-white);
  z-index: 2;
  position: relative;
}

.contactus__card-title {
  color: var(--gd-white);
  margin: 30px 0 20px;
  font-family: Orbitron;
  font-size: 22px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .contactus__card-title {
    margin: 50px 0 30px;
    font-size: 35px;
  }
}

.contactus__card-subtext {
  color: var(--gd-white);
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
}

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

.contactus__section {
  grid-template-columns: 1fr;
  gap: 20px;
  display: grid;
}

@media (width >= 768px) {
  .contactus__section {
    grid-template-columns: 580px 1fr;
    gap: 20px;
    display: grid;
  }
}

.contactus__section svg {
  fill: var(--gd-white);
  width: 60px;
  height: 60px;
}

.contact-us__text-wrap {
  background-color: var(--gd-black);
  border-radius: 30px;
  padding: 40px 0;
}

.contactus__single-text {
  margin-bottom: 30px;
}

.contactus__single-text:last-child {
  margin-bottom: 0;
}

.contactus__single-text span {
  color: var(--gd-white);
  font-size: 24px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .contactus__single-text span {
    font-size: 28px;
  }
}

.contactus__single-text p {
  color: var(--gd-white);
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .contactus__single-text p {
    font-size: 25px;
  }
}

.contactus__main-title {
  color: var(--gd-white);
  margin: 40px 0 20px;
  font-family: Orbitron, sans-serif;
  font-size: 22px;
  font-weight: 400;
  display: block;
}

.contact-us__map {
  width: 100%;
  height: 600px;
  position: relative;
}

@media (width >= 768px) {
  .contact-us__map {
    height: 100%;
  }
}

.contact-us__map iframe {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.upcoming-release__head {
  padding: 50px 0;
}

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

.upcoming-releases__wrap {
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}

@media (width >= 768px) {
  .upcoming-releases__wrap {
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
  }
}

.upcoming-releases__figure {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}

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

.upcoming-release__text-wrap {
  transition: var(--gd-transition) ease-in-out;
  z-index: 2;
  flex-flow: column wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  transition-property: bottom;
  display: flex;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}

@media (width >= 768px) {
  .upcoming-release__text-wrap {
    bottom: -39px;
  }
}

@media (width >= 1200px) {
  .upcoming-release__text-wrap {
    bottom: -72px;
  }
}

.upcoming-releases__title {
  color: var(--gd-white);
  text-align: center;
  margin-bottom: 10px;
  padding: 0 20px;
  font-family: Orbitron, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

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

@media (width >= 1200px) {
  .upcoming-releases__title {
    width: 420px;
    font-size: 35px;
  }
}

.upcoming-releases__text p {
  color: var(--gd-white);
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
}

@media (width >= 768px) {
  .upcoming-releases__text p {
    font-size: 16px;
  }
}

@media (width >= 1200px) {
  .upcoming-releases__text p {
    font-size: 28px;
  }
}

.upcoming-releases__readmore-text {
  color: var(--gd-white);
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

@media (width >= 768px) {
  .upcoming-releases__readmore-text {
    font-size: 10px;
  }
}

@media (width >= 1200px) {
  .upcoming-releases__readmore-text {
    font-size: 20px;
  }
}

.upcoming-releases__date {
  border: 1px solid var(--gd-white);
  z-index: 2;
  border-radius: 7px;
  width: 60px;
  height: max-content;
  padding: 0 5px;
  position: absolute;
  top: 17px;
  right: 17px;
}

@media (width >= 768px) {
  .upcoming-releases__date {
    width: 35px;
    height: max-content;
  }
}

@media (width >= 1200px) {
  .upcoming-releases__date {
    width: 70px;
    height: max-content;
  }
}

.upcoming-releases__date--relative {
  border: 1px solid var(--gd-blue);
  color: var(--gd-blue);
  position: relative;
  top: 0;
  right: 0;
}

.upcoming-releases__date--relative .upcoming-releases__day {
  border-bottom: 1px solid var(--gd-blue);
  color: var(--gd-blue);
}

.upcoming-releases__date--relative .upcoming-releases__month {
  color: var(--gd-blue);
}

.upcoming-releases__day {
  border-bottom: 1px solid var(--gd-white);
  color: var(--gd-white);
  font-family: Orbitron, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

@media (width >= 500px) {
  .upcoming-releases__day {
    font-size: 16px;
  }
}

@media (width >= 1200px) {
  .upcoming-releases__day {
    font-size: 35px;
  }
}

.upcoming-releases__month {
  color: var(--gd-white);
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

@media (width >= 500px) {
  .upcoming-releases__month {
    font-size: 12px;
  }
}

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

.upcoming-releases__single {
  background-color: var(--gd-black);
  z-index: 2;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.upcoming-releases__single:after {
  content: "";
  z-index: 1;
  background: linear-gradient(#0000 -3.33%, #000 100%);
  border-radius: 30px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.upcoming-releases__single:before {
  content: "";
  opacity: 0;
  transition: all var(--gd-transition) ease-in-out;
  z-index: 1;
  background: linear-gradient(#0000004d -3.33%, #1e0e279e 45.71%, #209bd9 100%);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.upcoming-releases__single:hover:before {
  opacity: 1;
  animation: 2s linear infinite anime-overlay;
}

.upcoming-releases__single:hover:after {
  opacity: 0;
}

.upcoming-releases__single:hover .upcoming-release__text-wrap {
  bottom: 30px;
}

.upcoming-releases__single:hover .upcoming-releases__date {
  border: 1px solid var(--gd-blue);
}

.upcoming-releases__single:hover .upcoming-releases__day {
  border-bottom: 1px solid var(--gd-blue);
  color: var(--gd-blue);
}

.upcoming-releases__single:hover .upcoming-releases__month {
  color: var(--gd-blue);
}

.upcoming-single__wrap {
  grid-gap: 100px;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
}

@media (width >= 1200px) {
  .upcoming-single__wrap {
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    display: grid;
  }
}

.upcoming-single__text {
  background-color: var(--gd-black);
  border-radius: 30px;
  padding: 50px 15px;
  position: relative;
}

@media (width >= 768px) {
  .upcoming-single__text {
    padding: 50px 30px;
  }
}

@media (width >= 1200px) {
  .upcoming-single__text {
    padding: 70px 90px;
  }
}

.upcoming-single__img-wrap {
  border: 1px solid var(--grey-for-inputs);
  border-radius: 30px;
}

.upcoming-single__text-top {
  border-bottom: 1px solid var(--gd-white);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  display: flex;
}

.upcoming-single__description {
  color: var(--gd-white);
  margin-top: 30px;
  padding-bottom: 150px;
  font-size: 18px;
  font-weight: 300;
}

.upcoming-single__alt-img {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  right: 20px;
}

.upcoming-single__alt-img img {
  width: auto;
  max-width: 238px;
  height: auto;
  max-height: 100%;
}

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

.upcoming-single__img-wrap img {
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 100%;
}

@media (width >= 1200px) {
  .upcoming-single__img-wrap img {
    max-width: 536px;
  }
}

.upcoming-releases-slider .section-title {
  margin-bottom: 40px;
}

.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 */
