@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #fff;
  --default-transition-timing: 0.4s;
  --default-transition-easing: cubic-bezier(0.29, 0.63, 0.44, 1);
  --layout-site-padding: var(--layout-site-padding-mobile);
  --layout-column-grid-gap: 1rem;
  --layout-row-grid-gap: 1rem;
  --announcement-height: 4rem;
  --header-top-height: 4rem;
  --header-main-height: 4.8rem;
  --header-main-mobile-height: 4.8rem;
  --header-height: calc(var(--header-top-height) + var(--header-main-height));
  --ff-primary: "Work Sans", 'Arial', sans-serif;
  --ff-secondary: 'Knockout', 'Arial', sans-serif;
  --ff-quaternary: 'Gaisyr', 'Arial';
  --h1-xl-fs: 6rem;
  --h1-xl-2-fs: 4rem;
  --h1-fs: 3.4rem;
  --h2-fs: 2.7rem;
  --h3-fs: 2.5rem;
  --h4-fs: 2.2rem;
  --h5-fs: 2rem;
  --h6-fs: 1.8rem;
  --h1-xl-lh: 1;
  --h1-xl-2-lh: 1;
  --h1-lh: 0.9411764706;
  --h2-lh: 1;
  --h3-lh: 1;
  --h4-lh: 1;
  --h5-lh: 1;
  --h6-lh: 1;
  --body-fs-xl: 2.1rem;
  --body-fs-lg: 1.8rem;
  --body-fs-md: 1.6rem;
  --body-fs-sm: 1.3rem;
  --body-fs-xs: 1.2rem;
  --body-fs-xxs: 1rem;
  --body-lh-xl: 1.619047619;
  --body-lh-lg: 1.5555555556;
  --body-lh-md: 1.3125;
  --body-lh-sm: 1.2307692308;
  --body-lh-xs: 1.5;
  --body-lh-xxs: 1.4;
  --btn-fs: 1.3rem;
  --btn-fs-sm: 1.1rem;
  --nav-title-fs: 1.1rem;
  --nav-megamenu-link-fs: 1.2rem;
  --nav-fs: 1.1rem;
  --link-fs: 1.6rem;
  --link-sm-fs: 1.4rem;
  --copyright-fs: 1.2rem;
  --product-title-fs: 1.6rem;
  --action-title-fs: 1.6rem;
  --quote-fs: 2rem;
  --price-fs: 1.6rem;
  --discounted-price-fs: 1.4rem;
  --btn-lh: 1.1818181818;
  --btn-lh-sm: 1.1818181818;
  --nav-title-lh: 1.1818181818;
  --nav-megamenu-link-lh: 1.4166666667;
  --nav-lh: 1.2142857143;
  --link-lh: 1.625;
  --link-sm-lh: 1;
  --copyright-lh: 1.3333333333;
  --product-title-lh: 1.2;
  --quote-lh: 1.3;
  --price-lh: 1.2;
  --discounted-price-lh: 1.25;
}
@media screen and (min-width: 768px) {
  :root {
    --layout-site-padding: var(--layout-site-padding-desktop);
    --layout-column-grid-gap: 1rem;
    --layout-row-grid-gap: 1rem;
    --h1-xl-fs: 11rem;
    --h1-xl-2-fs: 7rem;
    --h1-fs: 5rem;
    --h2-fs: 4rem;
    --h3-fs: 3.4rem;
    --h4-fs: 2.8rem;
    --h5-fs: 2.5rem;
    --h6-fs: 2.1rem;
    --quote-fs: 3rem;
    --h1-xl-lh: 1;
    --h1-xl-2-lh: 1;
    --h1-lh: 1.2;
    --h2-lh: 1.2;
    --h3-lh: 1.1764705882;
    --h4-lh: 1.2;
    --h5-lh: 1.2;
    --h6-lh: 1.3333333333;
    --quote-lh: 1.3529411765;
  }
}

.no-js:not(html) {
  display: none;
}
.no-js .no-js:not(html) {
  display: block;
}
.no-js .js {
  display: none;
}

.hide {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.u-bg-primary {
  background: var(--color-primary-bg);
}

.u-bg-secondary {
  background: var(--color-secondary-bg);
}

.u-border-primary {
  border: 1px solid var(--color-primary-border);
}

.u-border-secondary {
  border: 1px solid var(--color-secondary-border);
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-uppercase {
  text-transform: uppercase;
}

.u-position-center {
  margin-left: auto;
  margin-right: auto;
}

.u-position-left {
  margin-right: auto;
}

.u-position-right {
  margin-left: auto;
}

.u-unstyled-list {
  padding-left: 0;
}
.u-unstyled-list li {
  list-style: none;
}

.u-unstyled-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

.u-ratio-container {
  position: relative;
}
.u-ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.u-ratio-container::after {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
  padding-bottom: 56.25%;
}

.u-list-inline {
  padding: 0;
  margin: 0;
}
.u-list-inline li {
  display: inline-block;
}

.u-placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.u-placeholder-background--animation {
  background-color: var(--black);
}
.no-js .u-placeholder-background--animation {
  display: none;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.opacity-O {
  opacity: 0;
}

.m-product-quick-view__subscriptions .opacity-O {
  opacity: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--ff-primary);
  font-weight: 300;
}

h1,
.h1 {
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  margin-top: 0;
  margin-bottom: 2.5rem;
}
h1--xl,
.h1--xl {
  font-size: var(--h1-xl-fs);
  line-height: var(--h1-xl-lh);
}
h1--xl-2,
.h1--xl-2 {
  font-size: var(--h1-xl-2-fs);
  line-height: var(--h1-xl-2-lh);
}

h2,
.h2 {
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  margin-top: 0;
  margin-bottom: 2.5rem;
}

h3,
.h3 {
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
  margin-top: 0;
  margin-bottom: 2rem;
}

h4,
.h4 {
  font-size: var(--h4-fs);
  line-height: var(--h4-lh);
  margin-top: 0;
  margin-bottom: 2rem;
}

h5,
.h5 {
  font-size: var(--h5-fs);
  line-height: var(--h5-lh);
  margin-top: 0;
  margin-bottom: 2rem;
}

h6,
.h6 {
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  margin-top: 0;
  margin-bottom: 2rem;
}

body,
.p {
  font-family: var(--ff-primary);
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  font-weight: 400;
  color: var(--color-primary-body);
}

p {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
p:first-of-type {
  margin-top: 0;
}

.body-fs-xl {
  font-size: var(--body-fs-xl);
  line-height: var(--body-lh-xl);
}

.body-fs-lg {
  font-size: var(--body-fs-lg);
  line-height: var(--body-lh-lg);
}

.body-fs-md {
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
}

.body-fs-sm {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}

.body-fs-xs {
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
}

.body-fs-xxs {
  font-size: var(--body-fs-xxs);
  line-height: var(--body-lh-xxs);
}

.product-title {
  font-size: var(--product-title-fs);
  line-height: var(--product-title-lh);
  font-family: var(--ff-primary) !important;
  margin-bottom: 0;
}

blockquote {
  font-weight: 400;
  font-size: var(--quote-fs);
  line-height: var(--quote-lh);
  margin-top: 0;
  margin-bottom: 2.5rem;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

*::selection {
  background-color: var(--color-secondary-bg);
}

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-color: #F8F8F8 !important;
  overflow-y: scroll;
  scroll-behavior: smooth;
  margin: 0;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
body.filter-sidebar--open #shopify-section-announcement-bar,
body.filter-sidebar--open #shopify-section-header, body.filter-sidebar--is-animating #shopify-section-announcement-bar,
body.filter-sidebar--is-animating #shopify-section-header {
  z-index: 0;
}
body.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: none;
  -ms-touch-action: none;
}

main {
  position: relative;
  z-index: 1;
}

.content-for-layout {
  isolation: isolate;
}

@media only screen and (max-width: -1px) {
  .hidden-xs-down {
    display: none !important;
  }
}
.hidden-xs-up {
  display: none !important;
}

@media only screen and (max-width: 479px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media only screen and (min-width: 480px) {
  .hidden-xs-up {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media only screen and (max-width: 989px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media only screen and (min-width: 990px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media only screen and (max-width: 1099px) {
  .hidden-xl-down {
    display: none !important;
  }
}
@media only screen and (min-width: 1100px) {
  .hidden-xl-up {
    display: none !important;
  }
}
.grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.grid--no-wrap {
  flex-wrap: nowrap;
}
.grid--center-h {
  justify-content: center;
}
.grid--left-h {
  justify-content: left;
}
.grid--right-h {
  justify-content: right;
}
.grid--top-v {
  align-items: flex-start;
}
.grid--center-v {
  align-items: center;
}
.grid--bottom-v {
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .grid--mobile-top-v {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .grid--mobile-center-v {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .grid--mobile-bottom-v {
    align-items: flex-end;
  }
}
.grid__col-offset-0 {
  margin-left: 0;
}
.grid__col-offset-right-0 {
  margin-right: 0;
}
.grid__col-1 {
  width: 8.3333333333%;
}
.grid__col-offset-1 {
  margin-left: 8.3333333333%;
}
.grid__col-offset-right-1 {
  margin-right: 8.3333333333%;
}
.grid__col-2 {
  width: 16.6666666667%;
}
.grid__col-offset-2 {
  margin-left: 16.6666666667%;
}
.grid__col-offset-right-2 {
  margin-right: 16.6666666667%;
}
.grid__col-3 {
  width: 25%;
}
.grid__col-offset-3 {
  margin-left: 25%;
}
.grid__col-offset-right-3 {
  margin-right: 25%;
}
.grid__col-4 {
  width: 33.3333333333%;
}
.grid__col-offset-4 {
  margin-left: 33.3333333333%;
}
.grid__col-offset-right-4 {
  margin-right: 33.3333333333%;
}
.grid__col-5 {
  width: 41.6666666667%;
}
.grid__col-offset-5 {
  margin-left: 41.6666666667%;
}
.grid__col-offset-right-5 {
  margin-right: 41.6666666667%;
}
.grid__col-6 {
  width: 50%;
}
.grid__col-offset-6 {
  margin-left: 50%;
}
.grid__col-offset-right-6 {
  margin-right: 50%;
}
.grid__col-7 {
  width: 58.3333333333%;
}
.grid__col-offset-7 {
  margin-left: 58.3333333333%;
}
.grid__col-offset-right-7 {
  margin-right: 58.3333333333%;
}
.grid__col-8 {
  width: 66.6666666667%;
}
.grid__col-offset-8 {
  margin-left: 66.6666666667%;
}
.grid__col-offset-right-8 {
  margin-right: 66.6666666667%;
}
.grid__col-9 {
  width: 75%;
}
.grid__col-offset-9 {
  margin-left: 75%;
}
.grid__col-offset-right-9 {
  margin-right: 75%;
}
.grid__col-10 {
  width: 83.3333333333%;
}
.grid__col-offset-10 {
  margin-left: 83.3333333333%;
}
.grid__col-offset-right-10 {
  margin-right: 83.3333333333%;
}
.grid__col-11 {
  width: 91.6666666667%;
}
.grid__col-offset-11 {
  margin-left: 91.6666666667%;
}
.grid__col-offset-right-11 {
  margin-right: 91.6666666667%;
}
.grid__col-12 {
  width: 100%;
}
.grid__col-offset-12 {
  margin-left: 100%;
}
.grid__col-offset-right-12 {
  margin-right: 100%;
}
@media only screen and (min-width: 480px) {
  .grid--no-wrap-xs {
    flex-wrap: nowrap;
  }
  .grid--center-h-xs {
    justify-content: center;
  }
  .grid--left-h-xs {
    justify-content: left;
  }
  .grid--right-h-xs {
    justify-content: right;
  }
  .grid--top-v-xs {
    align-items: flex-start;
  }
  .grid--center-v-xs {
    align-items: center;
  }
  .grid--bottom-v-xs {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .grid--mobile-top-v-xs {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .grid--mobile-center-v-xs {
    align-items: center;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .grid--mobile-bottom-v-xs {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 480px) {
  .grid__col-xs-offset-0 {
    margin-left: 0;
  }
  .grid__col-xs-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-xs-1 {
    width: 8.3333333333%;
  }
  .grid__col-xs-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-xs-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-xs-2 {
    width: 16.6666666667%;
  }
  .grid__col-xs-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-xs-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-xs-3 {
    width: 25%;
  }
  .grid__col-xs-offset-3 {
    margin-left: 25%;
  }
  .grid__col-xs-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-xs-4 {
    width: 33.3333333333%;
  }
  .grid__col-xs-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-xs-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-xs-5 {
    width: 41.6666666667%;
  }
  .grid__col-xs-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-xs-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-xs-6 {
    width: 50%;
  }
  .grid__col-xs-offset-6 {
    margin-left: 50%;
  }
  .grid__col-xs-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-xs-7 {
    width: 58.3333333333%;
  }
  .grid__col-xs-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-xs-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-xs-8 {
    width: 66.6666666667%;
  }
  .grid__col-xs-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-xs-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-xs-9 {
    width: 75%;
  }
  .grid__col-xs-offset-9 {
    margin-left: 75%;
  }
  .grid__col-xs-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-xs-10 {
    width: 83.3333333333%;
  }
  .grid__col-xs-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-xs-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-xs-11 {
    width: 91.6666666667%;
  }
  .grid__col-xs-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-xs-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-xs-12 {
    width: 100%;
  }
  .grid__col-xs-offset-12 {
    margin-left: 100%;
  }
  .grid__col-xs-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 600px) {
  .grid--no-wrap-sm {
    flex-wrap: nowrap;
  }
  .grid--center-h-sm {
    justify-content: center;
  }
  .grid--left-h-sm {
    justify-content: left;
  }
  .grid--right-h-sm {
    justify-content: right;
  }
  .grid--top-v-sm {
    align-items: flex-start;
  }
  .grid--center-v-sm {
    align-items: center;
  }
  .grid--bottom-v-sm {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .grid--mobile-top-v-sm {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .grid--mobile-center-v-sm {
    align-items: center;
  }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .grid--mobile-bottom-v-sm {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 600px) {
  .grid__col-sm-offset-0 {
    margin-left: 0;
  }
  .grid__col-sm-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-sm-1 {
    width: 8.3333333333%;
  }
  .grid__col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-sm-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-sm-2 {
    width: 16.6666666667%;
  }
  .grid__col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-sm-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-sm-3 {
    width: 25%;
  }
  .grid__col-sm-offset-3 {
    margin-left: 25%;
  }
  .grid__col-sm-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-sm-4 {
    width: 33.3333333333%;
  }
  .grid__col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-sm-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-sm-5 {
    width: 41.6666666667%;
  }
  .grid__col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-sm-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-sm-6 {
    width: 50%;
  }
  .grid__col-sm-offset-6 {
    margin-left: 50%;
  }
  .grid__col-sm-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-sm-7 {
    width: 58.3333333333%;
  }
  .grid__col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-sm-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-sm-8 {
    width: 66.6666666667%;
  }
  .grid__col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-sm-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-sm-9 {
    width: 75%;
  }
  .grid__col-sm-offset-9 {
    margin-left: 75%;
  }
  .grid__col-sm-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-sm-10 {
    width: 83.3333333333%;
  }
  .grid__col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-sm-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-sm-11 {
    width: 91.6666666667%;
  }
  .grid__col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-sm-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-sm-12 {
    width: 100%;
  }
  .grid__col-sm-offset-12 {
    margin-left: 100%;
  }
  .grid__col-sm-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .grid--no-wrap-md {
    flex-wrap: nowrap;
  }
  .grid--center-h-md {
    justify-content: center;
  }
  .grid--left-h-md {
    justify-content: left;
  }
  .grid--right-h-md {
    justify-content: right;
  }
  .grid--top-v-md {
    align-items: flex-start;
  }
  .grid--center-v-md {
    align-items: center;
  }
  .grid--bottom-v-md {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 768px) and (max-width: 768px) {
  .grid--mobile-top-v-md {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 768px) {
  .grid--mobile-center-v-md {
    align-items: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 768px) {
  .grid--mobile-bottom-v-md {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .grid__col-md-offset-0 {
    margin-left: 0;
  }
  .grid__col-md-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-md-1 {
    width: 8.3333333333%;
  }
  .grid__col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-md-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-md-2 {
    width: 16.6666666667%;
  }
  .grid__col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-md-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-md-3 {
    width: 25%;
  }
  .grid__col-md-offset-3 {
    margin-left: 25%;
  }
  .grid__col-md-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-md-4 {
    width: 33.3333333333%;
  }
  .grid__col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-md-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-md-5 {
    width: 41.6666666667%;
  }
  .grid__col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-md-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-md-6 {
    width: 50%;
  }
  .grid__col-md-offset-6 {
    margin-left: 50%;
  }
  .grid__col-md-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-md-7 {
    width: 58.3333333333%;
  }
  .grid__col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-md-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-md-8 {
    width: 66.6666666667%;
  }
  .grid__col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-md-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-md-9 {
    width: 75%;
  }
  .grid__col-md-offset-9 {
    margin-left: 75%;
  }
  .grid__col-md-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-md-10 {
    width: 83.3333333333%;
  }
  .grid__col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-md-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-md-11 {
    width: 91.6666666667%;
  }
  .grid__col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-md-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-md-12 {
    width: 100%;
  }
  .grid__col-md-offset-12 {
    margin-left: 100%;
  }
  .grid__col-md-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 990px) {
  .grid--no-wrap-lg {
    flex-wrap: nowrap;
  }
  .grid--center-h-lg {
    justify-content: center;
  }
  .grid--left-h-lg {
    justify-content: left;
  }
  .grid--right-h-lg {
    justify-content: right;
  }
  .grid--top-v-lg {
    align-items: flex-start;
  }
  .grid--center-v-lg {
    align-items: center;
  }
  .grid--bottom-v-lg {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 990px) and (max-width: 768px) {
  .grid--mobile-top-v-lg {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 990px) and (max-width: 768px) {
  .grid--mobile-center-v-lg {
    align-items: center;
  }
}
@media only screen and (min-width: 990px) and (max-width: 768px) {
  .grid--mobile-bottom-v-lg {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 990px) {
  .grid__col-lg-offset-0 {
    margin-left: 0;
  }
  .grid__col-lg-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-lg-1 {
    width: 8.3333333333%;
  }
  .grid__col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-lg-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-lg-2 {
    width: 16.6666666667%;
  }
  .grid__col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-lg-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-lg-3 {
    width: 25%;
  }
  .grid__col-lg-offset-3 {
    margin-left: 25%;
  }
  .grid__col-lg-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-lg-4 {
    width: 33.3333333333%;
  }
  .grid__col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-lg-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-lg-5 {
    width: 41.6666666667%;
  }
  .grid__col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-lg-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-lg-6 {
    width: 50%;
  }
  .grid__col-lg-offset-6 {
    margin-left: 50%;
  }
  .grid__col-lg-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-lg-7 {
    width: 58.3333333333%;
  }
  .grid__col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-lg-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-lg-8 {
    width: 66.6666666667%;
  }
  .grid__col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-lg-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-lg-9 {
    width: 75%;
  }
  .grid__col-lg-offset-9 {
    margin-left: 75%;
  }
  .grid__col-lg-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-lg-10 {
    width: 83.3333333333%;
  }
  .grid__col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-lg-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-lg-11 {
    width: 91.6666666667%;
  }
  .grid__col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-lg-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-lg-12 {
    width: 100%;
  }
  .grid__col-lg-offset-12 {
    margin-left: 100%;
  }
  .grid__col-lg-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 1100px) {
  .grid--no-wrap-xl {
    flex-wrap: nowrap;
  }
  .grid--center-h-xl {
    justify-content: center;
  }
  .grid--left-h-xl {
    justify-content: left;
  }
  .grid--right-h-xl {
    justify-content: right;
  }
  .grid--top-v-xl {
    align-items: flex-start;
  }
  .grid--center-v-xl {
    align-items: center;
  }
  .grid--bottom-v-xl {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 768px) {
  .grid--mobile-top-v-xl {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 768px) {
  .grid--mobile-center-v-xl {
    align-items: center;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 768px) {
  .grid--mobile-bottom-v-xl {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1100px) {
  .grid__col-xl-offset-0 {
    margin-left: 0;
  }
  .grid__col-xl-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-xl-1 {
    width: 8.3333333333%;
  }
  .grid__col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-xl-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-xl-2 {
    width: 16.6666666667%;
  }
  .grid__col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-xl-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-xl-3 {
    width: 25%;
  }
  .grid__col-xl-offset-3 {
    margin-left: 25%;
  }
  .grid__col-xl-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-xl-4 {
    width: 33.3333333333%;
  }
  .grid__col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-xl-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-xl-5 {
    width: 41.6666666667%;
  }
  .grid__col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-xl-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-xl-6 {
    width: 50%;
  }
  .grid__col-xl-offset-6 {
    margin-left: 50%;
  }
  .grid__col-xl-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-xl-7 {
    width: 58.3333333333%;
  }
  .grid__col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-xl-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-xl-8 {
    width: 66.6666666667%;
  }
  .grid__col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-xl-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-xl-9 {
    width: 75%;
  }
  .grid__col-xl-offset-9 {
    margin-left: 75%;
  }
  .grid__col-xl-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-xl-10 {
    width: 83.3333333333%;
  }
  .grid__col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-xl-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-xl-11 {
    width: 91.6666666667%;
  }
  .grid__col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-xl-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-xl-12 {
    width: 100%;
  }
  .grid__col-xl-offset-12 {
    margin-left: 100%;
  }
  .grid__col-xl-offset-right-12 {
    margin-right: 100%;
  }
}

.a-logo__link svg {
  display: block;
}

.a-badge {
  padding: 1rem 1.6rem;
  display: inline-block;
  background-color: var(--color-primary-badge);
  color: var(--color-primary-body);
  border-radius: 0.6rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2;
}
.a-badge--sm {
  font-size: var(--body-fs-xxs);
  line-height: var(--body-lh-xxs);
}
.a-badge--primary {
  background-color: var(--color-primary-badge);
  color: var(--color-primary-body);
}
.a-badge--secondary {
  background-color: var(--color-secondary-badge);
  color: var(--color-tertiary-body);
}
.a-badge--tertiary {
  background-color: var(--color-tertiary-badge);
  color: var(--color-primary-body);
}
.a-badge--quaternary {
  background-color: var(--color-quaternary-badge);
  color: var(--color-primary-body);
}
.a-badge--quinary {
  background-color: var(--color-quinary-badge);
  color: var(--color-white);
}
.a-badge__divider {
  font-size: var(--body-fs-sm);
}
.a-badge--green {
  background-color: var(--color-primary-body) !important;
  color: var(--color-primary-badge) !important;
}
.a-badge--mint {
  background-color: var(--mint-background-color);
  color: var(--mint-text-color);
}
.a-badge--manual {
  background-color: #00EA93;
  color: #000;
}
.a-badge--text {
  background-color: transparent;
  color: var(--color-primary-body);
  padding: 0;
}

.a-btn, .shopify-challenge__container .btn, .m-product-form .shopify-payment-button__button {
  padding: 1.5rem 2.4rem;
  font-family: var(--ff-primary);
  font-size: var(--btn-fs);
  line-height: var(--btn-lh);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}
.a-btn a, .shopify-challenge__container .btn a, .m-product-form .shopify-payment-button__button a {
  text-decoration: none;
}
.a-btn p, .shopify-challenge__container .btn p, .m-product-form .shopify-payment-button__button p {
  margin: 0;
  width: 100%;
}
.a-btn--primary, .shopify-challenge__container .btn, .m-product-form .shopify-payment-button__button {
  background-color: var(--color-primary);
  color: var(--color-tertiary-body);
  border: 1px solid var(--color-primary);
}
.a-btn--primary.active, .shopify-challenge__container .active.btn, .m-product-form .active.shopify-payment-button__button, .a-btn--primary:hover, .shopify-challenge__container .btn:hover, .m-product-form .shopify-payment-button__button:hover {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.a-btn--primary.active.a-btn--has-icon .icon path, .shopify-challenge__container .active.a-btn--has-icon.btn .icon path, .m-product-form .active.a-btn--has-icon.shopify-payment-button__button .icon path, .a-btn--primary:hover.a-btn--has-icon .icon path, .shopify-challenge__container .btn:hover.a-btn--has-icon .icon path, .m-product-form .shopify-payment-button__button:hover.a-btn--has-icon .icon path {
  fill: var(--color-primary);
}
.a-btn--primary.a-btn--has-icon .icon path, .shopify-challenge__container .a-btn--has-icon.btn .icon path, .m-product-form .a-btn--has-icon.shopify-payment-button__button .icon path {
  fill: var(--color-tertiary-body);
}
.a-btn--secondary {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.a-btn--secondary a {
  color: var(--color-primary);
}
.a-btn--secondary.active, .a-btn--secondary:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-tertiary-body);
}
.a-btn--secondary.active a, .a-btn--secondary:hover a {
  color: var(--color-tertiary-body);
}
.a-btn--secondary.active.a-btn--has-icon .icon path, .a-btn--secondary:hover.a-btn--has-icon .icon path {
  fill: var(--color-tertiary-body);
}
.a-btn--secondary.a-btn--has-icon .icon path {
  fill: var(--color-primary);
}
.a-btn--tertiary {
  background-color: white;
  color: var(--color-primary-body);
  border: none;
}
.a-btn--tertiary.active, .a-btn--tertiary:hover {
  background-color: var(--color-primary);
  color: var(--color-tertiary-body);
}
.a-btn--tertiary.active.a-btn--has-icon .icon path, .a-btn--tertiary:hover.a-btn--has-icon .icon path {
  fill: var(--color-tertiary-body);
}
.a-btn--tertiary.a-btn--has-icon .icon path {
  fill: var(--color-primary-body);
}
.a-btn--quaternary {
  background-color: white;
  color: var(--color-primary-body);
  border: none;
}
.a-btn--quaternary.a-btn--has-icon .icon path {
  fill: var(--color-primary-body);
}
.a-btn--quinary {
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.a-btn--quinary a {
  color: var(--color-white);
}
.a-btn--quinary.active, .a-btn--quinary:hover {
  background-color: white;
  color: var(--color-primary-body);
}
.a-btn--quinary.active a, .a-btn--quinary:hover a {
  color: var(--color-primary-body);
}
.a-btn--quinary.active.a-btn--has-icon .icon path, .a-btn--quinary:hover.a-btn--has-icon .icon path {
  fill: var(--color-primary-body);
}
.a-btn--quinary.a-btn--has-icon .icon path {
  fill: var(--color-white);
}
.a-btn--link {
  padding: 0 !important;
  color: var(--color-primary-body);
}
.a-btn--link.a-btn--has-icon .icon path {
  fill: var(--color-quaternary-body);
}
.a-btn--transparent {
  background-color: transparent;
  border: 1px solid var(--color-primary-border);
  border-radius: 0;
}
.a-btn--has-icon {
  justify-content: space-between;
  padding-right: 1.6rem;
  text-align: left;
}
.a-btn--has-icon .icon {
  vertical-align: middle;
  width: 1.5rem;
  min-width: 1.5rem;
  height: auto;
}
.a-btn--has-icon .icon path {
  transition: fill 0.35s ease;
}
.a-btn--has-icon span {
  vertical-align: middle;
}
.a-btn--small {
  font-size: var(--btn-fs-sm);
  line-height: var(--btn-lh-sm);
}
.a-btn--full-width {
  width: 100%;
}
.a-btn:disabled, .shopify-challenge__container .btn:disabled, .m-product-form .shopify-payment-button__button:disabled {
  background-color: var(--color-secondary-bg);
  border: 1px solid var(--color-secondary-bg);
  color: var(--color-primary-body);
  cursor: not-allowed;
  opacity: 0.5;
}
.a-btn:disabled:hover, .shopify-challenge__container .btn:disabled:hover, .m-product-form .shopify-payment-button__button:disabled:hover {
  background-color: var(--color-secondary-bg);
  border: 1px solid var(--color-secondary-bg);
  color: var(--color-primary-body);
}

.a-img__ratio--1x1 {
  object-fit: cover;
  aspect-ratio: 1/1;
}
.a-img__ratio--2x3 {
  object-fit: cover;
  aspect-ratio: 2/3;
}
.a-img__ratio--3x2 {
  object-fit: cover;
  aspect-ratio: 3/2;
}
.a-img__ratio--4x3 {
  object-fit: cover;
  aspect-ratio: 4/3;
}
.a-img__ratio--3x4 {
  object-fit: cover;
  aspect-ratio: 3/4;
}
.a-img__ratio--4x5 {
  object-fit: cover;
  aspect-ratio: 4/5;
}
.a-img__ratio--16x9 {
  object-fit: cover;
  aspect-ratio: 16/9;
}

.a-link,
.rte a {
  font-family: var(--ff-primary);
  font-weight: 500;
  display: inline-block;
  color: var(--color-primary-body);
  border: none;
  text-decoration: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.a-link:hover,
.rte a:hover {
  color: var(--color-primary);
}
.a-link.disabled, .a-link:disabled,
.rte a.disabled,
.rte a:disabled {
  color: var(--color-primary-border);
}

.a-link {
  font-size: var(--link-fs);
  line-height: var(--link-lh);
}
.a-link--small {
  font-size: var(--link-sm-fs);
  line-height: var(--link-sm-lh);
}
.a-link--has-line {
  text-decoration: underline;
  text-underline-offset: 0.6rem;
}
.a-link--has-icon .icon {
  margin-left: 0.5rem;
  vertical-align: middle;
  width: 2rem;
  height: auto;
}
.a-link--has-icon .icon path {
  fill: currentColor;
  transition: fill 0.35s ease;
}
.a-link--has-icon span {
  vertical-align: middle;
}
.a-link:hover--has-icon .icon path {
  fill: var(--color-primary);
}

.a-checkbox {
  margin: 2rem 0;
}
.a-checkbox__input,
.a-checkbox input[type=checkbox] {
  display: none;
}
.a-checkbox__label {
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  color: var(--color-primary-body);
  position: relative;
  display: block;
  padding-left: 2.8rem;
  cursor: pointer;
}
.a-checkbox__label a {
  color: inherit;
}
.a-checkbox__label::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: var(--color-white);
  border: 1px solid var(--color-primary-border);
  position: absolute;
  left: 0;
  top: 0.4rem;
  border-radius: 0;
}
.a-checkbox__label.a-checkbox__label--small {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding-left: 2.4rem;
}
.a-checkbox__label.a-checkbox__label--small::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  top: 0.3rem;
}
.a-checkbox__input.error + .a-checkbox__label, input[type=checkbox].error + .a-checkbox__label {
  color: var(--color-state-error);
}
.a-checkbox__input.error + .a-checkbox__label::before, input[type=checkbox].error + .a-checkbox__label::before {
  border-color: var(--color-state-error);
}
.a-checkbox__input:checked + .a-checkbox__label, input[type=checkbox]:checked + .a-checkbox__label {
  cursor: pointer;
}
.a-checkbox__input:checked + .a-checkbox__label::before, input[type=checkbox]:checked + .a-checkbox__label::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.a-checkbox__input:checked + .a-checkbox__label::after, input[type=checkbox]:checked + .a-checkbox__label::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.6rem;
  transform: rotate(45deg);
  height: 0.9rem;
  width: 0.5rem;
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}
.a-checkbox__input:checked + .a-checkbox__label.a-checkbox__label--small::after, input[type=checkbox]:checked + .a-checkbox__label.a-checkbox__label--small::after {
  height: 0.8rem;
  width: 0.5rem;
  left: 0.4rem;
  top: 0.5rem;
}
.a-checkbox--disabled {
  opacity: 0.5;
}

.a-radio {
  margin: 2rem 0;
}
.a-radio__input {
  display: none;
}
.a-radio__label {
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  color: var(--color-primary-body);
  position: relative;
  display: block;
  padding-left: 2.8rem;
  cursor: pointer;
}
.a-radio__label::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: var(--color-white);
  border: 1px solid black;
  border-radius: 0.1rem;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.a-radio__label.a-radio__label--small {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding-left: 2.4rem;
}
.a-radio__label.a-radio__label--small::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
}
.a-radio__input:checked + .a-radio__label {
  cursor: pointer;
}
.a-radio__input:checked + .a-radio__label::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: black;
  position: absolute;
  top: 0.7rem;
  left: 0.3rem;
}
.a-radio__input:checked + .a-radio__label.a-radio__label--small::after {
  width: 0.4rem;
  height: 0.4rem;
  left: 0.5rem;
  top: 0.9rem;
}

.a-input {
  margin: 1.5rem 0;
  text-align: left;
}
.a-input__label,
.a-input label {
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  margin-bottom: 0.5rem;
  display: none;
}
.a-input__field, .a-input__textarea {
  color: var(--color-primary-body);
  background-color: transparent;
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: 1.4rem;
  line-height: 1.3;
  padding: 1.4rem 1.2rem;
  border: 1px solid #CBD6D4;
  width: 100%;
  min-height: 4rem;
  box-shadow: none;
  border-radius: 0.3rem;
}
.a-input__field--has-button-right, .a-input__textarea--has-button-right {
  padding-right: 4rem;
}
.a-input__field.a-input__field--transparent, .a-input__textarea.a-input__field--transparent {
  background-color: transparent;
}
.a-input__field.error, .a-input__textarea.error {
  color: var(--color-state-error);
  border-color: var(--color-state-error);
}
.a-input__field:focus, .a-input__field:focus-visible, .a-input__textarea:focus, .a-input__textarea:focus-visible {
  outline: none;
}
.a-input__textarea {
  resize: none;
  height: 12rem;
  width: 100%;
  box-shadow: none;
  outline: none;
}
.a-input__error {
  color: var(--color-state-error);
}
.a-input__vat-error:first-of-type {
  margin-top: 0.5rem;
}

input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

::-webkit-input-placeholder {
  color: var(--color-primary-body);
}

::-moz-placeholder {
  color: var(--color-primary-body);
}

::-ms-placeholder {
  color: var(--color-primary-body);
}

::placeholder {
  color: var(--color-primary-body);
}

.a-select {
  margin: 1.5rem 0;
  text-align: left;
}
.a-select__label {
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  border-radius: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.a-select__field:not(.ts-wrapper) {
  color: var(--color-primary-body);
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding: 1.5rem;
  border: 1px solid var(--color-primary-border);
  width: 100%;
  min-height: 4rem;
  box-shadow: none;
  border-radius: 1.5rem;
}
.a-select__field:not(.ts-wrapper).a-input__field--transparent {
  background-color: transparent;
}
.a-select__field:not(.ts-wrapper).error {
  color: var(--color-state-error);
  border-color: var(--color-state-error);
}
.a-select__field:not(.ts-wrapper):focus, .a-select__field:not(.ts-wrapper):focus-visible {
  color: var(--color-primary-border);
  border-color: var(--black);
  outline: none;
}

/**
 * tom-select.css (v2.4.3)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 0) 8px calc(8px - 2px - 3px - 0);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: rgb(124.5, 124.5, 124.5);
  background: white;
  border: 0 solid white;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}

:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.ts-dropdown.single,
.ts-dropdown {
  margin-top: 0;
  background-color: rgb(248, 248, 248);
  border: none;
}
.ts-dropdown.single .active,
.ts-dropdown .active {
  background-color: var(--color-secondary-bg);
  color: var(--color-primary-body);
}
.ts-dropdown.single .option,
.ts-dropdown .option {
  font-family: var(--ff-primary);
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
  padding: 0.8rem 2.4rem !important;
  font-weight: 500;
  letter-spacing: 0.03rem;
}

.ts-wrapper.single.dropdown-active .ts-control {
  background-color: rgb(248, 248, 248);
  border-radius: 3px 3px 0 0;
}

.ts-wrapper.single.dropdown-active .ts-dropdown {
  border-radius: 0px 0px 3px 3px;
}

.ts-dropdown-content {
  max-height: 18rem;
  padding: 0.5rem 0;
}

.ts-wrapper.single .ts-control:after {
  content: " ";
  display: block;
  position: absolute;
  display: block;
  border: none;
  background-image: url('data:image/svg+xml,<svg class="icon icon-caret" width="13" height="13" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z" fill="currentColor"></path></svg>');
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}

.ts-wrapper.single.dropdown-active .ts-control::after {
  transform: rotate(180deg) translateY(50%);
}

.ts-wrapper.single.input-active .ts-control,
.ts-wrapper.single.input-active .ts-control input {
  cursor: pointer;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background-color: rgb(248, 248, 248);
}

.ts-wrapper.single .ts-control {
  color: var(--color-primary-body);
  background-color: rgb(248, 248, 248);
  background-image: none;
  font-weight: 500;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
  letter-spacing: 0.03rem;
  padding: 1.7rem 3.4rem 1.7rem 2.4rem !important;
  border: none;
  border-radius: 3px;
  width: 100%;
  box-shadow: none;
}
.ts-wrapper.single .ts-control:focus, .ts-wrapper.single .ts-control:focus-visible {
  outline: none;
}

.ts-wrapper.a-select__field--inline .ts-control, .ts-wrapper.single.a-select__field--inline .ts-control {
  border: none;
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  min-height: auto;
}
.ts-wrapper.a-select__field--inline .ts-control::after, .ts-wrapper.single.a-select__field--inline .ts-control::after {
  height: 1.6rem;
  width: 1.6rem;
  top: 52%;
  right: 1rem;
}
.ts-wrapper.a-select__field--inline .ts-dropdown.single,
.ts-wrapper.a-select__field--inline .ts-dropdown, .ts-wrapper.single.a-select__field--inline .ts-dropdown.single,
.ts-wrapper.single.a-select__field--inline .ts-dropdown {
  border-radius: 1.5rem;
  border: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  min-width: 14rem;
  left: auto;
  right: 0;
}

.a-video {
  position: relative;
}
.a-video video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.a-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}
.a-video__play-button {
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  position: relative;
  width: 4rem;
  height: 4rem;
}
.a-video__play-button .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.4rem;
  height: 2.4rem;
  transform: translate(-50%, -50%);
}
.a-video__video-url {
  position: relative;
  padding-bottom: 56.25%;
}
.a-video__video-url iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

.a-hamburger {
  position: relative;
  display: block;
  width: 2.8rem;
  height: 0.1rem;
  color: inherit;
}
.a-hamburger span, .a-hamburger::before, .a-hamburger::after {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  border-bottom: 0.1rem solid var(--color-primary-body);
  border-radius: 2px;
}
.a-hamburger span {
  transform: scale(1, 1);
  transform-origin: top left;
  transition-delay: 0.4s, 0.3s;
  transition-duration: 0.2s;
  transition-property: transform, background-color;
  transition-timing-function: ease-in-out;
  width: 2rem;
}
.a-hamburger::before, .a-hamburger::after {
  content: "";
  transition-delay: 0s, 0.2s, 0.3s;
  transition-duration: 0.2s;
  transition-property: transform, top, background-color;
  transition-timing-function: ease-in-out;
}
.a-hamburger::before {
  top: -0.6rem;
}
.a-hamburger::after {
  top: 0.6rem;
}
.sidebar--open .a-hamburger span {
  transform: scale(0, 1);
  transform-origin: top right;
  transition-delay: 0s, 0s, 0s;
}
.sidebar--open .a-hamburger::before, .sidebar--open .a-hamburger::after {
  top: 0;
  transition-delay: 0.4s, 0.2s, 0s;
}
.sidebar--open .a-hamburger::before {
  transform: rotate(-45deg);
}
.sidebar--open .a-hamburger::after {
  transform: rotate(45deg);
}

.a-loader {
  animation: 2s linear infinite svg-animation;
  width: 2rem;
}
.a-loader circle {
  animation: 1.4s ease-in-out infinite both circle-animation;
  display: block;
  fill: transparent;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 280;
  stroke-width: 10px;
  transform-origin: 50% 50%;
}
.a-loader.a-loader--dark circle {
  stroke: currentColor;
}
.a-loader.a-loader--light circle {
  stroke: currentColor;
}

@keyframes svg-animation {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes circle-animation {
  0%, 25% {
    stroke-dashoffset: 280;
    transform: rotate(0);
  }
  50%, 75% {
    stroke-dashoffset: 75;
    transform: rotate(45deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(360deg);
  }
}
.a-hide {
  display: none !important;
}
.a-hide--mobile-tablet {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .a-hide--mobile-tablet {
    display: block !important;
  }
}
.a-hide--mobile-desktop {
  display: none !important;
}
@media screen and (min-width: 1100px) {
  .a-hide--mobile-desktop {
    display: block !important;
  }
}
.a-hide--tablet {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .a-hide--tablet {
    display: none !important;
  }
}
.a-hide--desktop {
  display: block !important;
}
@media screen and (min-width: 1100px) {
  .a-hide--desktop {
    display: none !important;
  }
}

.a-hide-flex {
  display: none !important;
}
.a-hide-flex--mobile-tablet {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .a-hide-flex--mobile-tablet {
    display: flex !important;
  }
}
.a-hide-flex--mobile-desktop {
  display: none !important;
}
@media screen and (min-width: 1100px) {
  .a-hide-flex--mobile-desktop {
    display: flex !important;
  }
}
.a-hide-flex--tablet {
  display: flex !important;
}
@media screen and (min-width: 768px) {
  .a-hide-flex--tablet {
    display: none !important;
  }
}
.a-hide-flex--desktop {
  display: flex !important;
}
@media screen and (min-width: 1100px) {
  .a-hide-flex--desktop {
    display: none !important;
  }
}

.R-ReviewsioLogo,
.R-PlatformLogo {
  display: none !important;
}

.ElementsWidget-prefix .R-AvatarThumbnail .R-AvatarThumbnail__inner {
  background-color: var(--color-primary) !important;
  color: var(--color-tertiary-body) !important;
}
.ElementsWidget-prefix .R-TabControls .R-TabControls__item {
  color: var(--color-secondary-body) !important;
}
.ElementsWidget-prefix .R-TabControls .R-TabControls__item.isActive {
  color: var(--color-primary-body) !important;
  border-bottom-color: var(--color-primary) !important;
}
.ElementsWidget-prefix .R-Field--leftIcon .R-Field__icon {
  color: var(--color-secondary-body) !important;
}
.ElementsWidget-prefix .ElementsWidget .ElementsWidget__header .header__group .R-Button {
  border-radius: 1.5rem;
}
.ElementsWidget-prefix .ElementsWidget .ElementsWidget__search .R-Field__input {
  color: var(--color-secondary-body) !important;
}
.ElementsWidget-prefix .ElementsWidget .ElementsWidget__search .R-Field__input::placeholder {
  color: var(--color-secondary-body) !important;
}
.ElementsWidget-prefix .ElementsWidget .R-ContentList .R-ContentList__item {
  border-bottom: 0.5px solid rgba(var(--rgb-primary), 0.5) !important;
}

.ruk-icon-percentage-star--100:before,
.stars__icon--100:before {
  content: "" !important;
  width: 11px;
  display: inline-block;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 19 21" height="21" width="19"><g clip-path="url(%23clip0_5839_7168)"><path fill="%2300EA93" d="M9.53945 15.9002L3.9323 18.9286L5.00317 12.5144L0.466894 7.97183L6.73587 7.03601L9.53945 1.2002L12.343 7.03601L18.612 7.97183L14.0757 12.5144L15.1466 18.9286L9.53945 15.9002Z" clip-rule="evenodd" fill-rule="evenodd"></path></g><defs><clipPath id="clip0_5839_7168"><rect fill="white" height="21" width="19"></rect></clipPath></defs></svg>') !important;
}

.ruk-icon-percentage-star--75:before,
.stars__icon--75:before {
  content: "" !important;
  width: 11px;
  display: inline-block;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/cdn/shop/files/75.svg?v=1727704998") !important;
}

.ruk-icon-percentage-star--50:before,
.stars__icon--50:before {
  content: "" !important;
  width: 11px;
  display: inline-block;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/cdn/shop/files/50.svg?v=1727704998") !important;
}

.ruk-icon-percentage-star--25:before,
.stars__icon--25:before {
  content: "" !important;
  width: 11px;
  display: inline-block;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/cdn/shop/files/25.svg?v=1727704997") !important;
}

.ruk-icon-percentage-star--0:before,
.stars__icon--0:before {
  content: "" !important;
  width: 11px;
  display: inline-block;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 19 21" height="21" width="19"><g clip-path="url(%23clip0_5839_7168)"><path fill="%2300EA93" d="M9.53945 15.9002L3.9323 18.9286L5.00317 12.5144L0.466894 7.97183L6.73587 7.03601L9.53945 1.2002L12.343 7.03601L18.612 7.97183L14.0757 12.5144L15.1466 18.9286L9.53945 15.9002Z" clip-rule="evenodd" fill-rule="evenodd"></path></g><defs><clipPath id="clip0_5839_7168"><rect fill="white" height="21" width="19"></rect></clipPath></defs></svg>') !important;
}

.m-reviews__stars.ruk_rating_snippet {
  display: flex;
  align-items: center;
}
.m-reviews__stars.ruk_rating_snippet .ruk-rating-snippet-count {
  position: initial;
  line-height: 1em;
  margin-left: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary-body);
  margin-left: 4px;
}
@media (max-width: 767px) {
  .m-reviews__stars.ruk_rating_snippet .ruk-rating-snippet-count {
    font-size: 11px;
  }
}
.m-reviews__stars.ruk_rating_snippet i {
  line-height: 1;
  font-size: 13px;
}
.m-reviews__stars.ruk_rating_snippet > span:empty {
  display: none;
}

/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-pagination-progressbar {
  /*ADD_HOST*/
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  --swiper-theme-color: var(--color-primary);
}

.swiper-initialized .swiper-wrapper.vw-product-widgets-container {
  overflow: visible;
}

.swiper-wrapper {
  box-sizing: border-box;
}

.m-swiper.swiper {
  position: static;
}
.m-swiper__controllers {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .m-swiper__controllers {
    margin-top: 4rem;
  }
}
.m-swiper__pagination {
  flex: 1;
}
.m-swiper__pagination .swiper-pagination {
  position: relative;
  display: flex;
}
.m-swiper__pagination .swiper-pagination-bullet {
  height: 1px;
  border-radius: 0;
  margin: 0 !important;
  flex: 1;
  background: var(--color-primary-border);
  opacity: 1;
}
.m-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--color-quaternary-body);
}
.m-swiper__navigation {
  display: block;
  margin-left: auto;
}
.m-swiper__navigation-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.m-swiper .m-swiper__arrow {
  width: 3.9rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-body);
  border: 1px solid var(--color-primary-body);
  border-radius: 3px;
  position: relative;
  margin: 0;
}
.m-swiper .m-swiper__arrow svg {
  width: 1.5rem;
  height: auto;
}
.m-swiper .m-swiper__arrow svg path {
  fill: var(--color-primary-body);
}
.m-swiper .m-swiper__arrow::after {
  content: "";
}
.m-swiper .m-swiper__arrow--prev {
  left: 0;
}
.m-swiper .m-swiper__arrow--next {
  right: 0;
}
@media screen and (min-width: 768px) {
  .m-swiper .m-swiper__arrow--large {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.m-swiper .m-swiper__arrow--secondary {
  background-color: var(--color-secondary);
}
.m-swiper .m-swiper__arrow.swiper-button-lock {
  display: none;
}

.rte img {
  max-width: 100%;
  height: auto;
}
.rte table {
  --border-color: var(--color-primary-body);
  margin: 3.2rem 0;
  width: 100%;
  border: 1px solid var(--border-color);
  border-collapse: collapse;
}
.rte table th,
.rte table td {
  border: 1px solid var(--border-color);
  padding: 0.2em 0.5em;
}
.rte table th {
  text-align: left;
  background-color: var(--color-primary-bg);
}
.rte table tr:nth-child(odd) td {
  background-color: var(--color-primary-bg);
}
.rte iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-block: 1rem;
}

.a-spacing--content[data-top=small] {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-top=small] {
    margin-top: 1.5rem;
  }
}
.a-spacing--content[data-bottom=small] {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-bottom=small] {
    margin-bottom: 1.5rem;
  }
}
.a-spacing--content[data-top=medium] {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-top=medium] {
    margin-top: 2.5rem;
  }
}
.a-spacing--content[data-bottom=medium] {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-bottom=medium] {
    margin-bottom: 2.5rem;
  }
}
.a-spacing--content[data-top=large] {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-top=large] {
    margin-top: 3.5rem;
  }
}
.a-spacing--content[data-bottom=large] {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-bottom=large] {
    margin-bottom: 3.5rem;
  }
}
.a-spacing--content[data-top=extra-large] {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-top=extra-large] {
    margin-top: 5rem;
  }
}
.a-spacing--content[data-bottom=extra-large] {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-bottom=extra-large] {
    margin-bottom: 5rem;
  }
}
.a-spacing--content[data-top=none] {
  margin-top: 0;
}
.a-spacing--content[data-bottom=none] {
  margin-bottom: 0;
}
.a-spacing--border-bottom {
  border-bottom: 1px solid rgb(var(--rgb-primary-border));
}
.a-spacing--border-bottom[data-bottom=small] {
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--border-bottom[data-bottom=small] {
    padding-bottom: 1.5rem;
  }
}
.a-spacing--border-bottom[data-bottom=medium] {
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--border-bottom[data-bottom=medium] {
    padding-bottom: 2.5rem;
  }
}
.a-spacing--border-bottom[data-bottom=large] {
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--border-bottom[data-bottom=large] {
    padding-bottom: 3.5rem;
  }
}
.a-spacing--border-bottom[data-bottom=extra-large] {
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--border-bottom[data-bottom=extra-large] {
    padding-bottom: 5rem;
  }
}
.a-spacing--border-bottom[data-bottom=none] {
  padding-bottom: 0;
}

.m-localization {
  display: flex;
  gap: 2px;
  align-items: center;
  cursor: pointer;
  font-size: var(--nav-fs);
  line-height: var(--nav-lh);
  letter-spacing: 1px;
  font-weight: 500;
}
.m-localization svg {
  width: 14px;
}
.m-localization.grid {
  width: auto;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .m-localization.grid {
    flex-direction: row;
  }
}

.m-top-nav + .m-localization {
  padding-left: 2.5rem;
}

.m-top-nav__list {
  gap: 1rem 2.5rem;
}
.m-top-nav__link {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  color: var(--color-primary-body);
  text-decoration: none;
}

.m-main-nav {
  height: 100%;
}
.m-main-nav__list {
  height: 100%;
  gap: 1rem 2rem;
  margin: 0;
}
@media screen and (min-width: 1250px) {
  .m-main-nav__list {
    gap: 1rem 3rem;
  }
}
.m-main-nav__block {
  flex: 1;
  gap: 1.5rem;
}
@media screen and (min-width: 1100px) {
  .m-main-nav__block {
    gap: 2.2rem;
  }
}
.m-main-nav__block--right {
  justify-content: flex-end;
}
.m-main-nav__block .m-main-nav__item {
  height: auto;
}
.m-main-nav__block .m-main-nav__item--1 {
  margin-left: 4.8rem;
}
.m-main-nav__item, .m-main-nav__block {
  height: 100%;
  display: flex;
  align-items: center;
}
.m-main-nav__item.a-btn, .m-main-nav__block.a-btn {
  padding: 0.5rem 1.6rem;
}
.m-main-nav__item.a-btn span, .m-main-nav__block.a-btn span {
  margin-right: 0;
}
.m-main-nav__link {
  font-size: var(--nav-fs);
  line-height: var(--nav-lh);
  text-align: center;
  letter-spacing: 1px;
  color: var(--color-primary-body);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.m-main-nav__link span {
  margin-right: 0.5rem;
}
.m-main-nav__link span,
.m-main-nav__link .icon {
  display: inline-block;
  vertical-align: middle;
}
.m-main-nav__badge {
  transform: translateY(-0.5rem);
}
.m-main-nav__item--has-general-children {
  position: relative;
}
.m-main-nav__item--has-general-children:hover .m-main-nav__sub-item-general {
  opacity: 1;
  visibility: visible;
}
.m-main-nav__sub-item-general {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  max-width: 200px;
  background-color: white;
  padding: 1rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.m-main-nav__sub-item-general-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.m-main-nav__sub-item-general-list-item-link {
  text-decoration: none;
  color: var(--color-primary);
  font-size: var(--nav-fs);
  line-height: var(--nav-lh);
  font-weight: 400;
  display: inline-block;
}

.u-menu-aim__item .m-main-nav__link .icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}
.u-menu-aim__item--active .m-main-nav__link .icon {
  transform: rotate(-180deg);
}

.m-footer-column__item {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .m-footer-column__item:last-child.m-footer-column__accordion-content {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.m-footer-column__item--accordion-header {
  margin-bottom: 0;
}
.m-footer-column__social-icons .m-list-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .m-footer-column__social-icons .m-list-social {
    justify-content: flex-start;
    gap: 1rem;
  }
}
.m-footer-column__social-icons svg, .m-footer-column__social-icons .m-list-social__item, .m-footer-column__social-icons .m-list-social__link {
  color: currentColor;
}
.m-footer-column__social-icons svg path {
  fill: currentColor !important;
}
.m-footer-column--no-accordion {
  margin-top: 1.5rem;
}
.m-footer-column--no-accordion .m-footer-column__menu {
  margin-top: 1.5rem;
}
.m-footer-column--no-accordion .m-footer-column__item {
  margin-bottom: 1.5rem;
}
.m-footer-column__logo svg {
  display: block;
}
.m-footer-column__list {
  margin: 0;
}
.m-footer-column__heading {
  line-height: var(--body-lh-sm);
}
.m-footer-column__description {
  max-width: 20rem;
}
.m-footer-column__description, .m-footer-column__list-item, .m-footer-column__link, .m-footer-column__newsletter {
  color: currentColor;
}
.m-footer-column__language-selector .ts-wrapper.single .ts-control {
  color: currentColor;
  background-color: transparent;
  border: 1px solid currentColor;
  border-radius: 0;
}
.m-footer-column__language-selector .ts-wrapper.single .ts-control:after {
  content: url("data:image/svg+xml,%3Csvg class='icon icon-caret' width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z' fill='white'/%3E%3C/svg%3E%0A");
}
.m-footer-column__language-selector .ts-wrapper.single.dropdown-active .ts-dropdown {
  border-radius: 0;
}
.m-footer-column__newsletter .a-input__field,
.m-footer-column__newsletter .a-btn {
  border-color: currentColor;
  color: currentColor;
}
.m-footer-column__newsletter .a-input__field::placeholder {
  color: currentColor;
}
.m-footer-column__newsletter .m-newsletter-form {
  margin-top: -0.7rem;
}
.m-footer-column__link {
  text-decoration: none;
  transition: color 0.35s ease;
}
.m-footer-column__link:hover {
  opacity: 0.8;
}
.m-footer-column .icon-plus path,
.m-footer-column .icon-minus path {
  fill: currentColor;
}
.m-footer-column .klaviyo-form .needsclick .kl-private-reset-css-Xuajs1 input[type=checkbox] ~ label {
  flex-basis: 100% !important;
}
@media screen and (min-width: 768px) {
  .m-footer-column .klaviyo-form .needsclick .kl-private-reset-css-Xuajs1 input[type=checkbox] ~ label {
    flex-basis: 50% !important;
  }
}

.m-newsletter-form__error {
  color: var(--color-state-error);
}
.m-newsletter-form .a-btn {
  padding: 1.5rem;
  margin-left: -1px;
  padding-left: 0;
}
.m-newsletter-form .a-btn.a-btn--has-icon .icon {
  margin-left: 0;
}
.m-newsletter-form .a-checkbox {
  margin-bottom: 0;
}
.m-newsletter-form .a-checkbox__label {
  color: currentColor;
}
.m-newsletter-form input[name="contact[optin]"] + label {
  display: inline-block;
}
.m-newsletter-form input[name="contact[optin]"] + label p,
.m-newsletter-form input[name="contact[optin]"] + label a {
  color: inherit;
}
.m-newsletter-form__field-wrapper {
  max-width: 36rem;
  text-align: center;
}
.m-newsletter-form__field-wrapper .a-input {
  border: 1px solid var(--color-primary-border);
  border-radius: 1.5rem;
}
.m-newsletter-form__field-wrapper .a-input:has(> input.error) {
  border-color: var(--color-state-error);
}
.m-newsletter-form__field-wrapper .a-input__error {
  display: none;
}
.m-newsletter-form__field-wrapper .a-input__error.show-error {
  display: block;
}
.m-newsletter-form__field-wrapper .icon path {
  fill: currentColor;
}
.m-newsletter-form__field, .m-newsletter-form__submit {
  border: none;
}
.m-newsletter-form__field {
  padding: 1.5rem;
}
.m-newsletter-form__field.error {
  border-color: var(--color-state-error);
  color: var(--color-state-error);
}

.m-search-modal--visible .m-search-modal__underlay,
.m-search-modal--visible .m-search-modal__content {
  visibility: visible;
  pointer-events: all;
  transition-duration: 0.3s, 0s;
  transition-delay: 0.1s, 0s;
}
.m-search-modal--visible .m-search-modal__underlay {
  opacity: 0.4;
}
.m-search-modal--visible .m-search-modal__content {
  opacity: 1;
}
.m-search-modal__content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2500;
  width: 100%;
  background-color: white;
  padding: 20px var(--layout-site-padding);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.1s, visibility 0s linear 0.4s;
}
.m-search-modal__underlay {
  position: fixed;
  z-index: 2400;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-black);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.1s, visibility 0s linear 0.4s;
}
.m-search-modal__form {
  max-width: 600px;
  width: 100%;
}
.m-search-modal__form .a-input {
  margin: 0;
  position: relative;
}
.m-search-modal__form .a-input button {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  padding: 0;
  display: flex;
  transform: translateY(-50%);
}
.m-search-modal__form .a-input .icon {
  display: block;
}
.m-search-modal__close {
  padding: 0.6rem;
  position: absolute;
  right: var(--layout-site-padding);
  top: 50%;
  transform: translateY(-50%);
}

.m-quantity {
  width: 10rem;
  border: 1px solid var(--color-primary-border);
  border-radius: 1.5rem;
}
.m-quantity__input {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
  text-align: center;
}
.m-quantity__input[type=number] {
  -moz-appearance: textfield;
}
.m-quantity__input::-webkit-outer-spin-button, .m-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.m-quantity__button {
  padding: 0;
  width: 3.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-quantity__button .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.m-variants__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.m-variants__legend {
  padding: 0;
}
.m-variants__option {
  flex: 1;
}
.m-variants__label {
  background: transparent;
  border: 1px solid #CBD6D4;
  border-radius: 0.3rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
  padding: 1.2rem;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.3;
  cursor: pointer;
  transition: color var(--default-transition-easing) var(--default-transition-timing), background var(--default-transition-easing) var(--default-transition-timing);
}
.m-variants__label.m-variants__label--small {
  min-width: 3rem;
  min-height: 3rem;
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}
.m-variants__label .o-product__variant-card-box {
  margin-top: auto;
  margin-bottom: auto;
}
.m-variants__input {
  display: none;
}
.m-variants__input:checked + .m-variants__label {
  border-color: #000000;
}
.m-variants__input:checked + .m-variants__label .o-product__variant-card-box::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: #000000;
  border-radius: 0.1rem;
}
.m-variants__input.disabled + .m-variants__label {
  text-decoration: line-through;
}

.m-product-form__price-line {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: 6%;
}
.m-product-form__submit {
  width: 100%;
  position: relative;
}
.m-product-form__submit--loading .m-product-form__submit-text {
  opacity: 0;
}
.m-product-form__preorder-label {
  margin-top: 7px;
  display: block;
  text-align: center;
}
.m-product-form__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.m-product-form__error-message-wrapper {
  margin: 1.6rem 0;
}
.m-product-form__error-message {
  display: block;
  color: var(--color-state-error);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}
.m-product-form .shopify-payment-button__button {
  margin-top: 1rem;
  border-radius: 0;
}
.m-product-form .shopify-payment-button__button + .shopify-payment-button__more-options {
  display: none;
}

.m-product-quick-view__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media screen and (min-width: 990px) {
  .m-product-quick-view__header {
    flex-direction: row;
    align-items: center;
  }
}
.m-product-quick-view__details {
  flex-shrink: 0;
}
.m-product-quick-view__info h3 {
  margin-bottom: 1rem;
}
.m-product-quick-view__buy-buttons .o-product__product-form {
  margin-bottom: 0;
  margin-top: 2rem;
}
.m-product-quick-view__subscriptions .o-product__subscription {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.m-product-quick-view .opacity-0 {
  opacity: 1 !important;
}
.m-product-quick-view__variant-picker {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.m-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(var(--rgb-primary), 0.3);
  position: fixed;
  opacity: 0;
  transition: opacity var(--default-transition-easing) var(--default-transition-timing), visibility var(--default-transition-easing) var(--default-transition-timing);
  visibility: hidden;
  pointer-events: none;
}
.m-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: unset;
}
.m-modal.loading .m-modal__inner {
  visibility: hidden;
  opacity: 0;
}
.m-modal.loading .m-modal__loading {
  visibility: visible;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.m-modal__loading {
  visibility: hidden;
  opacity: 0;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  transition: opacity var(--default-transition-easing) var(--default-transition-timing), visibility var(--default-transition-easing) var(--default-transition-timing);
}
.m-modal__loading svg {
  stroke: var(--color-primary);
}
.m-modal__inner {
  background: white;
  width: 95%;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  max-height: 95%;
  overflow: auto;
  opacity: 1;
  transition: opacity var(--default-transition-easing) var(--default-transition-timing), visibility var(--default-transition-easing) var(--default-transition-timing);
}
@media screen and (min-width: 990px) {
  .m-modal__inner {
    width: 60%;
    max-width: 75rem;
  }
}
@media screen and (min-width: 990px) {
  .m-modal__content {
    padding: 0.7rem 4.7rem;
  }
}
.m-modal__close {
  display: flex;
  justify-content: flex-end;
}
.m-modal__close .icon {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
}

.o-section__constrict {
  padding-left: var(--layout-site-padding);
  padding-right: var(--layout-site-padding);
  width: 100%;
  max-width: var(--layout-container-width);
  margin-left: auto;
  margin-right: auto;
}
.o-section__constrict--sm {
  max-width: 990px;
}
@media screen and (min-width: 768px) {
  .o-section__constrict--extra-padding {
    padding-left: calc(var(--layout-site-padding) * 3);
    padding-right: calc(var(--layout-site-padding) * 3);
  }
}
.o-section__rounded-corners[data-rounded-corners=top] {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.o-section__rounded-corners[data-rounded-corners=bottom] {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.o-section--padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .o-section--padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.o-section[data-top=small] {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-top=small] {
    margin-top: 2.5rem;
  }
}
.o-section[data-top=large] {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-top=large] {
    margin-top: 8rem;
  }
}
.o-section[data-bottom=small] {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-bottom=small] {
    margin-bottom: 2.5rem;
  }
}
.o-section[data-bottom=large] {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-bottom=large] {
    margin-bottom: 8rem;
  }
}
.o-section[data-padding=medium] {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.o-section[data-padding=small] {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.o-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px var(--layout-site-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.2rem;
}
.o-header__spacing {
  height: 8rem;
}
.o-header__hamburger {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 1180px) {
  .o-header__hamburger {
    display: none;
  }
}
.o-header__hamburger-separator {
  color: rgba(0, 0, 0, 0.2588235294);
}
.o-header__hamburger-btn {
  background: transparent;
  color: var(--color-primary-body);
  border: none;
  padding: 0;
  margin-top: 3px;
  letter-spacing: 0.06rem;
  cursor: pointer;
}
.o-header__secondary, .o-header__main {
  position: relative;
  transition: background-color 0.3s ease;
  height: var(--header-main-mobile-height);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3.2rem;
  gap: 2.4rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: background-color 0.3s ease;
}
@media (min-width: 1180px) {
  .o-header__secondary, .o-header__main {
    height: var(--header-main-height);
  }
}
.o-header__secondary:hover, .o-header__main:hover {
  background-color: white;
}
.o-header__main {
  padding-left: 2rem;
  justify-content: space-between;
}
@media (min-width: 1180px) {
  .o-header__main {
    max-width: 64.1rem;
  }
}
.o-header__secondary {
  max-width: 52.6rem;
  display: none;
}
@media (min-width: 1180px) {
  .o-header__secondary {
    display: flex;
  }
}
.o-header__logo svg {
  width: 11rem;
  height: auto;
}
@media (min-width: 1180px) {
  .o-header__logo svg {
    width: 11.9rem;
  }
}
.o-header__nav {
  height: 100%;
  display: none;
}
@media (min-width: 1180px) {
  .o-header__nav {
    display: block;
  }
}
.o-header__cta {
  display: none;
}
@media (min-width: 1180px) {
  .o-header__cta {
    display: block;
  }
}
.o-header__utilities {
  margin-left: auto;
  display: flex;
  gap: 2.4rem;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
.o-header__utility {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  position: relative;
}
.o-header__utility .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
.o-header__utility .icon path,
.o-header__utility .icon rect {
  fill: var(--color-primary-body);
}
.o-header__utility .cart-count-bubble {
  font-size: 13px;
  margin-top: 2px;
  line-height: var(--nav-lh);
  color: var(--color-primary-body);
}
.o-header-overlay {
  display: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh + 100px);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(40px);
  z-index: 99;
}
@media (max-width: 767px) {
  .o-header-overlay {
    height: calc(100vh + 53px);
  }
}
.o-header-overlay--active {
  opacity: 1;
  transition: 0.5s ease-in-out;
  pointer-events: all;
  display: block;
}

.country-popup__content {
  display: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
  background: rgba(255, 255, 255, 0.9);
  padding: 3.2rem 2.4rem;
  position: absolute;
  z-index: 99999;
  left: 0;
  right: 0;
  top: calc(100% + 0.8rem);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  color: var(--color-primary-body);
  border-radius: 6px;
}
.country-popup__content--mobile {
  width: calc(100% - 2 * var(--layout-site-padding));
  top: calc(var(--header-height) - 1.6rem);
  left: var(--layout-site-padding);
  right: var(--layout-site-padding);
}
.country-popup__content--active {
  opacity: 1;
  transition: 0.5s ease-in-out;
  pointer-events: all;
  display: block;
}
.country-popup__content__description {
  padding-bottom: 2.4rem;
  margin-bottom: 3.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.country-popup__content__form {
  width: 100%;
}
.country-popup__content__form__select {
  margin-bottom: 1.2rem;
}
.country-popup__content__form__select .a-select {
  margin: 0;
}
.country-popup__content__form__select__title {
  text-align: left;
  font-size: var(--body-fs-sm);
}
.country-popup__content__form__btn {
  width: 100%;
  margin-top: 2rem;
}

.m-mega-nav {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.o-header-sidebar,
.m-cart-notification,
.m-cart-drawer {
  display: none;
}

.o-footer {
  padding-bottom: 2rem;
}
.o-footer.o-footer--password {
  padding-top: 1.6rem;
}
.o-footer.o-footer--password .o-footer__content-bottom {
  margin-top: 0;
}
.o-footer--align-bottom {
  margin-top: auto;
}
.o-footer__content-top {
  gap: 1rem;
  padding: 3.7rem 0 1.5rem;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .o-footer__content-top {
    gap: 4rem;
    padding-top: 5.3rem;
    padding-bottom: 4.5rem;
  }
}
.o-footer__logo {
  width: 24rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .o-footer__logo {
    width: 16rem;
  }
}
.o-footer__logo img {
  width: 100%;
  height: auto;
}
.o-footer__logo svg {
  height: auto;
}
.o-footer__logo svg path {
  fill: currentColor;
}
@media screen and (min-width: 768px) {
  .o-footer__description {
    max-width: 10.5rem;
  }
}
.o-footer__description * {
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .o-footer__content-middle {
    margin: -1.5rem;
  }
  .o-footer__content-middle.grid {
    width: auto;
    min-width: 100%;
  }
  .o-footer__column {
    padding: 1.5rem;
  }
}
.o-footer__content-bottom {
  position: relative;
  margin: 3rem 0;
  font-size: var(--copyright-fs);
  line-height: var(--copyright-lh);
  letter-spacing: 1px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .o-footer__content-bottom {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
}
.o-footer__content-bottom--left {
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .o-footer__content-bottom--right {
    margin: auto;
  }
}
.o-footer__content-bottom p {
  margin-bottom: 0.4rem;
}
.o-footer__content-bottom .copyright__content {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .o-footer__content-bottom .copyright__content {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .o-footer__content-bottom {
    margin-bottom: 0;
  }
}
.o-footer__content-bottom .o-footer__payment-icons {
  width: 100%;
}
.o-footer__content-bottom .o-footer__payment-icons .m-list-payment {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .o-footer__content-bottom .o-footer__payment-icons .m-list-payment {
    text-align: right;
  }
}
.o-footer__content-bottom-item {
  display: flex;
  flex-wrap: wrap;
}
.o-footer__content-bottom-item--left {
  flex: 1;
}
.o-footer__policies-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0.6rem;
  gap: 0.5rem 0;
}
.o-footer__policies-list .o-footer__policy-list-item--link {
  color: currentColor;
  text-decoration: none;
  transition: color 0.35s ease;
  opacity: 0.8;
}
.o-footer__policies-list .o-footer__policy-list-item--link:hover {
  opacity: 1;
  color: currentColor;
}
.o-footer__payment-icons .icon {
  color: inherit;
}
.o-footer__payment-icons .icon rect {
  stroke: currentColor;
}
.o-footer__payment-icons.dark-color .icon path {
  fill: var(--color-secondary-body);
}

.shopify-challenge__container {
  margin: 10rem auto;
}
@media screen and (min-width: 768px) {
  .shopify-challenge__container {
    margin: 12rem auto;
  }
}
.shopify-challenge__container .btn {
  display: block;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .shopify-challenge__container .btn {
    margin: 3rem auto 0;
  }
}

.cc-banner {
  background-color: var(--color-secondary-bg) !important;
}
.cc-banner .cookieconsent-wrapper .cc-message,
.cc-banner .cookieconsent-wrapper .cc-link {
  font-family: var(--ff-primary) !important;
  font-size: var(--body-fs-xs) !important;
  line-height: var(--body-lh-sm) !important;
  font-weight: 400 !important;
  color: var(--color-primary-body) !important;
}
.cc-banner .cookieconsent-wrapper .cc-compliance {
  flex-direction: column;
}
.cc-banner .cookieconsent-wrapper .cc-compliance .cc-btn.cc-settings, .cc-banner .cookieconsent-wrapper .cc-compliance .cc-btn.cc-allow {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cc-banner .cookieconsent-wrapper .cc-compliance {
    flex-direction: row;
  }
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings, .cc-banner .cookieconsent-wrapper .cc-btn.cc-deny, .cc-banner .cookieconsent-wrapper .cc-btn.cc-allow, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-selected, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-all {
  padding: 1.2rem 4.5rem !important;
  font-family: var(--ff-primary) !important;
  font-size: var(--btn-fs) !important;
  line-height: var(--btn-lh) !important;
  border-radius: 1.5rem !important;
  display: inline-block !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings a, .cc-banner .cookieconsent-wrapper .cc-btn.cc-deny a, .cc-banner .cookieconsent-wrapper .cc-btn.cc-allow a, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-selected a, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-all a {
  text-decoration: none !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-deny {
  display: none !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-selected {
  background-color: transparent !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings a, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-selected a {
  color: var(--color-primary) !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings:hover, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-selected:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-tertiary-body) !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings:hover a, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-selected:hover a {
  color: var(--color-tertiary-body) !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings:focus, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-selected:focus {
  box-shadow: none;
  transform: none !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-allow, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-all {
  background-color: var(--color-primary) !important;
  color: var(--color-tertiary-body) !important;
  border: none !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-allow:hover, .cc-banner .cookieconsent-wrapper .cc-btn.cc-btn-accept-all:hover {
  background-color: var(--color-primary-body) !important;
}
.cc-banner .cookieconsent-wrapper .cc-btn.cc-settings {
  border-width: 1px !important;
}

.cc-settings-view .cc-settings-dialog {
  background-color: var(--color-secondary-bg) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn-close-settings,
.cc-settings-view .cc-settings-dialog .main-information .cookie-settings-header,
.cc-settings-view .cc-settings-dialog .main-information .cookie_settings_description,
.cc-settings-view .cc-settings-dialog .main-information .cc-checkbox-container label,
.cc-settings-view .cc-settings-dialog .main-information .cc-cookie-category-text,
.cc-settings-view .cc-settings-dialog .main-information .cc-consent-verification,
.cc-settings-view .cc-settings-dialog .main-information .cc-consent-verification a {
  color: var(--color-primary) !important;
  font-family: var(--ff-primary) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-consent-verification a {
  text-shadow: none;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-checkbox {
  background-color: var(--color-white) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-checkbox::after {
  border-color: var(--color-primary) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-compliance {
  flex-direction: column;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-compliance .cc-btn.cc-btn-accept-selected, .cc-settings-view .cc-settings-dialog .main-information .cc-compliance .cc-btn.cc-btn-accept-all {
  width: 100%;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-compliance .cc-btn.cc-btn-accept-all {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .cc-settings-view .cc-settings-dialog .main-information .cc-compliance .cc-btn.cc-btn-accept-all {
    margin-left: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .cc-settings-view .cc-settings-dialog .main-information .cc-compliance {
    flex-direction: row;
  }
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-selected, .cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-all {
  padding: 1.2rem 4.5rem !important;
  font-family: var(--ff-primary) !important;
  font-size: var(--btn-fs) !important;
  line-height: var(--btn-lh) !important;
  border-radius: 1.5rem !important;
  display: inline-block !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-selected a, .cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-all a {
  text-decoration: none !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-selected {
  background-color: transparent !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-selected a {
  color: var(--color-primary) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-selected:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-tertiary-body) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-selected:hover a {
  color: var(--color-tertiary-body) !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-selected:focus {
  box-shadow: none;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-all {
  background-color: var(--color-primary) !important;
  color: var(--color-tertiary-body) !important;
  border: none !important;
}
.cc-settings-view .cc-settings-dialog .main-information .cc-btn.cc-btn-accept-all:hover {
  background-color: var(--color-primary-body) !important;
}

body.u-sticky-header-hidden .o-product__information--sticky, body.u-no-sticky-header .o-product__information--sticky {
  margin-top: 0;
  top: var(--header-height);
}

.template-policy .shopify-policy__container {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .template-policy .shopify-policy__container {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}
.template-policy .rte table {
  table-layout: fixed;
  margin: 3rem auto;
}
.template-policy .rte table td,
.template-policy .rte table th {
  word-wrap: break-word;
}
.template-policy .rte a {
  border: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.builder-section,
.builder-section-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.builder-section[data-builder-section-link],
.builder-section [data-builder-section-link],
.builder-section-inner[data-builder-section-link],
.builder-section-inner [data-builder-section-link] {
  cursor: pointer;
}
.builder-section-background,
.builder-section-inner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.builder-section-background__video,
.builder-section-inner-background__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .show-only-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .show-only-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .shopify-block:has(> .show-only-mobile) {
    display: none;
  }
}

@media (max-width: 767px) {
  .shopify-block:has(> .show-only-desktop) {
    display: none;
  }
}

.builder-hidden-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.builder-anchor {
  position: absolute;
  top: -50px;
  visibility: hidden;
  opacity: 0;
}

.builder-bottom-border {
  border-bottom: 1px solid var(--color-primary) !important;
}

.section-content-restricted {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-content-restricted__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-content-restricted__inner--is-loading .section-content-restricted__inner__loader {
  display: block;
}
.section-content-restricted__inner--is-loading .section-content-restricted__inner__content {
  display: none;
}
.section-content-restricted__inner__content {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
}
.section-content-restricted__inner__content__title {
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
}
.section-content-restricted__inner__content__text {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}
.section-content-restricted__inner__content__form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-content-restricted__inner__content__form__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #CCCCCC;
}
.section-content-restricted__inner__loader {
  display: none;
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #09443D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.symptoms-slider-inner {
  overflow: hidden;
}
.symptoms-slider .green-dot-header {
  border-bottom: 1px solid var(--color-primary-border);
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .symptoms-slider .green-dot-header {
    border-bottom: none;
    margin-bottom: 1.6rem;
  }
}
.symptoms-slider__slider:not(.swiper-initialized) .swiper-slide {
  flex: 1;
  min-width: 0;
}
.symptoms-slider__slider .swiper-slide {
  height: auto;
}
@media (max-width: 767px) {
  .symptoms-slider__slider {
    overflow: visible !important;
  }
  .symptoms-slider__slider .swiper-wrapper {
    overflow: visible;
  }
}

.description {
  font-family: var(--ff-primary);
  position: relative;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5.9rem 0 10.4rem;
}
@media screen and (min-width: 768px) {
  .description {
    padding: 12rem 0;
  }
}
.description::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.description__inner {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .description__inner {
    gap: 2.2rem;
  }
}
.description__inner__header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}
.description__inner__header::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #00ea93;
  flex-shrink: 0;
}
.description__inner__cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3.2rem;
  max-width: 114rem;
}
@media screen and (min-width: 768px) {
  .description__inner__cards {
    flex-direction: row;
    gap: 1rem;
  }
}
.description__inner__cards__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 37rem;
}
.description__inner__cards__card__image {
  height: 21rem;
  background: #d6d6d6;
}
@media screen and (min-width: 768px) {
  .description__inner__cards__card__image {
    height: 26rem;
  }
}
.description__inner__cards__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.description__inner__cards__card__body {
  background: #fff;
  border-top: 0.2rem solid #00ea93;
  padding: 3.2rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .description__inner__cards__card__body {
    padding: 4rem;
  }
}
.description__inner__cards__card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .description__inner__cards__card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 32px;
  }
}
.description__inner__cards__card__icon img {
  width: 100%;
}
.description__inner__cards__card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.description__inner__cards__card__description {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  padding-top: 12px;
}
.description__inner__cards__card__description p {
  margin-bottom: 0;
}

.traceable-ingredients {
  margin-top: 12rem;
}
.traceable-ingredients__inner {
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .traceable-ingredients__inner {
    flex-direction: column;
  }
}
.traceable-ingredients__inner__col .green-dot-header {
  padding: 0;
}
.traceable-ingredients__inner__col .green-dot-header__text__content {
  margin-right: 32px;
}
.traceable-ingredients__inner__col--info {
  display: flex;
  flex-direction: column;
  margin-bottom: 8rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .traceable-ingredients__inner__col--info {
    margin-bottom: 0;
  }
}
.traceable-ingredients__inner__col--list {
  display: flex;
  align-items: end;
}
@media (max-width: 900px) {
  .traceable-ingredients__inner__col--list {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .traceable-ingredients__inner__col--list {
    max-width: 33rem;
  }
}
.traceable-ingredients__inner__col--visual {
  display: flex;
  background: #DEE2E2;
  border-radius: 6px;
  flex: 1;
}
.traceable-ingredients__inner__col__cta {
  align-self: flex-start;
  margin-top: 32px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .traceable-ingredients__inner__col__cta {
    margin-top: auto;
    width: auto;
  }
}
.traceable-ingredients__inner__col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.traceable-ingredients__inner__col__list__item__button {
  text-align: right;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: #959595;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.traceable-ingredients__inner__col__list__item__button:hover, .traceable-ingredients__inner__col__list__item__button:focus-visible {
  color: #171717;
  outline: none;
}
.traceable-ingredients__inner__col__list__item__button.is-active {
  color: black;
}
.traceable-ingredients__inner__col__image {
  display: grid;
  place-items: center;
}
.traceable-ingredients__inner__col__image img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.traceable-ingredients__inner__col__empty {
  margin: 0;
  font-size: 14px;
}

.the-actions {
  margin: 60px auto 0;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .the-actions {
    border-bottom: none;
    padding-bottom: 0;
    margin: 120px auto 0;
  }
}
.the-actions-section {
  overflow: hidden;
}
.the-actions__main {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .the-actions__main {
    flex-direction: column;
    align-items: center;
    gap: 7rem;
  }
}
.the-actions__main__media {
  display: flex;
  justify-content: center;
  max-width: 56.4rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .the-actions__main__media {
    max-width: 44.8rem;
  }
}
.the-actions__main__media__img {
  border-radius: 6px;
  width: 100%;
}
.the-actions__main__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 auto;
  flex: 1;
  max-width: 448px;
}
.the-actions__main__content .green-dot-header {
  padding: 0;
}
.the-actions__main__content__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.the-actions__main__content__list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #CBD6D4;
}
@media screen and (min-width: 768px) {
  .the-actions__main__content__list__item {
    gap: 14px;
  }
}
.the-actions__main__content__list__item__header {
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .the-actions__main__content__list__item__header {
    gap: 16px;
  }
}
.the-actions__main__content__list__item__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
}
.the-actions__main__content__list__item__icon img {
  width: 100%;
  object-fit: contain;
}
.the-actions__main__content__list__item__title {
  flex: 1;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .the-actions__main__content__list__item__title {
    font-size: 12px;
    line-height: 1.3;
  }
}
.the-actions__main__content__list__item__plus {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.the-actions__main__content__list__item__plus__icon {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.the-actions__main__content__list__item__plus__icon__line {
  display: block;
  position: absolute;
  background: #1c231f;
  border-radius: 1px;
  transition: transform 0.2s ease;
}
.the-actions__main__content__list__item__plus__icon__line--vertical {
  width: 1px;
  height: 7px;
}
.the-actions__main__content__list__item__plus__icon__line--horizontal {
  width: 7px;
  height: 1px;
}
.the-actions__main__content__list__item__content {
  font-size: 11px;
  line-height: 1.2;
  padding-left: 42px;
}
@media screen and (min-width: 768px) {
  .the-actions__main__content__list__item__content {
    padding-left: 52px;
  }
}
.the-actions__main__content__list__item__content p {
  margin-bottom: 0;
}
.the-actions__main__content__list__item__content[hidden] {
  display: none;
}
.the-actions__main__content__list__item__content:not([hidden]) {
  display: block;
}
.the-actions__main__content__list__item.is-open .the-actions__main__content__list__item__plus__icon__line--vertical {
  transform: scaleY(0);
}
.the-actions__main__content__empty {
  margin: 0;
  color: #5f6764;
  font-size: 14px;
}
.the-actions__bottom {
  margin: 0 auto;
  padding-top: 3.2rem;
  margin-top: 3.2rem;
  border-top: 1px solid #CBD6D4;
}
.the-actions__bottom .swiper {
  overflow: visible;
}
.the-actions__bottom__card {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 16px;
  background: #ffffff;
  border: 1px solid #CBD6D4;
  border-radius: 6px;
  box-sizing: border-box;
  gap: 0.5rem;
}
.the-actions__bottom__card__text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.the-actions__bottom__card__icon {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.the-actions__bottom__card__icon img {
  width: 44px;
}
.the-actions__bottom__card__icon-placeholder {
  width: 44px;
  margin: auto;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.testimonials-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 8rem;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .testimonials-cards {
    gap: 40px;
    border-bottom: none;
  }
}
.testimonials-cards-section {
  overflow: hidden;
}
.testimonials-cards__header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: black;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}
.testimonials-cards__header::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00ea93;
  flex-shrink: 0;
}
.testimonials-cards__slider {
  width: 100%;
  min-width: 0;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .testimonials-cards__slider {
    max-width: calc(100% - 120px);
  }
}
.testimonials-cards__slider.m-swiper {
  overflow: visible;
  position: relative;
}
.testimonials-cards__slider .m-swiper__arrow {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.testimonials-cards__slider .m-swiper__arrow--prev {
  left: -112px !important;
}
@media screen and (max-width: 768px) {
  .testimonials-cards__slider .m-swiper__arrow--prev {
    left: -58px !important;
  }
}
.testimonials-cards__slider .m-swiper__arrow--next {
  right: -112px !important;
}
@media screen and (max-width: 768px) {
  .testimonials-cards__slider .m-swiper__arrow--next {
    right: -58px !important;
  }
}
.testimonials-cards__slider__item {
  position: relative;
}
.testimonials-cards__slider__item.swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonials-cards__slider__item:not(.swiper-slide-active) .testimonials-cards__slider__item__meta,
.testimonials-cards__slider__item:not(.swiper-slide-active) .testimonials-cards__slider__item__mute {
  display: none;
}
.testimonials-cards__slider__item:not(.swiper-slide-active) .testimonials-cards__slider__item__media {
  transform: scale(0.7);
}
.testimonials-cards__slider__item__media {
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}
.testimonials-cards__slider__item__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .testimonials-cards__slider__item__meta {
    gap: 8px;
    padding-top: 24px;
  }
}
.testimonials-cards__slider__item__meta__name {
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
}
.testimonials-cards__slider__item__meta__social {
  font-size: 12px;
  font-weight: 400px;
  letter-spacing: 0.02em;
}
.testimonials-cards__slider__item__mute {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 39px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1019607843);
  display: inline-flex;
  align-items: center;
  z-index: 2;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.testimonials-cards__slider__item__mute .icon-muted {
  display: none;
}
.testimonials-cards__slider__item__mute .icon-unmuted {
  display: block;
}
.testimonials-cards__slider__item__mute:hover {
  background: rgba(142, 157, 152, 0.9);
  border-color: rgba(255, 255, 255, 0.55);
}
.testimonials-cards__slider__item__mute.is-muted {
  opacity: 0.85;
}
.testimonials-cards__slider__item__mute.is-muted .icon-muted {
  display: block;
}
.testimonials-cards__slider__item__mute.is-muted .icon-unmuted {
  display: none;
}
.testimonials-cards__slider__item__mute svg path {
  fill: #ffffff;
}

.academy {
  position: relative;
  overflow: hidden;
}
.academy__heading, .academy__headline, .academy__caption,
.academy .a-checkbox__label,
.academy .a-input__field,
.academy .a-btn--transparent {
  color: inherit;
}
.academy__inner {
  position: relative;
}
.academy__inner.offset-top {
  margin-top: -20vh;
  z-index: 999999;
}
@media screen and (min-width: 768px) {
  .academy__inner.offset-top {
    margin-top: -30vh;
  }
}
.academy__headline {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500 !important;
}
@media screen and (max-width: 768px) {
  .academy__headline {
    font-size: 1.2rem;
  }
}
.academy__heading {
  margin-bottom: 0;
  max-width: 80%;
}
@media screen and (min-width: 768px) {
  .academy__heading {
    max-width: 100%;
  }
}
.academy__heading-container {
  border-bottom: 1px solid var(--color-primary-body);
  display: flex;
  align-items: flex-end;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .academy__heading-container {
    margin-bottom: 0;
  }
}
.academy__heading-container .a-link {
  margin-bottom: calc(var(--main-title-line-height, 0) * 0.1);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 0.6em;
  font-weight: 400;
}
.academy.no-border {
  padding-bottom: 0;
}
.academy.no-border .o-featured-collection__heading-container {
  border-bottom: 0;
}
.academy__inner {
  position: relative;
}
.academy__badge-image {
  overflow: visible;
  position: absolute;
  top: -3rem;
  right: -1rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .academy__badge-image {
    top: -3rem;
    right: -3rem;
  }
}
.academy__badge-image img {
  width: 8rem;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .academy__badge-image img {
    width: 10rem;
  }
}
.academy__text {
  margin-top: 0rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .academy__text {
    margin-top: 1.5rem;
  }
}
.academy__text p:last-of-type {
  margin-bottom: 0;
}
.academy__content {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .academy__content {
    margin-bottom: 2rem;
  }
}
.academy__col-nav-slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.academy__col-nav-slider-container .m-swiper__arrow {
  position: relative;
  margin: 0;
  height: 3.2rem;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.academy__col-nav-slider-container .m-swiper__arrow svg path {
  fill: var(--color-primary);
}
.academy__col-nav-slider-container .m-swiper__arrow--prev {
  left: 0;
}
.academy__col-nav-slider-container .m-swiper__arrow--next {
  right: 0;
}
.academy__col-nav-slider-container .m-swiper__arrow::after {
  content: "";
}
.academy__col-nav-slider-wrapper {
  position: relative;
}
.academy__col-nav-slider-wrapper.swiper {
  display: flex;
}
.academy__col-nav-slider-wrapper .swiper-wrapper {
  width: 91.6666666667%;
}
.academy__col-nav-slider-wrapper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}
.academy__col-nav-slider-wrapper .swiper-slide.last {
  width: 10rem;
}
.academy__col-nav-slider-wrapper:not(.swiper-initialized) .swiper-slide {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .academy__col-nav-slider-wrapper:not(.swiper-initialized) .swiper-slide {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.academy__col-nav-slider-wrapper .a-link {
  font-weight: 400;
}
.academy__grid {
  padding: 0;
  margin: calc(-1 * var(--layout-column-grid-gap)) calc(-1 * var(--layout-row-grid-gap));
}
.academy__grid .m-product-card {
  height: 100%;
}
.academy__grid.grid {
  width: auto;
  min-width: 100%;
}
.academy__grid-item {
  padding: var(--layout-column-grid-gap) var(--layout-row-grid-gap);
}
@media (max-width: 767px) {
  .academy .green-dot-header {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.academy__slider-wrapper {
  position: relative;
}
@media (max-width: 767px) {
  .academy__slider-wrapper.swiper {
    overflow: visible;
  }
}
.academy__slider-wrapper:not(.swiper-initialized) .swiper-slide {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .academy__slider-wrapper:not(.swiper-initialized) .swiper-slide {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.academy__slider-wrapper:not(.swiper-initialized) .swiper-wrapper {
  overflow: hidden;
  width: auto;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .academy__slider-wrapper:not(.swiper-initialized) .swiper-wrapper {
    margin: 0 -1.5rem;
  }
}
.academy__slider-wrapper:not(.swiper-initialized)[data-columns-mobile="1"] .swiper-slide {
  width: 100%;
}
.academy__slider-wrapper:not(.swiper-initialized)[data-columns-mobile="2"] .swiper-slide {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .academy__slider-wrapper:not(.swiper-initialized)[data-columns="3"] .swiper-slide {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .academy__slider-wrapper:not(.swiper-initialized)[data-columns="4"] .swiper-slide {
    width: 25%;
  }
}
.academy__footer {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .academy__footer.normal {
    display: none !important;
  }
}

.bundle {
  margin: 0 auto;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 8rem;
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.bundle__inner__header {
  margin-bottom: 48px;
}
.bundle__inner__header .green-dot-header {
  padding: 0;
}
.bundle__inner__grid {
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .bundle__inner__grid {
    gap: 16px;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .bundle__inner__grid__col {
    margin: 0;
  }
}
.bundle__inner__grid__col--single {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .bundle__inner__grid__col--single {
    max-width: 430px;
  }
}
.bundle__inner__grid__col--pack {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 930px;
}
@media screen and (min-width: 768px) {
  .bundle__inner__grid__col--pack .bundle__inner__grid__col__lead,
  .bundle__inner__grid__col--pack .bundle__inner__grid__col__connector {
    margin-left: 16px;
  }
}
@media screen and (min-width: 768px) {
  .bundle__inner__grid__col--pack .bundle__inner__grid__col__connector {
    width: calc(100% - 16px);
  }
}
.bundle__inner__grid__col__lead {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  min-height: 58px;
}
.bundle__inner__grid__col__connector {
  height: 16px;
  margin-bottom: 32px;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
}
.bundle__inner__grid__col__card {
  border: 1px solid #cbd6d4;
  border-radius: 6px;
  padding: 40px 32px;
  flex: 1;
}
.bundle__inner__grid__col__card--highlight {
  background-color: #fff;
  border-color: #00ea93;
}
.bundle__inner__grid__col__card__product {
  display: flex;
  gap: 16px;
}
.bundle__inner__grid__col__card__product__media {
  width: 100%;
  height: 100%;
  max-width: 94px;
  max-height: 111px;
  display: flex;
}
.bundle__inner__grid__col__card__product__media__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bundle__inner__grid__col__card__product__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bundle__inner__grid__col__card__product__content__title {
  font-family: var(--ff-quaternary);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.bundle__inner__grid__col__card__product__content__subtitle {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
.bundle__inner__grid__col__card__product__content__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4rem;
}
.bundle__inner__grid__col__card__product__content__meta__price {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}
.bundle__inner__grid__col__card__product__content__meta__line {
  height: 1px;
  background-color: #cbd6d4;
}
.bundle__inner__grid__col__card__products {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .bundle__inner__grid__col__card__products {
    flex-direction: row;
  }
}
.bundle__inner__grid__col__card__products__item {
  display: flex;
  gap: 16px;
  flex: 1;
}
.bundle__inner__grid__col__card__products__item__media {
  width: 100%;
  height: 100%;
  max-width: 94px;
  max-height: 111px;
  display: flex;
}
.bundle__inner__grid__col__card__products__item__media__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bundle__inner__grid__col__card__products__item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bundle__inner__grid__col__card__products__item__content__title {
  font-family: var(--ff-quaternary);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.bundle__inner__grid__col__card__products__item__content__subtitle {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
.bundle__inner__grid__col__card__products__item__content__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.bundle__inner__grid__col__card__products__item__content__meta__price {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  width: max-content;
}
.bundle__inner__grid__col__card__products__item__content__meta__line {
  height: 1px;
  background-color: var(--color-primary-border);
}
.bundle__inner__grid__col__card__cta {
  margin-top: 28px;
}
.bundle__inner__grid__col__card__cta__button {
  background-color: #18473f;
  position: relative;
}
.bundle__inner__grid__col__card__cta__button .a-loader.a-loader--light circle {
  stroke: currentColor;
}
.bundle__inner__grid__col__card__cta__button__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.bundle__inner__grid__col__card__cta__button__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.builder-section:has(> .js-info-quiz-results) {
  display: none;
}

.green-dot-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .green-dot-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.green-dot-header-block {
  width: 100%;
}
.green-dot-header__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 448px;
}
.green-dot-header__text__row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.green-dot-header__text__row__greendot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: var(--color-quaternary-body);
  flex-shrink: 0;
}
.green-dot-header__text__row__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.green-dot-header__text__content {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .green-dot-header__text__content {
    font-size: 23px;
  }
}
.green-dot-header__text__content p {
  margin-bottom: 0;
}
.green-dot-header__anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.green-dot-header__anchor svg {
  fill: var(--color-quaternary-body);
}

.ingredient-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2.4rem;
  border: 1px solid var(--color-primary-border);
  border-radius: 0.6rem;
  color: var(--color-primary-body);
  text-decoration: none;
  width: 100%;
}
@media (max-width: 767px) {
  .ingredient-card {
    padding: 1.6rem;
    gap: 0.6rem;
  }
}
.ingredient-card__title {
  font-family: var(--ff-primary);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin: auto auto auto 0;
}
.ingredient-card__image {
  height: 5.4rem;
  border-radius: 0.6rem;
  overflow: hidden;
}
.ingredient-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.popup-modal--active {
  display: block;
}
.popup-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  backdrop-filter: blur(10px);
  z-index: 1;
}
.popup-modal__inner {
  position: absolute;
  top: 1.6rem;
  right: 3.2rem;
  bottom: 1.6rem;
  left: auto;
  width: 100%;
  max-width: 680px;
  background-color: white;
  border-radius: 0.6rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .popup-modal__inner {
    top: 1.6rem;
    right: 2.4rem;
    left: 2.4rem;
    bottom: 1.6rem;
    width: auto;
  }
}
.popup-modal__inner__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 3.2rem;
  border-bottom: 1px solid #CBD6D4;
}
@media (max-width: 767px) {
  .popup-modal__inner__header {
    padding: 2.4rem;
  }
}
.popup-modal__inner__header__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .popup-modal__inner__header__title {
    font-size: 1.3rem;
  }
}
.popup-modal__inner__header__close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--color-primary-body);
  background: transparent;
  border: none;
  font-family: var(--ff-primary);
  cursor: pointer;
}
@media (max-width: 767px) {
  .popup-modal__inner__header__close {
    font-size: 1.3rem;
  }
}
.popup-modal__inner__body {
  padding: 3.2rem;
  height: 100%;
}
@media (max-width: 767px) {
  .popup-modal__inner__body {
    padding: 3.2rem 2.4rem;
  }
}

.symptom-card {
  padding: 3.2rem;
  border: 1px solid var(--color-primary-border);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .symptom-card {
    padding: 3.2rem 1.8rem;
  }
}
.symptom-card__title {
  display: block;
  font-family: var(--ff-primary);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--color-primary-border);
  border-radius: 0.3rem;
}
@media (max-width: 767px) {
  .symptom-card__title {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.symptom-card__image {
  width: 100%;
  box-sizing: border-box;
  padding: 4rem 1rem;
}
@media (max-width: 767px) {
  .symptom-card__image {
    padding: 3.5rem 0;
    margin: auto;
  }
}
.symptom-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.symptom-card__button {
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 3px;
  padding: 10px 14px 10px 14px;
  font-size: 16px;
}
.symptom-card__link {
  font-size: 1.6rem;
  border: none;
  font-weight: 400;
  text-decoration: underline;
  text-transform: none;
  background-color: transparent;
}
@media (max-width: 767px) {
  .symptom-card__link {
    font-size: 1.2rem;
  }
}
.symptom-card__content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.symptom-card__content-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  padding-bottom: 5.6rem;
  border-bottom: 1px solid #CBD6D4;
  margin-bottom: 4rem;
  width: 100%;
}
@media (max-width: 767px) {
  .symptom-card__content-title {
    font-size: 1.7rem;
    padding-bottom: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
.symptom-card__content-description {
  font-size: 1.6rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .symptom-card__content-description {
    font-size: 1.4rem;
  }
}
.symptom-card__content-cta {
  margin-top: 1rem;
  margin-top: 1rem;
  width: max-content;
}
.symptom-card__content-image {
  width: 185px;
  margin-top: auto;
}
@media (max-width: 767px) {
  .symptom-card__content-image {
    width: 147px;
  }
}
.symptom-card__content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-block {
  position: relative;
}
.slider-block .swiper {
  width: 100%;
  height: 100%;
}
.slider-block .swiper:not(.swiper-initialized) .swiper-pagination,
.slider-block .swiper:not(.swiper-initialized) .swiper-button-prev,
.slider-block .swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}
.slider-block .swiper:not(.swiper-initialized) .swiper-slide {
  width: calc(100% / var(--desktop-slides-per-view)) !important;
  margin-right: var(--desktop-space-between) !important;
}
@media (max-width: 767px) {
  .slider-block .swiper:not(.swiper-initialized) .swiper-slide {
    width: calc(100% / var(--mobile-slides-per-view)) !important;
    margin-right: var(--mobile-space-between) !important;
  }
}
.slider-block .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.slider-block .swiper-slide {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}
.slider-block__controllers {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .slider-block__controllers {
    margin-top: 5.6rem;
  }
}
.slider-block__controllers__pagination {
  flex: 1;
}
.slider-block__controllers__pagination .swiper-pagination {
  position: relative;
  display: flex;
}
.slider-block__controllers__pagination .swiper-pagination-bullet {
  height: 1px;
  border-radius: 0;
  margin: 0 !important;
  flex: 1;
  background: var(--color-primary-border);
  opacity: 1;
}
.slider-block__controllers__pagination .swiper-pagination-bullet-active {
  background: var(--color-quaternary-body);
}
.slider-block__controllers__navigation {
  display: block;
  margin-left: auto;
}
.slider-block__controllers__navigation-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.slider-block__controllers__arrow {
  width: 3.9rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-body);
  border: 1px solid var(--color-primary-body);
  border-radius: 3px;
  position: relative;
  margin: 0;
}
.slider-block__controllers__arrow svg {
  width: 1.5rem;
  height: auto;
}
.slider-block__controllers__arrow svg path {
  fill: var(--color-primary-body);
}
.slider-block__controllers__arrow::after {
  content: "";
}
.slider-block__controllers__arrow--prev {
  left: 0;
}
.slider-block__controllers__arrow--next {
  right: 0;
}
.slider-block__controllers__arrow.swiper-button-lock {
  display: none;
}

.slider-block__slide.swiper-slide {
  display: flex;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.slider-block__slide-review.swiper-slide {
  height: 100%;
  border: 1px solid var(--color-primary-border);
  border-radius: 0.6rem;
}

.slider-block__slide-review__inner {
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  height: 100%;
}
@media (max-width: 767px) {
  .slider-block__slide-review__inner {
    padding: 2rem;
  }
}
.slider-block__slide-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.slider-block__slide-review__top__name {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .slider-block__slide-review__top__name {
    font-size: 1.1rem;
  }
}
.slider-block__slide-review__top__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.slider-block__slide-review__top__rating__note {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.slider-block__slide-review__text {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: auto;
  max-width: calc(100% - 3rem);
  line-height: 1.3;
}
@media (max-width: 767px) {
  .slider-block__slide-review__text {
    max-width: 100%;
    font-size: 1.1rem;
  }
}
.slider-block__slide-review__date {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .slider-block__slide-review__date {
    font-size: 1.1rem;
  }
}

.product-card-block {
  width: 100%;
}

.video-block {
  width: 100%;
  display: flex;
  justify-content: center;
}
.video-block__wrapper {
  position: relative;
  width: 100%;
}
.video-block__wrapper::before {
  content: "";
  display: block;
}
.video-block__wrapper--16-9::before {
  padding-top: 56.25%; /* 9/16 * 100% */
}
.video-block__wrapper--4-3::before {
  padding-top: 75%; /* 3/4 * 100% */
}
.video-block__wrapper--1-1::before {
  padding-top: 100%; /* ratio carré */
}
.video-block__wrapper--9-16::before {
  padding-top: 177.78%; /* 16/9 * 100% */
}
.video-block__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 9;
  background: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  color: #FFF;
}
.video-block__play-button path {
  fill: #FFF;
}
.video-block__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .video-block.show-only-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .video-block.show-only-desktop {
    display: none;
  }
}

.text-block {
  width: 100%;
}
.text-block--custom-list-item ul {
  list-style: none !important;
  padding: 0 !important;
}
.text-block--custom-list-item ul li {
  position: relative;
  padding-left: calc(1em + 10px);
}
.text-block--custom-list-item ul li::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  min-width: 1em;
  left: 0;
}
.text-block__text {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.text-block__text--reversed {
  display: flex;
  flex-direction: row-reverse;
}
.text-block__text--icon {
  max-width: 20px;
  max-height: 20px;
  margin-right: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}
.text-block__text__before {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: #00EA93;
  margin-right: 12px;
}
.text-block__text__inner {
  width: 100%;
}
.text-block__text__inner--sup {
  display: flex;
  gap: 2px;
}
.text-block__text__inner--sup sup {
  font-size: 0.5em;
  line-height: 1.5;
}
.text-block__text__inner a {
  word-break: break-word;
  display: inline-block;
  max-width: 100%;
  text-decoration: none;
}
.text-block__text__inner ul {
  list-style-type: disc;
  margin-block-start: 0.35em;
  margin-block-end: 0.35em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 26px;
}
.text-block__text__inner p:empty {
  height: 1em;
}
.text-block__text__inner p,
.text-block__text__inner h1,
.text-block__text__inner h2,
.text-block__text__inner h3,
.text-block__text__inner h4,
.text-block__text__inner h5,
.text-block__text__inner h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

.image-block {
  width: 100%;
  display: flex;
  justify-content: center;
}
.image-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.image-block__desktop {
  display: block;
}
@media (max-width: 767px) {
  .image-block__desktop {
    display: none;
  }
}
.image-block__mobile {
  display: none;
}
@media (max-width: 767px) {
  .image-block__mobile {
    display: block;
  }
}

.button-block__button {
  display: flex;
  justify-content: center;
  width: 100%;
}
.button-block__button-link {
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
.button-block__button-link svg {
  width: 1.5em;
  height: 1.2em;
}
.button-block__button-link * {
  margin: 0;
  width: auto;
}
.button-block__button-link p {
  display: inline;
}
.button-block__button-link--gradient:hover {
  background: linear-gradient(270deg, #e6da78, #e07dd1) !important;
}

.column-block {
  display: flex;
  justify-content: center;
}
.column-block__load-more {
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.column-block__load-more__button {
  background: transparent;
  color: #f42a88;
  border: 2px solid #f42a88;
  border-radius: 100px;
  padding: 11px 29px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.column-block__load-more__button:hover {
  background: #f42a88;
  color: #fff;
}

.builder-counter__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 448px;
  width: 100%;
}
.builder-counter__progress-bar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #AEAEAE;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.builder-counter__progress-bar__number {
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .builder-counter__progress-bar__number {
    font-size: 1.7rem;
  }
}
.builder-counter__progress-bar svg {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 72px;
  height: 72px;
}
.builder-counter__progress-bar svg circle {
  stroke-dasharray: 224;
  stroke-dashoffset: 224;
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: butt;
  stroke: #00EA93;
  stroke-width: 0;
  fill: none;
}
.builder-counter__separator {
  width: 100%;
  height: 1px;
  border-top: #E0E0E0 1px solid;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .builder-counter__separator {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.builder-counter__number {
  display: flex;
  align-items: center;
  font-size: 5.6rem;
  flex: 1;
}
@media (max-width: 767px) {
  .builder-counter__number {
    font-size: 4.6rem;
  }
}
.builder-counter__number__text {
  text-align: left;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  margin-left: 44px;
}
@media (max-width: 767px) {
  .builder-counter__number__text {
    font-size: 1.4rem;
  }
}
.builder-counter__number__text * {
  color: inherit;
  margin: 0;
}

.builder-before-after {
  width: 100%;
}
.builder-before-after__container {
  display: flex;
}
.builder-before-after__slider {
  flex: 1;
  border-radius: 1.2rem;
}
.builder-before-after__slider img-comparison-slider {
  visibility: hidden;
}
.builder-before-after__slider img-comparison-slider [slot=second] {
  display: none;
}
.builder-before-after__slider img-comparison-slider.rendered {
  visibility: inherit;
}
.builder-before-after__slider img-comparison-slider.rendered [slot=second] {
  display: unset;
}
.builder-before-after__slider:focus, .builder-before-after__slider .first-overlay:focus {
  outline: none;
}
.builder-before-after__slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.builder-before-after__slider__image-text {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.3rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 1rem 1.6rem;
  display: block;
}
.builder-before-after__slider__image-text--after {
  left: auto;
  right: 1.6rem;
}
.builder-before-after__slider__image-container {
  position: relative;
  height: 100%;
}
.builder-before-after__datas {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.builder-before-after__datas:empty {
  display: none;
}

.builder-before-after__data {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.builder-before-after__data__separator {
  width: 20%;
  height: 1px;
  border-bottom: 1px solid var(--color-primary);
}
.builder-before-after__data__info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.builder-before-after__data__info__number {
  font-size: 40px;
  color: var(--color-primary);
  width: 90px;
}
.builder-before-after__data__info__text {
  font-size: 16px;
  flex: 1;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--color-primary);
}
.builder-before-after__data__info__text p {
  margin-bottom: 0;
}

.builder-bubbles__container {
  display: flex;
}
.builder-bubbles__container .builder-bubbles__bubble-wrapper {
  margin-left: -60px;
}
@media (max-width: 767px) {
  .builder-bubbles__container .builder-bubbles__bubble-wrapper {
    margin-left: -45px;
  }
}
.builder-bubbles__container .builder-bubbles__bubble-wrapper:first-child {
  margin-left: 0;
}
.builder-bubbles__container .builder-bubbles__bubble-wrapper:nth-child(even) {
  animation-delay: 3s;
}
.builder-bubbles__container[data-number-of-bubbles="3"] .builder-bubbles__bubble-wrapper:nth-child(odd), .builder-bubbles__container[data-number-of-bubbles="4"] .builder-bubbles__bubble-wrapper:nth-child(odd) {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .builder-bubbles__container[data-number-of-bubbles="3"] .builder-bubbles__bubble-wrapper:nth-child(odd), .builder-bubbles__container[data-number-of-bubbles="4"] .builder-bubbles__bubble-wrapper:nth-child(odd) {
    margin-top: 80px;
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}
.builder-bubbles__bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border: 1px solid var(--border-color, #fff);
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  text-decoration: none;
}
.builder-bubbles__bubble-wrapper {
  animation: float 6s ease-in-out infinite;
}
.builder-bubbles__bubble:hover {
  background-color: #fff;
}
.builder-bubbles__bubble:hover .builder-bubbles__bubble__text {
  color: #18473f;
}
@media (max-width: 767px) {
  .builder-bubbles__bubble {
    width: 165px;
    height: 165px;
  }
}
@media (max-width: 410px) {
  .builder-bubbles__bubble {
    width: 140px;
    height: 140px;
  }
}
.builder-bubbles__bubble__text, .builder-bubbles__bubble__text * {
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .builder-bubbles__bubble__text, .builder-bubbles__bubble__text * {
    font-size: 14px;
  }
}

.builder-faq {
  border-top: 1px solid #CBD6D4;
}
.builder-faq-section {
  width: 100%;
}
.builder-faq--open .builder-faq__item__trigger__icon__line--vertical {
  transform: scaleY(0);
}
.builder-faq__item {
  padding: 24px 0 24px;
  width: 100%;
}
.builder-faq__item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.builder-faq__item__trigger__title {
  font-family: var(--ff-primary);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
}
.builder-faq__item__trigger__icon {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.builder-faq__item__trigger__icon__line {
  display: block;
  position: absolute;
  background: #1c231f;
  border-radius: 1px;
  transition: transform 0.2s ease;
}
.builder-faq__item__trigger__icon__line--vertical {
  width: 1px;
  height: 7px;
}
.builder-faq__item__trigger__icon__line--horizontal {
  width: 7px;
  height: 1px;
}
.builder-faq__item__content {
  padding-top: 24px;
}
.builder-faq__item__content[hidden] {
  display: none;
}
.builder-faq__item__content:not([hidden]) {
  display: block;
}
.builder-faq__item__content__text {
  font-family: var(--ff-primary);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
}
.builder-faq__item__content__text p {
  margin: 0;
}
.builder-faq__item__content__text p + p {
  margin-top: 10px;
}

.builder-dropdown {
  width: 100%;
}
.builder-dropdown__container {
  display: flex;
  flex-direction: column;
  padding: 10px 0px 10px 10px;
  border-bottom: 1px solid var(--color-primary);
}
@media (min-width: 768px) {
  .builder-dropdown__container--horizontal {
    flex-direction: row;
  }
  .builder-dropdown__container--horizontal .builder-dropdown__title__text {
    width: 285px;
  }
  .builder-dropdown__container--horizontal .builder-dropdown__title__icon {
    display: none;
  }
  .builder-dropdown__container--horizontal .builder-dropdown__content {
    display: flex;
    align-items: center;
    flex: 1;
  }
}
.builder-dropdown__title {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 26px;
}
@media (max-width: 767px) {
  .builder-dropdown__title {
    font-size: 16px;
  }
}
.builder-dropdown__title__image {
  object-fit: contain;
}
.builder-dropdown__title__text {
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .builder-dropdown__title__text {
    font-size: 16px;
  }
}
.builder-dropdown__title__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-left: auto;
}
.builder-dropdown__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out;
}
.builder-dropdown__content[open] {
  grid-template-rows: 1fr;
}
.builder-dropdown__content__inner {
  overflow: hidden;
}
@media (max-width: 767px) {
  .builder-dropdown__content__inner__text {
    padding-top: 10px;
  }
}
.builder-dropdown__content__inner__text * {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}

.builder-reviews {
  width: 100%;
}
.builder-reviews__global-stats {
  display: flex;
  align-items: center;
  gap: 15px;
}
.builder-reviews__global-stats__average-rating {
  margin-bottom: 0;
  font-size: 55px;
}
.builder-reviews__global-stats__rating-count__text {
  margin-bottom: 0;
}
.builder-reviews__slider-item.swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.builder-reviews__slider-item__header__infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.builder-reviews__slider-item__header__infos__name {
  margin-bottom: 0;
}
.builder-reviews__slider-item__header__certified__text {
  display: flex;
  align-items: center;
  gap: 5px;
}
.builder-reviews__slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  --swiper-navigation-sides-offset: -33px;
}
.builder-reviews__slider-container .swiper-button-prev,
.builder-reviews__slider-container .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  color: #09443D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}
.builder-reviews__slider-container .swiper-button-prev::after,
.builder-reviews__slider-container .swiper-button-next::after {
  content: "" !important;
  font-size: 20px;
}
.builder-reviews .swiper {
  width: 100%;
  height: 100%;
}
.builder-reviews .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.builder-reviews .swiper:not(.swiper-initialized) .swiper-pagination {
  display: none;
}
.builder-reviews .swiper:not(.swiper-initialized) .swiper-slide:nth-child(n+2) {
  display: none;
}

.builder-separator {
  display: flex;
  width: 100%;
}
