@charset "UTF-8";
/* 
Theme name: Detskeboty
Author: Jan Kolařík
Author's url: www.kolarikjan.cz
*/
* {
  font-family: var(--font);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

body {
  background-color: var(--background-color);
}

a {
  text-decoration: none;
  color: var(--highlight-color);
  transition-duration: 0.1s;
}

a:hover {
  text-decoration: underline;
  color: var(--highlight-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-family: var(--font2);
  line-height: 1.4;
}

p,
li {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 30px;
}

input,
textarea,
button,
select {
  outline: none;
  box-shadow: none;
  border: none;
  background: none;
}

.w-fit {
  width: fit-content;
  width: -moz-fit-content;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  margin: 0 !important;
}

.owl-carousel .owl-nav button {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.fw-bold {
  font-weight: 600 !important;
}

.owl-stage {
  display: flex !important;
}

.owl-stage .owl-item {
  flex: 1 0 auto;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (min-width: 1450px) {
  .container {
    max-width: 1420px;
  }
}
@media (min-width: 1805px) {
  .container-xxl-fluid {
    width: 100%;
    max-width: unset;
  }
}
/*
.row .container {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}*/
@keyframes shake {
  0% {
    transform: rotateZ(0);
  }
  10% {
    transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.2857142857deg);
  }
  80% {
    transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.3333333333deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
.newsletter {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .newsletter {
    padding: 2.5rem 0;
  }
}
.newsletter-form {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0.75rem 0.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .newsletter-form {
    margin: 0;
  }
}
.newsletter-form input {
  background-color: var(--light-color);
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 600;
  height: 51px;
  width: 420px;
  padding: 0.5rem 1.5rem;
}
@media (max-width: 768px) {
  .newsletter-form input {
    width: auto;
  }
}
@media (max-width: 576px) {
  .newsletter-form input {
    width: 100%;
  }
}
.newsletter-form button {
  border: 1px solid var(--light-color);
  height: 51px;
  padding: 0.5rem 1.5rem;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease-in-out;
}
@media (max-width: 576px) {
  .newsletter-form button {
    padding: 0.5rem 0.75rem;
  }
}
.newsletter-form button span {
  position: relative;
  z-index: 1;
}
.newsletter-form button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 100%;
  width: 0;
  z-index: 0;
  background-color: var(--light-color);
  transition: width 0.25s ease-in-out;
}
.newsletter-form button:hover {
  color: var(--dark-color);
}
.newsletter-form button:hover::after {
  left: 0;
  width: 100%;
}

.section-header {
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 1.75rem;
  }
}
.section-header h2 {
  line-height: 40px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-header h2 {
    line-height: 38px;
    font-size: 30px;
  }
}
.section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.section-header h4 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-header h4 {
    font-size: 19px;
  }
}
.section-header-extended {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .section-header-extended {
    flex-direction: column;
  }
}
.section-header-spacing-small {
  margin-bottom: 1rem;
}
.section-header-spacing-medium {
  margin-bottom: 1.75rem;
}
.page-subpage .section-spacing:not(.pb-auto):last-child {
  padding-bottom: 0 !important;
}
.section-spacing {
  padding: 2rem 0;
}
@media (max-width: 991px) {
  .section-spacing {
    padding: 1.5rem 0;
  }
}
.section-spacing-medium {
  padding: 4rem 0;
}
@media (max-width: 991px) {
  .section-spacing-medium {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .section-spacing-medium {
    padding: 2.5rem 0;
  }
}
.section-spacing-large {
  padding: 5.5rem 0;
}
@media (max-width: 991px) {
  .section-spacing-large {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .section-spacing-large {
    padding: 2.5rem 0;
  }
}
.section-dark {
  background-color: var(--dark-color);
}
.section-light {
  background-color: var(--section-color);
}
.section-dark .section-header h4 {
  color: var(--light-color);
}
.section-footer {
  margin-top: 2rem;
}

.reviews-content {
  display: flex;
  align-items: center;
  gap: 3rem 5rem;
}
@media (max-width: 1475px) and (min-width: 1200px) {
  .reviews-content {
    gap: 2.5rem;
  }
}
@media (max-width: 991px) {
  .reviews-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .reviews-content {
    gap: 1.5rem;
  }
}
.reviews-logo {
  flex-shrink: 0;
}
.reviews-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: auto;
  gap: 1rem;
  flex: 0 1 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .reviews-row {
    grid-template-columns: 1fr;
  }
}
.reviews-item {
  background-color: var(--light-color);
  padding: 2rem;
}
.reviews-item-stars {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.reviews-item-stars svg, .reviews-item-stars path {
  fill: #e7c520;
}
.reviews-item-text p {
  font-size: 13px;
  line-height: 26px;
  color: var(--secondary-color);
  font-weight: 500;
}
.reviews-item-date {
  font-size: 14px;
  line-height: 24px;
  color: var(--secondary-color);
  font-weight: 700;
}

.counters {
  padding-left: 3rem;
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 1200px) {
  .counters {
    padding-top: 2.5rem;
    flex-direction: row;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .counters {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.counters-item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .counters-item {
    flex: 0 0 calc(50% - 1.25rem);
  }
}
@media (max-width: 768px) {
  .counters-item {
    flex: 1;
    gap: 0.75rem;
  }
}
.counters-item-imagebox {
  flex-shrink: 0;
  width: 3rem;
}
@media (max-width: 768px) {
  .counters-item-imagebox {
    width: auto;
    margin-top: 0.5rem;
  }
}
.counters-item-imagebox svg {
  max-width: 25px;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .counters-item-imagebox svg {
    margin-top: 0;
  }
}
.counters-item-imagebox svg, .counters-item-imagebox svg path {
  fill: var(--primary-color);
}
.counters-item-number {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -2px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0;
}
.counters-item-text {
  font-size: 15px;
  line-height: 23px;
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 0;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.button-link {
  font-size: 13px;
  line-height: 19px;
  color: var(--primary-color);
  font-weight: 700;
  transition-duration: 0.1s;
}
.button-link path {
  transition-duration: 0.1s;
}
.button-link:hover {
  text-decoration: none;
}
.button-link:hover path {
  fill: var(--highlight-color);
}
.button-small-red {
  font-size: 14px;
  line-height: 22px;
  color: var(--light-color);
  font-weight: 500;
  background-color: var(--highlight-color);
  color: var(--light-color);
  padding: 0.175rem 0.5rem;
  border: 1px solid var(--highlight-color);
  transition-duration: 0.25s;
}
.button-small-red:hover {
  text-decoration: none;
  background-color: var(--light-color);
  color: var(--highlight-color);
}
.button-small-white {
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 500;
  background-color: var(--light-color);
  color: var(--secondary-color);
  padding: 0.175rem 0.5rem;
  border: 1px solid var(--light-color);
  transition-duration: 0.25s;
}
.button-small-white:hover {
  text-decoration: none;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.button-default {
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease-in-out;
  border: 2px solid var(--dark-color);
  background-color: var(--dark-color);
  color: var(--light-color);
}
.button-default span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.button-default svg {
  fill: var(--light-color);
  transition: fill 0.25s ease-in-out;
}
.button-default::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 100%;
  width: 0;
  z-index: 0;
  transition: width 0.25s ease-in-out;
  background-color: var(--light-color);
}
.button-default:hover {
  color: var(--dark-color);
  text-decoration: none;
}
.button-default:hover::after {
  left: 0;
  width: 100%;
}
.button-default:hover svg {
  fill: var(--dark-color);
}
.button-default-red {
  background-color: var(--highlight-color);
  color: var(--light-color);
  border-color: var(--highlight-color);
}
.button-default-red svg {
  fill: var(--light-color);
}
.button-default-red::after {
  background-color: var(--light-color);
}
.button-default-red:hover svg {
  fill: var(--highlight-color);
}
.button-default-red:hover {
  color: var(--highlight-color);
}
.button-default-white {
  background-color: var(--light-color);
  color: var(--dark-color);
  border-color: var(--light-color);
}
.button-default-white svg {
  fill: var(--dark-color);
}
.button-default-white::after {
  background-color: var(--section-color);
}
.button-default-grey {
  background-color: var(--section-color);
  color: var(--dark-color);
  border-color: var(--section-color);
}
.button-default-grey svg {
  fill: var(--dark-color);
}
.button-default-grey::after {
  background-color: var(--light-color);
}
.button-radius {
  border-radius: 3px;
}
.button-reset {
  font-size: 13px;
  line-height: 22px;
  color: var(--menu-color);
  font-weight: 400;
}

@media (max-width: 768px) {
  .manufacturers {
    margin-bottom: 1rem;
  }
}
.manufacturers-outerbox {
  border-top: 1px solid var(--section-color);
  padding: 2rem 2rem 0;
}
@media (max-width: 768px) {
  .manufacturers-outerbox {
    padding: 2rem 0 0;
  }
}
.manufacturers-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 1.5rem;
}
@media (max-width: 768px) {
  .manufacturers-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.manufacturers-item {
  flex: 0 0 calc(16.6666666667% - 1.5rem);
}
@media (max-width: 1200px) {
  .manufacturers-item {
    flex: 0 0 calc(25% - 1.5rem);
  }
}
@media (max-width: 991px) {
  .manufacturers-item {
    flex: 0 0 calc(33.3333333333% - 1.5rem);
  }
}
@media (max-width: 768px) {
  .manufacturers-item {
    flex: 0 0 calc(50% - 1.5rem);
  }
}
.manufacturers-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.manufacturers-item a img {
  max-height: 100px;
  max-width: 150px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: -moz-fit-content;
  width: fit-content;
  filter: grayscale(1);
  transition-duration: 0.25s;
}
@media (max-width: 576px) {
  .manufacturers-item a img {
    max-width: 100px;
  }
}
.manufacturers-item a:hover img {
  filter: grayscale(0);
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: auto;
  gap: 1rem;
}
@media (max-width: 991px) {
  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-row-3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .products-row-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 350px) {
  .products-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.products-item {
  position: relative;
}
.products-item > a {
  text-decoration: none !important;
}
.products-item-remove {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}
@media (max-width: 576px) {
  .products-item-remove {
    top: 0.3rem;
    right: 0.3rem;
  }
}
.products-item-remove svg {
  fill: var(--highlight-color);
  width: 2rem;
}
.products-item-icons {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.products-item-icons img {
  max-height: 75px;
}
.products-item-tags, .page-product-top .productImages-main-tags, .productbox-icons, .products-item-badges, .productbox-badges {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: 0.25rem;
  top: -1px;
  left: -1px;
  transition: all 0.25s ease-out;
}
@media (max-width: 576px) {
  .products-item-tags, .page-product-top .productImages-main-tags, .productbox-icons, .products-item-badges, .productbox-badges {
    flex-direction: column-reverse;
  }
}
@media (max-width: 450px) {
  .products-item-tags, .page-product-top .productImages-main-tags, .productbox-icons, .products-item-badges, .productbox-badges {
    gap: 0.125rem;
  }
}
.products-item-tags > img, .page-product-top .productImages-main-tags > img, .productbox-icons > img, .products-item-badges > img, .productbox-badges > img {
  max-width: 75px;
  margin: 0.75rem 1rem 1rem;
}
@media (max-width: 576px) {
  .products-item-tags > img, .page-product-top .productImages-main-tags > img, .productbox-icons > img, .products-item-badges > img, .productbox-badges > img {
    max-width: 55px;
    margin: 0.5rem 0.75rem 0.75rem;
  }
}
.products-item-tags span, .page-product-top .productImages-main-tags span, .productbox-icons span, .products-item-badges span, .productbox-badges span {
  display: block;
  min-width: 60px;
  text-align: center;
  padding: 0.25rem 0.5rem;
}
@media (max-width: 576px) {
  .products-item-tags span, .page-product-top .productImages-main-tags span, .productbox-icons span, .products-item-badges span, .productbox-badges span {
    padding: 0.2rem 0.33rem;
    min-width: 54px;
  }
}
@media (max-width: 450px) {
  .products-item-tags span, .page-product-top .productImages-main-tags span, .productbox-icons span, .products-item-badges span, .productbox-badges span {
    padding: 0.1rem 0.25rem;
    min-width: 40px;
  }
}
.products-item-tags-bordered, .productbox-tags-item-bordered {
  border: 1px solid var(--primary-color);
  font-size: 12px;
  color: var(--primary-color);
  background-color: var(--light-color);
  font-weight: 700;
}
@media (max-width: 576px) {
  .products-item-tags-bordered, .productbox-tags-item-bordered {
    font-size: 11px;
  }
}
@media (max-width: 450px) {
  .products-item-tags-bordered, .productbox-tags-item-bordered {
    font-size: 10px;
  }
}
.products-item-tags-bordered.green, .green.productbox-tags-item-bordered {
  border-color: var(--ok-color);
  color: var(--ok-color);
}
.products-item-tags-bordered.blue, .blue.productbox-tags-item-bordered {
  border-color: var(--info-color);
  color: var(--info-color);
}
.products-item-tags-bordered.red, .red.productbox-tags-item-bordered {
  border-color: var(--highlight-color);
  color: var(--highlight-color);
}
.products-item-tags-colored-red, .productbox-tags-item-red {
  border: 1px solid var(--highlight-color);
  font-size: 12px;
  color: var(--light-color);
  background-color: var(--highlight-color);
  font-weight: 600;
}
@media (max-width: 576px) {
  .products-item-tags-colored-red, .productbox-tags-item-red {
    font-size: 11px;
  }
}
@media (max-width: 450px) {
  .products-item-tags-colored-red, .productbox-tags-item-red {
    font-size: 10px;
  }
}
.products-item-badges, .productbox-badges {
  right: 0;
  left: unset;
}
.products-item-badges > img, .productbox-badges > img {
  max-width: 55px;
  margin: 0.75rem;
}
@media (max-width: 576px) {
  .products-item-badges > img, .productbox-badges > img {
    max-width: 45px;
    margin: 0.5rem;
  }
}
@media (max-width: 450px) {
  .products-item-badges > img, .productbox-badges > img {
    max-width: 35px;
    margin: 0.25rem;
  }
}
.products-item-badges.large, .large.productbox-badges {
  right: 0rem;
  top: 3.5rem;
}
.products-item-badges.large > img, .large.productbox-badges > img {
  max-width: 51px;
  margin: 0.25rem 0.4rem;
}
.products-item-top {
  position: relative;
  border-radius: 3px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-bottom: 0.8rem;
  aspect-ratio: 1/1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .products-item-top {
    padding: 1.25rem;
  }
}
.products-item-bottomicons {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.products-item-bottomicons img {
  max-height: 28px;
}
.products-item-imagebox {
  position: relative;
  width: 100%;
}
.products-item-imagebox img {
  width: 100%;
  aspect-ratio: 1/1.1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transition: all 0.25s ease-out;
}
.products-item-imagebox-hover {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
  background-color: var(--light-color);
}
.products-item-quickview {
  position: absolute;
  top: 1.75rem;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all 0.25s ease-out;
  display: flex;
  justify-content: center;
}
.products-item-quickview .quick-view-trigger {
  background-color: var(--highlight-color);
  padding: 0.35rem 0.75rem;
  height: 35px;
  border: 1px solid var(--highlight-color);
  font-size: 12px;
  font-weight: 500;
  color: var(--light-color);
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.products-item-quickview .quick-view-trigger svg {
  width: 1rem;
  height: 1rem;
}
.products-item-quickview .quick-view-trigger:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.products-item-title, .page-product-top .productImages-set-item-text h3 {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: var(--primary-color) !important;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-decoration: none !important;
}
.products-item-price-default {
  display: inline-block;
  font-size: 16px;
  color: var(--highlight-color);
  font-weight: 700;
}
.products-item-price-old {
  display: inline-block;
  font-size: 13px;
  color: var(--menu-color);
  font-weight: 500;
  text-decoration: line-through;
  margin-left: 0.25rem;
}
.products-item-sizes {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.25s ease-out;
}
@media (max-width: 1475px) {
  .products-item-sizes {
    bottom: 0.75rem;
  }
}
.products-item-sizes ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0 1rem;
}
.products-item-sizes ul li {
  background-color: var(--section-color);
  min-width: 45px;
  padding: 0 0.2rem;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 14px;
  color: var(--secondary-color);
  font-weight: 500;
}
@media (max-width: 1200px) {
  .products-item-sizes ul li {
    min-width: 30px;
    height: 23px;
  }
}
.products-item:hover .products-item-tags, .products-item:hover .page-product-top .productImages-main-tags, .page-product-top .products-item:hover .productImages-main-tags, .products-item:hover .productbox-icons, .products-item:hover .products-item-badges, .products-item:hover .productbox-badges {
  visibility: hidden;
  opacity: 0;
}
.products-item:hover .products-item-sizes,
.products-item:hover .products-item-quickview {
  visibility: visible;
  opacity: 1;
}
.products-item:hover .products-item-imagebox img:first-child {
  visibility: hidden;
  opacity: 0;
}
.products-item:hover .products-item-imagebox img:last-child {
  visibility: visible;
  opacity: 1;
}
.products-item-banner-description {
  margin-top: 0.8rem;
}
.products-item-banner-description h3 {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: var(--primary-color) !important;
  font-weight: 600;
  text-decoration: none !important;
  margin-bottom: 0;
}
.products-item-banner-description span {
  display: -webkit-box;
  font-size: 14px;
  line-height: 22px;
  color: var(--menu-color) !important;
  font-weight: 400;
  text-decoration: none !important;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.products-item-banner-box {
  display: block;
  width: 100%;
  aspect-ratio: 1/1.2;
  border-radius: 3px;
  text-decoration: none !important;
}
@media (max-width: 991px) {
  .products-item-banner-box.onlytext {
    aspect-ratio: auto;
    height: 100%;
  }
}
.products-item-banner-box-inner {
  padding: 2.5rem;
}
@media (max-width: 1475px) {
  .products-item-banner-box-inner {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .products-item-banner-box-inner {
    padding: 1.25rem;
  }
}
.products-item-banner-box-inner.page-output h3 {
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 1.5rem;
}
@media (max-width: 1475px) {
  .products-item-banner-box-inner.page-output h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .products-item-banner-box-inner.page-output h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 400px) {
  .products-item-banner-box-inner.page-output h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 350px) {
  .products-item-banner-box-inner.page-output h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 1rem;
  }
}
.products-item-banner-box-inner.page-output p {
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 1475px) {
  .products-item-banner-box-inner.page-output p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 576px) {
  .products-item-banner-box-inner.page-output p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 400px) {
  .products-item-banner-box-inner.page-output p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 350px) {
  .products-item-banner-box-inner.page-output p {
    font-size: 16px;
    line-height: 26px;
  }
}
.products-item-banner-box img,
.products-item-banner-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .products-topselling .products-row {
    grid-template-columns: 1fr;
  }
  .products-topselling .products-item-top {
    padding: 0.5rem;
    margin: 0;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    width: 85px;
  }
  .products-topselling .products-item-tags, .products-topselling .page-product-top .productImages-main-tags, .page-product-top .products-topselling .productImages-main-tags, .products-topselling .productbox-icons, .products-topselling .products-item-badges, .products-topselling .productbox-badges {
    display: none;
  }
  .products-topselling .products-item > a {
    display: flex;
  }
  .products-topselling .products-item-imagebox img {
    height: 65px;
    aspect-ratio: 1/1;
  }
  .products-topselling .products-item-bottom {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.products-owl {
  position: relative !important;
}
@media (max-width: 576px) {
  .products-owl {
    padding-bottom: 2rem;
  }
}

.quick-view-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(53, 53, 53, 0.7490196078);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.quick-view-overlay.active {
  opacity: 1;
  visibility: visible;
}
.quick-view-drawer {
  position: relative;
  width: 100%;
  max-height: 75vh;
  background-color: var(--light-color);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .quick-view-drawer {
    max-height: 85vh;
  }
}
.active .quick-view-drawer {
  transform: translateY(0);
}
.quick-view-drawer-handle {
  background-color: var(--light-color);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px 0;
}
.quick-view-drawer-handle::after {
  content: "";
  width: 40px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  display: block;
}
.quick-view-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
  z-index: 10;
  transition: color 0.15s;
}
@media (max-width: 991px) {
  .quick-view-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}
@media (max-width: 768px) {
  .quick-view-close {
    top: 0.35rem;
    right: 0.35rem;
    width: 1.25rem;
  }
}
.quick-view-close:hover {
  color: var(--highlight-color);
}
.quick-view-content {
  padding: 3.5rem 5rem 5rem;
  overflow-y: auto;
  flex: 1;
}
@media (max-width: 991px) {
  .quick-view-content {
    padding: 1rem 3rem 3rem;
  }
}
@media (max-width: 576px) {
  .quick-view-content {
    padding: 0 16px 28px;
  }
}
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 991px) {
  .quick-view-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.quick-view-image {
  position: relative;
  border-radius: 3px;
  border: 1px solid var(--border-color);
  padding: 4rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quick-view-image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.quick-view-info {
  display: flex;
  flex-direction: column;
}
.quick-view-info h2 {
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  font-weight: 700;
}
@media (max-width: 991px) {
  .quick-view-info h2 {
    margin-bottom: 1.5rem;
    font-size: 20px;
  }
}
.quick-view-info-box {
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .quick-view-info-box {
    margin-bottom: 1.5rem;
  }
}
.quick-view-info-box-title {
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.quick-view-sizes {
  left: 1rem;
  right: 1rem;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1475px) {
  .quick-view-sizes {
    bottom: 1.75rem;
  }
}
@media (max-width: 576px) {
  .quick-view-sizes {
    bottom: 1rem;
  }
}
.quick-view-desc {
  color: var(--menu-color);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-size: 14px;
}
@media (max-width: 991px) {
  .quick-view-desc {
    margin-bottom: 1.5rem;
  }
}
.quick-view-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quick-view-price-default {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .quick-view-price-default {
    font-size: 20px;
    line-height: 22px;
  }
}
.quick-view-price-old {
  font-size: 13px;
  line-height: 18px;
  text-decoration: line-through;
  color: var(--menu-color);
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .news-outerbox {
    background-color: var(--section-color);
    margin-bottom: 1rem;
  }
}
.news-innerbox {
  position: relative;
}
.news-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--section-color);
}
@media (max-width: 576px) {
  .news-item {
    padding: 2rem 0 2.5rem;
  }
}
.news-item-date {
  display: block;
  background-color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 12px;
  color: var(--light-color);
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 0.5rem;
}
@media (max-width: 768px) {
  .news-item-date {
    margin: 0 0 1rem;
  }
}
.news-item-title {
  position: relative;
  display: block;
  font-size: 15px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.news-item-title svg {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  position: relative;
  margin-top: -3px;
  right: 0.125rem;
  z-index: -1;
  transition-duration: 0.1s;
}
@media (max-width: 768px) {
  .news-item-title svg {
    display: none;
  }
}
.news-item-title svg path {
  transition-duration: 0.1s;
  fill: var(--secondary-color);
}
.news-item-title:hover {
  text-decoration: none;
}
.news-item-title:hover svg {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.news-item-title:hover svg, .news-item-title:hover svg path {
  fill: var(--highlight-color);
}
.news-item-description {
  font-size: 13px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 400;
  margin-bottom: 0;
}

.owl-carousel {
  position: unset;
}
@media (max-width: 576px) {
  .owl-carousel:not(.owl-default-nav) .owl-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(50%);
  }
}
.owl-carousel:not(.owl-default-nav) .owl-nav button {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--highlight-color) !important;
  width: 41px;
  aspect-ratio: 1/1;
  transition-duration: 0.15s;
}
.owl-carousel:not(.owl-default-nav) .owl-nav button svg, .owl-carousel:not(.owl-default-nav) .owl-nav button path {
  fill: var(--light-color);
}
.owl-carousel:not(.owl-default-nav) .owl-nav button.disabled {
  opacity: 0;
  visibility: hidden;
}
.owl-carousel:not(.owl-default-nav) .owl-nav button.owl-prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.owl-carousel:not(.owl-default-nav) .owl-nav button.owl-prev svg {
  transform: rotate(180deg);
}
.owl-carousel:not(.owl-default-nav) .owl-nav button.owl-next {
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width: 576px) {
  .owl-carousel:not(.owl-default-nav) .owl-nav button {
    position: unset;
    transform: none !important;
  }
  .owl-carousel:not(.owl-default-nav) .owl-nav button.disabled {
    opacity: 0.65;
    visibility: visible;
  }
}

.benefits-row {
  gap: 1.5rem 0;
}
.benefits-item {
  text-align: center;
  padding: 0 1.5rem;
}
.benefits-item > img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1rem;
  height: 59px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.benefits-item span {
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.benefits-item p {
  font-size: 13px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0;
}
.benefits-item p a {
  color: var(--secondary-color);
}

.homepage-banner {
  min-height: 420px;
}
@media (max-width: 1200px) {
  .homepage-banner {
    min-height: 450px;
  }
}
@media (max-width: 576px) {
  .homepage-banner {
    padding: 0 0 0.75rem;
  }
}
@media (max-width: 576px) {
  .homepage-banner .container {
    padding: 0;
  }
}
.homepage-banner-item img,
.homepage-banner-item video {
  max-height: 505px;
  aspect-ratio: 2.77/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
@media (max-width: 768px) {
  .homepage-banner-item img,
  .homepage-banner-item video {
    aspect-ratio: 1.77/1;
  }
}
.homepage-banner .item.extended {
  background-color: var(--highlight-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 0;
  height: 100%;
  max-height: unset;
}
@media (max-width: 1200px) {
  .homepage-banner .item.extended {
    display: flex;
    flex-direction: column;
  }
}
.homepage-banner .item-imagebox {
  padding: 2.25rem 2.25rem 0 2.25rem;
}
@media (max-width: 1200px) {
  .homepage-banner .item-imagebox {
    order: 1;
    padding-top: 0;
  }
}
@media (max-width: 576px) {
  .homepage-banner .item-imagebox {
    padding: 0 1.5rem;
  }
}
.homepage-banner .item-imagebox-inner {
  width: 100%;
}
.homepage-banner .item-imagebox-inner img,
.homepage-banner .item-imagebox-inner video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.325/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage-banner .item-texts {
  padding: 0 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  color: var(--light-color);
  height: 100%;
}
@media (max-width: 1200px) {
  .homepage-banner .item-texts {
    padding: 3rem 2.25rem 0 2.25rem;
  }
}
@media (max-width: 576px) {
  .homepage-banner .item-texts {
    padding: 2.25rem 1.5rem 0;
  }
}
.homepage-banner .item-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.homepage-banner .item-icons img,
.homepage-banner .item-icons svg {
  max-height: 42px;
  width: auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.homepage-banner .item-title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: var(--light-color);
  display: block;
  margin-bottom: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
}
.homepage-banner .item-desciption,
.homepage-banner .item-desciption p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
}
.homepage-banner .item-desciption b,
.homepage-banner .item-desciption strong,
.homepage-banner .item-desciption p b,
.homepage-banner .item-desciption p strong {
  font-weight: 600;
}
.homepage-banner .item-button {
  border-color: var(--light-color) !important;
  margin-top: 1.25rem;
}
@media (max-width: 1475px) {
  .homepage-banner .item-button {
    margin-top: 0.5rem;
  }
}
.homepage-banner .item-button span {
  gap: 1.25rem;
}
.homepage-banner.on-subpage {
  padding-bottom: 2.5rem;
}
@media (max-width: 1475px) and (min-width: 1200px) {
  .homepage-banner.on-subpage .item-title {
    font-size: 26px;
    line-height: 32px;
  }
  .homepage-banner.on-subpage .item-desciption p {
    font-size: 16px;
    line-height: 24px;
  }
  .homepage-banner.on-subpage .item-icons img {
    max-height: 25px;
  }
  .homepage-banner.on-subpage .item-button {
    margin-top: 0;
  }
}

.topMessage {
  background-color: var(--section-color);
  position: relative;
  min-height: 57px;
  display: flex;
  align-items: center;
  display: flex;
  overflow: hidden;
  transition: 0.3s;
  padding: 0.75rem 0;
}
.topMessage-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.topMessage-text-inner {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .topMessage-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .topMessage-text-inner {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.topMessage-text a {
  text-decoration: none !important;
}
.topMessage-text p {
  font-size: 15px;
  line-height: 25px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0;
  transition: 0.15s;
}
.topMessage-text p:hover {
  color: var(--highlight-color);
}
.topMessage-text-highlighted {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--highlight-color);
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  margin: 0 0.25rem;
  color: var(--light-color) !important;
}
@media (max-width: 768px) {
  .topMessage-text-highlighted {
    margin: 0 0 0.25rem;
  }
}
@media (max-width: 576px) {
  .topMessage-text-highlighted {
    font-size: 13px;
    letter-spacing: 0.25px;
  }
}
.topMessage:not(.active) {
  max-height: 0 !important;
  min-height: unset;
  padding: 0;
}
.topMessage-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  transition: 0.15s;
}
@media (max-width: 768px) {
  .topMessage-close {
    display: block;
    transform: none;
    position: unset;
    margin-left: auto;
  }
}
.topMessage-close svg, .topMessage-close path {
  fill: var(--tertiary-color);
}
.topMessage-close:hover svg, .topMessage-close:hover path {
  fill: var(--primary-color);
}

.featured-products-item:not(:last-child) {
  padding-bottom: 3rem;
}

.filters-row {
  display: flex;
  gap: 1.25rem;
}
.filters-row > div:empty {
  display: none;
}
@media (max-width: 1475px) {
  .filters-row {
    gap: 0.5rem;
  }
}
@media (max-width: 1200px) {
  .filters-row {
    width: 100%;
  }
}
.filters-row-mobileBoxes {
  flex-wrap: wrap;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
}
.filters-row-mobileBoxes-gradient::before {
  content: "";
  position: absolute;
  top: -1px;
  height: calc(100% + 2px);
  left: -40px;
  width: 25vw;
  background-color: var(--highlight-color);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 30px);
}
@media (max-width: 991px) {
  .filters-row-mobileBoxes > div {
    width: calc(50% - 0.25rem);
  }
}
.filters-row-fastboxes {
  max-width: calc(100% - 106px);
}
@media (max-width: 1475px) {
  .filters-row-fastboxes {
    max-width: calc(100% - 72px);
  }
}
@media (max-width: 768px) {
  .filters-row-fastboxes {
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .filters-row-fastboxes > div {
    min-width: 0;
    max-width: calc((100% - 1rem) / 3);
    width: 100%;
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .filters-row-fastboxes > div {
    max-width: 100%;
    width: 100%;
  }
}
.filters-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1475px) {
  .filters-outer {
    gap: 1rem;
  }
}
.filters-item {
  position: relative;
  /*min-width: 200px;

  @media (max-width: $xxl) {
      min-width: 175px;
  }*/
}
@media (max-width: 576px) {
  .filters-item {
    min-width: 0;
    width: 100%;
  }
}
.filters-item-counter {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  color: var(--tertiary-color);
}
.filters-item-counter:not(:empty)::after {
  content: ")";
}
.filters-item-counter:not(:empty)::before {
  content: "(";
}
.filters-item-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.33rem;
  height: 47px;
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: "Poppins";
  width: 100%;
}
.filters-item-header > span {
  padding-left: 0.25rem;
  color: var(--highlight-color);
}
.filters-item-header > span:not(:empty)::after {
  content: ")";
}
.filters-item-header > span:not(:empty)::before {
  content: "(";
}
.filters-item-header-state > div {
  display: none;
}
.filters-item-header-state > div.active {
  display: block;
}
@media (max-width: 1475px) {
  .filters-item-hidetext-xxl {
    min-width: 0;
  }
}
.filters-item-content {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  background-color: var(--light-color);
  z-index: 3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  min-width: 225px;
}
@media (max-width: 991px) {
  .filters-item-content {
    min-width: unset;
  }
}
.filters-item-content.extended {
  min-width: 275px;
}
@media (max-width: 991px) {
  .filters-item-content.extended {
    min-width: unset;
  }
}
.filters-item-content.extended .filters-item-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
}
.filters-item-content-inner {
  padding: 1.25rem;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .filters-item-content-inner {
    padding: 1rem;
  }
}
.filters-item-content-inner label, .filters-item-content-inner-item {
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  font-family: "Poppins";
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--menu-color);
  cursor: pointer;
  transition-duration: 0.15s;
  text-decoration: none !important;
}
.filters-item-content-inner label:hover, .filters-item-content-inner-item:hover {
  color: var(--highlight-color);
}
.filters-item-content-inner label:not(:last-of-type), .filters-item-content-inner-item:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.filters-item-content-inner-item.disabled {
  opacity: 0.5;
  z-index: -1;
  position: relative;
}
.filters-item-content-inner-item input[type=radio] {
  z-index: -1;
}
.filters-item-content-inner-sizing label,
.filters-item-content-inner-sizing a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filters-item-content-inner-sizing label:not(:last-child),
.filters-item-content-inner-sizing a:not(:last-child) {
  margin-bottom: 0.75rem;
}
.filters-item-content-inner.direction-row-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1475px) {
  .filters-item-content-inner.direction-row-4col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.filters-item-content-inner.direction-row-4col label {
  margin-bottom: 0;
}
.filters-item-light {
  border-bottom: 1px solid var(--border-color);
}
.filters-item-bordered .filters-item-header {
  border: 1px solid var(--primary-color);
  padding: 0.66rem 1rem;
}
.filters-item-input .filters-item-header {
  background-color: var(--light-color);
  filter: drop-shadow(14.588px 15.106px 10.5px rgba(0, 0, 0, 0.01));
  border-radius: 3px;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--light-color);
  height: 50px;
}
.filters-item:not(.filters-item-noArrow) .filters-item-header::after {
  content: url("../img/icons/arrow-dropdown.svg");
  transition-duration: 0.2s;
  margin-left: auto;
  padding-left: 1rem;
}
.filters-item:not(.filters-item-noArrow) .filters-item-header.activated::after {
  transform: rotate(179.9deg);
}
.filters-item select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.filters-chips {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
@media (max-width: 768px) {
  .filters-chips {
    flex-direction: column;
  }
}
.filters-chips-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
}
.filters-chips-removeall {
  min-width: 133px;
  flex-shrink: 0;
  text-align: right;
}
@media (max-width: 768px) {
  .filters-chips-removeall {
    min-width: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
  }
  .filters-chips-removeall p {
    margin-bottom: 0;
  }
}
.filters-chips-removeall p a {
  color: var(--menu-color) !important;
  text-decoration: underline;
}
.filters-chips-removeall p a:hover {
  color: var(--highlight-color) !important;
}
.filters-chips-item {
  border-radius: 3px;
  background-color: var(--section-color);
  height: 100%;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
}
.filters-chips-item strong {
  font-size: 13px;
  line-height: 21px;
  color: var(--primary-color);
  font-weight: 700;
  display: block;
}
.filters-chips-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filters-chips-item ul li {
  font-size: 12px;
  line-height: 21px;
  color: var(--menu-color);
  font-weight: 400;
  background-color: var(--light-color);
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.filters-chips-item ul li a svg {
  width: 14px;
}
.filters-chips-item ul li a svg,
.filters-chips-item ul li a svg path {
  fill: var(--highlight-color);
  transition: 0.15s;
}
.filters-chips-item ul li a:hover svg,
.filters-chips-item ul li a:hover svg path {
  fill: var(--dark-color);
}

.noUi-target {
  background-color: var(--section-color);
  height: 10px;
  position: relative;
  margin: 0.25rem 1rem 1.25rem 0.5rem;
}
.noUi-origin {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  top: 50%;
  transform: translateY(-50%);
}
.noUi-handle {
  background-color: yellow;
  width: 8px;
  height: 20px;
  border: 1px solid var(--dark-color);
  background-color: var(--light-color);
  position: relative;
  transition: 0.15s;
  cursor: pointer;
}
.noUi-handle:hover {
  background-color: var(--dark-color);
}
.noUi-tooltip {
  font-size: 12px;
  line-height: 20px;
  color: var(--primary-color);
  font-weight: 600;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.25rem;
}

.form label, .form-label-appearance {
  cursor: pointer;
  font-size: 14px;
  line-height: 22px;
  color: var(--menu-color);
  font-weight: 400;
}
.form input[type=text], .form input[type=number], .form input[type=email], .form input[type=password], .form textarea {
  background-color: var(--light-color);
  filter: drop-shadow(14.588px 15.106px 10.5px rgba(0, 0, 0, 0.01));
  height: 50px;
  line-height: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 13px;
  line-height: 24px;
  color: var(--secondary-color);
  font-weight: 500;
  border: 1px solid var(--light-color);
}
.form input[type=text]::-moz-placeholder, .form input[type=number]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=password]::-moz-placeholder, .form textarea::-moz-placeholder {
  color: var(--secondary-color);
}
.form input[type=text]::placeholder, .form input[type=number]::placeholder, .form input[type=email]::placeholder, .form input[type=password]::placeholder, .form textarea::placeholder {
  color: var(--secondary-color);
}
.form textarea {
  resize: none;
  height: unset;
  min-height: 15rem;
  vertical-align: top;
}
.form input[type=checkbox] {
  position: relative;
  border-radius: 3px;
  border: 1px solid var(--border-color);
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.5rem 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
}
.form input[type=checkbox].white {
  background-color: var(--light-color);
  border: 0;
}
.form input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
  transition: 0.1s;
  scale: 0;
}
.form input[type=checkbox]:checked::before {
  border-color: var(--highlight-color);
  scale: 1;
}
.form input[type=radio] {
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.5rem 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
  transition: 0.1s;
}
.form input[type=radio]:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  z-index: 2;
  transition: 0.1s;
}
.form input[type=radio]:checked::before {
  background-color: var(--highlight-color);
  width: 12px;
  height: 12px;
}
.form-onerow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem 1rem;
}
.form-onerow button {
  min-width: 140px;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .form-onerow input {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .form-onerow input {
    width: 100%;
  }
}
.form-light input[type=text], .form-light input[type=number], .form-light input[type=email], .form-light input[type=password], .form-light textarea {
  border-color: transparent;
  background-color: transparent;
}
.form-dark input[type=text], .form-dark input[type=number], .form-dark input[type=email], .form-dark input[type=password], .form-dark textarea {
  border-color: var(--dark-color);
  background-color: transparent;
}
.form-inner.background {
  padding: 3rem;
}
@media (max-width: 768px) {
  .form-inner.background {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .form-inner.background {
    padding: 2rem 1rem;
  }
}
.form-inner.background {
  background-color: var(--section-color);
}
.form-header {
  margin-bottom: 1rem;
}
.form-header h3 {
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0;
}
.form-large-inner {
  background-color: var(--section-color);
  padding: 3rem;
}
@media (max-width: 768px) {
  .form-large-inner {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .form-large-inner {
    padding: 2rem 1rem;
  }
}
.form-large-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 3.5rem;
}
.form-large-row-contactform {
  gap: 0.75rem 3.5rem;
  grid-template-columns: 1fr 1.75fr;
}
@media (max-width: 1200px) {
  .form-large-row {
    grid-template-columns: 1fr;
  }
}
.form-large .form-section-dropdown input[type=radio], .form-large .form-section-dropdown input[type=checkbox] {
  background-color: var(--light-color);
  border: 0;
}
.form-large input[type=text], .form-large input[type=number], .form-large input[type=email], .form-large input[type=password], .form-large textarea {
  border-radius: 3px;
}
.form-large-col-header {
  min-height: 50px;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .form-large-col-header {
    min-height: unset;
    margin-bottom: 1rem;
  }
}
.form-large-col-header p, .form-large-col-footer p {
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0;
}
.form-large-col-header h3, .form-large-col-footer h3 {
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0;
}
.form-section:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .form-section:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.form-section-dropdown .form-inputbox {
  margin-bottom: 0.75rem;
}
.form-section-dropdown-content {
  display: none;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .form-section-dropdown-content {
    margin-bottom: 2rem;
  }
}
.form-section-dropdown.active .form-section-dropdown-content {
  display: block;
}
.form-inputbox {
  display: block;
}
.form-inputbox:not(:last-child) {
  margin-bottom: 0.75rem;
}
.form-inputbox input[type=text], .form-inputbox input[type=number], .form-inputbox input[type=email], .form-inputbox input[type=password], .form-inputbox textarea {
  width: 100%;
}
.form-inputbox-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form-inputbox-row-left {
  flex: 0 0 auto;
  width: 25%;
}
@media (max-width: 991px) {
  .form-inputbox-row-left {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .form-inputbox-row-left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form-inputbox-row-left span {
    margin-bottom: 0.5rem;
  }
}
.form-inputbox-row-right {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 75%;
}
@media (max-width: 991px) {
  .form-inputbox-row-right {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .form-inputbox-row-right {
    width: 100%;
  }
}
.form-inputbox-column span {
  margin-bottom: 0.5rem;
}
.form-label, .form-inputbox-row-left span, .form-inputbox-column span {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 700;
}
.form-label.required::after, .form-inputbox-row-left span.required::after, .form-inputbox-column span.required::after {
  content: "*";
  color: var(--highlight-color);
  margin-left: 0.125rem;
}
.form-label-solid {
  display: flex;
  align-items: flex-start;
}
.form-label-solid input {
  flex-shrink: 0;
  margin: 1px 0.75rem 1px 0 !important;
}
.form-loyalty {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-loyalty label {
  color: var(--primary-color);
}
.form-loyalty label input[type=checkbox] {
  background-color: var(--light-color);
}

.categories-owl {
  position: relative !important;
}
.categories-item {
  display: block;
  width: 100%;
  position: relative;
  aspect-ratio: 1/1.2;
}
.categories-item-imagebox {
  overflow: hidden;
}
.categories-item-imagebox img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.categories-item:hover .categories-item-imagebox img {
  transform: scale(1.1);
}
.categories-item-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 1475px) {
  .categories-item-text {
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .categories-item-text {
    padding: 1rem;
  }
}
.categories-item-text h3 {
  font-size: 24px;
  line-height: 30px;
  color: var(--menu-color);
  font-weight: 700;
  background-color: var(--light-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1rem;
  margin-bottom: 0;
}
@media (max-width: 1475px) {
  .categories-item-text h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .categories-item-text h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 576px) {
  .categories-item-text h3 {
    font-size: 13px;
    line-height: 23px;
    padding: 0.25rem 0.5rem;
  }
}
.categories-item-text p {
  font-size: 16px;
  line-height: 24px;
  color: var(--menu-color);
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 1475px) {
  .categories-item-text p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .categories-item-text p {
    font-size: 13px;
    line-height: 23px;
  }
}
@media (max-width: 576px) {
  .categories-item-text p {
    display: none;
  }
}

.popup-default-content {
  display: none !important;
  position: fixed;
  z-index: 111111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  transition: 0.15s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(53, 53, 53, 0.7490196078);
}
.popup-default-content.active {
  display: flex !important;
}
.popup-default-content-normal {
  position: relative;
  background-color: var(--light-color);
  width: 600px;
  padding: 3rem;
  max-height: 80svh;
  overflow: auto;
}
@media (max-width: 768px) {
  .popup-default-content-normal {
    width: 100%;
    padding: 3rem 1.5rem;
    max-height: 100vh;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}
.popup-default-content-filters {
  position: relative;
  background-color: var(--light-color);
  width: 80%;
  max-width: 1100px;
  padding: 0;
}
@media (max-width: 1200px) {
  .popup-default-content-filters {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .popup-default-content-filters {
    width: 100%;
    height: 100%;
  }
}
.popup-default-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: 0.1s;
}
.popup-default-close:hover {
  color: var(--highlight-color);
}
.popup-product-notification {
  background-color: var(--ok-color);
  padding: 0.75rem;
}
@media (max-width: 576px) {
  .popup-product-notification {
    padding: 0.75rem 1.5rem;
  }
}
.popup-product-notification p {
  color: var(--light-color) !important;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.popup-product-notification p svg {
  flex-shrink: 0;
}
.popup-product-inner {
  padding: 2rem;
}
@media (max-width: 576px) {
  .popup-product-inner {
    padding: 1.5rem;
  }
}
.popup-product-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .popup-product-footer {
    flex-direction: column;
  }
  .popup-product-footer a, .popup-product-footer button {
    width: 100%;
  }
}
.popup-product-text.page-output h4 {
  margin-bottom: 0.25rem;
}
.popup-product-text.page-output p {
  font-size: 16px;
  color: var(--highlight-color);
  font-weight: 700;
}
.popup-product-image {
  border: 1px solid var(--border-color);
  border-radius: 3px;
  margin-bottom: 1rem;
  width: 130px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
.popup-product-bonus {
  margin-top: 1rem;
}
.popup-product-bonus-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.popup-product-bonus-item p {
  color: var(--ok-color) !important;
}
.popup-product-bonus-item svg {
  flex-shrink: 0;
  fill: var(--ok-color);
}

.selector-container {
  border: 1px solid var(--border-color);
}
.selector-item {
  position: relative;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 55px;
  gap: 1rem;
}
.selector-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.selector-item-input input {
  margin-right: 0 !important;
}
.selector-item-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem 0.75rem;
  cursor: pointer;
}
.selector-item-image {
  flex-shrink: 0;
}
.selector-item-image img {
  width: 100px;
  max-height: 22px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 768px) {
  .selector-item-image img {
    display: none;
  }
}
.selector-item-title p {
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0;
}
.selector-item-title p span {
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 768px) {
  .selector-item-title p span {
    display: block;
  }
}
.selector-item .popup-default {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.selector-item .popup-default > button {
  color: var(--border-color);
}
.selector-item .popup-default > button > svg {
  width: 26px;
}

.largeFilters {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.largeFilters-menu {
  flex: 0 0 25%;
}
@media (max-width: 991px) {
  .largeFilters-menu {
    flex: 0 0 100%;
    margin-left: 0;
  }
  .largeFilters-menu.hide {
    display: none;
  }
}
.largeFilters-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.largeFilters-menu ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  font-size: 13px;
  line-height: 23px;
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 3px;
  transition: 0.2s;
}
.largeFilters-menu ul li a:hover {
  text-decoration: none;
  color: var(--highlight-color);
  border-color: var(--highlight-color);
}
.largeFilters-menu ul li a span {
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media (min-width: 991px) {
  .largeFilters-menu ul li.active a {
    background-color: var(--highlight-color);
    color: var(--light-color);
    border-color: var(--highlight-color);
  }
}
.largeFilters-main {
  flex: 0 1 75%;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 3px;
}
.largeFilters-main-back {
  transition: 0.1s;
  font-size: 13px;
  line-height: 18px;
  color: var(--primary-color);
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  background-color: var(--section-color);
  color: var(--dark-color);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.largeFilters-main-back:hover {
  color: var(--highlight-color);
}
@media (max-width: 991px) {
  .largeFilters-main {
    flex: 0 0 100%;
    border-radius: 0;
    border: 0;
    padding: 0;
    display: none;
  }
  .largeFilters-main.active {
    display: block;
  }
  .largeFilters-main.active .largeFilters-main-back {
    display: flex;
  }
}
.largeFilters-main-item {
  display: none;
}
@media (max-width: 991px) {
  .largeFilters-main-item {
    padding-bottom: 3rem;
  }
}
.largeFilters-main-item.active {
  display: block;
}
.largeFilters-main-item-header {
  margin-bottom: 1.25rem;
}
.largeFilters-main-item-section:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .largeFilters-main-item-section:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.largeFilters-main-item-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .largeFilters-main-item-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.largeFilters-main-item-container label {
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: 3px;
  display: flex;
  align-items: flex-start;
}
.largeFilters-main-item-container label input {
  flex-shrink: 0;
  margin: 1px 0.5rem 1px 0;
}
.largeFilters-main-item-container label span {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  color: var(--tertiary-color);
}
.largeFilters-main-item-container label span::before {
  content: "(";
}
.largeFilters-main-item-container label span::after {
  content: ")";
}
.largeFilters-container {
  display: flex;
  align-items: stretch;
  gap: 0 1rem;
  padding: 3rem;
}
@media (max-width: 991px) {
  .largeFilters-container {
    padding: 4.25rem 1.75rem 0;
    height: calc(100% - 105px);
  }
}
@media (max-width: 576px) {
  .largeFilters-container {
    padding: 4.25rem 1rem 0;
    height: calc(100% - 138px);
  }
}
.largeFilters-main, .largeFilters-menu {
  height: 500px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .largeFilters-main, .largeFilters-menu {
    height: unset;
  }
}
.largeFilters-main::-webkit-scrollbar-track, .largeFilters-menu::-webkit-scrollbar-track {
  border: 3px solid transparent;
  padding: 2px;
  background-color: transparent;
}
.largeFilters-main::-webkit-scrollbar, .largeFilters-menu::-webkit-scrollbar {
  width: 5px;
}
.largeFilters-main::-webkit-scrollbar-thumb, .largeFilters-menu::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: var(--border-color);
}
.largeFilters-bottom {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  background-color: var(--section-color);
  padding: 2rem 3rem;
}
@media (max-width: 991px) {
  .largeFilters-bottom {
    position: absolute;
    bottom: 0;
    padding: 1.75rem;
  }
}
@media (max-width: 768px) {
  .largeFilters-bottom {
    padding: 1rem;
    flex-direction: column;
  }
  .largeFilters-bottom a, .largeFilters-bottom button {
    width: 100%;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.pagination-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.pagination-list a, .pagination-list span {
  width: 30px;
  aspect-ratio: 1/1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  transition-duration: 0.15s;
  font-size: 14px;
  color: var(--dark-color);
  font-weight: 400;
}
.pagination-list li:not(.arrow) a:hover, .pagination-list span {
  background-color: var(--section-color);
}

.productbox-inner {
  border-radius: 3px;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}
@media (max-width: 1200px) {
  .productbox-inner {
    padding: 2.5rem;
  }
}
@media (max-width: 576px) {
  .productbox-inner {
    padding: 1.5rem;
  }
}
.productbox-title {
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: var(--primary-color) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}
.productbox-description {
  margin-bottom: 1rem;
}
.productbox-description p {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0;
}
.productbox-price span {
  font-size: 16px;
  color: var(--highlight-color);
  font-weight: 700;
}
.productbox-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .productbox-top {
    justify-content: flex-start;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .productbox-top {
    padding-top: 1rem;
  }
}
@media (max-width: 576px) {
  .productbox-top {
    padding-bottom: 1.5rem;
  }
}
.productbox-icons {
  left: calc(-1.5rem - 1px);
  top: calc(-1.5rem - 1px);
}
.productbox-icons img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  max-width: 50px;
  max-height: 50px;
}
@media (max-width: 1200px) and (min-width: 576px) {
  .productbox-icons {
    left: calc(-2.5rem - 1px);
    top: calc(-2.5rem - 1px);
  }
}
.productbox-badges {
  top: -0.75rem;
  right: -0.75rem;
}
.productbox-badges > img {
  max-width: 55px;
  margin: 0.75rem;
}
@media (max-width: 576px) {
  .productbox-badges > img {
    max-width: 45px;
    margin: 0.5rem;
  }
}
@media (max-width: 1200px) and (min-width: 576px) {
  .productbox-badges {
    right: calc(-2.5rem - 1px);
    top: calc(-2.5rem - 1px);
  }
}
@media (max-width: 576px) {
  .productbox-badges {
    right: calc(-1.5rem - 1px);
    top: calc(-1.5rem - 1px);
  }
}
.productbox-imagebox img {
  display: block;
  width: 100%;
  max-height: 350px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 1200px) {
  .productbox-imagebox img {
    max-height: 150px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .productbox-imagebox img {
    max-height: 100px;
  }
}
.productbox-body {
  padding: 1.5rem;
}
@media (max-width: 1200px) {
  .productbox-body {
    padding: 0;
  }
}
.productbox-tags-item-bordered {
  min-width: 60px;
  text-align: center;
  padding: 0.25rem 0.5rem;
}
.productbox-tags-item span {
  display: block;
  min-width: 60px;
  text-align: center;
  padding: 0.25rem 0.5rem;
}
.productbox-tags {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@media (max-width: 576px) {
  .productbox-tags {
    margin-top: 1.5rem;
  }
}
.productbox-button {
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .productbox-button {
    margin-top: 1.5rem;
  }
}

.orders-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.orders-item {
  background-color: var(--section-color);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (max-width: 576px) {
  .orders-item {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}
.orders-item-top-title {
  margin-bottom: 1.75rem;
}
@media (max-width: 576px) {
  .orders-item-top-title {
    margin-bottom: 1.5rem;
  }
}
.orders-item-top-parameters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.orders-item-top-parameters-item {
  background-color: var(--light-color);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
}
.orders-item-top-parameters-item svg, .orders-item-top-parameters-item img {
  flex-shrink: 0;
  width: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.orders-item-top-parameters-item p {
  font-size: 13px;
  line-height: 24px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .orders-item-top-parameters {
    gap: 0.5rem 1rem;
  }
  .orders-item-top-parameters-item {
    width: 100%;
  }
}
.orders-item-products {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}
@media (max-width: 1475px) {
  .orders-item-products {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1200px) {
  .orders-item-products {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 991px) {
  .orders-item-products {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .orders-item-products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .orders-item-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.orders-item-products a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color);
  width: 100%;
  aspect-ratio: 1/1;
  padding: 1.5rem;
}
.orders-item-products a:hover img {
  opacity: 0.85;
}
.orders-item-products a img {
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transition: 0.15s;
}
.orders-item-buttons {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
@media (max-width: 768px) {
  .orders-item-buttons {
    flex-direction: column;
  }
  .orders-item-buttons a, .orders-item-buttons button {
    width: 100%;
  }
}

#search-activator.active > div {
  background-color: var(--highlight-color);
}
#search-activator.active > div path {
  fill: var(--light-color);
}

.header-search {
  position: absolute;
  top: 100%;
  right: -1px;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
  transition: 0.5s;
  max-width: 0;
}
.header-search.open {
  max-width: 500px;
}
@media (max-width: 576px) {
  .header-search {
    right: 0;
    width: 100%;
  }
  .header-search.open {
    max-width: 100%;
  }
}
.header-search-inner {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  padding: 1rem;
}
@media (max-width: 576px) {
  .header-search-inner {
    border-left: 0;
    border-right: 0;
  }
}
.header-search-form {
  flex-wrap: nowrap;
}
.header-search-form input[type=text] {
  min-width: 325px;
  border: none;
  background-color: var(--section-color);
  font-size: 14px;
  height: 52px;
}
@media (max-width: 576px) {
  .header-search-form input[type=text] {
    min-width: unset;
    width: 100%;
  }
}
.header-search-form button {
  flex-shrink: 0;
  height: auto;
  padding: 0.75rem;
  min-width: unset;
}
.header-search-results {
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.header-search-results-item {
  background-color: var(--section-color);
  display: flex;
  align-items: center;
  gap: 1rem 0.75rem;
  padding: 0.5rem;
}
.header-search-results-item-image {
  flex-shrink: 0;
}
.header-search-results-item-image img {
  aspect-ratio: 1/1;
  width: 50px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  background-color: var(--light-color);
}
.header-search-results-item span {
  font-size: 13px;
  line-height: 22px;
  color: var(--secondary-color);
  font-weight: 500;
}
.header-search-results-item-text span {
  display: block;
}
.header-search-results-item-text span:first-child {
  font-weight: 600;
  transition: 0.15s;
}
@media (min-width: 576px) {
  .header-search-results-item-text span:first-child {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.header-search-results-item:hover {
  text-decoration: none;
}
.header-search-results-item:hover .header-search-results-item-text span:first-child {
  color: var(--highlight-color);
}

.loader {
  position: fixed;
  width: 100%;
  height: 100svh;
  z-index: 999999999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  background-color: rgba(53, 53, 53, 0.2117647059);
}
.loader-inner {
  position: relative;
}
.loader:not(.active) {
  background-color: transparent;
  transform: scale(2);
  visibility: hidden;
  opacity: 0;
}
.loader-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 100%;
  background: linear-gradient(to right, var(--highlight-color) 10%, var(--light-color) 50%);
  animation: spin 1s infinite linear;
}
.loader-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-radius: 100% 0 0 0;
  background: var(--highlight-color);
}
.loader-circle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 92%;
  height: 92%;
  margin: auto;
  border-radius: 50%;
  background: var(--light-color);
}
.loader-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 45px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.size-finder {
  padding: 1.25rem;
  margin-bottom: 1rem;
  background-color: var(--section-color);
}
.size-finder .size-finder-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 21px;
  color: var(--primary-color);
}
.size-finder .size-finder-label {
  display: block;
  margin-bottom: 1rem;
  font-size: 13px;
  color: var(--menu-color);
}
.size-finder .size-finder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.size-finder .size-finder-input {
  width: 100px;
  height: unset !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid var(--border-color) !important;
  background: #fff !important;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary-color);
}
@media (max-width: 350px) {
  .size-finder .size-finder-input {
    width: 75px;
  }
}
.size-finder .size-finder-input:focus {
  outline: none;
  border-color: var(--menu-color) !important;
}
.size-finder .size-finder-unit {
  font-size: 14px;
  color: #555;
}
.size-finder .size-finder-help {
  margin-left: auto;
  font-size: 13px;
  color: var(--highlight-color);
  transition: color 0.2s ease-in-out;
}
.size-finder .size-finder-result {
  margin-top: 1rem;
  font-size: 13px;
  font-weight: 500;
}
.size-finder .size-finder-result--error {
  color: var(--highlight-color);
}
.size-finder .size-finder-result:empty {
  display: none;
}
.size-finder .size-finder-recommended-size {
  display: inline-block;
  padding: 1px 5px;
  background-color: var(--ok-color);
  color: #fff;
  font-weight: 600;
}

.filters-item-content-inner-item.size-recommended {
  outline: 2px solid var(--highlight-color);
  outline-offset: -2px;
  border-radius: 6px;
}

.size-finder--filter {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  background-color: #f9f9f9;
}
.size-finder--filter .size-finder-title {
  font-size: 13px;
  line-height: 21px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
}
.size-finder--filter .size-finder-label {
  display: block;
  font-size: 13px;
  color: var(--menu-color);
  margin-bottom: 0.5rem;
}
.size-finder--filter .size-finder-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.size-finder--filter .size-finder-input {
  width: 100px;
  padding: 0.5rem 1rem !important;
  height: unset !important;
  border: 1px solid var(--border-color) !important;
  background: #fff !important;
}
@media (max-width: 350px) {
  .size-finder--filter .size-finder-input {
    width: 75px;
  }
}
.size-finder--filter .size-finder-input:focus {
  outline: none;
  border-color: var(--menu-color) !important;
}
.size-finder--filter .size-finder-unit {
  font-size: 14px;
  color: #555;
}
.size-finder--filter .size-finder-help {
  margin-left: auto;
  font-size: 13px;
  color: #e53935;
  transition: color 0.2s ease-in-out;
}

.homepage {
  padding: 2.5rem 0 0;
}
@media (max-width: 768px) {
  .homepage {
    padding: 1.5rem 0 0;
  }
}
@media (max-width: 576px) {
  .homepage {
    padding: 0;
  }
}
.homepage > *:first-child {
  padding-top: 0;
}

.page-subpage {
  padding: 4rem 0 5.5rem;
}
@media (max-width: 991px) {
  .page-subpage {
    padding: 3rem 0 4rem;
  }
}
@media (max-width: 768px) {
  .page-subpage {
    padding: 2.5rem 0 3rem;
  }
}
.page-subpage-header {
  margin-bottom: 2.5rem;
}
.page-subpage-header h1 {
  font-family: "Poppins";
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .page-subpage-header h1 {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .page-subpage-breadcrumb {
    display: none;
  }
}
.page-subpage-breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.page-subpage-breadcrumb ul li a {
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 500;
  color: var(--menu-color);
}
.page-subpage-breadcrumb ul li:not(:last-child)::after {
  content: url("../img/icons/arrow-breadcrumb.svg");
  padding: 0 0.5rem 0 0.4rem;
}
.page-subpage-breadcrumb ul li:last-child a {
  font-weight: 600;
  color: var(--primary-color);
}

.page-output > *:last-child {
  margin-bottom: 0;
}
.page-output, .page-output p, .page-output td, .page-output li, .page-output a:not(.button) {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.page-output ol {
  padding-left: 1.5rem;
}
.page-output ol li::marker {
  color: var(--highlight-color);
  font-weight: 600;
}
.page-output img {
  max-width: 100%;
  height: auto;
}
.page-output table tr {
  border-bottom: 1px solid var(--border-color);
}
.page-output table tr:first-child td, .page-output table tr th {
  color: var(--primary-color);
  font-weight: 700;
}
.page-output table tr td, .page-output table tr th {
  padding: 0.5rem 2.25rem 0.5rem 0;
  min-width: 120px;
}
@media (max-width: 768px) {
  .page-output table tr td, .page-output table tr th {
    padding: 0.5rem 1.5rem 0.5rem 0;
  }
}
.page-output ul {
  padding-left: 1rem;
}
.page-output ul li {
  padding-inline-start: 0.5rem;
}
.page-output ul li::marker {
  content: "-";
  color: var(--highlight-color);
  font-weight: 700;
}
.page-output b, .page-output strong {
  font-weight: 600;
}
.page-output a:not(.button) {
  color: var(--highlight-color);
}
.page-output h1 {
  font-size: 32px;
  line-height: 40px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-output h2 {
  font-size: 26px;
  line-height: 34px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-output h3 {
  font-size: 22px;
  line-height: 30px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-output h4 {
  font-size: 18px;
  line-height: 26px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-output h5 {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-output h1 > a, .page-output h2 > a, .page-output h3 > a, .page-output h4 > a {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}
.page-output table.delivery {
  width: 500px;
}
@media (max-width: 768px) {
  .page-output table.delivery {
    width: 100%;
  }
}
.page-output table.shoes-size {
  width: 350px;
}
@media (max-width: 576px) {
  .page-output table.shoes-size {
    width: 100%;
  }
}
.page-output-table-2col, .page-output-table-delivery {
  width: 350px;
}
@media (max-width: 576px) {
  .page-output-table-2col, .page-output-table-delivery {
    width: 100%;
  }
}
.page-output-table-2col tr, .page-output-table-delivery tr {
  border-bottom: 1px solid var(--border-color);
}
.page-output-table-2col tr:first-child td, .page-output-table-delivery tr:first-child td {
  color: var(--primary-color);
  font-weight: 700;
}
.page-output-table-2col tr td, .page-output-table-delivery tr td {
  width: 50%;
  padding: 0.5rem 0.5rem 0.5rem 0;
}
.page-output-table-delivery {
  width: 500px;
}
@media (max-width: 576px) {
  .page-output-table-delivery {
    width: 100%;
  }
}
.page-output-table-delivery tr td:first-child {
  width: 75%;
}
.page-output-table-delivery tr td:last-child {
  width: 25%;
}

.page-catalog-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.page-catalog-content-left {
  flex: 0 0 auto;
  width: 16%;
}
@media (max-width: 1475px) {
  .page-catalog-content-left {
    width: 20%;
  }
}
@media (max-width: 991px) {
  .page-catalog-content-left {
    display: none;
  }
}
.page-catalog-content-right {
  flex: 0 0 auto;
  width: 84%;
  padding-left: 3.5rem;
}
@media (max-width: 1475px) {
  .page-catalog-content-right {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .page-catalog-content-right {
    width: 100%;
    padding-left: 0;
  }
}
.page-catalog-categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-catalog-categories ul a {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  color: var(--dark-color);
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.1rem;
  position: relative;
  transition: all 0.25s ease-in-out 0.05s;
}
.page-catalog-categories ul a span {
  position: relative;
  z-index: 1;
}
.page-catalog-categories ul a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 100%;
  width: 0;
  z-index: 0;
  background-color: var(--highlight-color);
  transition: width 0.25s ease-in-out 0.05s;
}
.page-catalog-categories ul a.active::after, .page-catalog-categories ul a:hover::after {
  left: 0;
  width: 100%;
}
.page-catalog-categories ul a.active, .page-catalog-categories ul a:hover {
  text-decoration: none;
  color: var(--light-color);
}
.page-catalog-categories-sub {
  margin-left: 0.5rem;
}
.page-catalog-categories-mobile {
  display: none;
}
@media (max-width: 991px) {
  .page-catalog-categories-mobile {
    display: block;
  }
}
.page-catalog-categories-mobile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .page-catalog-categories-mobile-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-catalog-categories-mobile-row {
  gap: 0.5rem;
}
.page-catalog-categories-mobile-item a {
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  font-size: 13px;
  line-height: 18px;
  color: var(--primary-color);
  font-weight: 500;
  height: 100%;
}
.page-catalog-categories-mobile-item a:hover, .page-catalog-categories-mobile-item a.active {
  background-color: var(--section-color);
  text-decoration: none;
}
.page-catalog-categories-mobile-item a img {
  flex-shrink: 0;
  height: 35px;
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 375px) {
  .page-catalog-categories-mobile-item a img {
    height: 30px;
  }
}
@media (max-width: 350px) {
  .page-catalog-categories-mobile-item a {
    font-size: 12px;
  }
  .page-catalog-categories-mobile-item a img {
    height: 25px;
  }
}
.page-catalog-categories-default-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
@media (max-width: 1475px) {
  .page-catalog-categories-default-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .page-catalog-categories-default-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .page-catalog-categories-default-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-catalog-categories-default-item a {
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  font-size: 13px;
  line-height: 18px;
  color: var(--primary-color);
  font-weight: 500;
  height: 100%;
  text-align: center;
}
.page-catalog-categories-default-item a:hover, .page-catalog-categories-default-item a.active {
  background-color: var(--section-color);
  text-decoration: none;
}
.page-catalog-categories-default-item a img {
  flex-shrink: 0;
  height: 65px;
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 768px) {
  .page-catalog-categories-default-item a {
    padding: 1rem;
  }
  .page-catalog-categories-default-item a img {
    height: 55px;
  }
}
.page-catalog-banners {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-catalog-banners img {
  border-radius: 3px;
}
.page-catalog {
  /* arrow back in catalog */
}
@media (max-width: 768px) {
  .page-catalog .page-subpage-header {
    display: flex;
    gap: 1rem;
  }
}
.page-catalog-back {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  background-color: var(--highlight-color);
  border: 1px solid var(--highlight-color);
  margin-top: 0.2rem;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .page-catalog-back {
    display: none;
  }
}
.page-catalog-back svg {
  transform: rotate(180deg);
  fill: var(--light-color);
  max-width: 20px;
}
.page-catalog-back:hover {
  background-color: var(--light-color);
}
.page-catalog-back:hover svg {
  fill: var(--highlight-color);
}

@media (max-width: 576px) {
  .page-product .page-subpage-header h1 {
    font-size: 24px;
  }
}
.page-product-top {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .page-product-top {
    flex-direction: column;
  }
}
.page-product-top .page-subpage-header {
  margin-bottom: 2rem;
}
.page-product-top .productImages {
  flex: 0 0 auto;
  width: 65%;
  display: flex;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .page-product-top .productImages {
    width: 60%;
    flex-direction: column-reverse;
    padding-right: 3rem;
  }
}
@media (max-width: 991px) {
  .page-product-top .productImages {
    width: 100%;
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .page-product-top .productImages {
    margin-bottom: 2rem;
  }
}
.page-product-top .productImages-set {
  margin-right: 3rem;
}
@media (max-width: 1200px) {
  .page-product-top .productImages-set {
    margin-right: 0;
  }
}
.page-product-top .productImages-set-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1rem;
}
@media (max-width: 1475px) {
  .page-product-top .productImages-set-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .page-product-top .productImages-set-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .page-product-top .productImages-set-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .page-product-top .productImages-set-row {
    grid-template-columns: 1fr;
  }
}
.page-product-top .productImages-set-item {
  position: relative;
}
.page-product-top .productImages-set-item:hover {
  text-decoration: none;
}
.page-product-top .productImages-set-item-top {
  border-radius: 3px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-bottom: 0.8rem;
  aspect-ratio: 1/1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-product-top .productImages-set-item-number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--highlight-color);
  color: var(--light-color);
  padding: 0.5rem;
  text-align: center;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  width: 52px;
  aspect-ratio: 1/1;
}
.page-product-top .productImages-set-item-text p {
  color: var(--primary-color);
  font-size: 13px;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 0;
}
.page-product-top .productImages-slider {
  flex-shrink: 0;
  width: 156px;
  position: relative;
}
@media (max-width: 1475px) {
  .page-product-top .productImages-slider {
    width: 123px;
  }
}
@media (max-width: 1200px) {
  .page-product-top .productImages-slider {
    width: 80%;
    margin: 1rem auto 0;
  }
}
@media (max-width: 991px) {
  .page-product-top .productImages-slider {
    display: none;
  }
}
@media (max-width: 576px) {
  .page-product-top .productImages-slider {
    width: 85%;
    margin: 0.5rem auto 0;
  }
}
@media (max-width: 350px) {
  .page-product-top .productImages-slider {
    width: 80%;
  }
}
.page-product-top .productImages-slider-item {
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .page-product-top .productImages-slider-item {
    padding: 1rem;
  }
}
.page-product-top .productImages-slider-item img {
  transform: rotate(-90deg);
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 1200px) {
  .page-product-top .productImages-slider-item img {
    transform: none;
  }
}
.page-product-top .productImages-owl {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transform: rotate(90deg);
  width: 500px;
}
@media (max-width: 1475px) {
  .page-product-top .productImages-owl {
    width: 400px;
  }
}
@media (max-width: 1200px) {
  .page-product-top .productImages-owl {
    position: unset;
    transform: none;
    translate: none;
    width: unset;
  }
}
.page-product-top .productImages-owl .owl-nav button {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color) !important;
  width: 20px;
  aspect-ratio: 1/1;
  transition-duration: 0.15s;
}
.page-product-top .productImages-owl .owl-nav button.disabled {
  opacity: 0;
  visibility: hidden;
}
.page-product-top .productImages-owl .owl-nav button svg,
.page-product-top .productImages-owl .owl-nav button path {
  fill: var(--primary-color);
}
.page-product-top .productImages-owl .owl-nav button.owl-next {
  right: -1.5rem;
  transform: translate(50%, -50%);
}
@media (max-width: 576px) {
  .page-product-top .productImages-owl .owl-nav button.owl-next {
    right: -1.25rem;
  }
}
.page-product-top .productImages-owl .owl-nav button.owl-prev {
  left: -1.5rem;
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .page-product-top .productImages-owl .owl-nav button.owl-prev {
    left: -1.25rem;
  }
}
.page-product-top .productImages-owl .owl-nav button.owl-prev svg {
  transform: rotate(180deg);
}
.page-product-top .productImages-main {
  position: relative;
  flex-shrink: 1;
  width: 100%;
  margin: 0 3rem;
  border: 1px solid var(--border-color);
}
@media (max-width: 1475px) {
  .page-product-top .productImages-main {
    margin: 0 2rem;
  }
}
@media (max-width: 1200px) {
  .page-product-top .productImages-main {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .page-product-top .productImages-main-gallery:not(.owl-loaded) {
    display: flex;
    overflow: hidden;
  }
  .page-product-top .productImages-main-gallery:not(.owl-loaded) > *:not(:first-child) {
    display: none !important;
  }
  .page-product-top .productImages-main-gallery:not(.owl-loaded) > *:first-child {
    width: 100%;
    flex-shrink: 0;
  }
}
.page-product-top .productImages-main-imagebox {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem;
}
@media (max-width: 576px) {
  .page-product-top .productImages-main-imagebox {
    padding: 3rem;
  }
}
.page-product-top .productImages-main-imagebox img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.page-product-top .productImages-main-imagebox.mobile-only-gallery-item {
  display: none;
}
@media (max-width: 993px) {
  .page-product-top .productImages-main-imagebox.mobile-only-gallery-item {
    display: flex;
  }
}
.page-product-top .productImages-main-favourite {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 10;
}
.page-product-top .productImages-main-favourite button {
  background-color: var(--section-color);
  width: 38px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-product-top .productImages-main-favourite button svg {
  fill: var(--dark-color);
  max-width: 20px;
  transition: 0.3s;
}
.page-product-top .productImages-main-favourite button:hover svg,
.page-product-top .productImages-main-favourite button .active svg {
  fill: var(--highlight-color);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  12.5% {
    transform: scale(1.1);
  }
  35% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.page-product-top .productImages-main-favourite button:hover svg {
  animation: pulse 3s;
}
.page-product-top .productImages-main-tags {
  z-index: 10;
}
.page-product-top .productImages-main-counter {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
  padding: 0.25rem;
  min-width: 55px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 994px) {
  .page-product-top .productImages-main-counter {
    display: none !important;
  }
}
.page-product-top .productImages-main .owl-dots {
  position: absolute;
  bottom: 1.45rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 994px) {
  .page-product-top .productImages-main .owl-dots {
    display: none !important;
  }
}
.page-product-top .productImages-main .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background-color: var(--border-color) !important;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  border: none;
  transition: background-color 0.3s;
}
.page-product-top .productImages-main .owl-dots .owl-dot.active span {
  background-color: var(--primary-color) !important;
}
.page-product-top .productInformation {
  flex: 0 0 auto;
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .page-product-top .productInformation {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .page-product-top .productInformation {
    width: 100%;
  }
}
.page-product-top .productInformation h3 {
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-product-top .productInformation-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-product-top .productInformation-availability ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}
.page-product-top .productInformation-availability ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  line-height: 20px;
  color: var(--menu-color);
  font-weight: 600;
}
.page-product-top .productInformation-availability ul li.active {
  color: var(--ok-color);
}
.page-product-top .productInformation-availability ul li.active svg {
  fill: var(--ok-color);
}
.page-product-top .productInformation-tags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-product-top .productInformation-tags-item {
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.page-product-top .productInformation-tags p {
  font-size: 13px;
  line-height: 20px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0;
}
.page-product-top .productInformation-gift-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.page-product-top .productInformation-gift-item {
  border: 1px solid var(--primary-color);
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .page-product-top .productInformation-gift-item {
    overflow: visible;
    margin-bottom: 43px;
  }
}
@media (max-width: 576px) {
  .page-product-top .productInformation-gift-item {
    padding: 1rem;
  }
}
.page-product-top .productInformation-gift-item-link {
  position: absolute;
  bottom: 0;
  left: -1px;
  right: -1px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem;
  transform: translateY(100%);
  background-color: var(--highlight-color);
  color: var(--light-color);
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .page-product-top .productInformation-gift-item-link {
    transform: translateY(100%) !important;
  }
}
.page-product-top .productInformation-gift-item-link span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.page-product-top .productInformation-gift-item-link,
.page-product-top .productInformation-gift-item-link svg {
  transition: all ease-in-out 0.25s;
}
.page-product-top .productInformation-gift-item-link svg {
  fill: var(--light-color);
  flex-shrink: 0;
  margin-right: 0.25rem;
}
.page-product-top .productInformation-gift-item-link:hover svg {
  margin: 0 -0.05rem 0 0.3rem;
}
.page-product-top .productInformation-gift-item:hover .productInformation-gift-item-link {
  transform: translateY(0);
}
.page-product-top .productInformation-gift-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-product-top .productInformation-gift-item .tick {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 22px;
  aspect-ratio: 1/1;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color);
  padding: 0.25rem;
}
.page-product-top .productInformation-gift-item .tick svg {
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.page-product-top .productInformation-gift-item.selected .tick svg {
  opacity: 1;
  visibility: visible;
}
.page-product-top .productInformation-gift-item img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  aspect-ratio: 1/1;
  width: 100%;
}
.page-product-top .productInformation-price {
  background-color: var(--section-color);
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100px;
  gap: 0.75rem 0;
}
@media (max-width: 576px) {
  .page-product-top .productInformation-price {
    padding: 1rem 1.25rem;
  }
}
.page-product-top .productInformation-price-left {
  flex: 0 0 auto;
  width: 35%;
}
@media (max-width: 1475px) {
  .page-product-top .productInformation-price-left {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .page-product-top .productInformation-price-left {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .page-product-top .productInformation-price-left {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .page-product-top .productInformation-price-left {
    width: 40%;
  }
}
@media (max-width: 400px) {
  .page-product-top .productInformation-price-left {
    width: 100%;
  }
}
.page-product-top .productInformation-price-left-default {
  color: var(--primary-color);
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0;
}
.page-product-top .productInformation-price-left-default span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  display: block;
}
.page-product-top .productInformation-price-left-old {
  font-size: 13px;
  line-height: 18px;
  text-decoration: line-through;
  color: var(--menu-color);
  font-weight: 500;
  margin-bottom: 0;
}
.page-product-top .productInformation-price-left > *:last-child {
  margin-bottom: 0;
}
.page-product-top .productInformation-price-right {
  flex: 0 0 auto;
  width: 65%;
}
@media (max-width: 1475px) {
  .page-product-top .productInformation-price-right {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .page-product-top .productInformation-price-right {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .page-product-top .productInformation-price-right {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .page-product-top .productInformation-price-right {
    width: 60%;
  }
}
@media (max-width: 400px) {
  .page-product-top .productInformation-price-right {
    width: 100%;
  }
}
.page-product-top .productInformation-price-addToCart {
  background-color: var(--highlight-color);
  font-size: 15px;
  line-height: 28px;
  color: var(--light-color);
  font-weight: 700;
  width: 100%;
  padding: 0.75rem 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 400px) {
  .page-product-top .productInformation-price-addToCart {
    max-width: 200px;
  }
}
.page-product-top .productInformation-price-addToCart svg {
  z-index: 999;
  fill: var(--light-color);
  width: 0;
  transition: 0.3s;
  margin-right: 0;
}
.page-product-top .productInformation-price-addToCart:hover svg {
  width: 24px;
  margin-left: 0.5rem;
}
.page-product-main-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .page-product-main-header ul {
    flex-direction: column;
  }
}
.page-product-main-header ul li {
  width: 20%;
}
@media (max-width: 991px) {
  .page-product-main-header ul li {
    width: 100%;
  }
  .page-product-main-header ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }
}
.page-product-main-header ul li:hover a::after, .page-product-main-header ul li.active a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.page-product-main-header ul a {
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  padding: 1rem 0;
  text-decoration: none;
  position: relative;
}
@media (max-width: 991px) {
  .page-product-main-header ul a {
    text-align: left;
    padding: 0.8rem 1rem;
    font-size: 13px;
    text-transform: unset;
  }
}
.page-product-main-header ul a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  background-color: var(--border-color);
}
@media (max-width: 991px) {
  .page-product-main-header ul a::before {
    content: none;
  }
}
.page-product-main-header ul a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
@media (max-width: 991px) {
  .page-product-main-header ul a::after {
    content: none;
  }
}
.page-product-main-body {
  padding-top: 2.5rem;
}
@media (max-width: 991px) {
  .page-product-main-body {
    padding-top: 1.5rem;
  }
}
.page-product-main-text {
  border-right: 1px solid var(--border-color);
  margin-right: 1.5rem;
  padding-right: 7.5rem;
  height: 100%;
}
@media (max-width: 1475px) {
  .page-product-main-text {
    padding-right: 5rem;
  }
}
@media (max-width: 1200px) {
  .page-product-main-text {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.page-product-main-categories {
  margin-bottom: 2rem;
}
.page-product-main-categories p {
  font-size: 14px;
  line-height: 24px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0;
}
.page-product-main-categories p a {
  color: var(--secondary-color);
}
.page-product-main-categories p a:hover {
  text-decoration: none;
  color: var(--highlight-color);
}
.page-product-main-categories p b,
.page-product-main-categories p strong {
  font-weight: 600;
}
.page-product-main-item {
  display: none;
}
.page-product-main-item.active {
  display: block;
}
.page-product-main-parameters h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-color);
  font-weight: 700;
}
.page-product-main-parameters ul {
  list-style: none;
  padding: 0.5rem 0 0 0.65rem;
  margin: 0;
}
.page-product-main-parameters ul li {
  display: flex;
  align-items: flex-start;
}
.page-product-main-parameters ul li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 9px;
  height: 2px;
  background-color: var(--menu-color);
  margin: 0.65rem 0.65rem 0.65rem 0;
}
@media (max-width: 991px) {
  .page-product-main-button.active {
    display: none;
  }
}
.page-product .productVariants {
  margin-left: 156px;
  margin-right: 35%;
}
@media (max-width: 1200px) {
  .page-product .productVariants {
    margin: 0;
  }
}
.page-product .productVariants-owl {
  margin: 1.25rem auto 0;
  position: relative;
  width: 500px;
}
@media (max-width: 1475px) {
  .page-product .productVariants-owl {
    width: 400px;
  }
}
@media (max-width: 1200px) {
  .page-product .productVariants-owl {
    width: 410px;
  }
}
@media (max-width: 991px) {
  .page-product .productVariants-owl {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .page-product .productVariants-owl {
    width: 85%;
  }
}
.page-product .productVariants-item {
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  width: 100%;
}
@media (max-width: 576px) {
  .page-product .productVariants-item {
    padding: 1rem;
  }
}
.page-product .productVariants-item img {
  aspect-ratio: 1/1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.page-product .productVariants .owl-item:nth-child(1):last-child,
.page-product .productVariants .owl-item:nth-child(2):last-child {
  margin-right: 0 !important;
}
.page-product .productVariants .owl-carousel {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
}
.page-product .productVariants .owl-nav {
  position: unset !important;
  transform: none !important;
}
.page-product .productVariants .owl-nav button {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color) !important;
  width: 20px;
  aspect-ratio: 1/1;
  transition-duration: 0.15s;
}
.page-product .productVariants .owl-nav button.owl-next {
  right: -1.5rem;
}
@media (max-width: 576px) {
  .page-product .productVariants .owl-nav button.owl-next {
    right: -1.25rem;
    transform: translate(50%, -50%) !important;
  }
}
.page-product .productVariants .owl-nav button.owl-prev.disabled, .page-product .productVariants .owl-nav button.owl-next.disabled {
  visibility: hidden !important;
}
.page-product .productVariants .owl-nav button.owl-prev {
  left: -1.5rem;
}
@media (max-width: 576px) {
  .page-product .productVariants .owl-nav button.owl-prev {
    left: -1.25rem;
    transform: translate(-50%, -50%) !important;
  }
}
.page-product .productVariants .owl-nav button path {
  fill: var(--primary-color);
}

.cart-table-header {
  font-size: 13px;
  line-height: 23px;
  color: var(--menu-color);
  font-weight: 500;
}
@media (max-width: 991px) {
  .cart-table-header {
    display: none;
  }
}
.cart-table-body {
  margin-bottom: 0.75rem;
}
@media (max-width: 991px) {
  .cart-table-body {
    margin-bottom: 0;
  }
}
.cart-table-footer {
  background-color: var(--section-color);
  padding: 1.5rem 2.5rem;
  text-align: right;
}
@media (max-width: 768px) {
  .cart-table-footer {
    text-align: left;
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 576px) {
  .cart-table-footer {
    text-align: left;
    padding: 1.5rem;
  }
}
.cart-table-footer-small {
  font-size: 14px;
  line-height: 24px;
  color: var(--menu-color);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .cart-table-footer-small {
    margin-bottom: 0.25rem;
  }
}
.cart-table-footer-large {
  font-size: 17px;
  line-height: 24px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0;
}
.cart-table-footer-large span {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
}
.cart-table-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cart-table-row {
    flex-wrap: wrap;
    padding: 0 0 0.75rem;
    margin-bottom: 0.75rem;
    gap: 0.25rem 0;
  }
  .cart-table-row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
}
.cart-table-col {
  padding: 0 0.75rem;
}
@media (max-width: 1475px) {
  .cart-table-col {
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cart-table-col {
    width: 100% !important;
  }
  .cart-table-col::before {
    content: attr(data-title);
    font-size: 14px;
    line-height: 24px;
    color: var(--menu-color);
    font-weight: 400;
  }
}
.cart-table-col-image {
  width: 10%;
}
@media (max-width: 991px) {
  .cart-table-col-image {
    margin-bottom: 0.5rem;
  }
}
.cart-table-col-image img {
  height: 90px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.cart-table-col-name {
  width: 45%;
}
@media (max-width: 1475px) {
  .cart-table-col-name {
    width: 37.5%;
  }
}
@media (max-width: 991px) {
  .cart-table-col-name {
    margin-bottom: 0.5rem;
  }
}
.cart-table-col-name-sale {
  display: inline-flex !important;
  width: 24px !important;
  margin-right: 0 !important;
  margin-left: 0.3rem;
  position: relative;
  background-color: var(--highlight-color);
}
.cart-table-col-name-sale svg {
  fill: var(--light-color);
}
.cart-table-col-name-sale-content {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--section-color);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  min-width: 300px;
}
.cart-table-col-name-sale-content * {
  color: var(--primary-color) !important;
}
.cart-table-col-name-sale:hover .cart-table-col-name-sale-content {
  display: block;
}
.cart-table-col-name a, .cart-table-col-name span {
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: var(--secondary-color);
  width: fit-content;
  width: -moz-fit-content;
}
.cart-table-col-name span .timer {
  font-size: 15px;
  line-height: 24px;
  color: var(--highlight-color);
  font-weight: 600;
}
.cart-table-col-name a {
  font-weight: 600;
}
.cart-table-col-name a:hover {
  text-decoration: none;
  color: var(--highlight-color);
}
.cart-table-col-name span {
  font-weight: 400;
}
.cart-table-col-quantity {
  width: 10%;
}
@media (max-width: 991px) {
  .cart-table-col-quantity {
    margin-bottom: 0.5rem;
  }
}
.cart-table-col-quantity span {
  font-size: 14px;
  line-height: 24px;
  color: var(--menu-color);
  font-weight: 400;
}
.cart-table-col-quantity-form {
  border: 1px solid var(--border-color);
  display: flex;
  align-items: stretch;
  width: fit-content;
  width: -moz-fit-content;
}
.cart-table-col-quantity-form input {
  width: 50px;
  height: 55px;
  font-size: 13px;
  line-height: 21px;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: center;
  border-right: 1px solid var(--border-color);
}
.cart-table-col-quantity-form .controls {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cart-table-col-quantity-form .controls a {
  font-size: 14px;
  line-height: 21px;
  color: var(--menu-color);
  height: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.25rem;
  transition: 0.1s;
}
.cart-table-col-quantity-form .controls a:first-child {
  border-bottom: 1px solid var(--border-color);
}
.cart-table-col-quantity-form .controls a:hover {
  text-decoration: none;
  background-color: var(--border-color);
}
.cart-table-col-availability {
  width: 10%;
}
@media (max-width: 1475px) {
  .cart-table-col-availability {
    width: 12.5%;
  }
}
.cart-table-col-availability span {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
}
.cart-table-col-price1, .cart-table-col-price2 {
  width: 10%;
}
@media (max-width: 1475px) {
  .cart-table-col-price1, .cart-table-col-price2 {
    width: 12.5%;
  }
}
.cart-table-col-price1 span, .cart-table-col-price2 span {
  font-size: 14px;
  line-height: 24px;
  color: var(--menu-color);
  font-weight: 400;
}
.cart-table-col-price2 span {
  color: var(--secondary-color);
  font-weight: 700;
}
.cart-table-col-remove {
  width: 5%;
}
.cart-table-col-remove a svg {
  transition: 0.1s;
}
.cart-table-col-remove a:hover {
  text-decoration: none;
}
.cart-table-col-remove a:hover svg {
  fill: var(--highlight-color);
}
@media (max-width: 991px) {
  .cart-table-col-remove {
    width: auto !important;
    padding: 0 !important;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.cart-boxes {
  margin-top: 2.5rem;
}
.cart-boxes-row {
  gap: 1rem 0;
}
.cart-boxes-item {
  background-color: var(--section-color);
  padding: 2rem;
  height: 100%;
}
@media (max-width: 576px) {
  .cart-boxes-item {
    padding: 1.5rem;
  }
}
.cart-boxes-item-header {
  min-height: 70px;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .cart-boxes-item-header {
    margin-bottom: 1.25rem;
  }
}
.cart-boxes-item-header h3 {
  font-size: 15px;
  line-height: 24px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cart-boxes-item-header p {
  font-size: 13px;
  line-height: 23px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0;
}
.cart-boxes-item-header p a {
  color: var(--secondary-color);
}
.cart-boxes-item-facebook {
  margin-top: 1.5rem;
}
.cart-boxes-item-facebook img {
  transition: 0.25s;
}
.cart-boxes-item-facebook:hover img {
  filter: brightness(0.85);
}
.cart-boxes-item-serviceLogin {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.75rem 0.375rem 0.5rem;
  max-width: 259px;
  background-color: var(--section-color);
  border: 1px solid var(--section-color);
  border-radius: 4px;
  color: var(--dark-color) !important;
  transition: 0.25s;
  font-size: 13px !important;
}
.cart-boxes-item-serviceLogin:hover {
  text-decoration: none;
  background-color: var(--light-color);
}
.cart-boxes-item-serviceLogin img {
  height: 26px;
  width: 26px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  background-color: var(--light-color);
  border-radius: 3px;
  padding: 3px;
}
.cart-boxes-item-serviceLogin.google {
  background-color: #4285f4;
  border-color: #4285f4;
  color: var(--light-color) !important;
}
.cart-boxes-item-serviceLogin.google:hover {
  background-color: #1b71ff;
}
.cart-boxes-loyalty .cart-boxes-item-header {
  min-height: unset;
}
.cart-navigation-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.5rem 1rem;
}
.cart-product {
  position: relative;
  background-color: var(--section-color);
  padding: 2rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
@media (max-width: 576px) {
  .cart-product {
    padding: 1.5rem;
  }
}
.cart-product-imagebox {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background-color: var(--light-color);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .cart-product-imagebox {
    padding: 1.5rem;
  }
}
.cart-product-imagebox img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  height: 150px;
  aspect-ratio: 1/1;
}
@media (max-width: 576px) {
  .cart-product-imagebox img {
    height: 125px;
  }
}
.cart-product-name p {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media (max-width: 576px) {
  .cart-product-name p {
    font-size: 18px;
    line-height: 28px;
  }
}
.cart-product-price1 span {
  font-size: 14px;
  line-height: 20px;
  color: var(--menu-color);
  font-weight: 400;
  text-decoration: line-through;
  display: block;
}
.cart-product-price2 span {
  font-size: 18px;
  line-height: 24px;
  color: var(--highlight-color);
  font-weight: 700;
  display: block;
}
.cart-product-buy {
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .cart-product-buy {
    margin-top: 1rem;
  }
}
.cart-product-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 576px) {
  .cart-product-close {
    top: 1.5rem;
    right: 1.5rem;
  }
}
.cart-product-close svg {
  transition: 0.1s;
}
.cart-product-close:hover svg {
  fill: var(--highlight-color);
}

.page-status-header svg, .page-status-header img {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 125px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.page-status-header {
  margin-bottom: 1rem;
}
.page-status-table {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--section-color);
  padding: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .page-status-table {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}
.page-status-table p {
  margin-bottom: 0;
}
.page-status-table-iconbox {
  display: flex;
  align-items: center;
}
.page-status-table-iconbox:not(:last-child) {
  margin-bottom: 0.5rem;
}
.page-status-table-iconbox div {
  flex-shrink: 0;
  border-right: 1px solid var(--secondary-color);
  margin-right: 0.75rem;
  padding: 0.25rem 0.75rem 0.25rem 0;
}
.page-status-table-iconbox div svg, .page-status-table-iconbox div img {
  width: 21px;
  height: 21px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  fill: var(--secondary-color);
}
.page-status-footer {
  margin-top: 2.5rem;
}
.page-status-footer img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto 0;
}

.page-header {
  background-color: var(--light-color);
}
.page-content-logout {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--menu-color) !important;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 991px) {
  .page-content-logout {
    display: none;
  }
}
.page-footer { /*
@media (max-width: $md) {
    margin-top: 1rem;
}
*/ }

.header {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
.header-languages {
  margin: 0 0.25rem 0 0;
}
@media (max-width: 1200px) {
  .header-languages {
    margin: 1.25rem 0 0;
  }
}
.header-languages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.header-languages ul li:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.header-languages ul li a {
  font-size: 14px;
  line-height: 28px;
  color: var(--tertiary-color);
  font-weight: 700;
  padding: 0 0.5rem;
  text-decoration: none;
  transition-duration: 0.15s;
}
.header-languages ul li.active a, .header-languages ul li a:hover {
  color: var(--primary-color);
}
.header-logo img {
  max-width: 260px;
  max-height: 75px;
}
@media (max-width: 576px) {
  .header-logo img {
    max-width: 150px;
  }
}
.header-nav {
  position: unset;
  padding: 0 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.125rem;
}
@media (max-width: 1600px) {
  .header-nav {
    padding: 0 0.25rem;
  }
}
@media (max-width: 1805px) {
  .header-nav {
    gap: 0 2rem;
    padding: 2rem 0 0;
    justify-content: space-between;
  }
}
@media (max-width: 1200px) {
  .header-nav {
    padding: 2rem 0;
    gap: 0.75rem 1rem;
  }
}
@media (max-width: 576px) {
  .header-nav {
    padding: 1.5rem 0;
  }
}
@media (max-width: 370px) {
  .header-nav {
    justify-content: center;
  }
}
.header .navbar-collapse {
  justify-content: center;
}
@media (max-width: 1805px) {
  .header .navbar-collapse {
    justify-content: flex-start;
    order: 2;
  }
}
.header-popup {
  position: relative;
}
.header-popup-content {
  position: absolute;
  z-index: 2;
  top: 100%;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s;
  width: 250px;
  right: 0;
  transform: translateX(calc(50% - 19.5px));
  padding-top: 1rem;
}
@media (max-width: 576px) {
  .header-popup-content {
    padding-top: 0.5rem;
    transform: none;
    right: -87px;
  }
}
@media (max-width: 365px) {
  .header-popup-content {
    right: -126px;
  }
}
.header-popup-content-icon {
  flex-shrink: 0;
  padding: 0.5rem 0;
}
.header-popup-content-icon svg path {
  fill: var(--secondary-color) !important;
}
.header-popup-content-top {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.header-popup-content-top p {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
.header-popup-content-top p:first-child {
  font-size: 13px;
}
.header-popup-content-top p:last-child {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.header-popup-content-bottom a {
  font-size: 13px;
}
.header-popup-content-inner {
  padding: 1rem;
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 3px;
}
.header-popup:hover .header-popup-content {
  max-height: 126px;
}
@media (max-width: 576px) {
  .header-popup:hover .header-popup-content {
    max-height: 118px;
  }
}
.header-box-left, .header-box-right {
  flex: 0 0 260px;
}
@media (max-width: 1475px) {
  .header-box-left, .header-box-right {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 1475px) {
  .header-box-left, .header-box-right {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (max-width: 991px) {
  .header-box-left, .header-box-right {
    flex: unset;
  }
}
@media (max-width: 1475px) {
  .header-box-left {
    order: 0;
  }
}
@media (max-width: 1600px) {
  .header-box-right {
    order: 1;
  }
}
.header-box-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.header-box-right-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .header-box-right-icons {
    gap: 0.25rem;
  }
}
.header-box-right-icons-item, .header-box-right-icons .navbar-toggler {
  position: relative;
  width: 39px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 0.5rem;
  background-color: var(--section-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.25s;
}
@media (max-width: 420px) {
  .header-box-right-icons-item, .header-box-right-icons .navbar-toggler {
    width: 33px;
    padding: 0.33rem;
  }
}
.header-box-right-icons-item .cart-amount, .header-box-right-icons .navbar-toggler .cart-amount {
  position: absolute;
  z-index: 2;
  top: -0.25rem;
  right: -0.25rem;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--highlight-color);
  font-size: 10px;
  line-height: 11px;
  font-weight: 600;
  color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-box-right-icons-item .cart-amount.green, .header-box-right-icons .navbar-toggler .cart-amount.green {
  background-color: var(--ok-color);
}
.header-box-right-icons-item .cart-amount.green svg, .header-box-right-icons .navbar-toggler .cart-amount.green svg {
  width: 11px;
}
.header-box-right-icons-item .cart-amount.green svg, .header-box-right-icons-item .cart-amount.green svg path, .header-box-right-icons .navbar-toggler .cart-amount.green svg, .header-box-right-icons .navbar-toggler .cart-amount.green svg path {
  fill: var(--light-color);
}
.header-box-right-icons-item svg, .header-box-right-icons .navbar-toggler svg {
  max-width: 25px;
  max-width: 25px;
}
.header-box-right-icons-item svg path, .header-box-right-icons .navbar-toggler svg path {
  transition-duration: 0.25s;
}
.header-box-right-icons > * {
  cursor: pointer;
}
.header-box-right-icons > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.header-box-right-icons > *:hover .header-box-right-icons-item, .header-box-right-icons > div > *:hover .header-box-right-icons-item, .header-box-right-icons > *.active .header-box-right-icons-item {
  background-color: var(--highlight-color);
}
.header-box-right-icons > *:hover .header-box-right-icons-item path, .header-box-right-icons > div > *:hover .header-box-right-icons-item path, .header-box-right-icons > *.active .header-box-right-icons-item path {
  fill: var(--light-color);
}
.header-box-right-icons > *:hover .header-box-right-icons-item svg.svg-phone path, .header-box-right-icons > div > *:hover .header-box-right-icons-item svg.svg-phone path, .header-box-right-icons > *.active .header-box-right-icons-item svg.svg-phone path {
  stroke: var(--light-color);
  fill: var(--highlight-color);
}
.header-box-right-cart {
  font-size: 15px;
  line-height: 28px;
  color: var(--secondary-color);
  font-weight: 600;
}
@media (max-width: 991px) {
  .header-box-right-cart {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-menu {
    display: flex;
    flex-direction: column;
  }
}
.header-menu > ul {
  gap: 0.5rem 1.5rem;
}
@media (max-width: 1475px) {
  .header-menu > ul {
    gap: 0.5rem 1rem;
  }
}
@media (max-width: 1200px) {
  .header-menu > ul {
    padding: 0;
    flex-direction: column;
  }
}
.header-menu-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}
.header-menu-link > a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 2.5rem 0;
}
@media (max-width: 1805px) {
  .header-menu-link > a {
    padding: 2rem 0;
  }
}
@media (max-width: 1200px) {
  .header-menu-link > a {
    padding: 0;
  }
}
.header-menu-link > a span {
  color: var(--menu-color) !important;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s linear;
  position: relative;
  gap: 0.5rem;
}
@media (max-width: 1475px) and (min-width: 1200px) {
  .header-menu-link > a span {
    font-size: 14px;
  }
}
.header-menu-link > a span::after, .header-menu-link > a span::before {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  height: 2px;
  transition: all 0.25s linear;
  width: 0;
  bottom: 0;
}
.header-menu-link > a span::before {
  left: 50%;
}
@media (max-width: 1200px) {
  .header-menu-link > a span::before {
    left: 0;
  }
}
.header-menu-link > a span::after {
  right: 50%;
}
@media (max-width: 1200px) {
  .header-menu-link > a span::after {
    content: none;
  }
}
.header-menu-link-inner {
  display: flex;
  align-items: center;
}
.header-menu-link-green > a {
  padding: 2.125rem 0;
}
@media (max-width: 1805px) {
  .header-menu-link-green > a {
    padding: 1.625rem 0;
  }
}
@media (max-width: 1200px) {
  .header-menu-link-green > a {
    padding: 0;
  }
}
.header-menu-link-green > a > .header-menu-link-inner {
  background-color: var(--ok-color);
  padding: 0.375rem 0.875rem 0.375rem 0.75rem;
}
@media (max-width: 1475px) and (min-width: 1200px) {
  .header-menu-link-green > a > .header-menu-link-inner {
    padding: 0.25rem 0.875rem 0.375rem 0.25rem;
  }
}
.header-menu-link-green > a > .header-menu-link-inner span {
  color: var(--light-color) !important;
}
.header-menu-link-green > a > .header-menu-link-inner span::before, .header-menu-link-green > a > .header-menu-link-inner span::after {
  bottom: 2px;
  background-color: var(--light-color) !important;
}
.header-menu-link-green .header-menu-link-icon, .header-menu-link-green .cart-table-col-name-sale {
  padding: 0;
}
.header-menu-link-icon, .cart-table-col-name-sale {
  border-radius: 50%;
  width: 28px;
  padding: 0.375rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.3rem;
}
@media (max-width: 576px) {
  .header-menu-link-icon, .cart-table-col-name-sale {
    width: 31px;
  }
}
.header-menu-link-icon-green {
  background-color: var(--ok-color);
}
.header-menu-link-icon-green svg {
  margin-top: -2px;
}
.header-menu-link-icon-green svg, .header-menu-link-icon-green path {
  fill: var(--light-color);
}
.header-menu-link-icon-red {
  background-color: var(--highlight-color);
}
.header-menu-link-icon-red svg, .header-menu-link-icon-red path {
  fill: var(--light-color);
}
.header-menu-link.active > a span, .header-menu-link:hover > a span {
  color: var(--primary-color) !important;
}
.header-menu-link.active > a span::before, .header-menu-link:hover > a span::before {
  width: 50%;
}
@media (max-width: 1200px) {
  .header-menu-link.active > a span::before, .header-menu-link:hover > a span::before {
    width: 100%;
  }
}
.header-menu-link.active > a span::after, .header-menu-link:hover > a span::after {
  width: 50%;
}
.header-menu-link-green.active > a span span, .header-menu-link-green:hover > a span {
  color: var(--light-color) !important;
}
.header-menu-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--light-color);
  border-top: 1px solid var(--border-color);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1200px) and (max-height: 825px) {
  .header-menu-dropdown-menu {
    overflow-y: auto;
    max-height: 60dvh;
  }
}
@media (max-width: 991px) {
  .header-menu-dropdown-menu {
    width: auto;
    position: unset;
    padding: 0rem;
    display: none !important;
  }
}
.header-menu-dropdown-menu .title {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--secondary-color);
}
.header-menu-dropdown-menu h3 {
  color: var(--secondary-color);
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.header-menu-dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-menu-dropdown-menu ul:not(.sizes) {
  margin-top: -0.25rem;
}
.header-menu-dropdown-menu ul:not(.sizes) a {
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 28px;
  font-weight: 400;
}
.header-menu-dropdown-menu ul.sizes {
  width: fit-content;
  width: -moz-fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 1200px) {
  .header-menu-dropdown-menu ul.sizes {
    grid-template-columns: repeat(12, 1fr);
  }
}
.header-menu-dropdown-menu ul.sizes a {
  font-family: "Poppins";
  text-align: center;
  color: var(--secondary-color);
  background-color: var(--section-color);
  width: 32px;
  aspect-ratio: 1/1;
  display: block;
  font-size: 13px;
  line-height: 32px;
  font-weight: 500;
  transition-duration: 0.25s;
}
.header-menu-dropdown-menu ul.sizes a:hover {
  background-color: var(--highlight-color);
  color: var(--light-color);
  text-decoration: none;
}
@media (min-width: 1200px) {
  .header-menu-dropdown:hover .header-menu-dropdown-menu {
    display: block;
  }
}
.header-menu-dropdown-right, .header-menu-dropdown-left {
  padding: 2.5rem 0;
}
.header-menu-dropdown-left > .row {
  gap: 1.25rem 0;
}
.header-menu-dropdown-right {
  border-left: 1px solid var(--border-color);
  padding-left: 5rem;
  height: 100%;
}
@media (max-width: 1200px) {
  .header-menu-dropdown-right {
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }
}
.header .navbar-toggler, .header .navbar-toggler .animated-icon span {
  transition: background-color 0.25s;
}
.header .navbar-toggler:hover, .header .navbar-toggler.open {
  background-color: var(--highlight-color);
}
.header .navbar-toggler:hover .animated-icon span, .header .navbar-toggler.open .animated-icon span {
  background-color: var(--light-color);
}
.header .navbar-toggler .animated-icon {
  width: 19px;
  height: 19px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  cursor: pointer;
  transition: 0.5s ease-in-out;
  display: block;
}
.header .navbar-toggler .animated-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: var(--dark-color);
}
.header .navbar-toggler .animated-icon span:nth-child(1) {
  top: 2px;
}
.header .navbar-toggler .animated-icon span:nth-child(2) {
  top: 9px;
}
.header .navbar-toggler .animated-icon span:nth-child(3) {
  top: 16px;
}
.header .navbar-toggler.open .animated-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.header .navbar-toggler.open .animated-icon span:nth-child(2) {
  opacity: 0;
  left: -20px;
}
.header .navbar-toggler.open .animated-icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
.header-subpage h1 {
  font-size: 54px;
  line-height: 65px;
  font-weight: 500;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}
@media (max-width: 1200px) {
  .header-subpage h1 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .header-subpage h1 {
    margin-bottom: 0;
    text-align: center;
  }
}
.header-subpage-photo {
  margin-bottom: -5.5rem;
  display: block;
  width: 800px;
  max-height: 500px;
  aspect-ratio: 2/1;
  margin-left: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-subpage-text {
  padding-bottom: 10rem;
}
@media (max-width: 1500px) {
  .header-subpage-text {
    padding-bottom: 8rem;
  }
}
@media (max-width: 1350px) {
  .header-subpage-text {
    padding-bottom: 6rem;
  }
}
@media (max-width: 1200px) {
  .header-subpage-text {
    padding: 1.5rem 0 4rem 0;
  }
}
@media (max-width: 991px) {
  .header-subpage-text {
    padding: 2.5rem 0 4rem;
  }
}
.header-subpage-breadcrumb {
  padding-top: 1.5rem;
}
@media (max-width: 1500px) {
  .header-subpage-breadcrumb {
    padding-top: 0;
  }
}
.header-subpage-breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .header-subpage-breadcrumb ul {
    justify-content: center;
  }
}
.header-subpage-breadcrumb ul li {
  display: flex;
  align-items: center;
}
.header-subpage-breadcrumb ul li:not(:last-child)::after {
  content: "";
  width: 11px;
  height: 1px;
  background-color: var(--highlight-color);
  display: inline-block;
  margin: 0 0.75rem;
}
.header-subpage-breadcrumb ul li a {
  color: var(--secondary-color) !important;
  transition-duration: 0.15s;
  text-decoration: none;
}
.header-subpage-breadcrumb ul li a[href]:hover {
  color: var(--highlight-color) !important;
}
.header-fixed header {
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
}

.footer {
  border-top: 1px solid var(--border-color-dark);
  border-bottom: 1px solid var(--border-color-dark);
}
.footer-main {
  padding: 4rem 0 5rem;
}
@media (max-width: 1200px) {
  .footer-main {
    margin-bottom: -2rem;
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .footer-main {
    padding: 2.5rem 0;
  }
}
@media (max-width: 1200px) {
  .footer-item {
    margin-bottom: 2rem;
  }
}
.footer-item h3 {
  color: var(--light-color);
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-item-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-item-menu a, .footer-item-menu p {
  color: var(--tertiary-color);
  font-size: 13px;
  line-height: 28px;
  font-weight: 400;
}
.footer-box-title {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0;
}
.footer-payment {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  background-color: var(--light-color);
  padding: 2rem;
}
@media (max-width: 1475px) {
  .footer-payment {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer-payment {
    padding: 1.5rem;
    align-items: center;
  }
}
.footer-payment-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  flex: 1;
}
@media (max-width: 1475px) {
  .footer-payment-main {
    width: 100%;
  }
}
.footer-payment-methods, .footer-payment-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-payment-methods {
  gap: 1rem 2rem;
}
@media (max-width: 1475px) {
  .footer-payment-methods {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .footer-payment-methods {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.footer-payment-methods-item {
  display: flex;
  align-items: center;
  gap: 0.25rem 0.75rem;
}
@media (max-width: 768px) {
  .footer-payment-methods-item {
    flex-direction: column;
  }
}
.footer-payment-methods-item span {
  font-size: 14px;
  line-height: 28px;
  color: var(--primary-color);
  font-weight: 500;
}
.footer-payment-logos {
  gap: 0.75rem 1.5rem;
}
@media (max-width: 768px) {
  .footer-payment-logos {
    width: 100%;
    justify-content: center;
  }
}
.footer-socials {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .footer-socials {
    padding: 2rem 0;
  }
}
@media (max-width: 576px) {
  .footer-socials {
    flex-direction: column;
    gap: 0;
  }
}
.footer-socials h4 {
  color: var(--light-color);
}
@media (max-width: 576px) {
  .footer-socials h4 {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
  }
}
.footer-socials-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-socials-item {
  border: 1px solid var(--border-color-dark);
  border-radius: 50%;
  width: 42px;
  aspect-ratio: 1/1;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.25s;
}
.footer-socials-item:hover {
  background-color: var(--border-color-dark);
}
.footer-socials-item svg {
  width: 18px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.footer-socials-item svg path {
  fill: var(--tertiary-color);
}
.footer-cooperation {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-cooperation h4 {
  color: var(--light-color);
}
@media (max-width: 576px) {
  .footer-cooperation h4 {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
  }
}
.footer-cooperation img {
  width: 260px;
}
@media (max-width: 768px) {
  .footer-cooperation {
    padding-bottom: 2rem;
  }
  .footer-cooperation img {
    width: 175px;
  }
}
@media (max-width: 576px) {
  .footer-cooperation {
    flex-direction: column;
  }
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

.copyright {
  text-align: center;
  padding: 2rem 0;
}
.copyright p {
  margin-bottom: 0;
  color: var(--tertiary-color);
  font-size: 13px;
  line-height: 21px;
  font-weight: 400;
}
.copyright p a {
  color: var(--tertiary-color);
}
.copyright p span:not(:last-child)::after {
  content: " | ";
}
@media (max-width: 576px) {
  .copyright p span:not(:last-child)::after {
    content: none;
  }
}
@media (max-width: 576px) {
  .copyright p span {
    display: block;
  }
}

* {
  scroll-margin-top: 150px;
}

::-moz-selection {
  background-color: #e5787c;
  filter: opacity(0.5);
  color: var(--light-color);
}

::selection {
  background-color: #e5787c;
  filter: opacity(0.5);
  color: var(--light-color);
}

.disabled {
  opacity: 0.75;
}

.text-red {
  color: var(--highlight-color);
}

.text-green {
  color: var(--ok-color);
}

body {
  position: relative;
}

#form-createAccount:not(.active) .form-section-dropdown-activator .form-inputbox {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */