/* ====================== */
/* ANIMATED LINE DIVIDER STYLES */
/* ====================== */

.pulsing-divider {
  position: relative;
  width: 100%;
  height: var(--divider-size);
  overflow: hidden;
  transform: scaleY(var(--glow_animation_flip));
  background: linear-gradient(
    to bottom,
    rgba(var(--divider-color), 0.01) 0%,
    rgba(var(--divider-color), 0.02) 5%,
    rgba(var(--divider-color), 0.03) 10%,
    rgba(var(--divider-color), 0.05) 15%,
    rgba(var(--divider-color), 0.08) 20%,
    rgba(var(--divider-color), 0.12) 25%,
    rgba(var(--divider-color), 0.17) 30%,
    rgba(var(--divider-color), 0.23) 35%,
    rgba(var(--divider-color), 0.3) 40%,
    rgba(var(--divider-color), 0.38) 45%,
    rgba(var(--divider-color), 0.46) 50%,
    rgba(var(--divider-color), 0.54) 55%,
    rgba(var(--divider-color), 0.62) 60%,
    rgba(var(--divider-color), 0.7) 65%,
    rgba(var(--divider-color), 0.77) 70%,
    rgba(var(--divider-color), 0.83) 75%,
    rgba(var(--divider-color), 0.88) 80%,
    rgba(var(--divider-color), 0.92) 85%,
    rgba(var(--divider-color), 0.97) 90%,
    rgba(var(--divider-color), 0.99) 95%,
    rgba(var(--divider-color), 1) 100%
  );
}

.pulsing-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
}

.pulse-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(var(--divider-color), 0) 0%,
    rgba(var(--divider-color), 0.02) 5%,
    rgba(var(--divider-color), 0.04) 10%,
    rgba(var(--divider-color), 0.06) 15%,
    rgba(var(--divider-color), 0.09) 20%,
    rgba(var(--divider-color), 0.13) 25%,
    rgba(var(--divider-color), 0.18) 30%,
    rgba(var(--divider-color), 0.24) 35%,
    rgba(var(--divider-color), 0.3) 40%,
    rgba(var(--divider-color), 0.37) 45%,
    rgba(var(--divider-color), 0.44) 50%,
    rgba(var(--divider-color), 0.52) 55%,
    rgba(var(--divider-color), 0.6) 60%,
    rgba(var(--divider-color), 0.68) 65%,
    rgba(var(--divider-color), 0.76) 70%,
    rgba(var(--divider-color), 0.82) 75%,
    rgba(var(--divider-color), 0.86) 80%,
    rgba(var(--divider-color), 0.9) 85%,
    rgba(var(--divider-color), 0.95) 90%,
    rgba(var(--divider-color), 1) 100%
  );
  animation: pulse var(--animation-duration) cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite; 
  transform-origin: bottom center;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

.pulsing-divider.subtle .pulse-overlay {
  animation: pulse-subtle var(--animation-duration) cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-subtle {
  0% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1);
  }
  100% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }
}

.pulsing-divider.strong .pulse-overlay {
  animation: pulse-strong var(--animation-duration) cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-strong {
  0% {
    opacity: 0.2;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1.2;
    transform: scaleY(1.1);
  }
  100% {
    opacity: 0.2;
    transform: scaleY(0.5);
  }
}

.pulse-overlay:empty {
  display: block;
}

@media screen and (max-width: 768px) {
  .pulsing-divider {
    height: calc(var(--divider-size) - 20px);
  }
}

/* ============================= */
/* ANIMATED STAR DIVIDER STYLES */
/* =========================== */

.starlight-divider-container {
  position: relative;
  height: var(--divider-size);
  overflow: hidden;
  background-color: rgb(var(--divider-bg-color));
  transform: scaleY(var(--star_animation_flip_y))
    scaleX(var(--star_animation_flip_x));
}

@media screen and (max-width: 750px) {
  .starlight-divider-container {
    height: calc(var(--divider-size) - 10px);
  }
}

.star {
  position: absolute;
  border-radius: 50%;
  background-color: var(--star-color);
  opacity: var(--star-opacity, 0.9);
  animation: twinkle var(--twinkle-duration, 3s) infinite ease-in-out;
  animation-delay: var(--twinkle-delay, 0s);
  box-shadow: var(--twinkle-glow);
}

.star:empty {
  display: block;
}

@keyframes twinkle {
  0% {
    opacity: var(--star-min-opacity, 0.3);
    transform: scale(0.7) translateY(0);
  }
  50% {
    opacity: var(--star-max-opacity, 1);
    transform: scale(1);
  }
  100% {
    opacity: var(--star-min-opacity, 0.3);
    transform: scale(0.7) translateY(var(--travel-distance, 0));
  }
}
.grid,
.list-unstyled,
summary {
  list-style: none;
}
.customer a,
.link,
.share-button__button:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.link-with-icon,
.nowrap {
  white-space: nowrap;
}
/* details[open] {
  box-shadow: 0px 4px 14px 0px #00000040 !important;
  background: #ffffff !important;
} */
.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close,
.quantity__rules-cart .loading-overlay:not(.hidden) ~ *,
.visibility-hidden,
product-info .loading-overlay:not(.hidden) ~ * {
  visibility: hidden;
}
details[open] > .header__submenu,
details[open] > .search-modal,
details[open] > .share-button__fallback {
  animation: animateMenuOpen var(--duration-default) ease;
}
.header__menu-item:hover .header__active-menu-item,
details[open]:hover > .header__menu-item {
  text-decoration-thickness: 0.2rem;
}
.badge,
.break,
.header__heading-link {
  word-break: break-word;
}
.color-accent-1,
:root {
  --color-heading: var(--color-base-heading);
  --color-foreground: var(--color-base-accent-3);
  --color-background: var(--color-base-accent-1);
  --gradient-background: var(--gradient-base-accent-1);
  --color-link: var(--color-base-outline-button-labels);
  --alpha-link: 0.85;
  --color-button: var(--color-base-accent-1);
  --color-button-text: var(--color-base-solid-button-labels);
  --alpha-button-background: 1;
  --alpha-button-border: 1;
  --color-badge-background: var(--color-background);
  --color-badge-border: var(--color-foreground);
  --alpha-badge-border: 0.1;
}
.color-inverse {
  --color-foreground: var(--color-base-accent-1);
  --color-background: var(--color-base-text);
  --gradient-background: rgb(var(--color-base-text));
}
.color-accent-1,
.color-accent-2,
.color-accent-3,
.color-custom-color-1,
.color-custom-color-2 {
  --color-foreground: var(--color-base-solid-button-labels);
}
.color-accent-1 {
  --color-background: var(--color-base-accent-1);
  --gradient-background: var(--gradient-base-accent-1);
}
.color-accent-2 {
  --color-background: var(--color-base-accent-2);
  --gradient-background: var(--gradient-base-accent-2);
}
.color-accent-3 {
  --color-background: var(--color-base-accent-3);
  --gradient-background: var(--gradient-base-accent-3);
}
.color-custom-color-1 {
  --color-background: var(--color-custom-color-1);
}
.color-custom-color-2 {
  --color-background: var(--color-custom-color-2);
}
.color-foreground-outline-button {
  --color-foreground: var(--color-base-outline-button-labels);
}
.color-foreground-accent-1 {
  --color-foreground: var(--color-base-accent-1);
}
.color-foreground-accent-2 {
  --color-foreground: var(--color-base-accent-2);
}
.color-accent-1,
.color-accent-2,
.color-accent-3,
.color-background-2,
.color-inverse {
  --color-link: var(--color-foreground);
  --alpha-link: 0.7;
  --color-button: var(--color-foreground);
  --color-button-text: var(--color-background);
  --color-badge-background: var(--color-background);
  --color-badge-border: var(--color-background);
  --alpha-badge-border: 1;
}
.button--secondary,
.button--tertiary {
  --color-button-text: var(--color-base-outline-button-labels);
}
.button--secondary {
  --color-button: var(--color-base-outline-button-labels);
  --color-button: var(--color-background);
  --alpha-button-background: 1;
}
.color-accent-1 .button--secondary,
.color-accent-2 .button--secondary,
.color-accent-3 .button--secondary,
.color-background-2 .button--secondary,
.color-inverse .button--secondary {
  --color-button: var(--color-background);
  --color-button-text: var(--color-foreground);
}
.button--tertiary {
  --color-button: var(--color-base-outline-button-labels);
  --alpha-button-background: 0;
  --alpha-button-border: 0.2;
}
.color-accent-1 .button--tertiary,
.color-accent-2 .button--tertiary,
.color-background-2 .button--tertiary,
.color-inverse .button--tertiary {
  --color-button: var(--color-foreground);
  --color-button-text: var(--color-foreground);
}
:root {
  --color-card-hover: var(--color-base-text);
}
.color-inverse {
  --color-card-hover: var(--color-base-accent-1);
}
.color-accent-1,
.color-accent-2,
.color-accent-3 {
  --color-card-hover: var(--color-base-solid-button-labels);
}
.color-icon-text,
:root {
  --color-icon: rgb(var(--color-base-text));
}
.color-icon-accent-1 {
  --color-icon: rgb(var(--color-base-accent-1));
}
.color-icon-accent-2 {
  --color-icon: rgb(var(--color-base-accent-2));
}
.color-icon-outline-button {
  --color-icon: rgb(var(--color-base-outline-button-labels));
}
.contains-card--product,
.product-card-wrapper .card {
  --border-radius: var(--product-card-corner-radius);
  --border-width: var(--product-card-border-width);
  --border-opacity: var(--product-card-border-opacity);
  --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--product-card-shadow-blur-radius);
  --shadow-opacity: var(--product-card-shadow-opacity);
  --shadow-visible: var(--product-card-shadow-visible);
  --image-padding: var(--product-card-image-padding);
  --text-alignment: var(--product-card-text-alignment);
}
.collection-card-wrapper .card,
.contains-card--collection {
  --border-radius: var(--collection-card-corner-radius);
  --border-width: var(--collection-card-border-width);
  --border-opacity: var(--collection-card-border-opacity);
  --shadow-horizontal-offset: var(--collection-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--collection-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--collection-card-shadow-blur-radius);
  --shadow-opacity: var(--collection-card-shadow-opacity);
  --shadow-visible: var(--collection-card-shadow-visible);
  --image-padding: var(--collection-card-image-padding);
  --text-alignment: var(--collection-card-text-alignment);
}

.article-card-wrapper .card,
.contains-card--article {
  --border-radius: var(--blog-card-corner-radius);
  --border-width: var(--blog-card-border-width);
  --border-opacity: var(--blog-card-border-opacity);
  --shadow-horizontal-offset: var(--blog-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--blog-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--blog-card-shadow-blur-radius);
  --shadow-opacity: var(--blog-card-shadow-opacity);
  --shadow-visible: var(--blog-card-shadow-visible);
  --image-padding: var(--blog-card-image-padding);
  --text-alignment: var(--blog-card-text-alignment);
}
.contains-content-container,
.content-container {
  --border-radius: var(--text-boxes-radius);
  --border-width: var(--text-boxes-border-width);
  --border-opacity: var(--text-boxes-border-opacity);
  --shadow-horizontal-offset: var(--text-boxes-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--text-boxes-shadow-vertical-offset);
  --shadow-blur-radius: var(--text-boxes-shadow-blur-radius);
  --shadow-opacity: var(--text-boxes-shadow-opacity);
  --shadow-visible: var(--text-boxes-shadow-visible);
}
.contains-media,
.global-media-settings {
  --border-radius: var(--media-radius);
  --border-width: var(--media-border-width);
  --border-opacity: var(--media-border-opacity);
  --shadow-horizontal-offset: var(--media-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--media-shadow-vertical-offset);
  --shadow-blur-radius: var(--media-shadow-blur-radius);
  --shadow-opacity: var(--media-shadow-opacity);
  --shadow-visible: var(--media-shadow-visible);
}
.hidden,
.no-js-inline,
.no-js:not(html),
html.no-js .no-js-hidden {
  display: none !important;
}
html.no-js .no-js:not(html) {
  display: block !important;
}
html.no-js .no-js-inline {
  display: inline-block !important;
}
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.page-width-desktop {
  padding: 0;
  margin: 0 auto;
}
.isolate {
  position: relative;
  z-index: 0;
}
.section + .section {
  margin-top: var(--spacing-sections-mobile);
}
.element-margin-top {
  margin-top: 5rem;
}
.color-accent-1,
.color-accent-2,
.color-accent-3,
.color-inverse,
.color-custom-color-1,
.color-custom-color-2,
body {
  color: rgba(var(--color-foreground), 0.9);
  background-color: rgb(var(--color-background));
}
.ks-html-content p,
.ks-html-content p span {
  font-family: var(--font-body-family) !important;
  line-height: 1.3 !important;
}
.background-secondary {
  background-color: rgba(var(--color-foreground), 0.04);
}
.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}
.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}
.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}
.list-unstyled {
  margin: 0;
  padding: 0;
}
.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;
}
.visually-hidden--inline {
  margin: 0;
  height: 1em;
}
.overflow-hidden,
.overflow-hidden-mobile,
.overflow-hidden-tablet {
  overflow: hidden;
}
.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}
.icon-arrow,
.title-wrapper-with-link .link-with-icon svg {
  width: 1.5rem;
}
.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.disclosure-has-popup,
.media,
summary {
  position: relative;
}
::selection {
  background-color: rgba(var(--color-foreground), 0.2);
}
.text-body {
  font-size: 1em;
  letter-spacing: 0em;
  line-height: 1.75em;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}
.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  /* color: rgb(var(--color-foreground)); */
  color: rgb(var(--color-heading));
  /* line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale))); */
  line-height: calc(1 + 0.2 / max(1, var(--font-heading-scale)));
  word-break: break-word;
  text-transform: var(--heading-text-transform);
}
.h6,
.link--text:hover,
blockquote,
h6 {
  color: rgba(var(--color-foreground), 0.9);
}
/* .hxl {
  font-size: calc(var(--font-heading-scale) * 4rem);
}
.h0 {
  font-size: calc(var(--font-heading-scale) * 3.25rem);
}
.h1,
h1 {
  font-size: calc(var(--font-heading-scale) * 2.5rem);
}
.h2,
h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}
.h3,
h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
}
.h4,
h4 {
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}
.h5,
h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
} */
.hxl {
  font-size: calc(var(--font-heading-mob-size) + 48px);
}
.h0 {
  font-size: var(--font-heading-mob-size);
}
.h1,
h1 {
  font-size: calc(var(--font-heading-mob-size) - 4.25px);
}
.h2,
h2 {
  font-size: var(--font-heading-mob-size);
}
.h3,
h3 {
  font-size: calc(var(--font-heading-mob-size) - 11.2px);
}
.h5,
h5 {
  font-size: calc(var(--font-heading-mob-size) - 25.7px);
}
@media only screen and (min-width: 750px) {
  .hxl {
    font-size: calc(var(--font-heading-size) + 48px);
  }
  .h0 {
    font-size: var(--font-heading-size);
  }
  .h1,
  h1 {
    font-size: calc(var(--font-heading-size) - 4.25px);
  }
  .h2,
  h2 {
    font-size: var(--font-heading-size);
  }
  .h3,
  h3 {
    font-size: calc(var(--font-heading-size) - 11.2px);
  }
  .h5,
  h5 {
    font-size: calc(var(--font-heading-size) - 25.7px);
  }
}
.h6,
h6 {
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}
blockquote {
  font-style: italic;
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: 1rem;
}
.caption {
  font-size: 16px;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.7 / var(--font-body-scale));
}
.caption-with-letter-spacing {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: uppercase;
}
.caption-with-letter-spacing--medium {
  font-size: 1.2rem;
  letter-spacing: 0.16rem;
}
.caption-with-letter-spacing--large {
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
}
.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  /* font-size: 1.3rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale)); */
  font-size: 0.929em;
  line-height: 1.47em;
  letter-spacing: 0.028em;
}
.color-foreground,
.link--text {
  color: rgb(var(--color-foreground));
}
table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
}
table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.light {
  opacity: 0.7;
}
.circle-divider:last-of-type::after,
a:empty,
article:empty,
div:empty,
dl:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
p:empty,
section:empty,
ul:empty {
  display: none;
}
.customer a,
.link {
  cursor: pointer;
  display: inline-block;
  border: none;
  box-shadow: none;
  color: rgb(var(--color-link));
  background-color: transparent;
  font-size: 1em;
  font-family: inherit;
  transition: all 0.2s ease;
}

.customer a:active,
.link:active,
.button:active {
  transform: translateY(1px);
}

.link-with-icon {
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  margin-bottom: 4.5rem;
}
.link-with-icon .icon {
  width: 1.5rem;
  margin-left: 1rem;
}
.circle-divider::after {
  content: "\2022";
  margin: 0 1.3rem 0 1.5rem;
}
hr {
  border: none;
  height: 0.1rem;
  background-color: rgba(var(--color-foreground), 0.2);
  display: block;
  margin: 5rem 0;
}
.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}
.placeholder {
  background-color: rgba(var(--color-foreground), 0.04);
  color: rgba(var(--color-foreground), 0.55);
  fill: rgba(var(--color-foreground), 0.55);
}
details > * {
  box-sizing: border-box;
}
:root {
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-long: 500ms;
}
.customer a,
.underlined-link {
  color: rgba(var(--color-link), var(--alpha-link));
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness 0.1s;
}
.customer a:hover,
.underlined-link:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}
.h3 .icon-arrow,
h3 .icon-arrow {
  width: calc(var(--font-heading-scale) * 1.5rem);
}
.animate-arrow .icon-arrow path {
  transform: translateX(-0.25rem);
  transition: transform var(--duration-short) ease;
}
.animate-arrow:hover .icon-arrow path {
  transform: translateX(-0.05rem);
}

.shopify-policy__container {
  padding-bottom: 3rem;
}
summary {
  cursor: pointer;
}
summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.2rem);
}
summary::-webkit-details-marker {
  display: none;
}
.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: " ";
  background: 0 0;
}
.disclosure-has-popup > summary::before {
  display: none;
}
.disclosure-has-popup[open] > summary + * {
  z-index: 100;
}
.no-js .focus-inset:focus:not(:focus-visible),
.no-js .focus-offset:focus:not(:focus-visible),
.no-js :focus:not(:focus-visible),
:focus {
  outline: 0;
  box-shadow: none;
}
:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}
.focused,
.no-js :focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}
.focus-inset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}
.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}
.focus-offset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}
.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}
.title,
.title-wrapper-with-link {
  margin: 3rem 0 2rem;
}
.title-wrapper-with-link .title {
  margin: 0;
}
.title .link {
  font-size: inherit;
}
.title-wrapper {
  margin-bottom: 3rem;
}
.title-wrapper-with-link {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.title-wrapper-with-link--spacing {
  justify-content: space-between;
}
.title--primary {
  margin: 4rem 0;
}
.title-wrapper--self-padded-mobile,
.title-wrapper--self-padded-tablet-down {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.title-wrapper-with-link .link-with-icon {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.title-wrapper-with-link a {
  color: rgb(var(--color-link));
  margin-top: 0;
  flex-shrink: 0;
}
.title-wrapper--no-top-margin,
.title-wrapper--no-top-margin > .title {
  margin-top: 0;
}
.subtitle {
  font-size: 1.8rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.7);
}
.subtitle--small {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
.subtitle--medium {
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
}
.collage-wrapper-title,
.collection-hero__title,
.collection__title,
.main-page-title,
.page-title,
.title--primary,
.title-wrapper,
.title-wrapper--no-top-margin,
.title-wrapper--self-padded-mobile,
.title-wrapper--self-padded-tablet-down,
.title-wrapper-with-link {
  text-align: center;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 0;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}
.grid:last-child,
.mb-0 {
  margin-bottom: 0;
}
.grid__item {
  width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}
.grid--gapless.grid {
  column-gap: 0;
  row-gap: 0;
}
.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}
.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
}
.image-placeholder {
  text-decoration: none;
  width: 19px;
  position: relative;
  letter-spacing: 0em;
  font-weight: 500;
  color: inherit;
  display: inline-block;
  min-width: 19px;
}
.image-row {
  flex: 1;
  border-radius: 20px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 9px 8px;
}
.image-row-child {
  width: 5px;
  height: 12px;
  position: relative;
}
.image-row1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px 0 0;
}
.a {
  text-decoration: none;
  width: 19px;
  position: relative;
  letter-spacing: 0em;
  font-weight: 500;
  color: inherit;
  display: inline-block;
  min-width: 19px;
}
.image-row-item {
  width: 5px;
  height: 12px;
  position: relative;
}
.a1 {
  text-decoration: none;
  width: 19px;
  position: relative;
  letter-spacing: 0em;
  font-weight: 500;
  color: inherit;
  display: inline-block;
  min-width: 19px;
}
.image-grid,
.image-row4 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.image-row4 {
  flex: 1;
  border-radius: 20px;
  background-color: white;
  overflow: hidden;
  padding: 9px 8px;
}
.image-grid {
  width: 139px;
  gap: 6px;
  font-size: 18px;
  color: #000;
}
.announcement-save-timer-header {
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.product-page-header {
  max-width: 100vw;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.star-rating {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 750px) and (max-width: 850px) {
  product-info .star-rating {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .star-rating .rating {
    margin-left: 0 !important;
  }

  .star-rating .rating p {
    margin: 0;
  }
}

.stars-outer {
  position: relative;
  display: inline-block;
  /* font-size: 2rem; Adjust the size as needed */
}

.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  display: block !important;
}

.stars-outer::before,
.stars-inner::before {
  content: "★★★★★";
  font-family: "Arial", sans-serif;
  /* font-size: 2rem; */
  font-size: 1.45em;
  color: #d3d3d3;
}

.stars-inner::before {
  color: rgb(var(--color-base-accent-3));
}

.rating {
  margin-left: 10px;
  font-size: 1.5rem;
  display: inline-block;
  min-width: 15px;
  /* text-wrap: nowrap; */
}
@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }
  .page-width--narrow {
    padding: 0 9rem;
  }
  .page-width-desktop {
    padding: 0;
  }
  .page-width-tablet {
    padding: 0 5rem;
  }
  .section + .section {
    margin-top: var(--spacing-sections-desktop);
  }
  .element-margin {
    margin-top: calc(5rem + var(--page-width-margin));
  }
  blockquote {
    padding-left: 1.5rem;
  }
  .caption {
    font-size: 1em;
  }
  hr {
    margin: 7rem 0;
  }
  .disclosure-has-popup[open] > summary + * {
    /* z-index: 4; */
  }
  .facets .disclosure-has-popup[open] > summary + * {
    z-index: 2;
  }
  .title-wrapper--self-padded-mobile {
    padding-left: 0;
    padding-right: 0;
  }
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing);
  }
  .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
  .grid--3-col .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}
.grid--2-col .grid__item {
  width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
}
@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}
@media screen and (max-width: 989px) {
  .grid--1-col-tablet-down .grid__item {
    width: 100%;
    max-width: 100%;
  }
  .slider--tablet.grid--peek {
    margin: 0;
    width: 100%;
  }
  .slider--tablet.grid--peek .grid__item {
    box-sizing: content-box;
    margin: 0;
  }
}
@media screen and (min-width: 990px) {
  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }
  .page-width-desktop {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
  .large-up-hide {
    display: none !important;
  }
  .title,
  .title-wrapper-with-link {
    margin: 5rem 0 3rem;
  }
  .title--primary {
    margin: 2rem 0;
  }
  .title-wrapper-with-link {
    align-items: center;
  }
  .title-wrapper-with-link .title {
    margin-bottom: 0;
  }
  .title-wrapper--self-padded-tablet-down {
    padding-left: 0;
    padding-right: 0;
  }
  .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
  }
  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }
  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
  .grid--1-col-desktop {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .grid--1-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
  .grid--peek.slider--mobile {
    margin: 0;
    width: 100%;
  }
  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin: 0;
  }
  .grid--peek .grid__item {
    min-width: 35%;
  }
  .grid--peek.slider .grid__item:first-of-type {
    margin-left: 2rem;
  }
  .grid--peek.slider:after {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }
  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }
  .grid--peek .grid__item,
  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) - 1rem);
  }
  .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item,
  .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing));
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item,
  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
  .slider--tablet.grid--peek .grid__item:first-of-type {
    margin-left: 1.5rem;
  }
  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
  .grid--1-col-tablet-down.grid--peek .grid__item {
    width: calc(100% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
}
.media {
  display: block;
  background-color: rgba(var(--color-foreground), 0.1);
  overflow: hidden;
}
.media--transparent {
  background-color: transparent;
}
.media model-viewer,
.media > :not(.zoom):not(.deferred-media__poster-button) {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 770px) {
  media-gallery .media model-viewer,
  media-gallery .media > :not(.zoom):not(.deferred-media__poster-button) {
    width: var(--mobile-width);
    right: 0;
    margin: auto;
  }
}
.media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.media--square {
  padding-bottom: 100%;
}
.media--portrait {
  padding-bottom: 125%;
}
.media--landscape {
  padding-bottom: 66.6%;
}
.media--cropped {
  padding-bottom: 56%;
}
.media--16-9 {
  padding-bottom: 56.25%;
}
.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}
.media.media--hover-effect > img + img {
  opacity: 0;
}
deferred-media,
details[open] .modal-overlay {
  display: block;
}
.button,
.cart__dynamic-checkout-buttons [role="button"],
.cart__dynamic-checkout-buttons iframe,
.customer button,
.shopify-challenge__button,
.shopify-payment-button [role="button"],
button.shopify-payment-button__button--unbranded {
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
  --shadow-blur-radius: var(--buttons-shadow-blur-radius);
  --shadow-opacity: var(--buttons-shadow-opacity);
  --shadow-visible: var(--buttons-shadow-visible);
  --border-offset: var(--buttons-border-offset);
  --border-opacity: calc(1 - var(--buttons-border-opacity));
  border-radius: var(--buttons-radius-outset);
  position: relative;
  /* font-weight: 700; */
  font-weight: var(--font-button-weight);
  font-family: var(--font-button-family);
}
.button span,
.button p {
  font-family: var(--font-button-family);
  /* font-weight: 500; */
  font-weight: var(--font-button-weight);
}
.button,
.customer button,
.shopify-challenge__button,
button.shopify-payment-button__button--unbranded {
  min-width: calc(12rem + var(--buttons-border-width) * 2);
  min-height: calc(4.5rem + var(--buttons-border-width) * 2);
  font-weight: 500;
}
.shopify-payment-button__button--branded {
  z-index: auto;
}
.cart__dynamic-checkout-buttons iframe {
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
    var(--shadow-blur-radius)
    rgba(var(--color-base-text), var(--shadow-opacity));
}
.button,
.customer button,
.shopify-challenge__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  /* font: inherit; */
  text-decoration: none;
  color: rgb(var(--color-button-text));
  transition: box-shadow var(--duration-short) ease;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-button-family);
  font-weight: var(--font-button-weight);
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  /* font-weight: 500; */
}
.buy-now-button {
  width: 100%;
  border: none;
}

.select__select,
.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}
.button:before,
.cart__dynamic-checkout-buttons [role="button"]:before,
.customer button:before,
.shopify-challenge__button:before,
.shopify-payment-button [role="button"]:before {
  /* ,
.shopify-payment-button__button--unbranded:before  */
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--buttons-radius-outset);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
    var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity));
}
.button:after,
.customer button:after,
.shopify-challenge__button:after,
.shopify-payment-button__button--unbranded:after {
  /* ,
.shopify-payment-button__button--unbranded:after  */
  content: "";
  position: absolute;
  top: var(--buttons-border-width);
  right: var(--buttons-border-width);
  bottom: var(--buttons-border-width);
  left: var(--buttons-border-width);
  z-index: 1;
  border-radius: var(--buttons-radius);
  /* box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--buttons-border-width)
      rgba(var(--color-button), var(--alpha-button-background)); */
  transition: box-shadow var(--duration-short) ease;
}
.button:not([disabled]):hover::after,
.customer button:hover::after,
.shopify-challenge__button:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  --border-offset: 1.3px;
  /* box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--buttons-border-width) + 1px)
      rgba(var(--color-button), var(--alpha-button-background)); */
}
.button--secondary:after {
  --border-opacity: var(--buttons-border-opacity);
}
.button.focused,
.button:focus,
.button:focus-visible,
.shopify-payment-button [role="button"]:focus,
.shopify-payment-button [role="button"]:focus-visible,
.shopify-payment-button__button--unbranded:focus,
.shopify-payment-button__button--unbranded:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}
.button:focus:not(:focus-visible):not(.focused),
.shopify-payment-button [role="button"]:focus:not(:focus-visible):not(.focused),
.shopify-payment-button__button--unbranded:focus:not(:focus-visible):not(
    .focused
  ) {
  box-shadow: inherit;
}
.button::selection,
.customer button::selection,
.shopify-challenge__button::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}
.button,
.button-label,
.customer button,
.shopify-challenge__button {
  font-size: 1.1428571429em;
  letter-spacing: 0.07142857143em;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
}
.button--tertiary {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  min-width: calc(9rem + var(--buttons-border-width) * 2);
  min-height: calc(3.5rem + var(--buttons-border-width) * 2);
}
.button--small {
  padding: 1.2rem 2.6rem;
}
.mb-1em {
  margin-bottom: 1em;
}
.btn--mt-center {
  margin: 1em auto;
  width: fit-content;
  display: flex;
}

.button.disabled,
.button:disabled,
.button[aria-disabled="true"],
.customer button.disabled,
.customer button:disabled,
.customer button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}
.quantity__button.disabled {
  cursor: not-allowed;
}
.button--full-width {
  display: flex;
  width: 100%;
}
.button.loading {
  color: transparent;
  position: relative;
}
.button.loading > .loading-overlay__spinner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__icon:hover .icon,
.modal__close-button:hover .icon,
.share-button__fallback button:hover svg {
  transform: scale(1.07);
}
.button.loading > .loading-overlay__spinner .spinner,
.share-button details {
  width: fit-content;
}
.button.loading > .loading-overlay__spinner .path {
  stroke: rgb(var(--color-button-text));
}
@media (hover: hover) {
  a.button:not([aria-disabled="true"]) {
    transition: 0.3s ease-in-out;
    overflow: hidden;
  }
  a.button:not([aria-disabled="true"])::before {
    top: 50%;
    right: 3rem;
    left: auto;
    bottom: auto;
    z-index: 1;
    box-shadow: none;
    border-radius: 0;
    background: rgb(var(--color-button-text));
    transform: translate(calc(3rem + 100%), -50%);
    height: 0.65em;
    width: 2em;
    clip-path: polygon(
      0% 32%,
      70% 32%,
      70% 0%,
      100% 50%,
      70% 100%,
      70% 68%,
      0% 68%
    );
    transition: 0.3s ease-in-out;
    content: var(--animatioin-button-text-with-arrow-content);
  }
  a.button:not([aria-disabled="true"]):hover {
    padding-right: var(--animatioin-button-text-with-arrow-padding);
    white-space: nowrap;
  }
  a.button:not([aria-disabled="true"]):hover::before {
    transform: translate(50%, -50%);
  }
}
.share-button {
  display: block;
  position: relative;
}
.share-button__button {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: rgb(var(--color-link));
  margin-left: 0;
  padding-left: 0;
  min-height: 4.4rem;
}
.share-button__button,
.share-button__fallback button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.share-button__button .icon-share {
  height: 1.2rem;
  margin-right: 1rem;
  min-width: 1.3rem;
}
.share-button__fallback {
  display: flex;
  align-items: center;
  position: absolute;
  top: 3rem;
  left: 0.1rem;
  z-index: 3;
  width: 100%;
  min-width: max-content;
  border-radius: var(--inputs-radius);
  border: 0;
}
.customer .field:after,
.customer select:after,
.field:after,
.localization-form__select:after,
  /*.quantity:after,*/
.select:after,
.share-button__fallback:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width)
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}
.field,
.select,
.text-area {
  position: relative;
  width: 100%;
}
.quantity:before,
.share-button__fallback:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}
.share-button__fallback button {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: var(--inputs-border-width);
}
.share-button__fallback button:hover {
  color: rgba(var(--color-foreground), 0.9);
}
.share-button__close,
.share-button__copy {
  background-color: transparent;
  color: rgb(var(--color-foreground));
}
.share-button__close:focus-visible,
.share-button__copy:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}
.share-button__close:focus,
.share-button__copy:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}
.field:not(:focus-visible):not(.focused)
  + .share-button__close:not(:focus-visible):not(.focused),
.field:not(:focus-visible):not(.focused)
  + .share-button__copy:not(:focus-visible):not(.focused) {
  background-color: inherit;
}
.share-button__fallback .field:after,
.share-button__fallback .field:before {
  content: none;
}
.share-button__fallback .field {
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  transition: none;
}
.share-button__fallback .field__input:-webkit-autofill,
.share-button__fallback .field__input:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.1rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}
.share-button__fallback .field__input {
  box-shadow: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  filter: none;
  min-width: auto;
  min-height: auto;
}
.share-button__fallback .field__input:hover {
  box-shadow: none;
}
.share-button__fallback .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.share-button__message:not(:empty) {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0.8rem 0 0.8rem 1.5rem;
  margin: var(--inputs-border-width);
}
.share-button__message:not(:empty):not(.hidden) ~ * {
  display: none;
}
.customer .field input,
.customer select,
.field__input,
.select__select {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-size: 1.1428571429em;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  border-radius: var(--inputs-radius);
  height: 4.5rem;
  min-height: calc(var(--inputs-border-width) * 2);
  min-width: calc(7rem + (var(--inputs-border-width) * 2));
  position: relative;
  border: 0;
}
.customer .field:before,
.customer select:before,
.field:before,
.localization-form__select:before,
.select:before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}
.select__select {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.9);
}
.customer .field:hover.field:after,
.customer select:hover.select:after,
.field:hover.field:after,
.localization-form__select:hover.localization-form__select:after,
.select:hover.select:after,
.select__select:hover.select__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  outline: 0;
  border-radius: var(--inputs-radius);
}
.customer .field input:focus-visible,
.customer select:focus-visible,
.field__input:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after,
.select__select:focus-visible {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}
.customer .field input:focus,
.customer select:focus,
.field__input:focus,
.localization-form__select:focus.localization-form__select:after,
.select__select:focus {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}
.select--small .select__select,
.select--small::after,
.select--small::before {
  border-radius: calc((var(--inputs-radius-outset)) / 2);
}
.localization-form__select:focus {
  outline: 0;
  box-shadow: none;
}
.select,
.text-area {
  display: flex;
}
.customer select + svg,
.select .icon-caret {
  height: 0.6rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: calc(var(--inputs-border-width) + 1.5rem);
}
.customer select,
.select__select {
  cursor: pointer;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  padding: 0 calc(var(--inputs-border-width) + 3rem) 0 2rem;
  margin: var(--inputs-border-width);
  min-height: calc(var(--inputs-border-width) * 2);
}
.variant-selects--small {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.variant-selects--small .product-form__input--dropdown {
  flex: 0 0 auto;
  margin: 0;
}
.variant-selects--small .form__label {
  text-align: left;
  margin-bottom: 0;
}
.select--small .select__select {
  font-size: 1.2rem;
  height: 2.25em;
  padding: 0 2.5rem 0 1rem;
}
.field {
  display: flex;
  transition: box-shadow var(--duration-short) ease;
}
.customer .field {
  display: flex;
}
.field--with-error {
  flex-wrap: wrap;
}
.customer .field input,
.field__input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
}
.customer .field label,
.field__label {
  font-size: 1.6rem;
  left: calc(var(--inputs-border-width) + 2rem);
  top: calc(1rem + var(--inputs-border-width));
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--duration-short) ease,
    font-size var(--duration-short) ease;
  color: rgba(var(--color-foreground), 0.9);
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
.customer .field input:-webkit-autofill ~ label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.field__input:-webkit-autofill ~ .field__label,
.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label {
  font-size: 1rem;
  top: calc(var(--inputs-border-width) + 0.5rem);
  left: calc(var(--inputs-border-width) + 2rem);
  letter-spacing: 0.04rem;
}
.customer .field input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.field__input:focus,
.field__input:not(:placeholder-shown) {
  padding: 2.2rem 1.5rem 0.8rem 2rem;
  margin: var(--inputs-border-width);
}
.customer .field input::-webkit-search-cancel-button,
.field__input::-webkit-search-cancel-button {
  display: none;
}
.customer .field input::placeholder,
.field__input::placeholder {
  opacity: 0;
}
.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}
.quantity,
.quantity__rules,
.quantity__rules-cart,
details-disclosure > details,
header-menu > details {
  position: relative;
}
.field__button > svg {
  height: 2.5rem;
  width: 2.5rem;
}
.customer .field input:-webkit-autofill ~ label,
.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label {
  color: #000;
}
.text-area {
  min-height: 10rem;
  resize: none;
}
input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}
.form__label {
  display: block;
  margin-bottom: 0.6rem;
}
.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}
.form-status,
.form__message--large {
  font-size: 1.6rem;
}
.customer .field .form__message {
  font-size: 1.4rem;
  text-align: left;
}
.customer .form__message svg,
.form__message .icon {
  flex-shrink: 0;
  height: 1.3rem;
  margin-right: 0.5rem;
  width: 1.3rem;
}
.customer .form__message svg,
.form__message--large .icon {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}
.customer .field .form__message svg {
  align-self: start;
}
.form-status {
  margin: 0;
}
.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}
.form-status-list li {
  list-style-position: inside;
}
.form-status-list .link::first-letter {
  text-transform: capitalize;
}
.quantity-buttons {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: fit-content;
  flex-direction: column;
  gap: 24.8px;
  max-width: 100%;
}
.quantity-icons-parent {
  width: 150px;
  border: 1px solid rgb(212, 212, 212);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  border-radius: 10px !important;
}
.quantity-icon {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.quantity-icons {
  /* height: 41px; */
  width: 41px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  cursor: pointer;
}

.quantity-animated .quantity-icons:hover {
  background: #ebedee !important;
}

.quantity-animated .quantity-icon svg {
  transition: scale 0.1s ease;
}

.quantity-animated .quantity-icon:hover svg {
  scale: 1.1;
}

.quantity-animated .quantity-icon:active svg {
  scale: 0.9;
}

quantity-input-v2 .quantity-animated:has(.quantity-minus-icon:active) .quantity-number,
quantity-input-v2 .quantity-animated:has(.quantity-plus-icon:active) .quantity-number,
cart-drawer .quantity-animated:has(.quantity-minus-icon:active) .quantity-number span,
cart-drawer .quantity-animated:has(.quantity-plus-icon:active) .quantity-number span {
  transform: translateY(2px);
}

/* .quantity-icons-right {
  border-left: 1px solid #c2ccc5 ;
}
.quantity-icons-left {
  border-right: 1px solid #c2ccc5 ;
} */
.quantity-icon.disabled {
  cursor: not-allowed;
}
.quantity-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
}
.quantity-number {
  position: relative;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: #7b7a89;
  text-align: left;
  display: flex;
  align-items: center;
}
.product-buy-buttons-container {
  display: flex;
  align-self: stretch !important;
  flex-direction: column;
  gap: 10px !important;
  padding: 0 !important;
}
.product-form-button {
  cursor: pointer !important;
  border: 0 !important;
  padding: 20px 39px 20px 40px !important;
  /*background-color: rgb(var(--color-base-accent-3)) !important;*/
  flex: 1 !important;
  box-shadow: 0 5px 20px rgba(50, 118, 71, 0.1) !important;
  border-radius: 3px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  max-width: 100%;
  white-space: nowrap !important;
  min-height: 58px !important;
  /* margin-bottom: 10px; */
}
.product-form-button::before,
.product-form-button::after,
.shopify-payment-button__button--unbranded:after {
  border-radius: 1px !important;
}
.product-form-button-text {
  flex: 1 !important;
  position: relative !important;
  font-size: 18px !important;
  letter-spacing: 0px !important;
  line-height: 18px !important;
  color: #ffffff;
  text-align: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quantity__label {
  color: #757575;
}
.product-variants-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 20px;
  box-sizing: border-box;
  gap: 12px;
  max-width: 100%;
  border-bottom: 1px solid #bfbbe4;
  margin-top: 10px;
}
.shop-bts {
  padding: 5px 0;
}
.shop-bts .product-variants-container {
  width: 360px;
}
.product-variants-title {
  position: relative;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 18px;
  color: #757575;
  text-align: left;
  display: inline-block;
  min-width: 44px;
  font-weight: bold;
}
.product-variants-labels-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 203.6px;
  justify-content: space-between;
  padding: 0 0 3.2px;
  box-sizing: border-box;
  gap: 20px;
}
.product-variants-button-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 11px;
}
.product-variants-button-input {
  cursor: pointer;
  margin: 0;
  height: 19px;
  width: 19px;
  position: relative;
  border-radius: 9.5px;
  border: 1px solid #383838;
  box-sizing: border-box;
}
.product-variants-label-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.5px 0 0;
}
.product-variants-label {
  position: relative;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 16px;
  font-weight: 600;
  color: #383838;
  text-align: left;
  display: inline-block;
  min-width: 45.1px;
  flex-shrink: 0;
}
@media screen and (max-width: 450px) {
  .product-form__buttons.product-form__buttons--uppercase {
    padding: 0 !important;
    max-width: 100%;
  }
  .product-buy-buttons-container {
    display: flex;
  }
  .product-form-button {
    max-width: 100% !important;
  }
}
.home-cart-button::before,
.home-cart-button::after,
.home-cart-button .product-form-button-text::before,
.home-cart-button .product-form-button-text::after {
  /* display: none !important; */
}
.footer-contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-description {
  margin: 0;
}
details[open] {
  padding-bottom: 1px !important;
}
.quantity {
  color: rgba(var(--color-foreground));
  /* width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2); */
  display: flex;
  border-radius: var(--inputs-radius);
  min-height: calc((var(--inputs-border-width) * 2) + 4.5rem);
}
.quantity__button,
.quantity__input {
  border: 0;
  background-color: transparent;
}
.quantity__input {
  color: currentColor;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  padding: 0 0.5rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}
.quantity__button {
  width: calc(4.5rem / var(--font-body-scale));
  flex-shrink: 0;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
}
.announcement-bar,
.header-wrapper--border-bottom,
.search-modal {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}
.quantity__button:first-child {
  margin-left: calc(var(--inputs-border-width));
}
.quantity__button:last-child {
  margin-right: calc(var(--inputs-border-width));
}
.quantity__button svg {
  width: 1.5rem;
  pointer-events: none;
}
.quantity__button:focus-visible,
.quantity__input:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}
.quantity__button:focus,
.quantity__input:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}
.quantity__button:not(:focus-visible):not(.focused),
.quantity__input:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}
.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:active,
.quantity__input:-webkit-autofill:hover {
  box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
}
.quantity__input::-webkit-inner-spin-button,
.quantity__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity__input[type="number"] {
  -moz-appearance: textfield;
}
.quantity__rules {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}
.quantity__rules .caption {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}
.cart-count-bubble:empty,
.header:not(.header--has-menu) * > .header__search,
.modal__toggle-close,
.no-js .modal__close-button.link,
.no-js details[open] .modal__toggle-open,
menu-drawer + .header__search {
  display: none;
}
.quantity__rules .divider + .divider::before {
  content: "\2022";
  margin: 0 0.5rem;
}
.modal__toggle {
  list-style-type: none;
}
.no-js details[open] .modal__toggle {
  position: absolute;
  z-index: 5;
}
.no-js details[open] svg.modal__toggle-close {
  display: flex;
  z-index: 1;
  height: 1.7rem;
  width: 1.7rem;
}
.modal__toggle-open {
  display: flex;
}
.modal__close-button.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 4.4rem;
  width: 4.4rem;
  background-color: transparent;
}
.modal__close-button .icon {
  width: 1.7rem;
  height: 1.7rem;
}
.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-modal {
  cursor: zoom-out;
}
.media-modal .deferred-media {
  cursor: initial;
}
.cart-count-bubble {
  position: absolute;
  /* background-color: rgb(var(--color-button)); */
  background-color: rgb(var(--color-navigation-links), 0.85);
  color: rgb(var(--color-button-text));
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  bottom: 0.8rem;
  left: 2.2rem;
}
.announcement-bar,
.announcement-bar__link:hover,
.header__heading-link:hover .h2,
.header__icon {
  color: rgb(var(--color-foreground));
}
.cart-count-bubble span {
  line-height: 1.4rem;
}
.announcement-bar__link {
  display: block;
  width: 100%;
  padding: 1rem 0;
  text-decoration: none;
}
.announcement-bar__link:hover {
  background-color: rgba(var(--color-card-hover), 0.06);
}
.announcement-bar__link .icon-arrow {
  display: inline-block;
  pointer-events: none;
  margin-left: 0.8rem;
  vertical-align: middle;
  margin-bottom: 0.2rem;
}
.announcement-bar__link .announcement-bar__message {
  padding: 0;
}
.announcement-bar__message {
  padding: 1rem 0;
  margin: 0;
  letter-spacing: 0.1rem;
}
.section-header.shopify-section-group-header-group {
  z-index: 5;
  /* margin: 0; */
}
.shopify-section-header-sticky {
  position: sticky;
  top: 0;
}
.shopify-section-header-hidden {
  top: calc(-1 * var(--header-height));
}
.shopify-section-header-hidden.menu-open {
  top: 0;
}
.section-header.animate {
  transition: top 0.15s ease-out;
}
.shopify-section-group-header-group {
  z-index: 4;
}
.section-header ~ .shopify-section-group-header-group {
  z-index: initial;
}
.header-wrapper {
  display: block;
  position: relative;
  background-color: rgb(var(--color-background));
}
.header {
  display: grid;
  grid-template-areas: "left-icon heading icons";
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}
@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
  .header--middle-left:not(.header--has-menu),
  .header--top-left {
    grid-template-areas: "heading icons" "navigation navigation";
    grid-template-columns: 1fr auto;
  }
  .header--middle-left {
    grid-template-areas: "heading navigation icons";
    grid-template-columns: auto auto 1fr;
    column-gap: 2rem;
  }
  .header--middle-center {
    grid-template-areas: "navigation heading icons";
    grid-template-columns: 1fr auto 1fr;
    column-gap: 2rem;
  }
  .header--middle-center a.header__heading-link {
    text-align: center;
  }
  .header--top-center {
    grid-template-areas: "left-icon heading icons" "navigation navigation navigation";
  }
  .header:not(.header--middle-left, .header--middle-center)
    .header__inline-menu {
    margin-top: 1.05rem;
  }
}
.header [tabindex="-1"]:focus {
  outline: 0;
}
.header__heading {
  margin: 0;
  line-height: 0;
}
.header > .header__heading-link {
  line-height: 0;
}
.header__heading,
.header__heading-link {
  grid-area: heading;
  justify-self: center;
}
.header__heading-link {
  display: inline-block !important;
  padding: 0.75rem !important;
  text-decoration: none !important;
}
.header__heading-link .h2 {
  line-height: 1;
  color: rgba(var(--color-foreground), 0.9);
}
.header__heading-logo {
  height: auto;
  width: 100%;
  transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);
}
.header__icons {
  display: flex;
  grid-area: icons;
  justify-self: end;
}
.header__icon span,
.header__icon:not(.header__icon--summary) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__icon span {
  height: 100%;
}
.header__icon::after {
  content: none;
}
.header__icon .icon {
  height: 2rem;
  width: 2rem;
  fill: none;
  vertical-align: middle;
}
.header__icon,
.header__icon--cart .icon {
  height: 4.4rem;
  width: 4.4rem;
  padding: 0;
  color: rgb(var(--color-navigation-links), 0.85);
}
.header__icon--cart {
  position: relative;
  margin-right: -1.2rem;
}
.header__icon--cart .icon-cart {
  width: 2.4rem;
  height: 2.4rem;
}
.header__icon--cart svg circle,
.header__icon--cart svg polyline {
  /* color: rgba(var(--color-foreground), 0.85); */
  color: rgb(var(--color-navigation-links), 0.85);
}
@media screen and (max-width: 989px) {
  .header__heading,
  .header__heading-link {
    text-align: center;
  }
  .header--mobile-left .header__heading,
  .header--mobile-left .header__heading-link {
    text-align: left;
    justify-self: start;
  }
  .header--mobile-left {
    grid-template-columns: auto 2fr 1fr;
  }
  menu-drawer ~ .header__icons .header__icon--account {
    display: none;
  }
}
.header__icon--menu[aria-expanded="true"]::before {
  content: "";
  top: 100%;
  left: 0;
  height: calc(
    var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%))
  );
  width: 100vw;
  display: block;
  position: absolute;
  /* background: rgba(var(--color-foreground), 0.5); */
  background-color: rgb(0 0 0 / 50%);
}
.header > .header__search {
  grid-area: left-icon;
  justify-self: start;
}
.header__search {
  display: inline-flex;
  line-height: 0;
}
.header--top-center > .header__search,
.no-js .predictive-search {
  display: none;
}
.header--top-center * > .header__search {
  display: inline-flex;
}
details[open] > .search-modal {
  opacity: 1;
}
details[open] .modal-overlay::after {
  position: absolute;
  content: "";
  /* background-color: rgb(var(--color-foreground), 0.5); */
  background-color: rgb(0 0 0 / 50%);
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
}
.no-js details[open] > .header__icon--search {
  top: 1rem;
  right: 0.5rem;
}
.search-modal {
  opacity: 0;
  min-height: calc(
    100% + var(--inputs-margin-offset) + (2 * var(--inputs-border-width))
  );
  height: 100%;
}
.search-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 5rem 0 1rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  position: relative;
}
.search-modal__content-bottom {
  bottom: calc((var(--inputs-margin-offset) / 2));
}
.search-modal__content-top {
  top: calc((var(--inputs-margin-offset) / 2));
}
.search-modal__form {
  width: 100%;
}
.search-modal__close-button {
  position: absolute;
  right: 0.3rem;
}
.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 150ms, opacity 150ms;
}
details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}
.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}
.js details > .header__submenu {
  opacity: 0;
  transform: translateY(-1.5rem);
}
details[open] > .header__submenu {
  animation-fill-mode: forwards;
  z-index: 1;
}
@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
  details[open] > .header__submenu {
    opacity: 1;
    transform: translateY(0);
  }
}
.header__inline-menu {
  margin-left: -1.2rem;
  grid-area: navigation;
  display: none;
}
.header--top-center .header__heading-link,
.header--top-center .header__inline-menu {
  margin-left: 0;
}
.header__menu {
  padding: 0 1rem;
}
.header__menu-item {
  font-size: 1.4rem;
  padding: 1.2rem !important;
  text-decoration: none !important;
  color: rgba(var(--color-foreground), 0.9);
}
.header__active-menu-item,
details[open] > .header__menu-item {
  text-decoration: underline;
}
.badge,
.color-accent-1 .header__menu-item:hover,
.color-accent-2 .header__menu-item:hover,
.color-accent-3 .header__menu-item:hover,
.header__active-menu-item {
  color: rgb(var(--color-foreground));
}
.header__menu-item:hover {
  transition: color var(--duration-short) ease;
  color: rgb(var(--color-base-accent-1));
}
details[open] > .header__menu-item .icon-caret {
  transform: rotate(180deg);
}
.header__active-menu-item {
  transition: text-decoration-thickness var(--duration-short) ease;
}

.header__submenu {
  transition: opacity var(--duration-default) ease,
    transform var(--duration-default) ease;
}
.global-settings-popup,
.header__submenu.global-settings-popup {
  border-radius: var(--popup-corner-radius);
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-style: solid;
  border-width: var(--popup-border-width);
  box-shadow: var(--popup-shadow-horizontal-offset)
    var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  z-index: -1;
}
.header__submenu.list-menu {
  padding: 2.4rem 0;
}
.header__submenu .header__submenu {
  background-color: rgba(var(--color-foreground), 0.03);
  padding: 0.5rem 0;
  margin: 0.5rem 0;
}
.header__submenu .header__menu-item:after {
  right: 2rem;
}
.header__submenu .header__menu-item {
  justify-content: space-between;
  padding: 0.8rem 2.4rem;
}
.header__submenu .header__submenu .header__menu-item {
  padding-left: 3.4rem;
}
.header__menu-item .icon-caret {
  right: 0.8rem;
}
.header__submenu .icon-caret {
  flex-shrink: 0;
  margin-left: 1rem;
  position: static;
}
@keyframes animateMenuOpen {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 750px) {
  .search-modal__close-button {
    right: 1rem;
  }
  .search-modal__content {
    padding: 0 6rem;
  }
  .overflow-hidden-mobile {
    overflow: auto;
  }
}
@media screen and (min-width: 990px) {
  .header__heading-link {
    margin-left: -0.75rem;
  }
  .header__heading,
  .header__heading-link {
    justify-self: start;
  }
  .header--top-center .header__heading,
  .header--top-center .header__heading-link {
    justify-self: center;
    text-align: center;
  }
  .header--top-center > .header__search,
  .header:not(.header--top-center) * > .header__search {
    display: inline-flex;
  }
  .header--top-center * > .header__search,
  .header:not(.header--top-center) > .header__search {
    display: none;
  }
  .search-modal__form {
    max-width: 74.2rem;
  }
  .search-modal__close-button {
    position: initial;
    margin-left: 0.5rem;
  }
  .header__inline-menu {
    display: block;
  }
  .header--top-center .header__inline-menu {
    justify-self: center;
  }
  .header--top-center .header__inline-menu > .list-menu--inline {
    justify-content: center;
  }
  .header--middle-left .header__inline-menu {
    margin-left: 0;
  }
  .overflow-hidden-tablet {
    overflow: auto;
  }
}
.badge {
  border: 1px solid transparent;
  border-radius: var(--badge-corner-radius);
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #ffffff;
  /* background-color: rgb(var(--color-badge-background)); */
  background: var(--sale-badge-background);
  border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
  font-weight: 700;
  line-height: 1.75em;
  padding: 0 0.5em;
  display: inline-flex;
  align-items: center;
  column-gap: 0.4em;
}
.badge svg {
  height: 1em;
}
.gradient {
  background: rgb(var(--color-background));
  /*background: var(--gradient-background);*/
  background-attachment: fixed;
}
.image-with-text__media-item {
  border-radius: 0;
}

.image-with-text__media,
.image-with-text__media img,
.image-block {
  border-radius: 0 !important;
}
@media screen and (forced-colors: active) {
  .button.loading {
    color: rgb(var(--color-foreground));
  }
  .icon {
    color: CanvasText;
    fill: CanvasText !important;
  }
  .icon-close-small path {
    stroke: CanvasText;
  }
}
.ratio {
  display: flex;
  position: relative;
  align-items: stretch;
}
.ratio::before {
  content: "";
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent);
}
.content-container {
  border-radius: var(--text-boxes-radius);
  border: var(--text-boxes-border-width) solid
    rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  position: relative;
}
.content-container:after {
  content: "";
  position: absolute;
  top: calc(var(--text-boxes-border-width) * -1);
  right: calc(var(--text-boxes-border-width) * -1);
  bottom: calc(var(--text-boxes-border-width) * -1);
  left: calc(var(--text-boxes-border-width) * -1);
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  z-index: -1;
}
.content-container--full-width:after {
  left: 0;
  right: 0;
  border-radius: 0;
}
@media screen and (max-width: 749px) {
  .content-container--full-width-mobile {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .content-container--full-width-mobile:after {
    display: none;
  }
}
.global-media-settings {
  position: relative;
  border: var(--media-border-width) solid
    rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  overflow: visible !important;
  background-color: rgb(var(--color-background));
}
.global-media-settings:after {
  position: absolute;
  top: calc(var(--media-border-width) * -1);
  right: calc(var(--media-border-width) * -1);
  bottom: calc(var(--media-border-width) * -1);
  left: calc(var(--media-border-width) * -1);
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset)
    var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  z-index: -1;
  pointer-events: none;
}
.global-media-settings--no-shadow {
  overflow: hidden !important;
}
.global-media-settings--no-shadow:after {
  content: none;
}
.global-media-settings iframe,
/*.global-media-settings img,*/
.global-media-settings model-viewer,
.global-media-settings video {
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}
.content-container--full-width,
.global-media-settings--full-width,
.global-media-settings--full-width img {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
@supports not (inset: 10px) {
  .grid {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }
  .grid__item {
    padding-left: var(--grid-mobile-horizontal-spacing);
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }
  .grid--gapless .grid__item {
    padding-left: 0;
    padding-bottom: 0;
  }
  @media screen and (min-width: 749px) {
    .grid--peek .grid__item {
      padding-left: var(--grid-mobile-horizontal-spacing);
    }
  }
  .product-grid .grid__item {
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }
  @media screen and (min-width: 750px) {
    .grid {
      margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
    }
    .grid__item {
      padding-left: var(--grid-desktop-horizontal-spacing);
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
    .product-grid .grid__item {
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
  }
}
.font-body-bold {
  font-weight: var(--font-body-weight-bold);
}
@media (forced-colors: active) {
  .button,
  .customer button,
  .shopify-challenge__button {
    border: 1px solid transparent;
  }
  .button.focused,
  .button:focus,
  .button:focus-visible,
  .shopify-payment-button [role="button"]:focus,
  .shopify-payment-button [role="button"]:focus-visible,
  .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button__button--unbranded:focus-visible {
    outline: transparent solid 1px;
  }
  .customer .field input:focus,
  .customer select:focus,
  .field__input:focus,
  .localization-form__select:focus.localization-form__select:after,
  .select__select:focus {
    outline: transparent solid 1px;
  }
  .localization-form__select:focus {
    outline: transparent solid 1px;
  }
}
body {
  overflow-x: hidden !important;
  padding: 0 !important;
}

.price--on-sale span.price__compare-price {
  display: block;
}
@media (max-width: 750px) {
  .product__media.media.media--transparent {
    /* border-radius: 0px !important; */
  }
}

.shopify-policy__title h1 {
  text-transform: lowercase;
}

.shopify-policy__title h1::first-letter {
  text-transform: capitalize;
}

h1.cart__empty-text,
h2.cart__empty-text {
  text-transform: lowercase;
}

h1.cart__empty-text::first-letter,
h2.cart__empty-text::first-letter {
  text-transform: capitalize;
}
.collage-wrapper-title {
  margin-top: 0;
  margin-bottom: 3rem;
}

.collage {
  display: grid;
}

.collage__item > * {
  width: 100%;
}

.collage__item .card__content {
  flex-grow: initial;
}

@media screen and (max-width: 749px) {
  .collage {
    grid-column-gap: var(--grid-mobile-horizontal-spacing);
    grid-row-gap: var(--grid-mobile-vertical-spacing);
  }

  .collage--mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collage--mobile .collage__item--left:nth-child(3n - 2) {
    grid-column: span 2;
  }

  .collage--mobile .collage__item--left:nth-child(3n - 2):nth-last-child(2) {
    grid-column: span 1;
  }

  .collage--mobile .collage__item--left:nth-child(3n) {
    grid-column-start: 2;
  }

  .collage--mobile .collage__item--right:nth-child(3n - 2) {
    grid-column-start: 1;
  }

  .collage--mobile .collage__item--right:nth-child(3n - 2):last-child {
    grid-column: span 2;
  }

  .collage--mobile .collage__item--right:nth-child(3n - 1) {
    grid-column-start: 2;
  }

  .collage--mobile .collage__item--right:nth-child(3n) {
    grid-column: 1 / span 2;
  }
}

@media screen and (min-width: 750px) {
  .collage {
    grid-auto-flow: column;
    grid-column-gap: var(--grid-desktop-horizontal-spacing);
    grid-row-gap: var(--grid-desktop-vertical-spacing);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collage__item--left:nth-child(3n - 2) {
    grid-column: 1 / span 2;
    grid-row: span 2;
  }

  .collage__item--left:nth-child(3n - 2):last-child {
    grid-column: 1 / span 3;
  }

  .collage__item--left:nth-child(3n - 1),
  .collage__item--left:nth-child(3n) {
    grid-column-start: 3;
  }

  .collage__item--left:nth-child(3n - 1):last-child {
    grid-row: span 2;
  }

  .collage__item--right:nth-child(3n - 2) {
    grid-column: 1 / span 1;
    grid-row: span 1;
  }

  .collage__item--right:nth-child(3n - 2):last-child {
    grid-column: 1 / span 3;
  }

  .collage__item--right:nth-child(3n - 1) {
    grid-column-start: 1;
  }

  .collage__item--right:nth-child(3n-1):last-child {
    grid-column: span 2;
  }

  .collage__item--right:nth-child(3n) {
    grid-column: 2 / span 2;
    grid-row: span 2;
  }

  .collage__item--collection:only-child,
  .collage__item--product:only-child {
    justify-self: center;
    max-width: 73rem;
    width: 100%;
  }
}

.collage-card {
  background: rgb(var(--color-background));
  height: 100%;
  position: relative;
  border-radius: var(--border-radius);
  border: var(--border-width) solid rgba(var(--color-foreground), var(--border-opacity));
  padding: var(--image-padding);
}

.collage-card:after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity));
  width: calc(var(--border-width) * 2 + 100%);
  height: calc(var(--border-width) * 2 + 100%);
  top: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
}

.collage-card.product-card-wrapper {
  --border-radius: var(--product-card-corner-radius);
  --border-width: var(--product-card-border-width);
  --border-opacity: var(--product-card-border-opacity);
  --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--product-card-shadow-blur-radius);
  --shadow-opacity: var(--product-card-shadow-opacity);
  --shadow-visible: var(--product-card-shadow-visible);
  --image-padding: var(--product-card-image-padding);
}

.collage-card .media {
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--border-radius) - var(--border-width) - var(--image-padding));
}

.collage-card .deferred-media {
  height: 100%;
  overflow: visible;
}

.collage-card__link {
  display: block;
  height: 100%;
}

.collage-card .deferred-media__poster {
  background-color: transparent;
  border: 0;
}

.collage-card .deferred-media__poster:after {
  content: "";
  position: absolute;
  z-index: 1;
  outline-offset: 0.3rem;
  bottom: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
  top: calc(var(--border-width) * -1);
}

.collage-card .deferred-media__poster:focus:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.collage-card .deferred-media__poster:focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.collage-card .deferred-media__poster:focus:not(:focus-visible),
.collage-card .deferred-media__poster:focus:not(:focus-visible):after {
  outline: none;
  box-shadow: none;
}

.collage-card .deferred-media__poster:focus {
  outline: none;
  box-shadow: none;
}
.collapsible-content {
  position: relative;
  z-index: 0;
}

.collapsible-section-layout {
  padding-bottom: 5rem;
  padding-top: 5rem;
}

@media screen and (min-width: 750px) {
  .collapsible-section-layout {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }
}

.collapsible-content__media--small {
  height: 19.4rem;
}

.collapsible-content__media--large {
  height: 43.5rem;
}

@media screen and (min-width: 750px) {
  .collapsible-content__media--small {
    height: 31.4rem;
  }

  .collapsible-content__media--large {
    height: 69.5rem;
  }
}

@media screen and (min-width: 750px) {
  .collapsible-content__grid--reverse {
    flex-direction: row-reverse;
  }
}

.collapsible-content-wrapper-narrow {
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
  max-width: 73.4rem;
}

.collapsible-content__header {
  word-break: break-word;
}

.collapsible-content__heading {
  margin-bottom: 2rem;
  margin-top: 0;
}

@media screen and (min-width: 750px) {
  .collapsible-content__heading {
    margin-bottom: 3rem;
  }
}

.collapsible-none-layout .accordion + .accordion {
  border-top: 0;
}

.collapsible-row-layout .accordion:not(:first-child):not(.color-accent-1) {
  margin-top: 1rem;
}

.caption-with-letter-spacing + h2 {
  margin-top: 1rem;
}

@media screen and (min-width: 750px) {
  .collapsible-content .accordion {
    margin-top: 0;
  }
}

.collapsible-row-layout .accordion {
  border: var(--text-boxes-border-width) solid
    rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  margin-bottom: 1.5rem;
}

.collapsible-row-layout .accordion summary,
.collapsible-row-layout .accordion .accordion__content {
  padding: 1.5rem;
}

.collapsible-row-layout .accordion .accordion__content {
  padding-top: 0;
}

.collapsible-content summary:hover {
  background: rgba(var(--color-foreground), 0.04);
}

.collapsible-content summary:hover .accordion__title span:last-child {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  @media screen and (min-width: 750px) {
    .collapsible-content__grid:not(.collapsible-content__grid--reverse)
      .grid__item:last-child,
    .collapsible-content__grid--reverse .collapsible-content__grid-item {
      padding-left: 5rem;
      padding-right: 0;
    }
  }

  @media screen and (min-width: 990px) {
    .collapsible-content__grid:not(.collapsible-content__grid--reverse)
      .grid__item:last-child,
    .collapsible-content__grid--reverse .collapsible-content__grid-item {
      padding-left: 7rem;
    }
  }
}
.accordion summary {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
  padding: 1.8rem 0;
}

.accordion .summary__title {
  display: flex;
  align-items: center;
  flex: 1;
}

.accordion .summary__title + .icon-caret {
  height: calc(var(--font-heading-scale) * 0.6rem);
}

.accordion + .accordion {
  margin-top: 0;
  border-top: none;
}

.accordion {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-radius: 35px;
}

.accordion__title {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: calc(100% - 6rem);
  font-size: calc(var(--font-heading-scale) * 1.4rem);
  margin: 0;
  word-break: break-word;
  padding-left: 10px;
}

.accordion .icon-accordion {
  align-self: center;
  fill: rgb(var(--color-foreground));
  height: calc(var(--font-heading-scale) * 2rem);
  margin-right: calc(var(--font-heading-scale) * 1rem);
  width: calc(var(--font-heading-scale) * 2rem);
}

.accordion details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.accordion__content {
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-x: auto;
  padding: 0 0.6rem;
}

.accordion__content img {
  max-width: 100%;
}
@media screen and (max-width: 749px) {
  .articles-wrapper .article {
    width: 100%;
  }
}

.article {
  display: flex;
  align-items: center;
}

.article.grid__item {
  padding: 0;
}

.grid--peek .article-card {
  box-sizing: border-box;
}

.article-card__image-wrapper > a {
  display: block;
}

.article-card__title {
  text-decoration: none;
  word-break: break-word;
}

.article-card__title a:after {
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.article-card__link.link {
  padding: 0;
}

.article-card__link {
  text-underline-offset: 0.3rem;
}

.article-card .card__heading {
  margin-bottom: 0.6rem;
}

.blog-articles .article-card .card__information,
.blog__posts .article-card .card__information {
  padding-left: 2rem;
  padding-right: 2rem;
}

.article-card__info {
  padding-top: 0.4rem;
}

.article-card__footer {
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
}

.article-card__footer:not(:last-child) {
  margin-bottom: 1rem;
}

.article-card__footer:last-child {
  margin-top: auto;
}

.article-card__excerpt {
  width: 100%;
  margin-top: 1.2rem;
}

.article-card__link:not(:only-child) {
  margin-right: 3rem;
}

@media screen and (min-width: 990px) {
  .article-card__link:not(:only-child) {
    margin-right: 4rem;
  }
}

.article-card__image--small .ratio::before {
  padding-bottom: 11rem;
}

.article-card__image--medium .ratio::before {
  padding-bottom: 22rem;
}

.article-card__image--large .ratio::before {
  padding-bottom: 33rem;
}

@media screen and (min-width: 750px) {
  .article-card__image--small .ratio::before {
    padding-bottom: 14.3rem;
  }

  .article-card__image--medium .ratio::before {
    padding-bottom: 21.9rem;
  }

  .article-card__image--large .ratio::before {
    padding-bottom: 27.5rem;
  }
}

@media screen and (min-width: 990px) {
  .article-card__image--small .ratio::before {
    padding-bottom: 17.7rem;
  }

  .article-card__image--medium .ratio::before {
    padding-bottom: 30.7rem;
  }

  .article-card__image--large .ratio::before {
    padding-bottom: 40.7rem;
  }
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .articles-wrapper.grid {
    margin: 0 0 5rem 0;
  }

  @media screen and (min-width: 750px) {
    .articles-wrapper.grid {
      margin-bottom: 7rem;
    }
  }
}
.main-products {
    --bundle-heading-bg-color: var(--color-background);
}

.bundle-qty-deal,
.bundle-qty-deal select{
    font-family: var(--font-body-family);
}

.bundle-qty-deal h4.bundle-qty-deal__title {
    position: relative;
    text-align: center;
}
.bundle-qty-deal h4.bundle-qty-deal__title span {
    background: rgba(var(--bundle-heading-bg-color));
    padding: 0 10px;
    position: relative;
    z-index: 1;
    font-size: calc(var(--font-heading-size) - 26px);
    font-weight: bold;
    text-transform: uppercase;
    /* text-shadow: 0 4px 4px color(srgb 0 0 0 / 0.25); */
}
.bundle-qty-deal h4.bundle-qty-deal__title:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(var(--color-accent));
    z-index: 0;
}
label.bundle-qty-option {
    border-radius: 10px;
    display: block;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    cursor: pointer;
    margin-bottom: 8.5px;


    /* border: 2px solid rgba(126, 166, 140, 0.50);
    background: rgba(228, 241, 232, 0.60); */
    /* background: rgba(var(--color-background), 0.5); */
    background: rgba(var(--color-primary), 0.5);
    border: 2px solid rgb(var(--color-accent));
}
.bundle-qty-option .bundle-qty-info {
    display: flex;
    align-items: center;
    gap: 12.5px;
}
.bundle-qty-option-info h4 {
    color: rgb(var(--color-base-text));
    font-size: calc(var(--font-heading-size) - 24px);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--font-heading-size) - 25.5px); /* 110.345% */
    letter-spacing: 0.6px;
    margin: 0px;
    margin-bottom: 7.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
span.bundle-qty-badge {
    border-radius: 6px;
    border: 1px solid rgb(var(--color-accent));
    background: rgb(var(--color-primary));
    padding: 4px 8px;
    color: rgb(var(--color-accent));
    font-size: 0.6696428571em;
    font-style: normal;
    font-weight: bold;
    line-height: 1.3571428571em; /* 202.667% */
    letter-spacing: 0.04285714286em;
}
.bundle-qty-option-info p {
    margin: 0px;
    color: rgb(var(--color-base-text));
    font-size: 0.935em;
    font-style: normal;
    font-weight: 400;
    line-height: 1em; /* 106.667% */
    letter-spacing: 0.005em;;
}

.bundle-qty-price span {
    color: rgb(var(--color-accent));
    text-align: right;
    font-size: 1.01785714286em;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1428571429em; /* 112.281% */
    letter-spacing: 0.04285714286em;
}

.bundle-qty-price span.compare-price {
    color: rgb(var(--color-base-text));
    text-align: right;
    font-size: 0.9922142857;
    font-style: normal;
    font-weight: 400;
    line-height: 1em; /* 100.787% */
    letter-spacing: 0.04285714286;
    text-decoration-line: line-through;
}

.bundle-qty-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bundle-qty-add-button{
    display: block;
    width: 100%;
    border-radius: 10px;

    position: relative !important;
    font-size: 18px !important;
    letter-spacing: 0em !important;
    line-height: 18px !important;
    font-weight: 500 !important;
    color: rgb(var(--color-button-text))  !important;
    text-align: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}
.bundle-qty-add-button:after {
    border-radius: 10px;
}
span.bundle-qty-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border: 2px solid rgb(var(--color-accent));
    border-radius: 100%;
}
span.bundle-qty-radio span.checked-circle{
    display: block;
    width: 75%;
    height: 75%;
    border-radius: 100%;
    background: rgb(var(--color-accent));
    opacity: 0;
}
input.bundle-qty-deal__radio {
    display: none;
}

.bundle-qty-options-row .row-label {
    color: rgb(var(--color-base-text));
    font-size: calc(var(--font-heading-size) - 26.875px);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--font-heading-size) - 26.875px + 1px); /* 106.667% */
    letter-spacing: 0.6px;
}

.bundle-qty-options select {
    border-radius: 3.5px;
    background: rgb(var(--color-primary));
    box-shadow: 0px 0px 0px 1px rgba(var(--color-base-text), 0.5);
    padding: 3px 7.02px 3px 7px;
}

.bundle-qty-options-row {
    margin-bottom: 8px;
}

.bundle-qty-options {
    margin-top: 13px;
    display: none;
}

input.bundle-qty-deal__radio:checked + label.bundle-qty-option{
    border: 2px solid rgb(var(--color-accent));
    background: rgb(var(--color-primary));
}

input.bundle-qty-deal__radio:checked + label span.bundle-qty-radio span.checked-circle{
    opacity: 1;
}
input.bundle-qty-deal__radio:checked + label.bundle-qty-option span.bundle-qty-radio {
    border: 2px solid rgb(var(--color-accent));
    /* background: rgb(var(--color-accent)); */
    box-shadow: 0px 0px 0px 1px rgb(var(--color-background));
}

input.bundle-qty-deal__radio:checked + label.bundle-qty-option .bundle-qty-options{
    display: block;
}
.card-wrapper {
  color: inherit;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.card {
  text-decoration: none;
  text-align: var(--text-alignment);
}

.card:not(.ratio) {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card.card--horizontal {
  --text-alignment: left;
  --image-padding: 0rem;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.card--horizontal.ratio:before {
  padding-bottom: 0;
}

.card--card.card--horizontal {
  padding: 1.2rem;
}

.card--card.card--horizontal.card--text {
  column-gap: 0;
}

.card--card {
  height: 100%;
}

.card--card,
.card--standard .card__inner {
  position: relative;
  box-sizing: border-box;
  border-radius: var(--border-radius);
  border: var(--border-width) solid
    rgba(var(--color-foreground), var(--border-opacity));
}

.card--card:after,
.card--standard .card__inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(var(--border-width) * 2 + 100%);
  height: calc(var(--border-width) * 2 + 100%);
  top: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
    var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity));
}

.card .card__inner .card__media {
  overflow: hidden;
  /* Fix for Safari border bug on hover */
  z-index: 0;
  border-radius: calc(
    var(--border-radius) - var(--border-width) - var(--image-padding)
  );
}

.card--card .card__inner .card__media {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card--standard.card--text {
  background-color: transparent;
}

.card-information {
  text-align: var(--text-alignment);
}
.card-information .price {
  display: block;
}

.card__media,
.card .media {
  bottom: 0;
  position: absolute;
  top: 0;
}

.card .media {
  width: 100%;
}

.card__media {
  margin: var(--image-padding);
  width: calc(100% - 2 * var(--image-padding));
}

.card--standard .card__media {
  margin: var(--image-padding);
}

.card__inner {
  width: 100%;
}

.card--media .card__inner .card__content {
  position: relative;
  padding: calc(var(--image-padding) + 1rem);
}

.card__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) max-content minmax(0, 1fr);
  padding: 1rem;
  width: 100%;
  flex-grow: 1;
}

.card__content--auto-margins {
  grid-template-rows: minmax(0, auto) max-content minmax(0, auto);
}

.card__information {
  grid-row-start: 2;
  padding: 1.3rem 1rem;
}

.card:not(.ratio) > .card__content {
  grid-template-rows: max-content minmax(0, 1fr) max-content auto;
}

@media screen and (min-width: 750px) {
  .card__information {
    padding-bottom: 1.7rem;
    padding-top: 1.7rem;
  }
}

.card__badge {
  align-self: flex-end;
  grid-row-start: 3;
  justify-self: flex-start;
}

.card__badge.top {
  align-self: flex-start;
  grid-row-start: 1;
}

.card__badge.right {
  justify-self: flex-end;
}

.card:not(.card--horizontal) > .card__content > .card__badge {
  margin: 1.3rem;
}

.card__media .media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.card__inner:not(.ratio) > .card__content {
  height: 100%;
}

.card__heading {
  margin-top: 0;
  margin-bottom: 0;
}

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

.card--horizontal .card__heading,
.card--horizontal .price__container .price-item,
.card--horizontal__quick-add {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

.card--horizontal
  .card-information
  > *:not(.visually-hidden:first-child)
  + *:not(.rating) {
  margin-top: 0;
}

.card--horizontal__quick-add:before {
  box-shadow: none;
}

@media only screen and (min-width: 750px) {
  .card--horizontal .card__heading,
  .card--horizontal .price__container .price-item,
  .card--horizontal__quick-add {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

.card--card.card--media > .card__content {
  margin-top: calc(0rem - var(--image-padding));
}

.card--standard.card--text a::after,
.card--card .card__heading a::after {
  bottom: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
  top: calc(var(--border-width) * -1);
}

.card__heading a::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.card__heading a:after {
  outline-offset: 0.3rem;
}

.card__heading a:focus:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus:not(:focus-visible):after {
  box-shadow: none;
  outline: 0;
}

.card__heading a:focus {
  box-shadow: none;
  outline: 0;
}

@media screen and (min-width: 990px) {
  .card .media.media--hover-effect > img:only-child,
  .card-wrapper .media.media--hover-effect > img:only-child {
    transition: transform var(--duration-long) ease;
  }

  .card:hover .media.media--hover-effect > img:first-child:only-child,
  .card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
    transform: scale(1.03);
  }

  .card-wrapper:hover
    .media.media--hover-effect
    > img:first-child:not(:only-child) {
    opacity: 0;
  }

  .card-wrapper:hover .media.media--hover-effect > img + img {
    opacity: 1;
    transition: transform var(--duration-long) ease;
    transform: scale(1.03);
  }

  .underline-links-hover:hover a {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }
}

.card--standard.card--media .card__inner .card__information,
.card--standard.card--text:not(.card--horizontal)
  > .card__content
  .card__heading,
.card--standard:not(.card--horizontal) > .card__content .card__badge,
.card--standard.card--text.article-card > .card__content .card__information,
.card--standard > .card__content .card__caption {
  display: none;
}

.card--standard > .card__content {
  padding: 0;
}

.card--standard > .card__content .card__information {
  padding-left: 0;
  padding-right: 0;
}

.card--card.card--media .card__inner .card__information,
.card--card.card--text .card__inner,
.card--card.card--media > .card__content .card__badge {
  display: none;
}

.card--horizontal .card__badge,
.card--horizontal.card--text .card__inner {
  display: none;
}

.card--extend-height {
  height: 100%;
}

.card--extend-height.card--standard.card--text,
.card--extend-height.card--media {
  display: flex;
  flex-direction: column;
}

.card--extend-height.card--standard.card--text .card__inner,
.card--extend-height.card--media .card__inner {
  flex-grow: 1;
}

.card .icon-wrap {
  margin-left: 0.8rem;
  white-space: nowrap;
  transition: transform var(--duration-short) ease;
  overflow: hidden;
}

.card-information > * + * {
  margin-top: 0.5rem;
}

.card-information {
  width: 100%;
}

.card-information > * {
  line-height: calc(1 + 0.4 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
}

.card-information > .price {
  color: rgb(var(--color-foreground));
}

.card--horizontal .card-information > .price {
  color: rgba(var(--color-foreground), 0.9);
}

.card-information > .rating {
  margin-top: 0.4rem;
}

.card-information > *:not(.visually-hidden:first-child) + *:not(.rating) {
  margin-top: 0.7rem;
}

.card-information .caption {
  letter-spacing: 0.07rem;
}

.card-article-info {
  margin-top: 1rem;
}
.drawer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: visibility var(--duration-default) ease;
}

.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  width: 40rem;
  max-width: calc(100vw - 3rem);
  padding: 0 3rem 0 1.5rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  background-color: rgb(var(--color-background));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
}

@media screen and (max-width: 750px) {
  .drawer__inner {
    padding: 0 1.5rem;
  }
}

.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  background-color: rgb(var(--color-background));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  background-color: rgb(var(--color-background));
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  font-size: 20px;
  margin: 0;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.cart-drawer__warnings .drawer__close {
  position: absolute;
  top: 10px;
  right: 25px;
}

@media screen and (max-width: 750px) {
  .cart-drawer__warnings .drawer__close {
    right: 10px;
  }
}

.drawer__close svg {
  height: 1.7rem;
  width: 1.7rem;
}

@media screen and (max-width: 750px) {
  .drawer__close svg {
    height: 1.4rem;
    width: 1.4rem;
  }
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer__footer {
  background-color: rgb(var(--color-background));
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
  padding: 0 0 1.5rem;
}

cart-drawer.is-empty .drawer__footer {
  display: none;
}

.drawer__footer > details {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 0;
}

.drawer__footer > .cart-drawer__footer {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: rgb(var(--color-base-accent-1));
}

.cart-drawer-items-and-upsell {
  overflow: auto;
  flex: 1;
}

@media screen and (max-height: 650px) {
  .cart-drawer-items-and-upsell {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  display: grid;
  grid-template: repeat(2, auto) / repeat(4, 1fr);
  gap: 1rem 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgb(192, 186, 186);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1rem;
}

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.05);
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1.5rem;
}

.cart-drawer .cart-item .loading-overlay {
  right: 5px;
  padding-top: 2.5rem;
}

.cart-drawer .cart-items td {
  padding-top: 1.5rem;
}

.cart-drawer .cart-item > td + td {
  padding-left: 1rem;
}

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2 / 4;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 5;
}

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
}

.cart-drawer .price {
  line-height: 1;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 1rem auto;
  text-align: left;
}

.cart-drawer .product-option dd {
  word-break: break-word;
}

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer
    #dynamic-checkout-cart
    ul
    > li:first-child:nth-last-child(2)
    ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer
    #dynamic-checkout-cart
    ul
    > li:first-child:nth-last-child(4)
    ~ li {
    flex-basis: calc(50% - 0.5rem) !important;
  }
}

.cart-drawer-items-and-upsell::-webkit-scrollbar {
  width: 3px;
}

.cart-drawer-items-and-upsell::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

.cart-drawer-items-and-upsell::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

/* hide parts */
.cart-drawer thead {
  display: none;
}
.cart-drawer tbody {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart__badges {
  margin-top: 1.5rem;
}

.payment-badges {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.cart__badges img {
  max-width: 100%;
  width: 100%;
}
.cart-items td,
.cart-items th {
  padding: 0;
  border: none;
}

.cart-items th {
  text-align: left;
  padding-bottom: 1.8rem;
  opacity: 0.85;
  font-weight: normal;
}

.cart-item__quantity-wrapper {
  display: flex;
}

.cart-item__totals {
  position: relative;
}

.cart-items *.right {
  text-align: right;
}

.cart-item__image-container {
  display: inline-flex;
  align-items: flex-start;
}

.cart-item__image-container:after {
  content: none;
}

.cart-item__image {
  height: auto;
  max-width: calc(10rem / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .cart-item__image {
    max-width: 100%;
  }
}

.cart-item__details {
  /* font-size: 1.6rem; */
  font-size: 1em;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

.cart-item__details > * {
  margin: 0;
  max-width: 30rem;
}

.cart-item__details > * + * {
  margin-top: 0.6rem;
}

.cart-item__media {
  position: relative;
}

.cart-item__link {
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cart-item__name {
  text-decoration: none;
  display: block;
  /* font-size: calc(var(--font-heading-scale) * 1.4rem); */
  font-size: 1em;
  font-family: var(--font-body-family)!important;

}

.cart-item__name:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.2rem;
}

.cart-item__price-wrapper > * {
  display: block;
  margin: 0;
  padding: 0;
}

.cart-item__discounted-prices dd {
  margin: 0;
}

.cart-item__discounted-prices .cart-item__old-price {
  font-size: 1.4rem;
}

.cart-item__old-price {
  opacity: 0.7;
}

.cart-item__final-price {
  font-weight: 400;
}

.product-option {
  font-size: 1.4rem;
  word-break: break-all;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.cart-item cart-remove-button {
  display: flex;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .cart-item cart-remove-button {
    width: 4.5rem;
    height: 4.5rem;
  }
}

cart-remove-button .button {
  min-width: calc(4.5rem / var(--font-body-scale));
  min-height: 4.5rem;
  padding: 0;
  margin: 0 0.1rem 0.1rem 0;
  background: none !important;
  color: #000 !important;
}

cart-remove-button .button:before,
cart-remove-button .button:after {
  content: none;
}

cart-remove-button .button:not([disabled]):hover {
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  cart-remove-button .button {
    min-width: 3.5rem;
    min-height: 3.5rem;
  }
}

cart-remove-button .icon-remove {
  height: 2rem;
  width: 2rem;
}

.cart-item .loading-overlay {
  top: 0;
  left: auto;
  right: auto;
  bottom: 0;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .cart-item .loading-overlay {
    right: 0;
    padding-top: 4.5rem;
    bottom: auto;
  }
}

.cart-item .loading-overlay:not(.hidden) ~ * {
  visibility: hidden;
}

.cart-item__error {
  display: flex;
  align-items: flex-start;
  margin-top: 1rem;
}

.cart-item__error-text {
  font-size: 1.2rem;
  order: 1;
}

.cart-item__error-text + svg {
  flex-shrink: 0;
  width: 1.2rem;
  margin-right: 0.7rem;
}

.cart-item__error-text:empty + svg {
  display: none;
}

.product-option + .product-option {
  margin-top: 0.4rem;
}

.product-option * {
  display: inline;
  margin: 0;
}

.cart-items thead th {
  text-transform: uppercase;
}

@media screen and (max-width: 749px) {
  .cart-items,
  .cart-items thead,
  .cart-items tbody {
    display: block;
    width: 100%;
  }

  .cart-items thead tr {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
    margin-bottom: 4rem;
  }

  .cart-item {
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

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

  .cart-item__media {
    grid-row: 1 / 3;
  }

  .cart-item__details {
    grid-column: 2 / 4;
  }

  .cart-item__quantity {
    grid-column: 2 / 5;
  }

  .cart-item__quantity-wrapper {
    flex-wrap: wrap;
  }

  .cart-item__totals {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

.cart-item__error-text + svg {
  margin-top: 0.4rem;
}

@media screen and (min-width: 750px) {
  .cart-items {
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: none;
    width: 100%;
    display: table;
  }

  .cart-items th {
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  }

  .cart-items thead th:first-child {
    width: 50%;
  }

  .cart-items th + th {
    padding-left: 4rem;
  }

  .cart-items td {
    vertical-align: top;
    padding-top: 4rem;
  }

  .cart-item {
    display: table-row;
  }

  .cart-item > td + td {
    padding-left: 4rem;
  }

  .cart-item__details {
    width: 35rem;
  }

  .cart-item__media {
    width: 10rem;
  }

  .cart-item__price-wrapper > *:only-child:not(.cart-item__discounted-prices) {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 990px) {
  .cart-item .cart-item__quantity,
  .cart-items .cart-items__heading--wide {
    padding-left: 6rem;
  }

  .cart-item__details {
    width: 50rem;
  }

  .cart-items thead th:first-child {
    width: 60%;
  }
}

@media screen and (max-width: 500px) {
  .title-wrapper-with-link {
    flex-direction: column;
    align-items: center;
  }
}
.cart-notification-wrapper {
  position: relative;
}

.cart-notification-wrapper .cart-notification {
  display: block;
}

.cart-notification {
  border-bottom-right-radius: var(--popup-corner-radius);
  border-bottom-left-radius: var(--popup-corner-radius);
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-style: solid;
  border-width: 0 0 var(--popup-border-width);
  padding: 2.5rem 3.5rem;
  position: absolute;
  right: 0;
  transform: translateY(-100%);
  visibility: hidden;
  width: 100%;
  box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity));
  z-index: -1;
}

.cart-notification.focused {
  box-shadow: 0 0 .2rem 0 rgba(var(--color-foreground), .3),
  var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity));
}

.cart-notification:focus-visible {
  box-shadow: 0 0 .2rem 0 rgba(var(--color-foreground), .3),
  var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity));
}

@media screen and (min-width: 750px) {
  .header-wrapper:not(.header-wrapper--border-bottom) + cart-notification .cart-notification {
    border-top-width: var(--popup-border-width);
  }

  .cart-notification {
    border-width: 0 var(--popup-border-width) var(--popup-border-width);
    max-width: 36.8rem;
    right: 4rem;
  }
}

.cart-notification.animate {
  transition: transform var(--duration-short) ease,
    visibility 0s var(--duration-short) ease;
}

.cart-notification.active {
  transform: translateY(0);
  transition: transform var(--duration-default) ease, visibility 0s;
  visibility: visible;
}

.cart-notification__header {
  align-items: flex-start;
  display: flex;
}

.cart-notification__heading {
  align-items: center;
  display: flex;
  flex-grow: 1;
  margin-bottom: 0;
  margin-top: 0;
}

.cart-notification__heading .icon-checkmark {
  color: rgb(var(--color-foreground));
  margin-right: 1rem;
  width: 1.3rem;
}

.cart-notification__close {
  margin-top: -2rem;
  margin-right: -3rem;
}

.cart-notification__links {
  text-align: center;
}

.cart-notification__links > * {
  margin-top: 1rem;
}

.cart-notification-product {
  align-items: flex-start;
  display: flex;
  padding-bottom: 3rem;
  padding-top: 2rem;
}

.cart-notification-product dl {
  margin-bottom: 0;
  margin-top: 0;
}

.cart-notification-product__image {
  display: inline-flex;
  margin-right: 1.5rem;
  margin-top: 0.5rem;
}

.cart-notification-product__image:after {
  content: none;
}

.cart-notification-product__name {
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.cart {
  position: relative;
  display: block;
}

.cart__empty-text,
.is-empty .cart__contents,
cart-items.is-empty .title-wrapper-with-link,
.is-empty .cart__footer {
  display: none;
  font-family: var(--font-body-family) !important;
}

.is-empty .cart__empty-text,
.is-empty .cart__warnings {
  display: block;
}

.cart__warnings {
  display: none;
  text-align: center;
  padding: 3rem 0 1rem;
}

.cart__empty-text {
  margin: 4.5rem 0 2rem;
}

.cart__contents > * + * {
  margin-top: 2.5rem;
}

.cart__login-title {
  margin: 5.5rem 0 0.5rem;
  font-family: var(--font-body-family) !important;
}

.cart__login-paragraph {
  margin-top: 0.8rem;
}

.cart__login-paragraph a {
  font-size: inherit;
}

@media screen and (min-width: 990px) {
  .cart__warnings {
    padding: 7rem 0 1rem;
  }

  .cart__empty-text {
    margin: 0 0 3rem;
  }
}

cart-items {
  display: block;
}

.cart__items {
  position: relative;
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart__items--disabled {
  pointer-events: none;
}

.cart__footer {
  padding: 4rem 0 0;
}

.cart__footer-wrapper:last-child .cart__footer {
  padding-bottom: 5rem;
}

.cart__footer > div:only-child {
  margin-left: auto;
}

.cart__footer > * + * {
  margin-top: 4rem;
}

.cart__footer .discounts {
  margin-top: 1rem;
}

.cart__note {
  height: fit-content;
}

.cart__note label {
  display: flex;
  align-items: flex-end;
  position: absolute;
  line-height: 1;
  height: 1.8rem;
  top: -3rem;
  color: rgba(var(--color-foreground), 0.9);
}

.cart__note .field__input {
  height: 100%;
  position: relative;
  border-radius: var(--inputs-radius);
  padding: 1rem 2rem;
}

.cart__note .text-area {
  resize: vertical;
}

.cart__note:after,
.cart__note:hover.cart__note:after,
.cart__note:before,
.cart__note:hover.cart__note:before,
.cart__note .field__input:focus,
.cart__note .field__input {
  border-bottom-right-radius: 0;
}

@media screen and (min-width: 750px) {
  .cart__items {
    grid-column-start: 1;
    grid-column-end: 3;
    padding-bottom: 4rem;
  }

  .cart__contents > * + * {
    margin-top: 0;
  }

  .cart__items + .cart__footer {
    grid-column: 2;
  }

  .cart__footer {
    display: flex;
    justify-content: space-between;
    border: 0;
  }

  .cart__footer-wrapper:last-child {
    padding-top: 0;
  }

  .cart__footer > * {
    width: 35rem;
  }

  .cart__footer > * + * {
    margin-left: 4rem;
    margin-top: 0;
  }
}

.cart__ctas button {
  width: 100%;
}

.cart__ctas > *:not(noscript:first-child) + * {
  margin-top: 1rem;
}

.cart__update-button {
  margin-bottom: 1rem;
}

.cart__dynamic-checkout-buttons {
  max-width: 36rem;
  margin: 0 auto;
  max-width: none;
}

.cart__blocks > * + * {
  margin-top: 1.25rem;
}

.cart__dynamic-checkout-buttons div[role="button"] {
  border-radius: var(--buttons-radius-outset) !important;
}

.cart-note__label {
  display: inline-block;
  margin-bottom: 1rem;
  line-height: calc(1 + 1 / var(--font-body-scale));
}

.tax-note {
  margin: 2.2rem 0 1.6rem auto;
  text-align: center;
  display: block;
}

.cart__checkout-button {
  max-width: 36rem;
  max-width: none;
}

.cart__ctas {
  text-align: center;
}

@media screen and (min-width: 750px) {
  .cart-note {
    max-width: 36rem;
  }

  .cart__update-button {
    margin-bottom: 0;
    margin-right: 0.8rem;
  }

  .tax-note {
    margin-bottom: 2.2rem;
    text-align: right;
  }

  [data-shopify-buttoncontainer] {
    justify-content: flex-end;
  }

  .cart__ctas {
    display: flex;
    gap: 1rem;
  }
}
.collection-hero__inner {
  display: flex;
  flex-direction: column;
}

.collection-hero--with-image .collection-hero__inner {
  margin-bottom: 0;
  padding-bottom: 2rem;
}

@media screen and (min-width: 750px) {
  .collection-hero.collection-hero--with-image {
    padding: calc(4rem + var(--page-width-margin)) 0
      calc(4rem + var(--page-width-margin));
    overflow: hidden;
  }

  .collection-hero--with-image .collection-hero__inner {
    padding-bottom: 0;
  }
}

.collection-hero__text-wrapper {
  flex-basis: 100%;
}

@media screen and (min-width: 750px) {
  .collection-hero {
    padding: 0;
  }

  .collection-hero__inner {
    align-items: center;
    flex-direction: row;
    padding-bottom: 0;
  }
}

.collection-hero__title {
  margin: 2.5rem 0;
}

.collection-hero__title + .collection-hero__description {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .collection-hero__title + .collection-hero__description {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .collection-hero__description {
    max-width: 66.67%;
  }

  .collection-hero--with-image .collection-hero__description {
    max-width: 100%;
  }
}

.collection-hero--with-image .collection-hero__title {
  margin: 0;
}

.collection-hero--with-image .collection-hero__text-wrapper {
  padding: 5rem 0 4rem;
}

.collection-hero__image-container {
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset)
    var(--media-shadow-vertical-offset)
    var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}

@media screen and (max-width: 749px) {
  .collection-hero__image-container {
    height: 20rem;
  }
}

@media screen and (min-width: 750px) {
  .collection-hero--with-image .collection-hero__text-wrapper {
    padding: 4rem 2rem 4rem 0;
    flex-basis: 50%;
  }

  .collection-hero__image-container {
    align-self: stretch;
    flex: 1 0 50%;
    margin-left: 3rem;
    min-height: 20rem;
  }
}
.complementary-products__container {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

product-recommendations:not(.is-accordion) .complementary-products__container {
  margin-top: 1.5rem;
}

.complementary-products__container > details[open] {
  padding-bottom: 1.5rem;
}

.complementary-slider {
  margin-top: 0;
  gap: 0;
}

.complementary-slide {
  --shadow-padding-sides: calc((var(--shadow-horizontal-offset) + var(--shadow-blur-radius)) * var(--shadow-visible));
  --shadow-padding-sides-negative: calc((var(--shadow-horizontal-offset) * -1 + var(--shadow-blur-radius)) * var(--shadow-visible));
}

.complementary-slide > ul {
  display: flex;
  flex-direction: column;
  gap: var(--grid-mobile-vertical-spacing);
}

.complementary-slide.complementary-slide--standard > ul {
  gap: calc(var(--grid-mobile-vertical-spacing) + 8px);
}

@media screen and (min-width: 750px) {
  .complementary-slide > ul {
    gap: var(--grid-desktop-vertical-spacing);
  }

  .complementary-slide.complementary-slide--standard > ul {
    gap: calc(var(--grid-desktop-vertical-spacing) + 8px);
  }
}

.complementary-slide.grid__item {
  width: 100%;
  padding-top:  max(var(--focus-outline-padding), var(--shadow-padding-top));
  padding-bottom: max(var(--focus-outline-padding), var(--shadow-padding-bottom));
  padding-right: max(var(--focus-outline-padding), var(--shadow-padding-sides));
  padding-left: max(var(--focus-outline-padding), var(--shadow-padding-sides-negative));
}

.complementary-slide .card-wrapper {
  height: auto;
}

.complementary-products > .summary__title {
  display: flex;
  line-height: 1;
  padding: 1.5rem 0;
}

.accordion + product-recommendations .accordion,
product-recommendations.is-accordion + .accordion {
  margin-top: 0;
  border-top: none;
}

.complementary-products > .summary__title .icon-accordion {
  fill: rgb(var(--color-foreground));
  height: calc(var(--font-heading-scale) * 2rem);
  margin-right: calc(var(--font-heading-scale) * 1rem);
  width: calc(var(--font-heading-scale) * 2rem);
}

.complementary-products__container .card--card .card__content,
.complementary-products__container .card--horizontal .card__information {
  padding: 0;
}

.complementary-products__container .card--horizontal .card__inner {
  max-width: 20%;
}

@media screen and (min-width: 750px) and (max-width: 1200px){
  .complementary-products__container .card--horizontal .card__inner {
    max-width: 25%
  }
}

.complementary-slide .card--text .card__content {
  grid-template-rows: minmax(0,1fr) max-content auto;
}


.complementary-products__container .card--card.card--media > .card__content {
  margin-top: 0;
}

.complementary-products-contains-quick-add .underline-links-hover:hover a {
  text-decoration: initial;
}

.complementary-products-contains-quick-add .card__heading:hover a {
  text-decoration: underline;
}

.complementary-products__container .card--card .card__inner .card__media {
  border-radius: calc(var(--corner-radius) - var(--border-width) - var(--image-padding));
}

.complementary-products__container .card--horizontal .quick-add {
  margin: 0;
  max-width: 20rem;
}

.complementary-products__container .quick-add__submit {
  padding: 1.5rem 0;
  min-height: inherit;
}

.complementary-products__container .quick-add__submit .icon-plus {
  width: 1.2rem;
}

.complementary-products__container .icon-wrap {
  display: flex;
}

.complementary-products .sold-out-message:not(.hidden) + .icon-wrap {
  display: none;
}

.complementary-products__container .quick-add__submit:not(.animate-arrow) .icon-wrap {
  transition: transform var(--duration-short) ease;
}

.complementary-products__container .quick-add__submit:not(.animate-arrow):hover .icon-wrap {
  transform: rotate(90deg);
}

.complementary-products__container .quick-add__submit:after,
.complementary-products__container .quick-add__submit:hover:after {
  box-shadow: none;
}

.complementary-products__container .card--horizontal .quick-add,
.complementary-products__container .card__badge {
  justify-self: var(--text-alignment);
}

.product--no-media .complementary-products__container .price {
  text-align: var(--text-alignment);
}

@media screen and (min-width: 750px) {
  .complementary-products__container .price--on-sale .price-item--regular {
    font-size: 1.3rem;
  }
}
.deferred-media__poster {
  background-color: transparent;
  border: none;
  border-radius: inherit;
  cursor: pointer;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.media > .deferred-media__poster {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.deferred-media {
  overflow: hidden;
}

.deferred-media:not([loaded]) template {
  z-index: -1;
}

.deferred-media[loaded] > .deferred-media__poster {
  display: none;
}

.deferred-media__poster:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)), 0 0 0 calc(var(--media-border-width) + 0.3rem) rgb(var(--color-background)),0 0 0 calc(var(--media-border-width) + 0.5rem) rgba(var(--color-foreground),.5);
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

.deferred-media__poster:focus {
  outline: none;
  box-shadow: 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)), 0 0 0 calc(var(--media-border-width) + 0.3rem) rgb(var(--color-background)),0 0 0 calc(var(--media-border-width) + 0.5rem) rgba(var(--color-foreground),.5);
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

/* outline styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .deferred-media__poster:focus {
    outline: transparent solid 1px;
  }
}
.deferred-media__poster:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.deferred-media__poster-button {
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.2rem;
  width: 6.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform var(--duration-short) ease, color var(--duration-short) ease;
  z-index: 1;
}

.deferred-media__poster-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.deferred-media__poster-button .icon {
  width: 2rem;
  height: 2rem;
}

.deferred-media__poster-button .icon-play {
  margin-left: 0.2rem;
}

.discounts {
  font-size: 1.2rem;
}

.discounts__discount {
  display: flex;
  align-items: center;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.discounts__discount svg {
  color: rgba(var(--color-button), var(--alpha-button-background));
}

.discounts__discount--position {
  justify-content: center;
}

@media screen and (min-width: 750px) {
  .discounts__discount--position {
    justify-content: flex-end;
  }
}

.discounts__discount > .icon {
  color: rgb(var(--color-foreground));
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.7rem;
}
.facets-container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  padding-top: 1rem;
}

.active-facets-mobile {
  margin-bottom: 0.5rem;
}

.mobile-facets__list {
  overflow-y: auto;
}

@media screen and (min-width: 750px) {
  .facets-container > * + * {
    margin-top: 0;
  }

  .facets__form .product-count {
    grid-column-start: 3;
    align-self: flex-start;
  }
}

@media screen and (max-width: 989px) {
  .facets-container {
    grid-template-columns: auto minmax(0, max-content);
    column-gap: 2rem;
  }
}

.facet-filters {
  align-items: flex-start;
  display: flex;
  grid-column: 2;
  grid-row: 1;
  padding-left: 2.5rem;
}

@media screen and (min-width: 990px) {
  .facet-filters {
    padding-left: 3rem;
  }
}

.facet-filters__label {
  display: block;
  color: var(--color-foreground-85);
  font-size: 1em;
  margin: 0 2rem 0 0;
  font-family: var(--font-body-family)!important;
}

.facet-filters__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  cursor: pointer;
  height: 4.5rem;
  padding: 0 1.5rem;
  min-width: 25rem;
  margin-top: 2.4rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.55);
}

.facet-filters__summary::after {
  position: static;
}

.facet-filters__field {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.facet-filters__field .select {
  width: auto;
}

.facet-filters__field .select:after,
.facet-filters__field .select:before,
.mobile-facets__sort .select:after,
.mobile-facets__sort .select:before {
  content: none;
}

.facet-filters__field .select__select,
.mobile-facets__sort .select__select {
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  transition: none;
}

.facet-filters button {
  margin-left: 2.5rem;
}

.facet-filters__sort {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1em;
  height: auto;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  margin: 0;
  padding-left: 0;
  padding-right: 1.75rem;
}

.facet-filters__sort + .icon-caret {
  right: 0;
}

@media screen and (forced-colors: active) {
  .facet-filters__sort {
    border: none;
  }
}

.facet-filters__sort,
.facet-filters__sort:hover {
  box-shadow: none;
  filter: none;
  transition: none;
}

.mobile-facets__sort .select__select:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.mobile-facets__sort .select__select.focused,
.no-js .mobile-facets__sort .select__select:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.facet-filters__sort:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.facet-filters__sort.focused,
.no-js .facet-filters__sort:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.no-js .facet-filters__sort:focus:not(:focus-visible),
.no-js .mobile-facets__sort .select__select:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.facets {
  display: block;
  grid-column-start: span 2;
}

.facets__form {
  display: grid;
  gap: 0 3.5rem;
  grid-template-columns: 1fr max-content max-content;
  margin-bottom: 0.5rem;
}

.facets__wrapper {
  align-items: center;
  align-self: flex-start;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
}

.facets__heading {
  display: block;
  color: rgba(var(--color-foreground), 0.85);
  font-size: 1.4rem;
  margin: -1.5rem 2rem 0 0;
}

.facets__reset {
  margin-left: auto;
}

.facets__disclosure {
  margin-right: 3.5rem;
}

.facets__summary {
  color: rgba(var(--color-foreground), 0.9);
  font-size: 1.4rem;
  padding: 0 1.75rem 0 0;
  margin-bottom: 1.5rem;
}

.facets__disclosure fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.facets__disclosure[open] .facets__summary,
.facets__summary:hover {
  color: rgb(var(--color-foreground));
}

.facets__disclosure[open] .facets__display,
.facets__disclosure-vertical[open] .facets__display-vertical {
  animation: animateMenuOpen var(--duration-default) ease;
}

.facets__summary span {
  transition: text-decoration var(--duration-short) ease;
}

.facets__summary:hover span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.disclosure-has-popup[open] > .facets__summary::before {
  z-index: 2;
}

.facets__summary > span {
  line-height: calc(1 + 0.3 / var(--font-body-scale));
}

.facets__summary .icon-caret {
  right: 0;
}

.facets__display {
  border-width: var(--popup-border-width);
  border-style: solid;
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-radius: var(--popup-corner-radius);
  box-shadow: var(--popup-shadow-horizontal-offset)
    var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  background-color: rgb(var(--color-background));
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -1.2rem;
  width: 35rem;
  max-height: 55rem;
  overflow-y: auto;
}

.facets__header {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.2);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  position: sticky;
  top: 0;
  background-color: rgb(var(--color-background));
  z-index: 1;
}

.facets__list {
  padding: 0.5rem 2rem;
}

.facets__item {
  display: flex;
  align-items: center;
}

.facets__item label,
.facets__item input[type="checkbox"] {
  cursor: pointer;
}

.facet-checkbox {
  padding: 1rem 2rem 1rem 0;
  flex-grow: 1;
  position: relative;
  font-size: 1.4rem;
  display: flex;
  word-break: break-word;
}

.facet-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 1;
  width: 1.6rem;
  height: 1.6rem;
  top: 0.7rem;
  left: -0.4rem;
  z-index: -1;
  appearance: none;
  -webkit-appearance: none;
}

.no-js .facet-checkbox input[type="checkbox"] {
  z-index: 0;
}

.facet-checkbox > svg {
  background-color: rgb(var(--color-background));
  margin-right: 1.2rem;
  flex-shrink: 0;
}

.facet-checkbox .icon-checkmark {
  visibility: hidden;
  position: absolute;
  left: 0.3rem;
  z-index: 5;
  top: 1.4rem;
}

.facet-checkbox > input[type="checkbox"]:checked ~ .icon-checkmark {
  visibility: visible;
}

@media screen and (forced-colors: active) {
  .facet-checkbox > svg {
    background-color: inherit;
    border: 0.1rem solid rgb(var(--color-background));
  }

  .facet-checkbox > input[type="checkbox"]:checked ~ .icon-checkmark {
    border: none;
  }
}

.facet-checkbox--disabled {
  color: rgba(var(--color-foreground), 0.4);
}

.facets__price {
  display: flex;
  padding: 2rem;
}

.facets__price .field + .field-currency {
  margin-left: 2rem;
}

.facets__price .field {
  align-items: center;
}

.facets__price .field-currency {
  align-self: center;
  margin-right: 0.6rem;
}

.facets__price .field__label {
  left: 1.5rem;
}

button.facets__button {
  min-height: 0;
  margin: 0 0 0 0.5rem;
  box-shadow: none;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.facets__button-no-js {
  transform: translateY(-0.6rem);
}

.active-facets {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: -0.5rem;
}

.active-facets__button {
  display: block;
  margin-right: 1.5rem;
  margin-top: 1.5rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  text-decoration: none;
}

span.active-facets__button-inner {
  color: rgb(var(--color-foreground));
  box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground));
  border-radius: 2.6rem;
  font-size: 1rem;
  min-height: 0;
  min-width: 0;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: stretch;
}

span.active-facets__button-inner:before,
span.active-facets__button-inner:after {
  display: none;
}

.active-facets__button-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

.active-facets__button-wrapper * {
  font-size: 1rem;
}

@media screen and (min-width: 990px) {
  .active-facets__button {
    margin-right: 1.5rem;
  }

  .active-facets__button-wrapper *,
  span.active-facets__button-inner {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 989px) {
  .active-facets {
    margin: 0 -1.2rem -1.2rem;
  }

  .active-facets__button,
  .active-facets__button-remove {
    margin: 0;
    padding: 1.2rem;
  }

  span.active-facets__button-inner {
    padding-bottom: 0.3rem;
    padding-top: 0.3rem;
  }

  .active-facets__button-wrapper {
    padding-top: 0;
    margin-left: 1.2rem;
  }
}

.active-facets__button:hover .active-facets__button-inner {
  box-shadow: 0 0 0 0.2rem rgb(var(--color-foreground));
}

.active-facets__button--light .active-facets__button-inner {
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
}

.active-facets__button--light:hover .active-facets__button-inner {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.4);
}

a.active-facets__button:focus-visible {
  outline: none;
  box-shadow: none;
}

/* outline styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  a.active-facets__button:focus-visible {
    outline: transparent solid 1px;
  }
}
a.active-facets__button.focused,
.no-js a.active-facets__button:focus {
  outline: none;
  box-shadow: none;
}

a.active-facets__button:focus-visible .active-facets__button-inner {
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2),
    0 0 0 0.2rem rgb(var(--color-background)),
    0 0 0 0.4rem rgb(var(--color-foreground));
  outline: none;
}

a.active-facets__button.focused .active-facets__button-inner,
.no-js a.active-facets__button:focus .active-facets__button-inner {
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2),
    0 0 0 0.2rem rgb(var(--color-background)),
    0 0 0 0.4rem rgb(var(--color-foreground));
  outline: none;
}

.active-facets__button svg {
  align-self: center;
  flex-shrink: 0;
  margin-left: 0.6rem;
  margin-right: -0.2rem;
  pointer-events: none;
  width: 1.2rem;
}

@media all and (min-width: 990px) {
  .active-facets__button svg {
    margin-right: -0.4rem;
    margin-top: 0.1rem;
    width: 1.4rem;
  }
}

.active-facets facet-remove:only-child {
  display: none;
}

.facets-vertical
  .active-facets
  .active-facets-vertical-filter:only-child
  > facet-remove {
  display: none;
}

.facets-vertical .active-facets-vertical-filter {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.facets-vertical .active-facets-vertical-filter .active-facets__button-wrapper {
  padding-top: 0;
  display: flex;
  align-items: flex-start;
}

.facets-vertical .active-facets__button {
  margin-top: 0;
}

.active-facets__button.disabled,
.mobile-facets__clear.disabled {
  pointer-events: none;
}

.mobile-facets__clear-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
}
.mobile-facets__clear-wrapper .mobile-facets__clear{
  font-family: var(--font-button-family);
  font-size: 1.1428571429em;
}

.mobile-facets {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(var(--color-foreground), 0.5);
  pointer-events: none;
}

.mobile-facets__disclosure {
  display: flex;
}

.mobile-facets__wrapper {
  margin-left: 0;
  display: flex;
}

.mobile-facets__wrapper .disclosure-has-popup[open] > summary::before {
  height: 100vh;
  z-index: 3;
}

.mobile-facets__inner {
  background-color: rgb(var(--color-background));
  width: calc(100% - 5rem);
  margin-left: auto;
  height: 100%;
  overflow-y: auto;
  pointer-events: all;
  transition: transform var(--duration-short) ease;
  max-width: 37.5rem;
  display: flex;
  flex-direction: column;
  border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
  border-style: solid;
  border-width: 0 0 0 var(--drawer-border-width);
  filter: drop-shadow(
    var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset)
      var(--drawer-shadow-blur-radius)
      rgba(var(--color-shadow), var(--drawer-shadow-opacity))
  );
}

.menu-opening .mobile-facets__inner {
  transform: translateX(0);
}

.js .disclosure-has-popup:not(.menu-opening) .mobile-facets__inner {
  transform: translateX(105vw);
}

.mobile-facets__header {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding: 1rem 2.5rem;
  text-align: center;
  display: flex;
  position: sticky;
  top: 0;
  z-index: 2;
}

.mobile-facets__header-inner {
  flex-grow: 1;
  position: relative;
}

.mobile-facets__info {
  padding: 0 2.6rem;
}

.mobile-facets__heading {
  /* font-size: calc(var(--font-heading-scale) * 1.4rem); */
  font-size: 1em;
  font-family: var(--font-body-family)!important;
  margin: 0;
}

.mobile-facets__count {
  color: rgba(var(--color-foreground), 0.7);
  font-size: 1.3rem;
  margin: 0;
  flex-grow: 1;
}

.mobile-facets__open-wrapper {
  display: inline-block;
}

.mobile-facets__open {
  text-align: left;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: rgba(var(--color-link), var(--alpha-link));
}

.mobile-facets__open:hover {
  color: rgb(var(--color-link));
}

.mobile-facets__open:hover line,
.mobile-facets__open:hover circle {
  stroke: rgb(var(--color-link));
}

.mobile-facets__open-label {
  transition: text-decoration var(--duration-short) ease;
}

.mobile-facets__open:hover .mobile-facets__open-label {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.mobile-facets__open > * + * {
  margin-left: 1rem;
}

.mobile-facets__open svg {
  width: 2rem;
}

.mobile-facets__open line,
.mobile-facets__open circle {
  stroke: rgba(var(--color-link), var(--alpha-link));
}

.mobile-facets__close {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0.7rem;
  right: 1rem;
  width: 4.4rem;
  height: 4.4rem;
  z-index: 101;
  opacity: 0;
  transition: opacity var(--duration-short) ease;
}

.mobile-facets__close svg {
  width: 2.2rem;
}

details.menu-opening .mobile-facets__close {
  display: flex;
  opacity: 1;
}

details.menu-opening .mobile-facets__close svg {
  margin: 0;
}

.mobile-facets__close-button {
  align-items: center;
  background-color: transparent;
  display: flex;
  font-size: 1.4rem;
  font: inherit;
  letter-spacing: inherit;
  margin-top: 1.5rem;
  padding: 1.2rem 2.6rem;
  text-decoration: none;
  width: calc(100% - 5.2rem);
}

.no-js .mobile-facets__close-button {
  display: none;
}

.mobile-facets__close-button .icon-arrow {
  transform: rotate(180deg);
  margin-right: 1rem;
}

.mobile-facets__main {
  padding: 2.7rem 0 0;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-facets__details[open] .icon-caret {
  transform: rotate(180deg);
}

.no-js .mobile-facets__details {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.04);
}

.mobile-facets__highlight {
  opacity: 0;
  visibility: hidden;
}

.mobile-facets__checkbox:checked + .mobile-facets__highlight {
  visibility: visible;
  opacity: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  background-color: rgba(var(--color-foreground), 0.04);
}

.mobile-facets__summary {
  padding: 1.3rem 2.5rem;
}

.mobile-facets__summary svg {
  margin-left: auto;
}

.mobile-facets__summary > div,
.facets__summary > div {
  display: flex;
  align-items: center;
}

.js .mobile-facets__submenu {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 3;
  transform: translateX(100%);
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.js details[open] > .mobile-facets__submenu {
  transition: transform 0.4s cubic-bezier(0.29, 0.63, 0.44, 1),
    visibility 0.4s cubic-bezier(0.29, 0.63, 0.44, 1);
}

.js details[open].menu-opening > .mobile-facets__submenu {
  transform: translateX(0);
  visibility: visible;
}

.js .menu-drawer__submenu .mobile-facets__submenu {
  overflow-y: auto;
}

.js .mobile-facets .submenu-open {
  visibility: hidden; /* hide menus from screen readers when hidden by submenu */
}

.mobile-facets__item {
  position: relative;
}

input.mobile-facets__checkbox {
  border: 0;
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  left: 2.1rem;
  top: 1.2rem;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-facets__label {
  padding: 1.5rem 2rem 1.5rem 2.5rem;
  width: 100%;
  transition: background-color 0.2s ease;
  word-break: break-word;
  display: flex;
}

.mobile-facets__label > svg {
  background-color: rgb(var(--color-background));
  position: relative;
  z-index: 2;
  margin-right: 1.2rem;
  flex-shrink: 0;
}

.mobile-facets__label .icon-checkmark {
  position: absolute;
  top: 1.9rem;
  left: 2.8rem;
  visibility: hidden;
}

.mobile-facets__label > input[type="checkbox"]:checked ~ .icon-checkmark {
  visibility: visible;
}

.mobile-facets__arrow,
.mobile-facets__summary .icon-caret {
  margin-left: auto;
  display: block;
}

.mobile-facets__label--disabled {
  opacity: 0.5;
}

.mobile-facets__footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding: 2rem;
  bottom: 0;
  position: sticky;
  display: flex;
  z-index: 2;
  margin-top: auto;
  background-color: rgb(var(--color-background));
  background: var(--gradient-background);
}

.mobile-facets__footer > * + * {
  margin-left: 1rem;
}

.mobile-facets__footer > * {
  width: 50%;
}

.mobile-facets__footer noscript .button {
  width: 100%;
}

.mobile-facets__sort {
  display: flex;
  justify-content: space-between;
}

.mobile-facets__sort label {
  flex-shrink: 0;
}

.mobile-facets__sort .select {
  width: auto;
}

.no-js .mobile-facets__sort .select {
  position: relative;
  right: -1rem;
}

.mobile-facets__sort .select .icon-caret {
  right: 0;
}

.mobile-facets__sort .select__select {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 1.5rem;
}

.product-count {
  align-self: center;
  position: relative;
  text-align: right;
}

.product-count__text {
  font-size: 1em;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  margin: 0;
}

.product-count__text.loading {
  visibility: hidden;
}

.product-count .loading-overlay__spinner,
.product-count-vertical .loading-overlay__spinner {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
}

.product-count__text.loading + .loading-overlay__spinner {
  display: block;
}

@media screen and (min-width: 750px) {
  .facets-vertical {
    display: flex;
  }

  .facets-wrap-vertical {
    border: none;
    padding-left: 0;
  }

  .facets__form-vertical {
    display: flex;
    flex-direction: column;
    width: 26rem;
  }

  .facets__disclosure-vertical {
    border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
    margin-right: 0;
  }

  .facets-vertical .facets__summary {
    padding-top: 1.5rem;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
  }

  .facets__heading--vertical {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
  }

  .facets__header-vertical {
    padding: 1.5rem 2rem 1.5rem 0;
    font-size: 1.4rem;
  }

  .facets__display-vertical {
    padding-bottom: 1.5rem;
  }

  .facets-vertical .facets-wrapper {
    padding-right: 3rem;
  }

  .facets-vertical .facets-wrapper--no-filters {
    display: none;
  }

  .no-js .facets-vertical .facets-wrapper--no-filters {
    display: block;
  }

  .facets-vertical .product-grid-container {
    width: 100%;
  }

  .facets-vertical-form {
    display: flex;
    justify-content: flex-end;
  }

  .product-count-vertical {
    margin-left: 3.5rem;
  }

  .facets-vertical .active-facets__button-wrapper {
    margin-bottom: 2rem;
  }

  .facets-vertical .no-js .facets__button-no-js {
    transform: none;
    margin-left: 0;
  }

  .facets-vertical .no-js .facet-filters__field {
    justify-content: flex-start;
    padding-bottom: 1rem;
    padding-top: 2rem;
  }

  .facets-vertical .facets__price {
    padding: 0.5rem 0.5rem 0.5rem 0;
  }

  .facets-vertical .facets__price .field:last-of-type {
    margin-left: 1rem;
  }

  .facets-vertical .active-facets__button {
    margin-bottom: 1.5rem;
  }

  .no-js .facets-vertical .facet-filters.sorting {
    padding-left: 0;
    flex-direction: column;
  }

  .facets-vertical .facet-checkbox input[type="checkbox"] {
    z-index: 0;
  }

  .no-js .facets-vertical .facets-container {
    display: flex;
    flex-direction: column;
  }

  .facets-vertical .active-facets facet-remove:last-of-type {
    margin-bottom: 1rem;
  }

  .facets-vertical .active-facets {
    margin: 0;
    align-items: flex-start;
  }

  .facets__disclosure-vertical[open] .facets__summary .icon-caret {
    transform: rotate(180deg);
  }

  .facets-container-drawer {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    column-gap: 0;
  }

  .facets-container-drawer .mobile-facets__wrapper {
    margin-right: 2rem;
    flex-grow: 1;
  }

  .facets-container-drawer .product-count {
    margin: 0 0 0.5rem 3.5rem;
  }

  .facets-container-drawer .facets-pill {
    width: 100%;
  }

  .facets-container-drawer .facets__form {
    display: block;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .facets-vertical .active-facets__button {
    padding: 1rem;
    margin-bottom: 0;
    margin-left: -0.5rem;
  }

  .facets-vertical .active-facets__button-remove {
    padding: 0 1rem 1rem;
  }
}
.image-with-text .grid {
  margin-bottom: 0;
}

.image-with-text__grid {
  align-items: stretch;
}

.image-with-text .grid__item {
  position: relative;
}

@media screen and (min-width: 750px) {
  .image-with-text__grid--reverse {
    flex-direction: row-reverse;
  }
}

.image-with-text__media {
  min-height: 100%;
  overflow: visible;
}

.image-with-text__media--small {
  height: 19.4rem;
}

.image-with-text__media--medium {
  height: 29.6rem;
}

.image-with-text__media--large {
  height: 43.5rem;
}

@media screen and (min-width: 750px) {
  .image-with-text__media--small {
    height: 31.4rem;
  }

  .image-with-text__media--medium {
    height: 46rem;
  }

  .image-with-text__media--large {
    height: 69.5rem;
  }
}

.image-with-text__media--placeholder {
  position: relative;
  overflow: hidden;
}

.image-with-text__media--placeholder:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-foreground), 0.04);
}

.image-with-text__media--placeholder.image-with-text__media--adapt {
  height: 20rem;
}

@media screen and (min-width: 750px) {
  .image-with-text__media--placeholder.image-with-text__media--adapt {
    height: 30rem;
  }
}

.image-with-text__media--placeholder > svg {
  position: absolute;
  left: 50%;
  max-width: 80rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  fill: currentColor;
}

.image-with-text__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-self: center;
  padding: 3rem calc(3rem / var(--font-body-scale)) 3rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 990px) {
  .bg-is-accent-1.text-is-accent-1,
  .bg-is-accent-2.text-is-accent-2,
  .bg-is-background-1.text-is-background-1,
  .bg-is-background-2.text-is-background-2,
  .bg-is-inverse.text-is-inverse {
    padding-left: 0;
    padding-right: 0;
  }
}

.image-with-text .grid__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.image-with-text:not(.image-with-text--overlap)
  .image-with-text__media-item:after {
  border-radius: var(--media-radius);
}

.image-with-text:not(.image-with-text--overlap)
  .image-with-text__text-item:after {
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}

.image-with-text .image-with-text__media-item > * {
  border-radius: var(--media-radius);
  overflow: hidden;
}

.image-with-text .global-media-settings {
  overflow: hidden !important;

}

.image-with-text .image-with-text__text-item > * {
  border-radius: var(--text-boxes-radius);
  overflow: hidden;
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}

.image-with-text:not(.image-with-text--overlap)
  .image-with-text__media-item
  > *,
.image-with-text:not(.image-with-text--overlap)
  .image-with-text__text-item
  > * {
  box-shadow: none;
}

@media screen and (max-width: 749px) {
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid__item
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__media
    img {
    /* border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; */
  }

  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid__item
    .image-with-text__content {
    /* border-top-left-radius: 0;
    border-top-right-radius: 0; */
  }

  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .image-with-text__content {
    border-top: 0;
  }
}

.image-with-text__content--mobile-right > * {
  align-self: flex-end;
  text-align: right;
}

.image-with-text__content--mobile-center > * {
  align-self: center;
  text-align: center;
}

.image-with-text--overlap .image-with-text__content {
  width: 90%;
  margin: -3rem auto 0;
}

@media screen and (min-width: 750px) {
  .image-with-text__grid--reverse .image-with-text__content {
    margin-left: auto;
  }

  .image-with-text__content--bottom {
    justify-content: flex-end;
    align-self: flex-end;
  }

  .image-with-text__content--top {
    justify-content: flex-start;
    align-self: flex-start;
  }

  .image-with-text__content--desktop-right > * {
    align-self: flex-end;
    text-align: right;
  }

  .image-with-text__content--desktop-left > * {
    align-self: flex-start;
    text-align: left;
  }

  .image-with-text__content--desktop-center > * {
    align-self: center;
    text-align: center;
  }

  .image-with-text--overlap .image-with-text__text-item {
    display: flex;
    padding: 3rem 0;
  }

  .image-with-text--overlap .image-with-text__content {
    height: auto;
    width: calc(100% + 4rem);
    min-width: calc(100% + 4rem);
    margin-top: 0;
    margin-left: -4rem;
  }

  .image-with-text--overlap
    .image-with-text__grid--reverse
    .image-with-text__content {
    margin-left: 0;
    margin-right: -4rem;
  }

  .image-with-text--overlap
    .image-with-text__grid--reverse
    .image-with-text__text-item {
    justify-content: flex-end;
  }

  .image-with-text__media-item--top {
    align-self: flex-start;
  }

  .image-with-text__media-item--middle {
    align-self: center;
  }

  .image-with-text__media-item--bottom {
    align-self: flex-end;
  }

  .image-with-text__media-item--small,
  .image-with-text__media-item--large + .image-with-text__text-item {
    flex-grow: 0;
  }
  

  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media
    img,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__text-item:after,
  /* .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content, */
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media
    img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content {
    border-left: 0;
  }

  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content {
    border-right: 0;
  }
}

.image-with-text:not(.collapse-corners, .image-with-text--overlap)
  .image-with-text__media-item {
  z-index: 2;
}

.image-with-text__content {
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  word-break: break-word;
}

@media screen and (min-width: 990px) {
  .image-with-text__content {
    padding: 6rem 7rem 7rem;
  }
}

.image-with-text__content > * + * {
  margin-top: 2rem;
}

.image-with-text__content > .image-with-text__text:empty ~ a {
  margin-top: 2rem;
}

.image-with-text__content > :first-child:is(.image-with-text__heading),
.image-with-text__text--caption + .image-with-text__heading,
.image-with-text__text--caption:first-child {
  margin-top: 0;
}

.image-with-text__content :last-child:is(.image-with-text__heading),
.image-with-text__text--caption {
  margin-bottom: 0;
}

.image-with-text__content .button + .image-with-text__text {
  margin-top: 2rem;
}

.image-with-text__content .image-with-text__text + .button {
  margin-top: 3rem;
}

.image-with-text__heading {
  margin-bottom: 0;
}

.image-with-text__text p {
  margin-top: 0;
  margin-bottom: 1rem;
}

@media screen and (max-width: 749px) {
  .collapse-padding .image-with-text__grid .image-with-text__content {
    padding-left: 0;
    padding-right: 0;
  }
  
/* .image-with-text .global-media-settings {
  border-radius: 0px;
} */
}

@media screen and (min-width: 750px) {
  .collapse-padding
    .image-with-text__grid:not(.image-with-text__grid--reverse)
    .image-with-text__content:not(.image-with-text__content--desktop-center) {
    padding-right: 0;
  }

  .collapse-padding
    .image-with-text__grid--reverse
    .image-with-text__content:not(.image-with-text__content--desktop-center) {
    padding-left: 0;
  }
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .image-with-text .grid {
    margin-left: 0;
  }
}

/*
  Multirow
  note: consider removing from this stylesheet if multirow-specific styles increase signficantly
*/
.multirow__inner {
  display: flex;
  flex-direction: column;
  row-gap: var(--grid-mobile-vertical-spacing);
}

@media screen and (min-width: 750px) {
  .multirow__inner {
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}
.list-menu--right {
  right: 0;
}

.list-menu--disclosure {
  position: absolute;
  min-width: 100%;
  width: 20rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
}

.list-menu--disclosure:focus {
  outline: none;
}

.list-menu__item--active {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.list-menu__item--active:hover {
  text-decoration-thickness: 0.2rem;
}

.list-menu--disclosure.localization-selector {
  max-height: 18rem;
  overflow: auto;
  width: 10rem;
  padding: 0.5rem;
}
.list-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -0.5rem 0;
  padding-top: 1rem;
  padding-left: 0;
}

@media screen and (min-width: 750px) {
  .list-payment {
    justify-content: flex-end;
    margin: -0.5rem;
    padding-top: 0;
  }
}

.list-payment__item {
  align-items: center;
  display: flex;
  padding: 0.5rem;
}

.list-payment__item svg {
  width: var(--payment-icon-size);
  height: auto;
}
.list-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media only screen and (max-width: 749px) {
  .list-social {
    justify-content: center;
  }
}

.list-social__item .icon {
  height: 1.8rem;
  width: 1.8rem;
}

.list-social__link {
  align-items: center;
  display: flex;
  padding: 1.3rem;
  color: rgb(var(--color-foreground));
}

.list-social__link:hover .icon {
  transform: scale(var(--animation-scale));
}

.list-social__item {
  transition: transform 200ms ease;
}

.list-social__item:hover {
  transform: translateY(-2px);
}

.list-social__item:has(.icon-facebook):hover {
  background: #3A5A99;
}

.list-social__item:has(.icon-youtube):hover {
  background: #E52D27;
}

.list-social__item:has(.icon-twitter):hover {
  background: #020304;
}

.list-social__item:has(.icon-instagram):hover {
  background: #e1306c;
}

.list-social__item:has(.icon-tiktok):hover {
  background: #010101;
}

.list-social__item:has(.icon-pinterest):hover {
  background: #bd081c;
}

.list-social__item:has(.icon-snapchat):hover {
  background: #fffc00;
}

.list-social__item:has(.icon-tumblr):hover {
  background: #35465d;
}

.list-social__item:has(.icon-vimeo):hover {
  background: #1ab7ea;
}
.loading-overlay {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
}

@media screen and (max-width: 749px) {
  .loading-overlay {
    top: 0;
    right: 0;
  }
}

@media screen and (min-width: 750px) {
  .loading-overlay {
    left: 0;
  }
}

.loading-overlay__spinner {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: rgb(var(--color-background));
  animation: dash 1.4s ease-in-out infinite;
}

@media screen and (forced-colors: active) {
  .path{
    stroke: CanvasText;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

.loading-overlay:not(.hidden) + .cart-item__price-wrapper,
.loading-overlay:not(.hidden) ~ cart-remove-button {
  opacity: 50%;
}

.loading-overlay:not(.hidden) ~ cart-remove-button {
  pointer-events: none;
  cursor: default;
}
.mega-menu {
  position: static;
}

.mega-menu__content {
  background-color: rgb(var(--color-background));
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  left: 0;
  overflow-y: auto;
  padding-bottom: 2.4rem;
  padding-top: 2.4rem;
  position: absolute;
  right: 0;
  top: 100%;
}

.shopify-section-header-sticky .mega-menu__content {
  max-height: calc(100vh - var(--header-bottom-position-desktop, 20rem) - 4rem);
}

.header-wrapper--border-bottom .mega-menu__content {
  border-top: 0;
}

.js .mega-menu__content {
  opacity: 0;
  transform: translateY(-1.5rem);
}

.mega-menu[open] .mega-menu__content {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu__list {
  display: grid;
  gap: 2.4rem 4rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
}

.mega-menu__link {
  color: rgba(var(--color-foreground), 0.9);
  display: block;
  font-size: 1.3rem;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  text-decoration: none;
  transition: text-decoration var(--duration-short) ease;
  word-wrap: break-word;
}

.mega-menu__link--level-2 {
  font-size: 1.4rem;
}

.mega-menu__link--level-2:not(:only-child) {
  margin-bottom: 0.8rem;
}

.header--top-center .mega-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0;
}

.header--top-center .mega-menu__list > li {
  width: 16%;
  padding-right: 2.4rem;
}

.mega-menu__link:hover,
.mega-menu__link--active {
  color: rgb(var(--color-foreground));
  text-decoration: underline;
}

.mega-menu__link--active:hover {
  text-decoration-thickness: 0.2rem;
}

.mega-menu .mega-menu__list--condensed {
  display: block;
}

.mega-menu__list--condensed .mega-menu__link {
  font-weight: normal;
}
.header__icon--menu {
  position: initial;
}

.js menu-drawer > details > summary::before,
.js menu-drawer > details[open]:not(.menu-opening) > summary::before {
  content: "";
  position: absolute;
  cursor: default;
  width: 100%;
  height: calc(100vh - 100%);
  height: calc(
          var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%))
  );
  top: 100%;
  left: 0;
  background: rgba(var(--color-foreground), 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0s, visibility 0s;

  top: 0;
}

menu-drawer > details[open] > summary::before {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--duration-default) ease,
  visibility var(--duration-default) ease;
}

.menu-drawer {
  position: absolute;
  transform: translateX(-100%);
  visibility: hidden;
  z-index: 3;
  left: 0;
  top: 100%;
  width: calc(100vw - 4rem);
  padding: 0;
  border-width: 0 var(--drawer-border-width) 0 0;
  background-color: rgb(var(--color-background));
  overflow-x: hidden;
  border-style: solid;
  border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
  filter: drop-shadow(
          var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset)
          var(--drawer-shadow-blur-radius)
          rgba(var(--color-shadow), var(--drawer-shadow-opacity))
  );

  top: 0;
  position: fixed;
}

.js .menu-drawer {
  height: calc(100vh - 100%);
  height: calc(
          var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%))
  );

  height: 100vh;
}

.js details[open] > .menu-drawer,
.js details[open] > .menu-drawer__submenu {
  transition: transform var(--duration-default) ease,
  visibility var(--duration-default) ease;
}

.no-js details[open] > .menu-drawer,
.js details[open].menu-opening > .menu-drawer,
details[open].menu-opening > .menu-drawer__submenu {
  transform: translateX(0);
  visibility: visible;
}

.js .menu-drawer__navigation .submenu-open {
  visibility: hidden; /* hide menus from screen readers when hidden by submenu */
}

/* mobile menu */
.menu-drawer__title-and-close-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem 1rem 2rem;
  border-bottom: solid 1px rgba(var(--color-foreground), 0.1);
}

.menu-drawer__title {
  margin: 0;
}

.menu-drawer__close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 750px) {
  .menu-drawer {
    width: 40rem;
  }

  .no-js .menu-drawer {
    height: auto;
  }

  .menu-drawer__mobile-content {
    display: none;
  }

  .menu-drawer__secondary-nav {
    display: none !important;
  }
}

.menu-drawer__inner-container {
  position: relative;
  height: 100%;
}

.menu-drawer__navigation-container {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  overflow-y: auto;
  height: 100%;
}

.menu-drawer__navigation {
  padding: 5.6rem 0;
}

.menu-drawer__inner-submenu {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.no-js .menu-drawer__navigation {
  padding: 0;
}

.no-js .menu-drawer__navigation > ul > li {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.04);
}

.no-js .menu-drawer__submenu ul > li {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.04);
}

.js .menu-drawer__menu li {
  margin-bottom: 0.2rem;
}

.menu-drawer__menu-item {
  padding: 1.1rem 3.2rem!important;
  text-decoration: none!important;;
  font-size: 1.8rem!important;;
}

.no-js .menu-drawer__menu-item {
  font-size: 1.6rem;
}

.no-js .menu-drawer__submenu .menu-drawer__menu-item {
  padding: 1.2rem 5.2rem 1.2rem 6rem;
}

.no-js .menu-drawer__submenu .menu-drawer__submenu .menu-drawer__menu-item {
  padding-left: 9rem;
}

.menu-drawer summary.menu-drawer__menu-item {
  padding-right: 5.2rem;
}

.no-js .menu-drawer__menu-item .icon-caret {
  right: 3rem;
}

.menu-drawer__menu-item--active,
.menu-drawer__menu-item:focus,
.menu-drawer__close-button:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__close-button:hover {
  color: rgb(var(--color-foreground)) !important;;
  background-color: rgba(var(--color-foreground), 0.04) !important;
}

.menu-drawer__menu-item--active:hover {
  background-color: rgba(var(--color-foreground), 0.08);
}

.js .menu-drawer__menu-item .icon-caret,
.no-js .menu-drawer .icon-arrow {
  display: none;
}

.menu-drawer__menu-item > .icon-arrow {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.js .menu-drawer__submenu {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgb(var(--color-background));
  border-left: 0.1rem solid rgba(var(--color-foreground), 0.2);
  z-index: 1;
  transform: translateX(100%);
  visibility: hidden;
}

.js .menu-drawer__submenu .menu-drawer__submenu {
  overflow-y: auto;
}

.menu-drawer__close-button {
  margin-top: 1.5rem;
  padding: 1.2rem 2.6rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  width: 100%;
  background-color: transparent;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  text-align: left;
}

.no-js .menu-drawer__close-button {
  display: none;
}

.menu-drawer__close-button .icon-arrow {
  transform: rotate(180deg);
  margin-right: 1rem;
}

.menu-drawer__utility-links {
  padding: 2rem;
  background-color: rgba(var(--color-foreground), 0.03);
}

.menu-drawer__account {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 1.2rem;
  margin-left: -1.2rem;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
}

.menu-drawer__account .icon-account {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}

.menu-drawer__account:hover .icon-account {
  transform: scale(1.07);
}

.menu-drawer .list-social {
  justify-content: flex-start;
  margin-left: -1.25rem;
  margin-top: 2rem;
}

.menu-drawer .list-social:empty {
  display: none;
}

.menu-drawer .list-social__link {
  padding: 1.3rem 1.25rem;
}

@media screen and (max-width: 750px) {
  .menu-drawer__menu-item {
    padding: 0.9rem 2rem;
  }

  .menu-drawer__inner-container {
    height: auto;
  }

  .menu-drawer__navigation {
    padding: 1rem 0;
    border-bottom: solid 1px rgba(var(--color-foreground), 0.1);
  }

  .menu-drawer__utility-links {
    background: transparent;
    padding: 1rem 2rem;
  }

  .menu-drawer .list-social {
    justify-content: center;
    margin: 0;
  }

  .header__icon--menu[aria-expanded="true"]:before {
    z-index: 1;
    position: fixed;
    height: 100vh;
    top: 0;
  }
}
.mini-reviews-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 100%;
  margin-bottom: 0;
  scroll-snap-align: center;
}
.mini-review-item {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1;
}

.mini-review-item__image {
  width: 5rem;
  height: 5rem;
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  border: 2px solid white;
}
.mini-review-item__image img {
  width: 100%;
  height: 100%;
}

.mini-review-content {
  flex-grow: 1;
}
.mini-review-text {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.3;
  font-style: italic;
}
.mini-review-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  white-space: nowrap;
  border-top: solid 1px rgba(var(--color-foreground), 0.3);
}

.mini-review-info div {
  gap: .3rem;
  line-height: 1.4;
  align-items: center;
}

.mini-review-info .mini-review-author {
  margin: 0;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 600;
}

.mini-review-info .mini-review-author-location {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.mini-review-info .verified_text {
  font-style: italic;
  color: #4CAF50;
  font-size: 12px;
}

.mini-review-stars {
  letter-spacing: 0.2em;
}

.mini-reviews-block {
  position: relative;
}

.mini-reviews-block .review-sliders {
  padding: 10px 20px;
  border-radius: 10px;
}

.mini-reviews-block .slideshow__slide {
  flex-basis: 100%;
}
.mini-reviews-block .slideshow__controls {
  border: none;
}
.mini-reviews-block .slider-button {
  width: 2rem;
  height: 2rem;
}
.mini-reviews-block .slider-button svg {
  height: 0.7rem;
}
.mini-reviews-block .slider-counter__link--dots .dot {
  width: 0.7rem;
  height: 0.7rem;
}

.mini-reviews-block .slider-counter__link {
  padding: 0.5rem;
}
.mini-reviews-block .slider-counter--dots {
  margin: 0 0.2rem;
}

@media screen and (min-width: 750px) {
  .mini-review-content {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 2rem;
  }

  .mini-review-info {
    margin-top: 0;
    border-top: none;
  }

  .mini-review-item .author_info {
    border-bottom: solid 1px rgba(var(--color-foreground), 0.3);;
  }
}
.modal-video {
  background: rgba(var(--color-foreground), 0.2);
  box-sizing: border-box;
  height: 100%;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

.modal-video[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}

.modal-video__content {
  background-color: rgb(var(--color-background));
  height: 100%;
  margin: 0;
  overflow: auto;
  padding: 0;
  position: absolute;
  width: 100%;
}

.modal-video__toggle {
  align-items: center;
  background-color: rgb(var(--color-background));
  border-radius: 50%;
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.55);
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 0 0 0 auto;
  padding: 1.2rem;
  position: fixed;
  right: 0.5rem;
  top: 2rem;
  width: 4rem;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .modal-video__toggle {
    right: 4.8rem;
    top: 3.5rem;
  }
}

@media screen and (min-width: 990px) {
  .modal-video__toggle {
    right: 4.3rem;
    top: 3rem;
  }
}

.modal-video__toggle .icon {
  height: auto;
  margin: 0;
  width: 2.2rem;
}

.modal-video__content-info {
  height: calc(100% - 6rem);
  margin: 0 auto;
  padding-top: 8rem;
  width: calc(100% - 1rem);
}

@media screen and (min-width: 750px) {
  .modal-video__content-info {
    height: calc(100% - 7.5rem);
    padding-top: 9.5rem;
    width: calc(100% - 9.6rem);
  }
}

@media screen and (min-width: 990px) {
  .modal-video__content-info {
    height: calc(100% - 7rem);
    padding-top: 9rem;
    width: calc(100% - 8.6rem);
  }
}

.modal-video__video,
.modal-video__video iframe {
  height: 100%;
  width: 100%;
}

.modal-video__video iframe {
  position: static;
  border: 0;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: rgb(var(--color-background));
  border-color: rgba(var(--color-foreground), 0.04);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: rgba(var(--color-foreground), 0.9);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
  color: rgba(var(--color-foreground), 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active,
.shopify-model-viewer-ui
  .shopify-model-viewer-ui__button--control.focus-visible:focus {
  color: rgba(var(--color-foreground), 0.55);
  background: rgba(var(--color-foreground), 0.04);
}

.shopify-model-viewer-ui
  .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-color: rgba(var(--color-foreground), 0.04);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  border-radius: 50%;
  color: rgb(var(--color-foreground));
  background: rgb(var(--color-background));
  border-color: rgba(var(--color-foreground), 0.1);
  transform: translate(-50%, -50%) scale(1);
  transition: transform var(--duration-short) ease,
    color var(--duration-short) ease;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon {
  width: 4.8rem;
  height: 4.8rem;
  margin-top: 0.3rem;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
  transform: translate(-50%, -50%) scale(1.1);
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 750px) {
  .newsletter-form {
    align-items: flex-start;
    margin: 0 auto;
    max-width: 36rem;
  }
}

.newsletter-form__field-wrapper {
  width: 100%;
}

.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem;
}

.newsletter-form__field-wrapper .field {
  z-index: 0;
}

.newsletter-form__message {
  justify-content: center;
  margin-bottom: 0;
}

.newsletter-form__message--success {
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  .newsletter-form__message {
    justify-content: flex-start;
  }
}

.newsletter-form__button {
  width: 4.4rem;
  margin: 0;
  right: var(--inputs-border-width);
  top: 0;
  height: 100%;
  z-index: 2;
}

.newsletter-form__button:focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:focus {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.newsletter-form__button .icon {
  width: 1.5rem;
}

.newsletter__solid-btn {
  margin-top: 1rem;
}
.pagination-wrapper {
  margin-top: 4rem;
}

@media screen and (min-width: 990px) {
  .pagination-wrapper {
    margin-top: 5rem;
  }
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination__list > li {
  flex: 1 0 4.4rem;
  max-width: 4.4rem;
}

.pagination__list > li:not(:last-child) {
  margin-right: 1rem;
}

.pagination__item {
  color: rgb(var(--color-foreground));
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4.4rem;
  width: 100%;
  padding: 0;
  text-decoration: none;
}

a.pagination__item:hover::after {
  height: 0.1rem;
}

.pagination__item .icon-caret {
  height: 0.6rem;
}

.pagination__item--current::after {
  height: 0.1rem;
}

.pagination__item--current::after,
.pagination__item:hover::after {
  content: '';
  display: block;
  width: 2rem;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: currentColor;
}

.pagination__item--next .icon {
  margin-left: -0.2rem;
  transform: rotate(90deg);
}

.pagination__item--next:hover .icon {
  transform: rotate(90deg) scale(1.07);
}

.pagination__item--prev .icon {
  margin-right: -0.2rem;
  transform: rotate(-90deg);
}

.pagination__item--prev:hover .icon {
  transform: rotate(-90deg) scale(1.07);
}

.pagination__item-arrow:hover::after {
  display: none;
}
pickup-availability {
  display: block;
}

pickup-availability[available] {
  min-height: 8rem;
}

.pickup-availability-preview {
  align-items: flex-start;
  display: flex;
  gap: 0.2rem;
  padding: 1rem 2rem 0 0;
}

.pickup-availability-preview .icon {
  flex-shrink: 0;
  height: 1.8rem;
}

.pickup-availability-preview .icon-unavailable {
  height: 1.6rem;
  margin-top: 0.1rem;
}

.pickup-availability-button {
  background-color: transparent;
  color: rgba(var(--color-foreground), 0.9);
  letter-spacing: 0.06rem;
  padding: 0 0 0.2rem;
  text-align: left;
  text-decoration: underline;
}

.pickup-availability-button:hover {
  color: rgb(var(--color-foreground));
}

.pickup-availability-info * {
  margin: 0 0 0.6rem;
}

pickup-availability-drawer {
  background-color: rgb(var(--color-background));
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  padding: 2rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  transition: opacity var(--duration-default) ease,
    transform var(--duration-default) ease;
  transform: translateX(100%);
  width: 100%;
  border-width: 0 0 0 var(--drawer-border-width);
  border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
  border-style: solid;
  filter: drop-shadow(
    var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset)
      var(--drawer-shadow-blur-radius)
      rgba(var(--color-shadow), var(--drawer-shadow-opacity))
  );
}

pickup-availability-drawer[open] {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (min-width: 750px) {
  pickup-availability-drawer {
    transform: translateX(100%);
    width: 37.5rem;
  }

  pickup-availability-drawer[open] {
    opacity: 1;
    transform: translateX(0);
    animation: animateDrawerOpen var(--duration-default) ease;
  }
}

.pickup-availability-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.pickup-availability-drawer-title {
  margin: 0.5rem 0 0;
}

.pickup-availability-header .icon {
  width: 2rem;
}

.pickup-availability-drawer-button {
  background-color: transparent;
  border: none;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  display: block;
  height: 4.4rem;
  padding: 1.2rem;
  width: 4.4rem;
}

.pickup-availability-drawer-button:hover {
  color: rgba(var(--color-foreground), 0.9);
}

.pickup-availability-variant {
  font-size: 1.3rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  margin: 0 0 1.2rem;
  text-transform: capitalize;
}

.pickup-availability-variant > * + strong {
  margin-left: 1rem;
}

.pickup-availability-list__item {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding: 2rem 0;
}

.pickup-availability-list__item:first-child {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.pickup-availability-list__item > * {
  margin: 0;
}

.pickup-availability-list__item > * + * {
  margin-top: 1rem;
}

.pickup-availability-address {
  font-style: normal;
  font-size: 1.2rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.pickup-availability-address p {
  margin: 0;
}

@keyframes animateDrawerOpen {
  @media screen and (max-width: 749px) {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media screen and (min-width: 750px) {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
.predictive-search {
  display: none;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: -0.1rem;
  border-width: var(--popup-border-width);
  border-style: solid;
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  background-color: rgb(var(--color-background));
  z-index: 3;
  border-bottom-right-radius: var(--popup-corner-radius);
  border-bottom-left-radius: var(--popup-corner-radius);
  box-shadow: var(--popup-shadow-horizontal-offset)
    var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.predictive-search--search-template {
  z-index: 2;
  width: calc(100% + 0.2rem);
}

.predictive-search__results-groups-wrapper {
  display: flex;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding-bottom: 1rem;
}

@media screen and (max-width: 749px) {
  .predictive-search--header {
    right: 0;
    left: 0;
    top: 100%;
  }

  .predictive-search__results-groups-wrapper {
    flex-direction: column;
  }

  .predictive-search__results-groups-wrapper:not(
      .predictive-search__results-groups-wrapper--no-suggestions
    ) {
    /* On mobile, when there are no suggestions the first .predictive-search__results-groups-wrapper
     * is virtually empty due to a display: hidden on the predictive-search__pages-wrapper child.
     * This causes the gap to render and look like a big top margin */
    gap: 2rem;
  }
}

@media screen and (min-width: 750px) {
  .predictive-search {
    border-top: none;
    width: calc(100% + 0.2rem);
  }

  .header predictive-search {
    position: relative;
  }
}

predictive-search[open] .predictive-search,
predictive-search[loading] .predictive-search {
  display: block;
}

.predictive-search__result-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 2rem;
}

.predictive-search__result-group:first-child .predictive-search__pages-wrapper {
  display: none;
}

@media screen and (min-width: 750px) {
  .predictive-search__results-groups-wrapper--no-products
    .predictive-search__result-group:nth-child(2),
  .predictive-search__result-group:last-child
    .predictive-search__pages-wrapper {
    display: none;
  }
  .predictive-search__result-group:first-child
    .predictive-search__pages-wrapper {
    display: initial;
  }
  .predictive-search__result-group:first-child {
    flex: 0 0 26.4rem;
  }
  .predictive-search__results-groups-wrapper--no-products
    .predictive-search__result-group:first-child,
  .predictive-search__result-group:only-child {
    flex-grow: 1;
  }
}

.predictive-search__heading {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  margin: 0 2rem;
  padding: 1.5rem 0 0.75rem;
  color: rgba(var(--color-foreground), 0.7);
}

predictive-search .spinner {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 0;
}

predictive-search:not([loading]) .predictive-search__loading-state,
predictive-search:not([loading]) .predictive-search-status__loading {
  display: none;
}

predictive-search[loading] .predictive-search__loading-state {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

predictive-search[loading] .predictive-search__search-for-button {
  display: none;
}

predictive-search[loading]
  .predictive-search__results-groups-wrapper
  ~ .predictive-search__loading-state {
  display: none;
}

predictive-search[loading]
  .predictive-search__results-groups-wrapper
  ~ .predictive-search__search-for-button {
  display: initial;
}

.predictive-search__list-item[aria-selected="true"] > *,
.predictive-search__list-item:hover > *,
.predictive-search__item[aria-selected="true"],
.predictive-search__item:hover {
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-foreground), 0.04);
}

.predictive-search__list-item[aria-selected="true"]
  .predictive-search__item-heading,
.predictive-search__list-item:hover .predictive-search__item-heading {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.predictive-search__item {
  display: flex;
  padding: 1rem 2rem;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.predictive-search__item--link-with-thumbnail {
  display: grid;
  grid-template-columns: 5rem 1fr;
  grid-column-gap: 2rem;
  grid-template-areas: "product-image product-content";
}

.predictive-search__item-content {
  grid-area: product-content;
  display: flex;
  flex-direction: column;
}

.predictive-search__item-content--centered {
  justify-content: center;
}

.predictive-search__item-vendor {
  font-size: 0.9rem;
}

.predictive-search__item-heading {
  margin: 0;
}

.predictive-search__item-query-result *:not(mark) {
  font-weight: bolder;
}

.predictive-search__item-query-result mark {
  color: rgba(var(--color-foreground), 0.9);
}

.predictive-search__item-query-result mark {
  background-color: transparent;
}

.predictive-search__item .price {
  color: rgba(var(--color-foreground), 0.7);
  font-size: 1.2rem;
}

.predictive-search__item-vendor + .predictive-search__item-heading,
.predictive-search .price {
  margin-top: 0.5rem;
}

.predictive-search__item--term {
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 2rem;
  word-break: break-all;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .predictive-search__item--term {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.predictive-search__item--term .icon-arrow {
  width: calc(var(--font-heading-scale) * 1.4rem);
  height: calc(var(--font-heading-scale) * 1.4rem);
  flex-shrink: 0;
  margin-left: calc(var(--font-heading-scale) * 2rem);
  color: rgb(var(--color-link));
}

.predictive-search__image {
  grid-area: product-image;
  object-fit: contain;
  font-family: "object-fit: contain";
}
.price {
  /* font-size: 1.6rem; */
  font-size: 1.1428571429em;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* margin-bottom: 0.5rem; */
  column-gap: 1rem;
}

.price > * {
  display: inline-block;
  vertical-align: top;
}

.price.price--unavailable {
  visibility: hidden;
}

.price--end {
  text-align: right;
}

.price .price-item {
  display: inline-block;
  margin: 0;
  color: rgb(var(--color-base-accent-1));
  font-weight: 700;
}

.price__regular .price-item--regular {
  margin-right: 0;
}

.price:not(.price--show-badge) .price-item--last:last-of-type {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .price {
    margin-bottom: 0;
  }
}

.price--sold-out .price__availability,
.price__regular {
  display: block;
}

.price__sale,
.price__availability,
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__regular,
.price--on-sale .price__availability {
  display: none;
}

.price--sold-out .price__badge-sold-out,
.price--on-sale .price__badge-sale {
  display: inline-flex;
}

.price--on-sale .price__sale {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.price--center {
  display: initial;
  justify-content: center;
}

.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.9);
  font-size: 1.3rem;
}

.unit-price {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  margin-top: 0.2rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
}

.product-page-price .price--on-sale .price__sale--price-second {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.product-page-price
  .price--on-sale
  .price__sale--price-second
  .compare-price-label {
  order: 1;
}
.product-page-price
  .price--on-sale
  .price__sale--price-second
  .price__compare-price {
  order: 2;
  margin-right: 0.55rem;
}
.product-page-price
  .price--on-sale
  .price__sale--price-second
  .price__compare-price
  .price-item--regular {
  font-size: 2rem;
}
.product-page-price
  .price--on-sale
  .price__sale--price-second
  .regular-price-label {
  order: 3;
}
.product-page-price
  .price--on-sale
  .price__sale--price-second
  .price-item--sale {
  order: 4;
}
.product-page-price
  .price--on-sale
  .price__sale--price-second
  .price-item--sale
  span.money {
  font-size: 1.7rem;
}
.product__xr-button {
  background: rgba(var(--color-foreground), 0.08);
  color: rgb(var(--color-foreground));
  margin: 1rem auto;
  box-shadow: none;
  display: flex;
}

.button.product__xr-button:hover {
  box-shadow: none;
}

.product__xr-button[data-shopify-xr-hidden] {
  visibility: hidden;
}

.shopify-design-mode .product__xr-button[data-shopify-xr-hidden] {
  display: none;
}

@media screen and (max-width: 749px) {
  slider-component .product__xr-button {
    display: none;
  }

  .active .product__xr-button:not([data-shopify-xr-hidden]) {
    display: block;
  }
}

@media screen and (min-width: 750px) {
  slider-component + .button.product__xr-button {
    display: none;
  }

  .product__xr-button[data-shopify-xr-hidden] {
    display: none;
  }
}

.product__xr-button .icon {
  width: 1.4rem;
  margin-right: 1rem;
}
.quantity-breaks-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.quantity-breaks__title {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  column-gap: 10px;
  margin-bottom: 1rem;
}
.quantity-breaks__title span:nth-of-type(1),
.quantity-breaks__title span:nth-of-type(3) {
  display: block;
  height: 2px;
  flex-grow: 1;
  background: rgb(var(--color-base-accent-2));
}
.quantity-breaks-container input {
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}
.quantity-break {
  padding: 1.75rem 1.75rem 1.75rem 4rem;
  margin-bottom: 0.95rem;
  cursor: pointer;
  border-radius: 1rem;
  background: rgba(var(--color-base-accent-2), 0.02);
  border: solid 2px rgba(var(--color-base-accent-2), 0.3);
  position: relative;
}
.quantity-breaks-container input:checked + .quantity-break {
  background: rgba(var(--color-base-accent-2), 0.1);
  border: solid 2px rgb(var(--color-base-accent-2));
}
.quantity-break:hover {
  background: rgba(var(--color-base-accent-2), 0.15);
  border: solid 2px rgb(var(--color-base-accent-2));
}
.quantity-break__badge {
  position: absolute;
  background: rgb(var(--color-base-accent-1));
  color: rgb(var(--color-background));
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  top: -1rem;
  right: -1rem;
  transform: rotate(3deg);
  margin: 0;
  padding: 0 0.5em;
  border-radius: 0.2em;
}
.quantity-break__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quantity-break__left span,
.quantity-break__right span {
  display: block;
}
.quantity-break__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.5rem;
  text-align: left;
}
.quantity-break__left .quantity-break__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
}
.quantity-break__label-text {
  line-height: 1;
}
.quantity-break__benefit {
  display: inline-block;
  font-size: 1rem;
  background: rgb(var(--color-background));
  color: rgb(var(--color-base-accent-1));
  line-height: 1.9;
  padding: 0 0.75rem;
  font-weight: 700;
  border: solid 1px rgb(var(--color-base-accent-1));
  border-radius: 0.6rem;
  margin-left: 0.5rem;
}
.quantity-break__caption {
  font-size: 1.4rem;
  line-height: 1;
}

.quantity-break__right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 0.5rem;
}
.quantity-break__price {
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent-2));
}
.quantity-break__compare-price {
  font-size: 1.4rem;
  text-decoration: line-through;
  line-height: 1;
}
.quantity-break__caption span {
  display: inline;
}
.quantity-break::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: solid 0.2rem rgba(var(--color-base-accent-2), 0.3);
}
.quantity-breaks-container input:checked + .quantity-break::before {
  border: solid 0.2rem rgb(var(--color-base-background-1));
  background: rgb(var(--color-base-accent-2));
  box-shadow: 0 0 0 0.1rem rgb(var(--color-base-accent-2));
}

.quantity-break__variants {
  height: 0;
  overflow: hidden;
  padding-top: 0;
}

.quantity-breaks-container
  input:checked
  + .quantity-break
  .quantity-break__variants {
  height: auto;
  padding-top: 1rem;
}

.quantity-break__selector-item__number {
  font-weight: 700;
  margin-right: 0.4rem;
  line-height: 1.5rem;
}

.quantity-break__selector-item {
  display: flex;
  align-items: center;
}

.quantity-break__selector-item:not(:last-of-type) {
  margin-bottom: 0.75rem;
}

.quantity-break__selector-item .select {
  width: fit-content;
}

.quantity-break__selector-item .select__select {
  height: 2.1rem;
}
.rating {
  display: inline-block;
  margin: 0;
}

.product .rating-star {
  --letter-spacing: 0.8;
  --font-size: 1.7;
}

.card-wrapper .rating-star {
  --letter-spacing: 0.7;
  --font-size: 1.4;
}

.rating-star {
  --percent: calc(
    (
        var(--rating) / var(--rating-max) + var(--rating-decimal) *
          var(--font-size) /
          (var(--rating-max) * (var(--letter-spacing) + var(--font-size)))
      ) * 100%
  );
  letter-spacing: calc(var(--letter-spacing) * 1rem);
  font-size: calc(var(--font-size) * 1rem);
  line-height: 1;
  display: inline-block;
  font-family: Times;
  margin: 0;
}

.rating-star::before {
  content: '★★★★★';
  background: linear-gradient(
    90deg,
    var(--color-icon) var(--percent),
    rgba(var(--color-foreground), 0.15) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-text {
  display: none;
}

.rating-count {
  display: inline-block;
  margin: 0;
}

@media (forced-colors: active) {
  .rating {
    display: none;
  }

  .rating-text {
    display: block;
  }
}
.review-item {
  display: flex;
}
.review-item--middle {
  align-items: center;
}
.review-item__image {
  width: 5rem;
  height: 5rem;
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
}
.review-item__image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.review-item__right {
  flex-grow: 1;
}
.review-item__text p {
  margin-top: 0;
  line-height: 1.3em;
  font-size: 1.4rem;
  color: rgb(var(--color-base-text));
}
.review-item__text p:last-of-type {
  margin-bottom: 0;
}
.review-item__author-and-stars {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  border-top: solid 1px rgba(var(--color-foreground), 0.06);
}
.review-item__author {
  margin: 0;
  line-height: 2em;
  color: rgba(var(--color-base-text), 0.5);
  font-style: italic;
  font-size: 1.3rem;
}
.review-item__stars {
  color: #ffd700;
  letter-spacing: 0.2em;
  line-height: 2em;
  line-height: 1.3rem;
}
.review-items-container .slideshow__slide {
  flex-basis: 100%;
}
.review-items-container .slideshow__controls {
  border: none;
}
.review-items-container .slider-button {
  width: 2rem;
  height: 2rem;
}
.review-items-container .slider-button svg {
  height: 0.7rem;
}
.review-items-container .slider-counter__link--dots .dot {
  width: 0.7rem;
  height: 0.7rem;
}

.review-items-container .slider-counter__link {
  padding: 0.5rem;
}
.review-items-container .slider-counter--dots {
  margin: 0 0.2rem;
}

.review-cards {
  align-self: stretch;
  display: grid;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(229px, 1fr));
  font-size: 16px;
  color: #ffffff;
}
.review-card-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.review-card-body {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 41px 20px 20px;
  gap: 24px;
}
.partner-details,
.partner-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.partner-info {
  align-self: stretch;
  gap: 10px;
}
.partner-details {
  width: 622px;
  padding: 0 0 88px;
  box-sizing: border-box;
  min-width: 622px;
  min-height: 349px;
  max-width: 100%;
}
.partner-images-icon {
  height: 438px;
  flex: 1;
  position: relative;
  border-radius: 20px;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
  min-width: 411px;
}
.partner-content,
.partner-content-wrapper {
  display: flex;
  flex-direction: row;
  max-width: 100%;
}
.partner-content {
  width: 1281px;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 26px;
}
.partner-content-wrapper {
  align-self: stretch;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px 100px 23px;
  box-sizing: border-box;
  text-align: center;
  font-size: 40px;
  color: #000000;
}
.partner-details,
.partner-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.partner-info {
  align-self: stretch;
  gap: 10px;
}
.partner-details {
  width: 622px;
  padding: 0 0 88px;
  box-sizing: border-box;
  min-width: 622px;
  min-height: 349px;
  max-width: 100%;
}
.partner-images-icon {
  height: 438px;
  flex: 1;
  position: relative;
  border-radius: 20px;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
  min-width: 411px;
}
.partner-content,
.partner-content-wrapper {
  display: flex;
  flex-direction: row;
  max-width: 100%;
}
.partner-content {
  width: 1281px;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 26px;
}
.review-card-image {
  align-self: stretch;
  height: 248px;
  position: relative;
  border-radius: 20px 20px 0 0;
  max-width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}
.review-card-component-quote {
  height: 171px;
  width: 245.7px;
  position: absolute;
  margin: 0 !important;
  top: -41px;
  right: -52.7px;
}
.review-card-description {
  margin: 0;
  text-align: center;
}
.review-card-description-container {
  flex: 1;
  position: relative;
  letter-spacing: 0em;
  line-height: 28.8px;
  font-weight: 500;
  z-index: 1;
}
.review-card-components,
.review-card-review {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.review-card-components {
  flex: 1;
  justify-content: flex-start;
  position: relative;
}
.review-card-review {
  align-self: stretch;
  justify-content: flex-end;
  padding: 0 2px 0 3px;
}
.review-card-user-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 4px;
  transform: scale(1.609);
}
.review-card-user-image-container {
  margin-bottom: -4px;
  height: 46px;
  width: 46px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.review-card-user-name {
  margin-bottom: -2px;
  width: 110px;
  position: relative;
  font-weight: 500;
  display: inline-block;
  min-width: 110px;
  flex-shrink: 0;
}
.review-card-user-name-row {
  height: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
}
.review-card-user-customer {
  position: relative;
  font-size: 14px;
  letter-spacing: 0em;
  font-weight: 500;
  color: #383838;
  text-align: left;
  display: inline-block;
  min-width: 77px;
  flex-shrink: 0;
}
.review-card-user-details {
  margin-bottom: -1px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.review-card-user-rating {
  /*height: 18px;*/
  /*width: 90px;*/
  position: relative;
}
/*.review-card-user-rating .stars-inner::before {*/
/*  color: #333333;*/
/*}*/
.review-card-user-info {
  align-self: stretch;
  height: 51px;
  border-top: 1px solid #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0 0;
  gap: 10px;
  font-size: 18px;
}

@media screen and (max-width: 1800px) {
  .review-cards {
    justify-content: center;
    grid-template-columns: repeat(2, minmax(229px, 398px));
  }
}
@media screen and (max-width: 1350px) {
  .partner-details {
    flex: 1;
  }
  .partner-content {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 925px) {
  .partner-details,
  .partner-images-icon {
    min-width: 100%;
  }
  .partner-content-wrapper {
    padding-bottom: 65px;
    box-sizing: border-box;
  }
  .review-cards {
    grid-template-columns: minmax(229px, 1fr);
  }
}

@media screen and (max-width: 450px) {
  .review-card-body {
    padding-top: 27px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 749px) {
  .review-card-row {
    padding: 0 15px !important;
  }
}
.rte:after {
  clear: both;
  content: '';
  display: block;
}

.rte > p:first-child {
  margin-top: 0;
}

.rte > p:last-child {
  margin-bottom: 0;
}

.rte table {
  table-layout: fixed;
}

@media screen and (min-width: 750px) {
  .rte table td {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.rte img {
  height: auto;
  max-width: 100%;
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius) rgba(var(--color-shadow), var(--media-shadow-opacity));
  margin-bottom: var(--media-shadow-vertical-offset);
}

.rte ul,
.rte ol {
  list-style-position: inside;
  padding-left: 2rem;
}

.rte li {
  list-style: inherit;
}

.rte li:last-child {
  margin-bottom: 0;
}

.rte a {
  color: rgba(var(--color-link), var(--alpha-link));
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.rte a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.rte blockquote {
  display: inline-flex;
}

.rte blockquote > * {
  margin: -0.5rem 0 -0.5rem 0;
}
.search__input.field__input {
  padding-right: 9.8rem;
}

.search__button {
  right: var(--inputs-border-width);
  top: var(--inputs-border-width);
}

.reset__button {
  right: calc(var(--inputs-border-width) + 4.4rem);
  top: var(--inputs-border-width);
}

.reset__button:not(:focus-visible)::after {
  border-right: 0.1rem solid rgba(var(--color-foreground), 0.08);
  display: block;
  height: calc(100% - 1.6rem);
  content: '';
  position: absolute;
  right: 0;
}

.reset__button:not(:focus)::after {
  border-right: 0.1rem solid rgba(var(--color-foreground), 0.08);
  display: block;
  height: calc(100% - 1.8rem);
  content: '';
  position: absolute;
  right: 0;
}

.search__button:focus-visible,
.reset__button:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 4;
}

.search__button:focus,
.reset__button:focus {
  background-color: rgb(var(--color-background));
  z-index: 4;
}

.search__button:not(:focus-visible):not(.focused),
.reset__button:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.search__button:hover .icon,
.reset__button:hover .icon {
  transform: scale(1.07);
}


.search__button .icon {
  height: 1.8rem;
  width: 1.8rem;
}

.reset__button .icon.icon-close {
  height: 1.8rem;
  width: 1.8rem;
  stroke-width: 0.1rem;
}

/* Remove extra spacing for search inputs in Safari */
input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.button-show-more {
  padding-left: 0;
  justify-content: flex-start;
  padding-bottom: 1.1rem;
}

.button-show-more, 
.button-show-less {
  margin-top: 1.5rem;
}
slider-component {
  --desktop-margin-left-first-item: max(
    5rem,
    calc(
      (
          100vw - var(--page-width) + 10rem -
            var(--grid-desktop-horizontal-spacing)
        ) / 2
    )
  );
  position: relative;
  display: block;
}

slider-component.slider-component-full-width {
  --desktop-margin-left-first-item: 1.5rem;
}

@media screen and (max-width: 749px) {
  slider-component.page-width {
    padding: 0 1.5rem;
  }
}

@media screen and (min-width: 749px) and (max-width: 990px) {
  slider-component.page-width {
    padding: 0 5rem;
  }
}

@media screen and (max-width: 989px) {
  .no-js slider-component .slider {
    padding-bottom: 3rem;
  }
}

.slider__slide {
  --focus-outline-padding: 0.5rem;
  --shadow-padding-top: calc(
    (var(--shadow-vertical-offset) * -1 + var(--shadow-blur-radius)) *
      var(--shadow-visible)
  );
  --shadow-padding-bottom: calc(
    (var(--shadow-vertical-offset) + var(--shadow-blur-radius)) *
      var(--shadow-visible)
  );
  scroll-snap-align: start;
  flex-shrink: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 749px) {
  .slider.slider--mobile {
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 0px;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0rem;
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .slider--mobile:after {
    content: "";
    width: 0;
    padding-left: 1.5rem;
  }

  .slider.slider--mobile .slider__slide {
    scroll-snap-stop: always;
    margin-bottom: 0;
    /* padding-top: 0.1rem; */
    /* padding-bottom: 0.1rem; */
  }

  .slider.slider--mobile.contains-card--standard
    .slider__slide:not(.collection-list__item--no-media) {
    padding-bottom: var(--focus-outline-padding);
  }

  .slider.slider--mobile.contains-content-container .slider__slide {
    --focus-outline-padding: 0rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 750px) {
  .slider.slider--tablet-up {
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .slider.slider--tablet-up .slider__slide {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 989px) {
  .slider.slider--tablet {
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.5rem;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .slider--tablet:after {
    content: "";
    width: 0;
    padding-left: 1.5rem;
    margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
  }

  .slider.slider--tablet .slider__slide {
    margin-bottom: 0;
    padding-top: max(var(--focus-outline-padding), var(--shadow-padding-top));
    padding-bottom: max(
      var(--focus-outline-padding),
      var(--shadow-padding-bottom)
    );
  }

  .slider.slider--tablet.contains-card--standard
    .slider__slide:not(.collection-list__item--no-media) {
    padding-bottom: var(--focus-outline-padding);
  }

  .slider.slider--tablet.contains-content-container .slider__slide {
    --focus-outline-padding: 0rem;
  }
}

.slider--everywhere {
  position: relative;
  flex-wrap: inherit;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.slider.slider--everywhere .slider__slide {
  margin-bottom: 0;
  scroll-snap-align: center;
}

@media screen and (min-width: 990px) {
  .slider-component-desktop.page-width {
    max-width: none;
  }

  .slider--desktop {
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    scroll-padding-left: var(--desktop-margin-left-first-item);
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .slider--desktop:after {
    content: "";
    width: 0;
    padding-left: 5rem;
    margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
  }

  .slider.slider--desktop .slider__slide {
    margin-bottom: 0;
    padding-top: max(var(--focus-outline-padding), var(--shadow-padding-top));
    padding-bottom: max(
      var(--focus-outline-padding),
      var(--shadow-padding-bottom)
    );
  }

  .slider--desktop .slider__slide:first-child {
    margin-left: var(--desktop-margin-left-first-item);
    scroll-margin-left: var(--desktop-margin-left-first-item);
  }

  .slider-component-full-width .slider--desktop {
    scroll-padding-left: 1.5rem;
  }

  .slider-component-full-width .slider--desktop .slider__slide:first-child {
    margin-left: 1.5rem;
    scroll-margin-left: 1.5rem;
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .slider-component-full-width .slider--desktop:after {
    padding-left: 1.5rem;
  }

  .slider--desktop.grid--5-col-desktop .grid__item {
    width: calc(
      (100% - var(--desktop-margin-left-first-item)) / 5 -
        var(--grid-desktop-horizontal-spacing) * 2
    );
  }

  .slider--desktop.grid--4-col-desktop .grid__item {
    width: calc(
      (100% - var(--desktop-margin-left-first-item)) / 4 -
        var(--grid-desktop-horizontal-spacing) * 3
    );
  }

  .slider--desktop.grid--3-col-desktop .grid__item {
    width: calc(
      (100% - var(--desktop-margin-left-first-item)) / 3 -
        var(--grid-desktop-horizontal-spacing) * 4
    );
  }

  .slider--desktop.grid--2-col-desktop .grid__item {
    width: calc(
      (100% - var(--desktop-margin-left-first-item)) / 2 -
        var(--grid-desktop-horizontal-spacing) * 5
    );
  }

  .slider--desktop.grid--1-col-desktop .grid__item {
    width: calc(
      (100% - var(--desktop-margin-left-first-item)) -
        var(--grid-desktop-horizontal-spacing) * 9
    );
  }

  .slider.slider--desktop.contains-card--standard
    .slider__slide:not(.collection-list__item--no-media) {
    padding-bottom: var(--focus-outline-padding);
  }

  .slider.slider--desktop.contains-content-container .slider__slide {
    --focus-outline-padding: 0rem;
  }
}

@media (prefers-reduced-motion) {
  .slider {
    scroll-behavior: auto;
  }
}

/* Scrollbar */

.slider {
  scrollbar-color: rgb(var(--color-foreground))
    rgba(var(--color-foreground), 0.04);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  height: 0.4rem;
  width: 0.4rem;
  display: none;
}

.no-js .slider {
  -ms-overflow-style: auto;
  scrollbar-width: auto;
}

.no-js .slider::-webkit-scrollbar {
  display: initial;
}

.slider::-webkit-scrollbar-thumb {
  background-color: rgb(var(--color-foreground));
  border-radius: 0.4rem;
  border: 0;
}

.slider::-webkit-scrollbar-track {
  background: rgba(var(--color-foreground), 0.04);
  border-radius: 0.4rem;
}

.slider-counter {
  display: flex;
  justify-content: center;
  min-width: 4.4rem;
}

@media screen and (min-width: 750px) {
  .slider-counter--dots {
    margin: 0 1.2rem;
  }
}

.slider-counter__link {
  padding: 1rem;
}

@media screen and (max-width: 749px) {
  .slider-counter__link {
    padding: 0.7rem;
  }
}

.slider-counter__link--dots .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(var(--color-foreground), 0.5);
  padding: 0;
  display: block;
}

.slider-counter__link--active.slider-counter__link--dots .dot {
  background-color: rgb(var(--color-foreground));
}

@media screen and (forced-colors: active) {
  .slider-counter__link--active.slider-counter__link--dots .dot {
    background-color: CanvasText;
  }
}

.slider-counter__link--dots:not(.slider-counter__link--active):hover .dot {
  border-color: rgb(var(--color-foreground));
}

.slider-counter__link--dots .dot,
.slider-counter__link--numbers {
  transition: transform 0.2s ease-in-out;
}

.slider-counter__link--active.slider-counter__link--numbers,
.slider-counter__link--dots:not(.slider-counter__link--active):hover .dot,
.slider-counter__link--numbers:hover {
  transform: scale(1.1);
}

.slider-counter__link--numbers {
  color: rgba(var(--color-foreground), 0.5);
  text-decoration: none;
}

.slider-counter__link--numbers:hover {
  color: rgb(var(--color-foreground));
}

.slider-counter__link--active.slider-counter__link--numbers {
  text-decoration: underline;
  color: rgb(var(--color-foreground));
}

.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 990px) {
  .slider:not(.slider--everywhere):not(.slider--desktop) + .slider-buttons {
    display: none;
  }
}

@media screen and (max-width: 989px) {
  .slider--desktop:not(.slider--tablet) + .slider-buttons {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .slider--mobile + .slider-buttons {
    display: none;
  }
}

.slider-button {
  color: rgba(var(--color-foreground), 0.9);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-button:not([disabled]):hover {
  color: rgb(var(--color-foreground));
}

.slider-button .icon {
  height: 0.6rem;
}

.slider-button[disabled] .icon {
  color: rgba(var(--color-foreground), 0.3);
  cursor: not-allowed;
}

.slider-button--next .icon {
  transform: rotate(-90deg);
}

.slider-button--prev .icon {
  transform: rotate(90deg);
}

.slider-button--next:not([disabled]):hover .icon {
  transform: rotate(-90deg) scale(1.1);
}

.slider-button--prev:not([disabled]):hover .icon {
  transform: rotate(90deg) scale(1.1);
}

/* desktop product slider animation fix */
@media screen and (min-width: 750px) {
  .slider.gallery-slider--desktop {
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.5rem;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0rem;
  }
  .slider.gallery-slider--desktop .product__media-item:not(.is-active),
  .product--thumbnail_slider .product__media-item:not(.is-active) {
    display: block;
  }
  .slider.gallery-slider--desktop .grid__item {
    width: 100%;
  }
}
slideshow-component {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 989px) {
  .no-js slideshow-component .slider {
    padding-bottom: 3rem;
  }
}

slideshow-component .slideshow.banner {
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  gap: 0;
}

.slideshow__slide {
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 749px) {
  .slideshow--placeholder.banner--mobile-bottom.banner--adapt_image
    .slideshow__media,
  .slideshow--placeholder.banner--adapt_image:not(.banner--mobile-bottom) {
    height: 28rem;
  }
}

@media screen and (min-width: 750px) {
  .slideshow--placeholder.banner--adapt_image {
    height: 56rem;
  }
}

.slideshow__text.banner__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 54.5rem;
}

.slideshow__text > * {
  max-width: 100%;
}

@media screen and (max-width: 749px) {
  slideshow-component.page-width .slideshow__text {
    border-right: var(--text-boxes-border-width) solid
      rgba(var(--color-foreground), var(--text-boxes-border-opacity));
    border-left: var(--text-boxes-border-width) solid
      rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  }

  .banner--mobile-bottom .slideshow__text.banner__box {
    max-width: 100%;
  }

  .banner--mobile-bottom .slideshow__text-wrapper {
    flex-grow: 1;
  }

  .banner--mobile-bottom .slideshow__text.banner__box {
    height: 100%;
  }

  .banner--mobile-bottom .slideshow__text .button {
    flex-grow: 0;
  }

  .slideshow__text.slideshow__text-mobile--left {
    align-items: flex-start;
    text-align: left;
  }

  .slideshow__text.slideshow__text-mobile--right {
    align-items: flex-end;
    text-align: right;
  }
}

@media screen and (min-width: 750px) {
  .slideshow__text.slideshow__text--left {
    align-items: flex-start;
    text-align: left;
  }

  .slideshow__text.slideshow__text--right {
    align-items: flex-end;
    text-align: right;
  }
}

.slideshow:not(.banner--mobile-bottom) .slideshow__text-wrapper {
  height: 100%;
}

@media screen and (min-width: 750px) {
  .slideshow__text-wrapper.banner__content {
    height: 100%;
    padding: 5rem;
  }
}

.slideshow__controls {
  border: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.slideshow__controls--top {
  order: 2;
  z-index: 1;
}

@media screen and (max-width: 749px) {
  .slideshow__controls--border-radius-mobile {
    border-bottom-right-radius: var(--text-boxes-radius);
    border-bottom-left-radius: var(--text-boxes-radius);
  }
}

.spaced-section--full-width:last-child
  slideshow-component:not(.page-width)
  .slideshow__controls {
  border-bottom: none;
}

@media screen and (min-width: 750px) {
  .slideshow__controls {
    position: relative;
  }
}

slideshow-component:not(.page-width) .slider-buttons {
  border-right: 0;
  border-left: 0;
}

.slideshow__control-wrapper {
  display: flex;
}

.slideshow__autoplay {
  position: absolute;
  right: 0;
  border-left: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 749px) {
  slideshow-component.page-width .slideshow__autoplay {
    right: 1.5rem;
  }
}

@media screen and (min-width: 750px) {
  .slideshow__autoplay.slider-button {
    position: inherit;
    margin-left: 0.6rem;
    padding: 0 0 0 0.6rem;
    border-left: 0.1rem solid rgba(var(--color-foreground), 0.08);
  }
}

.slideshow__autoplay .icon.icon-play,
.slideshow__autoplay .icon.icon-pause {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 150ms ease, opacity 150ms ease;
  width: 0.8rem;
  height: 1.2rem;
}

.slideshow__autoplay .icon.icon-play {
  height: 1rem;
}

.slideshow__autoplay path {
  fill: rgba(var(--color-foreground), 0.75);
}

.slideshow__autoplay:hover path {
  fill: rgb(var(--color-foreground));
}

@media screen and (forced-colors: active) {
  .slideshow__autoplay path,
  .slideshow__autoplay:hover path {
    fill: CanvasText;
  }
}

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

.slideshow__autoplay--paused .icon-pause,
.slideshow__autoplay:not(.slideshow__autoplay--paused) .icon-play {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}
.slideshow.banner {
  align-items: stretch;
}
.sticky-atc {
  position: fixed;
  bottom: 15px;
  margin: 0;
  padding: 0.75rem 0 1.25rem;
  padding-bottom: 0px;
  z-index: 2;
  border-radius: 10px;
  right: 20px;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.2);
}

.sticky-atc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  padding: 1rem 1.5rem;
}

.sticky-atc__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-atc__image {
  display: flex;
}

.sticky-atc__image img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 5px;
}

.sticky-atc__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-atc__button,
.sticky-atc__right {
  flex-shrink: 0;
}

.sticky-atc__button {
  padding-top: 15px;
}

.sticky-atc .button {
  padding: 0 1rem;
  line-height: normal;
  font-size: 1.5rem;
}

.sticky-atc .price--on-sale .price__sale {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.sticky-atc .price .price-item,
.sticky-atc .price .price-item--sale,
.sticky-atc span.price-item.price-item--sale.price-item--last {
  color: rgb(var(--color-base-accent-3)) !important;
}

.sticky-atc .price .price__compare-price .price-item--regular {
  color: rgb(var(--color-base-text)) !important;
}

.sticky-atc__title {
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

.sticky-atc__price {
  margin-top: 0.5rem;
}

.sticky-atc__price .price {
  column-gap: 0.5rem;
  margin-bottom: 0;
}

.sticky-atc__price .price,
.sticky-atc__price .price-item--regular {
  font-size: 1.3rem;
}

.sticky-atc__price .badge {
  font-size: 0.8rem;
}

.sticky-atc.color-inverse .price-item {
  color: rgb(var(--color-foreground));
}

.sticky-atc.color-inverse .price__sale .price-item--regular {
  color: rgb(var(--color-base-accent-1));
}

.sticky-atc.color-accent-1 .price-item,
.sticky-atc.color-accent-1 .price-item {
  color: rgb(var(--color-foreground));
}

.sticky-atc.color-accent-1 .badge,
.sticky-atc.color-accent-1 .badge {
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}

.sticky-atc .price__regular .price-item--regular {
  font-size: 2rem;
  line-height: 1.1;
}

.sticky-atc__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-atc__dropdowns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-atc__dropdown-wrapper {
  display: flex;
  gap: .5rem;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
}

.sticky-atc__dropdown-wrapper label {
  font-size: 13px;
  bottom: 100%;
  font-weight: 600;
  line-height: 1;
}

.sticky-atc__dropdown {
  padding: 5px 20px 5px 10px;
  font-size: 14px;
  appearance: none;
  min-width: 110px;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  border-radius: var(--inputs-radius);
  position: relative;
}

.sticky-atc__dropdown-wrapper .icon-caret {
  height: 0.6rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: calc(var(--inputs-border-width) + 5px);
}

@media screen and (max-width: 1040px) {
  .sticky-atc__dropdowns {
    display: none;
  }

  .sticky-atc__button {
    padding-top: 0;
  }
}

@media screen and (min-width: 400px) {
  .sticky-atc__price .price,
  .sticky-atc__price .price-item--regular {
    font-size: 1.6rem;
  }

  .sticky-atc__price .badge {
    font-size: 1rem;
  }

  .sticky-atc .button {
    font-size: 1.7rem;
    padding: 0 1.1em;
  }
}

@media screen and (min-width: 750px) {
  .sticky-atc__price .price,
  .sticky-atc__price .price-item--regular {
    font-size: 1.8rem;
  }

  .sticky-atc .price__regular .price-item--regular {
    font-size: 2.2rem;
  }

  .sticky-atc .button {
    padding: 0 1.2em;
    min-height: 35px;
  }

  .sticky-atc .button .product-form-button-text {
    font-size: 15px !important;
  }
}

.sticky-atc--after-scroll.sticky-atc--active {
  animation: btnAppear 0.15s ease-in-out forwards;
}

@keyframes btnAppear {
  from {
    transform: translateY(200%);
  }

  to {
    transform: translateY(0);
  }
}

.quick-add-modal__content .sticky-atc {
  display: none;
}

button.sticky-atc-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  padding: 0px;
  border: 0px solid;
  width: 15px;
  height: 15px;
  font-size: 27px;
  transform: rotate(45deg);
  cursor: pointer;
}

button.sticky-atc-close:before {
  content: "+";
}

@media (max-width: 768px) {
  .sticky-atc-mobile-button-only.sticky-atc {
    margin-left: 20px;
    bottom: 20px;
  }

  .sticky-atc-mobile-button-only.sticky-atc .sticky-atc-container {
    gap: 5px;
    padding: .5rem;
  }

  .sticky-atc-mobile-button-only.sticky-atc .sticky-atc__left {
    justify-content: left;
    gap: 5px;
  }

  .sticky-atc-mobile-button-only.sticky-atc .sticky-atc__button button.button {
    min-width: 105px;
    min-height: unset;
    padding: 1rem;
  }

  .sticky-atc__title {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .sticky-atc-container span.price__compare-price {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  .sticky-atc__price .price {
    gap: .3rem;
  }
  .sticky-atc__price {
    margin-top: 0.3rem;
  }
}
.vertical-ticker__inner {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    0deg,
    transparent 0,
    #000 20%,
    #000 70%,
    transparent
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 20%,
    #000 70%,
    transparent
  );
}
.vertical-ticker__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.vertical-ticker__item {
  margin: 0;
  color: rgb(var(--color-foreground));
}
.vertical-ticker__item--italic {
  font-style: italic;
}
.vertical-ticker__item--uppercase {
  text-transform: uppercase;
}
.vertical-ticker__item--bold {
  font-weight: 700;
}
@keyframes vertTicker {
  to {
    transform: translateY(-50%);
  }
}
.vertical-ticker-and-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.vertical-ticker-content {
  display: grid;
  place-items: center;
  position: relative;
}
.vertical-ticker-content .title {
  margin-top: 0;
}
.vertical-ticker-content__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vertical-ticker-content__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.vertical-ticker-content .page-width {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .vertical-ticker-and-content--ticker-first .vertical-ticker {
    order: -1;
  }
  .vertical-ticker-and-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .vertical-ticker-content {
    padding-top: 36px;
  }
}
@media screen and (max-width: 768px) {
  .vertical-ticker-and-content--content-desktop-only .vertical-ticker-content {
    display: none;
  }
}

/* horizontal */
.horizontal-ticker {
  overflow-x: hidden;
  max-width: 100%;
}
.horizontal-ticker__inner {
  overflow: hidden;
}
.horizontal-ticker__container {
  display: flex;
  width: fit-content;
}
.horizontal-ticker__item {
  margin: 0;
  color: rgb(var(--color-foreground));
  line-height: 1;
  white-space: nowrap;
}
.horizontal-ticker__item--italic {
  font-style: italic;
}
.horizontal-ticker__item--uppercase {
  text-transform: uppercase;
}
.horizontal-ticker__item--bold {
  font-weight: 700;
}

@keyframes horTicker {
  to {
    transform: translateX(-50%);
  }
}
.totals {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.totals > * {
  font-size: 1.6rem;
  margin: 0;
}

.totals > h2 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

.totals * {
  line-height: 1;
}

.totals > * + * {
  margin-left: 2rem;
}

.totals__subtotal-value {
  font-size: 1.8rem;
  font-weight: var(--font-heading-weight);
}

.cart__ctas + .totals {
  margin-top: 2rem;
}

/* @media all and (min-width: 750px) {
  .totals {
    justify-content: flex-end;
  }
}
 */
/* banner css */
h2.product__title.banner-title {
  /* font-size: calc(var(--font-heading-size) + 10px); */
  font-weight: 700;
  letter-spacing: -1.68px;
}

.rich-text {
  max-width: 1310px;
  margin: 0px auto;
  border-radius: 30px;
}
/* 
.rich-main {
    padding: 30px;
}
*/

.color-accent-1 {
  --color-button-text: var(--color-base-accent-1);
  --color-button: var(--color-base-solid-button-labels);
}

.product__accordion-top-line {
  background-color: rgba(var(--color-foreground), 0.9) !important;
  height: 1px;
  margin: 0px auto !important;
  width: calc(100% - 8px);
  display: none !important;
}

.product__accordion.first {
  padding-top: 5px;
  /* border-top: 1px solid rgba(var(--color-foreground), 0.9)!important; */
}

.product__accordion details {
  /* height: 56px; */
  height: 42px;
  transition: 1s;
  overflow: hidden;
  border-radius: 10px;
}

.product__accordion details[open] {
  /* height: 170px; */
  /* height: auto;
    min-height: max-content; */
  /* border-radius: 3px; */
}

.product__accordion details:after {
  width: 11px;
  height: 11px;
  background: transparent;
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  right: 13px;
  transform: rotate(45deg);
  border: 3px solid;
  border-left: 0;
  border-top: 0;
  transition: 0.4s;
}

.product__accordion details {
  position: relative;
  z-index: 1;
}

.product__accordion details[open]:after {
  transform: rotate(226deg);
  top: 20px;
}

/* .comparison-table tbody { */
/* box-shadow: unset !important;
    border-radius: 0 !important;
} */

table.comparison-table {
  /* overflow: hidden; */
}

.track-order-main h2 {
  margin: 0 0 20px 0;
}

.comparison-table tbody tr:first-of-type .comparison-table__row-name {
  /* border-radius: 0 !important; */
}
table.comparison-table tbody {
  box-shadow: 0.5rem 0.5rem 1rem rgba(var(--color-foreground), 0.2),
    0 0 0 0.2rem rgba(var(--color-foreground), 0.07);
  border-radius: 2rem !important;
}
table.comparison-table tr th {
  padding: 1rem 1rem;
}
table.comparison-table tr th:nth-child(1) {
  width: 52%;
}

table.comparison-table tr th:nth-child(2),
table.comparison-table tr th:nth-child(3) {
  width: 24%;
  font-size: 15px;
}

table.comparison-table tr td:first-child {
  box-shadow: unset;
  color: #fff;
  border-bottom: 0.5px solid #a3a3a3;
}
table.comparison-table tr td:first-child h3 {
  color: #fff;
  font-weight: bold;
}

table.comparison-table tr td {
  box-shadow: unset;
  border-bottom: 0.5px solid #a3a3a3;
}

table.comparison-table tr:last-child td {
  border: 0 !important;
}

.bundle-deals__checkbox-label svg {
  color: rgba(var(--color-foreground), 0.9);
}

.bundle-deals .bundle-deals__prices span {
  font-size: 15px !important;
  font-weight: 500;
}

.bundle-deals p.bundle-deals__total-price-container {
  font-size: 15px;
  font-weight: 600;
}

button.shopify-payment-button__button {
  cursor: pointer !important;
  border: 0 !important;
  padding: 20px 13px 20px 13px !important;
  background-color: var(--color-shopify-pay-button) !important;
  color: #fff !important;
  flex: 1 !important;
  box-shadow: 0 5px 20px rgba(50, 118, 71, 0.1) !important;
  border-radius: 3px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  height: 58px !important;
}

.image-with-text__heading {
  font-weight: 500;
}

button#CartDrawer-Checkout {
  /* background: rgb(var(--color-button-text));
    color: rgba(var(--color-button), var(--alpha-button-background)); */
}

button.shopify-payment-button__button:before {
  /* content: "Buy Now" !important;
    position: absolute;
    font-size: 18px !important;
    z-index: 1;
    top: 35%; */
}

p.product__text.subtitle {
  color: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
    var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity));

  /* font-size: 20px; */
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  line-height: 1.4em;
  /* 100% */
  letter-spacing: 0em;
}

.testimonial-card .multicolumn-card__info .rte p {
  font-size: 1em;
  line-height: 1.4em;
  letter-spacing: 0em;
}

p.product__text {
  color: #757575;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
  /* 180% */
  letter-spacing: 0em;
  max-width: 70%;
}

p.product__text--without-width {
  /* color: #757575; */

  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4em;
  /* 180% */
  letter-spacing: 0em;
}

/* banner css */

/* about css */

.about-main h2.image-with-text__heading.h1 {
  color: #7ea68c;

  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
  /* 140% */
  letter-spacing: -2.8px;
  text-transform: uppercase;
}

.image-with-text__text.rte.body p {
  font-size: 1.2857142857em;
  font-style: normal;
  font-weight: 500;
  /* line-height: 177.456%; */
  line-height: 1.4em;
  /* 31.942px */
  letter-spacing: 0em;
}

.about-main {
  /* max-width: 140rem; */
  max-width: var(--page-width);
  margin: 0 auto;
  border-radius: 20px;
}

.partner-main {
  padding: 100px;
}

.main-review-image {
  width: 100%;
}

.main-review-image img {
  width: 100%;
  border-radius: 0;
}

a.button {
  border-radius: var(--buttons-radius) !important;
}

/* about css */

/* list block */

.point-main .image-with-text__text P {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
  /* 180% */
  letter-spacing: 0em;
  position: relative;
}

.multicolumn-list p {
  word-wrap: break-word;
}

.point-main .image-with-text__text:not(.without-point) p:first-child {
  display: flex;
  align-items: center;
}

.point-main .image-with-text__text:not(.without-point) p:first-child:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: -25px;
  border-radius: 10px;
}

/* .accordion__content p {
    color: unset !IMPORTANT;
    color: rgb(var(--color-foreground));
} */
/* details summary h3.accordion__title{
    color: rgb(var(--color-foreground));
} */
/* list block */

/* news letter */

.newsletter__wrapper h2.h1 {
  color: #7ea68c;

  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px;
  /* 100% */
  letter-spacing: -1.84px;
}

.newsletter__subheading p {
  color: #757575;

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
  /* 160% */
  letter-spacing: 0em;
}

.newsletter.center {
  padding: 100px 3%;
}

.emoji-benefits-container ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  width: 100%;
}

.emoji-benefits-container ul {
  padding: 1em 0;
  margin: 0;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.emoji-list:first-child {
  width: 5%;
}

.emoji-list {
  width: 95%;
}

.list-image img {
  object-fit: contain;
  max-width: 400px;
}

.emoji-list:first-child img {
  width: 100%;
}

.product__column-sticky {
  top: 12rem !important;
}

.price .price-item {
  font-size: 1.15em !important;
}

span.price-item.price-item--sale.price-item--last {
  color: rgb(var(--color-base-text));
}

quantity-input.quantity:after {
  /* \: 0 !important; */
  box-shadow: unset;
}

quantity-input.quantity button {
  border: 1px solid;
  border-radius: 10px 0 0 10px !important;
  border-right: 0;
}

quantity-input.quantity input,
quantity-input .quantity-number {
  border: 1px solid;
  border-radius: 0;
  border-right: none;
  border-left: none;
}

quantity-input .quantity-number {
  color: currentColor;
  padding: 0 1rem;
}

quantity-input.quantity button:last-child {
  border-radius: 0px 10px 10px 0px !important;
  border: 1px solid;
  border-left: 0;
}

.product__accordion.accordion {
  margin: 5px 0px !important;
}

.product__accordion .accordion__title {
  font-weight: bold;
  font-size: 1em;
}

.product__accordion.accordion.quick-add-hidden {
  border: 0;
}

.product__accordion.accordion.quick-add-hidden details[open] {
  background: transparent;
  box-shadow: none;
  border: 0;
}

.product__accordion.accordion.quick-add-hidden details summary {
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  padding: 1rem 0;
}

/* product page banner */

.price__regular span.price-item.price-item--regular {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0em;
}

.product__description p span {
  color: #757575;

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: 0em;
}

.rtl h2.image-with-text__heading.h1,
.ltr-main h2.image-with-text__heading.h1 {
  color: #000;
  text-align: center;

  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
  /* 140% */
  letter-spacing: -2.8px;
  text-transform: uppercase;
}

.rtl .image-with-text__text.rte.body p,
.ltr-main .image-with-text__text.rte.body p,
.rte-without-important.body p {
  /*color: #757575;*/

  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4em;
  /* 155.556% */
  letter-spacing: 0em;
}

.rtl .image-with-text__content {
  padding: 0 0px 0 50px !important;
}
@media screen and (min-width: 768px) {
  .rtl .image-with-text__grid--reverse .image-with-text__content {
    padding: 0 50px 0 0px !important;
  }
}
.ltr-main .image-with-text__grid .image-with-text__content {
  padding: 0 0px 0 50px;
}
.ltr-main .image-with-text__grid--reverse .image-with-text__content {
  padding: 0 50px 0 0px;
}

h2.title,
.title {
  font-weight: 700 !important;
  /* letter-spacing: -2.8px !important; */
  letter-spacing: 0px !important;
}

.collapsible-content__header h2 {
  /* color: #383838; */

  /* font-size: 40px; */
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
  letter-spacing: -1.68px;
}

.isolate .rich-text__text.rte p {
  color: #757575;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
  /* 180% */
  letter-spacing: 0em;
}

.main-conacts
  .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding
  h2 {
  color: #383838;

  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.68px;
}

.list-image {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.multicolumn-text p {
  text-align: center;
  word-wrap: break-word;
}

.multicolumn-card__info h3 {
  color: #383838;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
}

.content-and-results__image {
  max-width: 400px;
}

.results__row {
  padding: 30px 0;
  border: 0 !important;
}

.results__rows-container {
  border: 0 !important;
}

/* .product__info-wrapper.grid__item.banner-product {
    padding: 0 50px !important;
} */

.rte p,
.product__info-container p.product__text,
.product__description p span,
.emoji-list {
  /* font-size: 18px !important; */
  font-size: 1em !important;
  /* line-height: 28px !important; */
  font-weight: 500;
}

.rte-without-important p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.testi-main .rte p {
  /* font-size: 1.1428571429em !important; */
}

.button[aria-disabled="true"] {
  opacity: 1;
}

span.rating {
  color: rgb(var(--color-base-accent-3));
}

label.quantity__label.form__label {
  color: rgb(var(--color-base-accent-3));
}

.button {
  background-color: rgb(var(--color-base-accent-3));
  color: rgb(var(--color-base-solid-button-labels));
}

.button[class*="color-"] {
  background-color: rgb(var(--color-background));

  /* color: rgb(var(--color-foreground)) ; */
}

/* .button[class*="color-"]::after {
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--buttons-border-width)
      rgba(var(--color-background), var(--alpha-button-background));
} */

/* .button:not([disabled]):hover:after,
.customer button:hover:after,
.shopify-challenge__button:hover:after,
.shopify-payment-button__button--unbranded:hover:after {
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(241, 237, 254, calc(1 - 1)),
    0 0 0 calc(var(--buttons-border-width) + 1px)
      rgba(var(--color-base-accent-3), var(--alpha-button-background)) !important;
} */

/* .button[class*="color-"]:not([disabled]):hover:after,
.customer button[class*="color-"]:hover:after,
.shopify-challenge__button[class*="color-"]:hover:after,
.shopify-payment-button__button--unbranded[class*="color-"]:hover:after {
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(241, 237, 254, calc(1 - 1)),
    0 0 0 calc(var(--buttons-border-width) + 1px)
      rgba(var(--color-background), var(--alpha-button-background)) !important;
} */

/* button:after,
.button:after {
    box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset)) rgba(241, 237, 254, calc(1 - 1.0)), 0 0 0 var(--buttons-border-width) rgba(var(--color-base-accent-3), var(--alpha-button-background));
} */

.footer-contact-icon svg path {
  fill: rgb(var(--color-base-accent-3)) !important;
}

.header__heading-link .h2 {
  color: rgba(var(--color-base-text), 0.9);
  font-size: calc(var(--font-heading-size) - 13.6px);
}

.header__menu-item {
  color: rgba(var(--color-navigation-links), 0.9);
}

.header__menu-item:hover,
.header__active-menu-item {
  color: rgba(var(--color-navigation-links)) !important;
  text-underline-offset: 0.3rem;
}

.header__menu-item:hover {
  text-decoration: underline !important;
}

.footer-contact-icon {
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
  gap: 7px;
}

.image-with-text__content .image-with-text__text:nth-child(2) {
  /* margin-top: 0 !important; */
}

.accordion details {
  transition: 0.4s;
  height: 80px;
  overflow: hidden;
}

.accordion details[open] {
  /* height: 233px; */
  /* min-height: min-content; */
  /* max-height: 233px; */
}

/* .banner-main .product--right .product__info-wrapper.grid__item {
    padding-left: 0px !important;
}

.banner-main .product--left .product__info-wrapper.grid__item {
    padding-right: 0px !important;
} */

@media screen and (max-width: 1440px) {
  .rte p,
  .product__info-container p.product__text,
  .product__description p span,
  .emoji-list {
    /* font-size: calc( 1.1428571429em + 2px) !important;
        line-height: 2em !important;
        font-weight: 500 !important; */
  }

  .testi-main .rte p {
    font-size: 1em !important;
  }

  .about-mains,
  .main-contatcs {
    padding: 50px 3%;
  }

  .page-width {
    max-width: 1170px !important;
  }

  h2.product__title.banner-title.h1 {
    font-size: 50px;
    line-height: 56px;
  }

  p.product__text {
    font-size: 14px;
    line-height: 24px;
  }

  .about-main h2.image-with-text__heading.h1 {
    /* font-size: 35px; */
  }

  .image-with-text__text.rte.body p {
    font-size: 14px !important;
    line-height: 1.7142857143em;
  }

  h2.image-with-text__heading.h1,
  .newsletter.center h2.h1 {
    font-size: 35px !important;
    line-height: 40px !important;
  }

  /*  html,
    body {
        width: 100%;
    } */

  p.testimonial-card__author {
    font-size: 12px;
    line-height: 15px;
  }

  .testimonial-card .multicolumn-card__info .rte p {
    font-size: 1em;
    line-height: 1.2857142857em;
  }

  .partner-main {
    padding: 100px 3%;
  }
}

@media screen and (max-width: 1366px) {
  /* banner css */

  /*  .banner-main .product--right .product__info-wrapper.grid__item {
        padding: 0 50px 0 0 !important;
    } */

  h2.product__title.banner-title.h1 {
    line-height: 90px;
  }

  /* banner css */
  .product__title h1.h1 {
    font-size: 55px;
    line-height: 90px;
  }

  .main-conacts {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .contactus-image {
    height: max-content;
  }

  .rte p,
  .product__info-container p.product__text,
  .product__description p span,
  .emoji-list {
    font-size: 1em !important;
    line-height: 1.375em !important;
    font-weight: 500 !important;
  }
}

@media screen and (max-width: 1024px) {
  /* banner css */

  h2.product__title.banner-title.h1 {
    line-height: 70px;
    font-size: 50px;
    margin: 0;
  }

  p.product__text.subtitle {
    margin: 40px 0 0 0;
  }

  .newsletter__wrapper h2.h1 {
    font-size: 36px;
  }

  /* banner css */
  .product__description p span {
    max-width: 70%;
    width: 100%;
    display: block;
  }

  .content-container.center {
    padding: 0 0 30px 0;
  }

  .image-with-text__heading {
    font-weight: 500;
  }

  .testi-main slider-component.slider-mobile-gutter ul li {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) *);
    max-width: calc(53% - var(--grid-desktop-horizontal-spacing) * 4 / 4);
  }

  .testi-main slider-component.slider-mobile-gutter ul {
    gap: 20px !important;
    justify-content: center;
  }

  .isolate h2.rich-text__heading.rte.h1 {
    font-size: 38px;
    line-height: 78px;
  }

  .main-conacts {
    padding: 30px 5%;
  }

  .main-conacts
    .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding
    h2 {
    font-size: 42px;
  }

  .list-image {
    max-width: 400px;
  }

  .partner-row ul li {
    flex-basis: 23%;
  }
}

@media screen and (max-width: 989px) {
  table.comparison-table tr th {
    font-size: calc(1.8rem * 0.85);
    padding: 0.5rem 0rem;
  }
  table.comparison-table tr th:nth-child(1) {
    /* 1st column HEADING CELL of comparison table width on mobile: */
    width: 46%;
  }

  table.comparison-table tr th:nth-child(2) {
    /* 2nd column HEADING CELL of comparison table width on mobile: */
    width: 27%;
    word-wrap: break-word;
    /* font-size: 0.9em; */
  }
  table.comparison-table tr th:nth-child(3) {
    /* 3rd column HEADING CELL of comparison table width on mobile: */
    width: 27%;
    /* font-size: 0.9em; */
  }

  .image-with-text__content {
    padding: 0px 40px 0px 60px !important;
  }

  .image-with-text__text:nth-child(2) {
    margin-top: 0;
  }

  .point-main .image-with-text__text P:before {
    top: 41%;
    width: 15px;
    height: 15px;
    left: -30px;
  }

  h2.product__title.banner-title:not(.homepage-product-banner-title) {
    font-size: 50px !important;
  }

  /*  .banner-main .product--right .product__info-wrapper.grid__item {
        padding: 0 20px 0 0 !important;
    } */

  .banner-main .product__info-wrapper.grid__item p.product__text {
    width: 100%;
    max-width: 100%;
  }

  .footer-contact-item p.footer-contact-description {
    font-size: 14px;
  }

  ul.list.list-social.list-unstyled {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  /*     .page-width {
        max-width: calc(500px) !important;
    } */
  .banner-main .featured-product {
    flex-direction: column-reverse;
  }

  .banner-main .product__info-wrapper.grid__item {
    width: 100%;
    /* padding: 40px 0 0 0 !IMPORTANT; */
  }

  .title:not(.homepage-product-banner-title) {
    /* font-size: 30px !important; */
  }

  .banner-main .grid__item.product__media-wrapper.small-hide {
    width: 100%;
    max-width: 500px;
  }

  media-gallery {
    flex-direction: column;
  }

  h2.product__title.banner-title.h1 {
    font-size: 40px;
  }

  p.product__text.subtitle {
    margin: 0;
  }


  .content-and-comparison-table .comparison-table-container {
    width: 78%;
  }

  p.product__text {
    margin: 11px auto;
  }

  .product-form__buttons {
    max-width: 100%;
    width: 100%;
  }

  .product-form__buttons {
    max-width: max-content;
  }

  /* lsi block */

  .point-main .image-with-text__grid {
    flex-direction: column !important;
  }
  /* .point-main .image-with-text__grid--reverse {
    flex-direction: column-reverse;
  } */

  .point-main .image-with-text__grid .image-with-text__media-item {
    width: 100%;
    max-width: 500px;
  }

  .point-main .image-with-text__grid .image-with-text__text-item.grid__item {
    width: 100%;
  }

  .point-main
    .image-with-text__grid
    .image-with-text__text-item.grid__item
    .image-with-text__content {
    padding: 40px 0 0 80px !important;
  }

  .product__title h1.h1 {
    font-size: 45px;
    line-height: 54px;
  }

  .price__regular span.price-item.price-item--regular {
    font-size: 30px;
  }

  .product__description p span {
    font-size: 14px;
    max-width: 100%;
    line-height: 18px;
  }

  .product {
    flex-direction: column-reverse;
  }

  .product .grid__item.product__media-wrapper.small-hide {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .product .product__info-wrapper.grid__item.product__column-sticky {
    width: 100%;
    padding: 10px 0 0 0 !important;
  }

  .testi-main h2.title.h1 {
    font-size: 35px !important;
  }

  .testi-main
    .title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
    justify-content: center !important;
  }

  .product-form__buttons.product-form__buttons--uppercase {
    padding: 0 !important;
    max-width: 90%;
  }

  .rtl .image-with-text__grid,
  .ltr-main .image-with-text__grid {
    flex-direction: column !important;
  }
  
  .rtl .image-with-text__grid.image-with-text__grid--reverse,
  .ltr-main .image-with-text__grid.image-with-text__grid--reverse {
    flex-direction: column-reverse !important;
  }

  .rtl .image-with-text__grid .image-with-text__media-item,
  .ltr-main .image-with-text__grid .image-with-text__media-item {
    max-width: 500px;
    width: 100%;
  }

  .rtl .image-with-text__text-item.grid__item,
  .ltr-main .image-with-text__text-item.grid__item {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .rtl .image-with-text__text-item.grid__item h2.image-with-text__heading.h1,
  .ltr-main
    .image-with-text__text-item.grid__item
    h2.image-with-text__heading.h1 {
    margin: 0 auto;
  }

  .rtl .image-with-text__text-item.grid__item .image-with-text__text.rte.body p,
  .ltr-main
    .image-with-text__text-item.grid__item
    .image-with-text__text.rte.body:not(.without-point)
    p {
    max-width: 500px;
  }

  .rtl .image-with-text__text-item.grid__item .image-with-text__text.rte.body,
  .image-with-text__text-item.grid__item .image-with-text__text.rte.body {
    margin: 0 auto;
  }

  .rtl .image-with-text,
  .ltr-main .image-with-text {
    /* padding: 40px 3%; */
  }

  .newsletter.center {
    max-width: 700px;
  }

  .collapsible-content .collapsible-content__grid {
    gap: 20px;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }

  .collapsible-content
    .collapsible-content__grid
    .grid__item.collapsible-content__grid-item {
    width: 100%;
  }

  .collapsible-content .collapsible-content__grid .grid__item {
    width: 100%;
  }

  .main-conacts {
    padding: 50px 5%;
  }

  .main-conacts
    .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding
    h2 {
    font-size: 35px;
  }

  .main-conacts
    .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding {
    padding: 0;
  }

  .content-and-comparison-table .content-container.center h2.title.h1 {
    font-size: 30px;
  }

  .list-image {
    max-width: 400px;
  }

  .image-with-text__media-item {
    max-width: 500px !important;
    margin: 0 auto;
  }

  .image-block {
    max-width: 500px;
    margin: 0 auto;
  }

  .product-form__buttons {
    width: 50%;
    max-width: 50%;
  }

  .banner-main .featured-product button {
    max-width: 100%;
    height: 1px;
  }

  .image-with-text__heading {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }

  p.product__text {
    max-width: 100%;
  }

  .banner-main variant-radios {
    margin: 30px 0 0 0 !important;
  }

  .image-with-text__text.rte.body:not(.without-point) {
    /* max-width: 500px; */
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .content-blocks h2 {
    font-size: 30px !important;
    line-height: 31px;
  }

  .content-blocks {
    max-width: 500px;
  }

  .product-form__buttons {
    max-width: 100%;
    width: 100%;
  }

  .product__column-sticky {
    position: unset !important;
  }

  .product slider-component.slider-mobile-gutter {
    width: 100%;
    max-width: 100%;
    /* flex-basis: 100%; */
  }

  media-gallery {
    gap: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  media-gallery {
    width: 100%;
  }

  .grid--1-col .grid__item {
    max-width: 100%;
    width: 100% !important;
  }

  .product {
    flex-direction: column;
  }
}

@media screen and (max-width: 749px) {
  .header__heading-link .h2 {
    font-size: calc(var(--font-heading-mob-size) - 13.6px);
  }

  /* banner css */
  .banner-main .featured-product {
    flex-direction: column;
  }

  p.product__text {
    margin: 20px auto 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 20px;
  }

  h2.title,
  .title {
    letter-spacing: 0px !important;
  }

  variant-radios {
    width: 100% !important;
    max-width: 100%;
  }

  /* banner css */

  /* about css */

  .about-main h2.image-with-text__heading.h1 {
    margin: 0 0 15px 0;
  }

  .about-main .image-with-text__content.image-with-text__content--desktop-left {
    padding: 0 !important;
  }

  .image-with-text__text.rte.body {
    margin: 0px 0 0 0;
  }

  /* about css */

  /* block main */

  .point-main .image-with-text__grid {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .point-main .image-with-text__grid--reverse {
    flex-direction: column-reverse !important;
  }

  .about-main .image-with-text__grid .image-with-text__media-item {
    max-width: 600px;
    border-radius: 0px !important;
  }

  .about-main .image-with-text__grid {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .point-main .image-with-text__grid .image-with-text__media-item {
    width: 100%;
    max-width: 500px;
  }

  .point-main .image-with-text__grid .image-with-text__text-item.grid__item {
    width: 100%;
  }

  .point-main
    .image-with-text__grid
    .image-with-text__text-item.grid__item
    .image-with-text__content {
    padding: 40px 0 0 38px !important;
  }

  .point-main
    .image-with-text__grid
    .image-with-text__text-item.grid__item
    .image-with-text__text
    p {
    text-align: start;
    /* margin: 0 0 30px 0; */
  }

  .point-main .image-with-text__text P:before {
    width: 15px;
    height: 15px;
    left: -28px;
  }

  .newsletter__wrapper h2.h1 {
    font-size: 35px;
    line-height: 39px;
  }

  .product {
    flex-direction: column;
  }

  .testi-main slider-component.slider-mobile-gutter ul {
    gap: 10px !important;
    justify-content: space-around;
  }

  .testi-main slider-component.slider-mobile-gutter ul li {
    max-width: 100% !important;
  }

  .collapsible-content__header h2 {
    font-size: 30px !important;
  }

  .newsletter.center {
    padding: 40px 5%;
  }

  .rtl .image-with-text__text-item.grid__item h2.image-with-text__heading.h1,
  .ltr-main
    .image-with-text__text-item.grid__item
    h2.image-with-text__heading.h1 {
    font-size: 30px;
  }

  .rtl .image-with-text__text-item.grid__item .image-with-text__text.rte.body p,
  .ltr-main
    .image-with-text__text-item.grid__item
    .image-with-text__text.rte.body
    p {
    font-size: 14px;
    line-height: 20px;
  }

  .rtl .image-with-text,
  .ltr-main .image-with-text {
    /* padding: 30px 5% 0px 5%; */
  }

  .rtl .image-with-text__text-item.grid__item,
  .ltr-main .image-with-text__text-item.grid__item {
    padding: 0px 0px 40px 0px;
  }

  .testi-main
    .page-width.section-template--15593995796578__testimonials_kLmmEp-padding.isolate {
    padding: 0 5%;
  }

  .page-width {
    /* padding: 0 5%; */
  }

  details summary h3.accordion__title.h4 {
    font-size: 16px;
  }

  .accordion__content p {
    font-size: 14px;
    line-height: 22px;
  }

  .testi-main h2.title.h1 {
    font-size: 25px !important;
  }

  .newsletter__wrapper h2.h1 {
    margin: 0 auto;
  }

  .content-blocks h2 {
    max-width: 100%;
    width: 100%;
    text-align: start;
  }

  product-form.product-form
    form#product-form-template--15593995796578__main
    .product-form__buttons.product-form__buttons--uppercase {
    flex-direction: column;
  }

  product-form.product-form
    form#product-form-template--15593995796578__main
    .product-form__buttons.product-form__buttons--uppercase
    button,
  product-form.product-form
    form#product-form-template--15593995796578__main
    .product-form__buttons.product-form__buttons--uppercase
    input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  product-form.product-form
    form#product-form-template--15593995796578__main
    .product-form__buttons.product-form__buttons--uppercase
    .shopify-payment-button {
    width: 100%;
  }

  .isolate h2.rich-text__heading.rte.h1 {
    line-height: 40px;
    font-size: 30px;
  }

  .main-conacts {
    flex-direction: column;
  }

  .main-conacts
    .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding
    h2 {
    font-size: 30px;
    text-align: center;
  }

  .main-conacts
    .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding {
    padding: 0;
    width: 100%;
  }

  .contact__button button.button.button--full-width {
    margin: 0 auto;
  }

  .contactus-image {
    width: 100%;
  }

  .content-and-comparison-table .content-container.center h2.title.h1 {
    font-size: 30px;
    margin: 0 auto;
    text-align: center;
  }

  .list-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .content-and-comparison-table .content-container.center {
    width: 100%;
  }

  .content-and-comparison-table .comparison-table-container {
    width: 100%;
  }

  .title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin
    h2.title.h1 {
    font-size: 35px;
  }

  h2.title.h1 {
    font-size: 35px;
  }

  .multicolumn-text p {
    /*    font-size: 16px;
        line-height: 30px;
        max-width: 90%;
        margin: 0 auto; */
  }

  .partner-row ul li {
    flex-basis: 95%;
  }

  .main-key-heading h2.h1 {
    font-size: 35px !important;
  }

  .main-row ul li p {
    width: 90%;
  }

  .image-with-text__text.rte.body p {
    line-height: 20px;
  }

  h2.image-with-text__heading.h1,
  .newsletter.center h2.h1 {
    font-size: 28px !important;
    line-height: 36px !important;
    margin: 0 0 10px 0 !important;
  }

  section#shopify-section-template--15593995567202__newsletter_VFPABL
    .newsletter__subheading.rte
    P {
    font-size: 14px;
  }

  h2.product__title.banner-title.h1 {
    font-size: 30px;
    line-height: 50px;
  }

  .product-form__buttons {
    width: 100%;
    max-width: 100%;
  }

  .product__info-wrapper.grid__item {
    padding: 0 0px 0 0 !important;
  }

  .product-form__buttons.product-form__buttons--uppercase {
    padding: 0 !important;
    max-width: 100%;
  }

  .product-form__input.product-form__quantity {
    display: flex;
    align-items: flex-start;
  }

  .product__title h1.h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .center-image {
    flex-basis: 100%;
  }

  .partner-main {
    padding: 30px 5%;
  }

  .main-row .text-col {
    flex-basis: 100%;
  }

  .product-form__input.product-form__quantity {
    flex-direction: column;
  }

  .title:not(.homepage-product-banner-title) {
    /* font-size: 29px !important; */
  }

  .about-mains,
  .main-contatcs,
  .track-order-main {
    padding: 50px 5%;
  }

  /* .main-product-banner {
        padding: 20px 5%;
    } */

  .banner-main .page-width {
    padding: 20px;
  }

  media-gallery ul li {
    margin: 0 !important;
  }

  .main-products.color-accent-2 section {
    padding: 5%;
  }

  .main-conacts .contact.page-width {
    width: 100%;
    padding: 0;
  }
  /*
    .rich-main {
        padding: 5%;
    }

    .rich-main p {
        font-size: 14px !important;
        line-height: 19px !important;
    }

        
    .rich-main .rich-text {
        padding: 30px 0% !important;
    }
*/

  ul.list.list-social.list-unstyled {
    display: none;
  }

  .rtl .image-with-text,
  .ltr-main .image-with-text {
    /* padding: 7% 5% !important; */
  }

  .rtl .image-with-text__text-item.grid__item,
  .ltr-main .image-with-text__text-item.grid__item {
    padding: 0;
  }

  .section-template--23548198584665__ltr_iXr34c-padding
    > .image-with-text__grid {
    padding: 0;
  }

  .main-conacts .contact.page-width h2 {
    font-size: 24px !important;
  }
}

.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading-family) !important;
}

p,
body,
span {
  font-family: var(--font-body-family);
}

@media (min-width: 760px) {
  .product__accordion .accordion__title {
    font-size: 1em;
  }

  .product__accordion .accordion__content.rte {
    font-size: 1.142em !important;
  }
}

@media (max-width: 750px) {
  .image-with-text__media-item {
    border-radius: 0px !important;
  }
}

.product-page-price .price--on-sale span.price__compare-price {
  display: flex;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-block .product-card-wrapper .card__heading {
  min-height: 40px;
}
@import url("https:////fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

.main-product-banner {
    width: 100%;
    margin: 0 auto;
}

.banner-main button span:after {
    position: absolute !important;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 18px;
    text-transform: capitalize;
    top: 17px;
}


.main-product-banner section {
    border-radius: 20px;
    max-width: 1310px;
    margin: 0 auto;
}

.list-social__link {
    color: rgb(var(--color-background)) !important;
}

.content-blocks {
    display: flex;
    flex-direction: column;

    .testimonial-card .multicolumn-card__info align-items: flex-start
;
    justify-content: center;
    padding: 0 50px;
    width: 50%;
}

.content-blocks h2 {
    font-weight: 400 !important;
    font-family: Harmonia Sans;
    color: #7ea68c;
    margin: 20px 0;
    text-align: start;
}

.newsletter__subheading.rte {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px 0 20px 0;
}

.newsletter__subheading.rte p {
    text-align: start;
    margin: 0 0 20px 0;
}

.newsletter-form__field-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100% !important;
}

form#contact_form {
    width: 100%;
    max-width: 100% !important;
}

.newsletter__subheading.rte ~ div {
    width: 100%;
    max-width: 100%;
}

.main-conacts .contact.page-width {
    width: 60%;
    max-width: 100%;
    padding: 0 30px 0 0;
}

.newsletter-form__field-wrapper button#Subscribe {
    padding: 0px 0px;
    margin: 0 0px 0 10px;
    height: 58px;
}

input#NewsletterForm--template--15593995567202__newsletter_VFPABL {
    height: 58px;
}

variant-radios label {
    background: unset !important;
    color: #000 !important;
    /* border: 0 !important; */
}

variant-radios input {
    position: relative !important;
    clip: unset !important;
    width: 20px !important;
    height: 20px !important;
    appearance: none;
    opacity: 1 !important;
    overflow: unset !important;
}

variant-radios input:before {
    content: "";
    position: absolute;
    background: #fff0 !important;
    top: 30%;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 1;
    border-radius: 10px;
    border: 1px solid;
}

variant-radios input:after {
    content: "";
    position: absolute;
    background: rgb(var(--color-foreground));
    top: 9px;
    width: 70%;
    height: 70%;
    z-index: 99;
    opacity: 0;
    border-radius: 10px;
    right: 3px;
}

variant-radios input:checked:after {
    opacity: 1;
}

button#ProductSubmitButton-template--15593995567202__featured_product_NKHGXF {
    background: #7ea68c;
    border: 0;
    max-width: max-content;
    border-radius: 0;
}

button#ProductSubmitButton-template--15593995567202__featured_product_NKHGXF:before {
    border: 0;
    box-shadow: none;
}

button#ProductSubmitButton-template--15593995567202__featured_product_NKHGXF::after {
    border: none;
    box-shadow: none;
}

a.link.product__view-details.animate-arrow {
    display: none;
}

section#shopify-section-template--15593995567202__featured_product_NKHGXF .featured-product.product.product--small.grid.grid--1-col.gradient.color-background-2.product--right.isolate.grid--2-col-tablet {
    display: flex;
    justify-items: start;
    align-items: center;
    justify-content: flex-start;
}

.image-with-text__text.rte.body ul li {
    list-style: disc;
}

#shopify-section-template--15593995567202__featured_product_NKHGXF p.product__text {
    color: #7ea68c;
}

#shopify-section-template--15593995567202__featured_product_NKHGXF p.product__text:nth-child(3) {
    margin: 0 0px 70px 0;
}

variant-radios#variant-radios-template--15593995567202__featured_product_NKHGXF legend.form__label {
    color: #757575;
}

variant-radios label {
    padding: 0 15px !important;
}

div#shopify-section-template--15593995567202__image_with_text_4Rz3eE p {
    line-height: 25px;
}

div#ImageWithText--template--15593995567202__image_with_text_8UMQMP ul li {
    list-style: none;
    margin: 40px 0;
    position: relative;
}

div#ImageWithText--template--15593995567202__image_with_text_8UMQMP ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #7ea68c;
    position: absolute;
    left: -35px;
    top: 45px;
    border-radius: 60px;
}

div#ImageWithText--template--15593995567202__image_with_text_Nxt8jY {
    padding: 0 80px 0 0px;
}

div#ImageWithText--template--15593995567202__image_with_text_Nxt8jY h2.image-with-text__heading.h1 {
    color: #7ea68c;
    font-weight: 400;
}

div#ImageWithText--template--15593995567202__image_with_text_Nxt8jY p {
    line-height: 22px;
}

/* a.button.button--primary::after {
  border: 0;
  box-shadow: none;
} */

a.button.button--primary {
    border-radius: 0px;
}

section#shopify-section-template--15593995567202__newsletter_VFPABL .newsletter__subheading.rte P {
    color: #757575;
}

input#NewsletterForm--template--15593995567202__newsletter_VFPABL {
    border: 1px solid #e2e2e2;
}

form#contact_form .field:before,
form#contact_form .field:after {
    border: 0;
    box-shadow: none;
}

.newsletter-form__field-wrapper:not(.section-newsletter-field-wrapper) .field label.field__label {
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: max-content;
    display: none;
}


product-form.product-form form .product-form__buttons.product-form__buttons--uppercase {
    gap: 10px;
    padding: 0 30px 0 0px;
}

span.price-item.price-item--regular {
    color: rgb(var(--color-foreground));
}

#Quantity-Form-template--15593995796578__main quantity-input.quantity {
    width: 60%;
    background: #e4f1e8;
    border-radius: 0px !important;
}

#Quantity-Form-template--15593995796578__main quantity-input.quantity button {
    border-radius: 0px !important;
    border: 1px solid #d9d9d9;
}

#Quantity-Form-template--15593995796578__main quantity-input.quantity:before,
#Quantity-Form-template--15593995796578__main quantity-input.quantity:after {
    border: 0;
    box-shadow: none;
}

#Quantity-Form-template--15593995796578__main quantity-input.quantity input {
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

product-form.product-form form#product-form-template--15593995796578__main .product-form__buttons.product-form__buttons--uppercase {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

product-form.product-form form#product-form-template--15593995796578__main .product-form__buttons.product-form__buttons--uppercase button#ProductSubmitButton-template--15593995796578__main {
    width: 50%;
    color: #fff;
    font-weight: 500;
    height: 60px;
}

product-form.product-form form#product-form-template--15593995796578__main .product-form__buttons.product-form__buttons--uppercase .shopify-payment-button {
    width: 50%;
}

button.shopify-payment-button__button {
  height: 60px;
  padding: 0 !important;
  font-weight: var(--font-button-weight);

    background-color: rgba(var(--color-button), var(--alpha-button-background));
}

div#ImageWithText--template--15593995796578__image_with_text_4DaPCb {
    padding: 0 20px;
}

div#shopify-section-template--15593995796578__image_with_text_ceCk8f div#ImageWithText--template--15593995796578__image_with_text_ceCk8f {
    padding: 0 80px 0 0;
}

div#shopify-section-template--15593995796578__image_with_text_ceCk8f .color-accent-2 h2.image-with-text__heading.h1 {
    color: #000;
}

div#shopify-section-template--15593995796578__image_with_text_ceCk8f .color-accent-2 .image-with-text__text.rte.body p {
    line-height: 24px;
    color: #757575;
}

div#ImageWithText--template--15593995796578__image_with_text_reTq6M {
    padding: 0 30px;
}

.newsletter__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.image-block {
    width: 50%;
}

.image-block img {
    width: 100%;
}

.newsletter-form__field-wrapper input {
    width: 100%;
    border-radius: 0;
    height: 53px;
    outline: none;
    flex-grow: 1;
    border-radius: 12px;
    height: 55px;
    padding: 20px;
    background: transparent;
    border: 2px solid rgb(var(--color-base-accent-3));
}

.newsletter-form__field-wrapper .field:before,
.newsletter-form__field-wrapper .field:after {
    display: none;
}

.newsletter-form__field-wrapper input::placeholder {
    text-align: left;
}

.color-accent-1,
.color-accent-2 {
    --color-foreground: var(--color-base-accent-3);
}

.newsletter.center {
    max-width: 1366px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 0 100px 0;
}

.newsletter__wrapper {
    padding: 0 !important;
}

.testimonial-card__author-container {
    justify-content: start;
}

.testimonial-card .multicolumn-card__info {
    border-radius: 20px;
}

section#shopify-section-template--15593995796578__testimonials_kLmmEp ul {
    gap: 2%;
}

.testimonial-card .multicolumn-card__info {
    border-radius: 20px;
    padding: 0px 0px 10px 0px !important;
}

.testimonial-card .multicolumn-card__info .testimonial-card__author-container {
    justify-content: start;
    border-color: #fff;
    padding: 10px 10px 2px;
}

.testimonial-card .multicolumn-card__info .rte {
    padding: 20px;
}

p.testimonial-card__stars {
    /* position: absolute;
    right: 12px; */
}

.av-div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.av-div ~ p {
    width: 50%;
}

.testimonial-card__quotes.testimonial-card__quotes--image-blank {
    width: 80%;
    height: 141px;
    background: unset;
    justify-content: end;
    position: unset;
    margin: -20px 0 -100px 50px !important;
}

.testimonial-card .multicolumn-card__info .rte p {
    line-height: 26px;
    z-index: 2;
    position: relative;
}

.testimonial-card__quotes.testimonial-card__quotes--image-blank img {
    opacity: 0.4;
}

.main-conacts {
    display: flex;
    max-width: var(--page-width);
    margin: 0 auto;
    border-radius: 30px;
    align-items: center;
}

.about-mains {
    padding: 100px 3%;
}

.main-contatcs {
    padding: 100px 3%;
}

.main-conacts .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding {
    width: 60%;
    max-width: 100%;
}

.main-conacts h2 {
    text-align: left;
}

.contact__button {
    justify-content: start !IMPORTANT;
}

.contactus-image {
    width: 40%;
    display: flex;
    align-items: flex-end;
}

.contactus-image img {
    width: 100%;
}

div#shopify-section-template--15593995796578__image_with_text_reTq6M div#ImageWithText--template--15593995796578__image_with_text_reTq6M {
    padding: 0 0 0 40px !important;
}

.main-conacts .contact.page-width.page-width--narrow.section-template--15593995632738__form-padding h2 {
    text-align: start;
}


.contact__button button {
    /* background: rgb(var(--color-button-text)); */
    /* color: rgba(var(--color-button), var(--alpha-button-background)); */
}

div#shopify-section-template--15593995567202__image_with_text_8UMQMP div#ImageWithText--template--15593995567202__image_with_text_8UMQMP {
    padding: 0 0px 0 60px !important;
}

div#ImageWithText--template--15593995796578__image_with_text_4DaPCb {
    padding: 0 0 0 40px !important;
}

header {
    /*display: flex !important;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
}

h2.collapsible-content__heading.h1 {
    /* color: #000; */
}

h3.accordion__title.h4 {
    /* color: #000; */
}

.accordion__content p {
    /* color: #000; */
}

.banner-main .featured-product {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-key-heading {
    width: 100%;
}

.main-row .text-col ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-key-heading h2 {
    text-align: center;
}

.main-row {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 50px 0;
    gap: 50px;
}

.main-row .text-col {
    width: 30%;
}

.center-image {
    width: 40%;
}

.center-image img {
    width: 100%;
}

.main-row .text-col ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    border-radius: 15px;
}

.main-row .text-col ul li .list-image {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-row .text-col ul li .list-image img {
    width: 100%;
}

.about-main .image-with-text__content.image-with-text__content--desktop-left {
    padding: 23px 4% !important;
}

.about-main .image-with-text__grid {
    gap: 1rem;
}

.about-main .image-with-text__text-item .image-with-text__content {
    border-radius: 10px;
}


.count-area {
    background: #f2f8f4;
    padding: 60px 3%;
}

.count-area ul#counter {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.count-area ul#counter li {
    flex-basis: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cont-row {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.count-area ul#counter li span {
    font-size: 3.5rem;
    color: #7ea68c;
}

.count-area ul#counter li h4 {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.testi-main .testimonial-card__author-container {
    /* justify-content: left !important; */
}

.testi-main .title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
    justify-content: flex-start !important;
}

.ltr-main .image-with-text__grid {
    flex-direction: row;
}

.ltr-main .image-with-text__grid--reverse {
    flex-direction: row-reverse;
}

.text-col.point-text {
    width: 50%;
}

.center-image.point-image {
    width: 50%;
}

.partner-row {
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    margin: 0 auto;
}

.partner-row ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0 20px;
    gap: 15px;
}

.partner-row ul li {
    flex-basis: 24%;
}

.partner-row ul li img {
    width: 100%;
}


.list-image {
    width: 100%;
}

.list-image img {
    width: 100%;
}

/* .about-main .image-with-text__media-item.image-with-text__media-item--medium.image-with-text__media-item--top.grid__item {
    border: 2px solid #7ea68c;
    border-radius: 10px;
    overflow: hidden;
} */

/* img {
    border-radius: 10px;
} */

h2.product__title.h1 {
    font-weight: 700;
}

p.product__text.subtitle {
    font-weight: 600;
}

p.product__text {
    font-weight: 400;
}

h2.image-with-text__heading.h1 {
    text-transform: uppercase;
}


.newsletter.center h2.h1 {
    font-weight: 500 !important;
}

li.list-social__item {
    background: rgb(var(--color-base-accent-3));
    border-radius: 50px;
    margin: 3px 3px;
}


details summary h3.accordion__title.h4 {
    font-size: 1.2857142857em !important;
}

.collapsible-content details {
    padding: 0px 17px;
}


.collapsible-content__wrapper summary:hover {
    background: transparent;
}

.accordion {
    margin: 10px 0;
}

.accordion summary:hover {
    background: transparent !important;
}

.accordion {
    margin: 10px 0 !important;
}

details svg {
    display: none;
}

details[open] summary h3:after {
    content: "-";
}

details summary h3:after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 30px;
    font-size: 29px;
    color: rgb(var(--color-base-text));
    font-weight: 400;
    line-height: 0;
}

p.product__text.subtitle {
    margin: 40px 0 0 0;
    color: #7ea68c;
}

variant-radios {
    border-bottom: 1px solid #c2ccc5;
}


.product__title h1.h1 {
    font-weight: 800;
}

p.testimonial-card__author {
    text-align: start;
    font-size: 14px;
    margin: 0 0px 0 -15px;
}

.image-with-text__media-item {
    border-radius: 20px;
    overflow: hidden;
}

.image-block {
    border: 1px solid #7ea68c;
    border-radius: 10px;
    overflow: hidden;
}


.main-key-heading h2.h1 {
    color: #7EA68C;
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    /* 100% */
    letter-spacing: -2.8px;
    text-transform: uppercase;
}


@media screen and (max-width: 768px) {
    .newsletter__wrapper {
        flex-direction: column;
    }

    .image-block {
        width: 100%;
    }

    .newsletter.center {
        padding: 30px;
    }

    .content-blocks {
        width: 100%;
        padding: 0;
    }

    .main-row {
        flex-wrap: wrap;
        gap: 0px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-main .image-with-text__grid {
        flex-wrap: wrap;
        gap: 30px;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-main .image-with-text__grid .image-with-text__media-item {
        flex-basis: 100%;
    }

    .main-row .text-col {
        flex-basis: 70%;
        order: 3;
    }

    .center-image {
        flex-basis: 50%;
        order: 1;
        margin: 0 0 20px 0;
    }

    .main-row .text-col:first-child {
        order: 2;
    }

    .main-row .text-col ul li {
        padding: 15px 10px;
        gap: 10px;
    }

    .main-row .text-col ul {
        margin: 10px;
        gap: 20px
    }

    /* .main-row .text-col ul li .list-image img {
        max-width: 30px;
    } */
}

@media screen and (max-width: 600px) {
    #shopify-section-template--15593995567202__newsletter_VFPABL .newsletter__wrapper {
        display: flex;
        flex-direction: column;
    }

    .image-block {
        width: 100%;
    }

    .content-blocks {
        width: 100%;
        padding: 0;
    }

    .image-with-text .image-with-text__content {
        padding: 20px 10px 20px !important;
    }

    details summary h3:after {
        top: 30px;
    }

    div#shopify-section-template--15593995567202__image_with_text_8UMQMP div#ImageWithText--template--15593995567202__image_with_text_8UMQMP {
        padding: 0 0px 0 30px !important;
    }

    .newsletter__wrapper {
        display: flex;
        flex-direction: column;
    }

    .newsletter.center {
        padding: 40px 20px;
    }


    .count-area ul#counter li {
        flex-basis: 47%;
    }

    .partner-row ul li {
        flex-basis: 48%;
    }
}

.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading-family) !important;
}

p,
body,
span {
    font-family: var(--font-body-family);
}

.grid-stretch {
    align-items: stretch !important;
}

.product__accordion.accordion {
    border-radius: 3px;
    overflow: hidden;
}

.product__accordion .accordion__content {
    padding-top: 1.5rem;
}

.product-subtitle-caption,
p.product__text--without-width.product-subtitle-caption {
    font-weight: bold;
    font-size: 1.1428571429em;
}

.shopify-payment-button {
    flex: 1;
}

.shopify-payment-button__button {
    max-width: 100% !important;
}

/* applying base text color to body text */
.sw-base-text-color {
    color: rgb(var(--color-base-text));
}

.featured-product .product-media-container .media > img {
    border-radius: 20px;
}


button.quantity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .main-products section media-gallery {
        width: auto;
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .main-products > section:first-child {
        padding-top: 0px !important;
    }

    .main-products section media-gallery .product__media {
        border-radius: 0px !important;
    }
}


.blog-placeholder__content {
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
}

.footer__payment img {
    max-width: 250px;
}

.section-divider__svg {
    --max-height: 150px;
    background: none;
    position: relative;
    overflow: hidden;
    transform: translateY(1px);
}

.section-divider__svg svg {
    color: rgb(var(--color-background));
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    max-height: var(--max-height);
}

.footer__newsletter .newsletter-form__field-wrapper input {
    font-family: var(--font-body-family);
}

.collection-card-wrapper .card__heading {
    font-size: 1em;
}

input {
    font-size: 1em;
}

@media (min-width: 750px) {
    .product__title h1.title {
        letter-spacing: 0px !important;
    }
}

/* @media (max-width: 750px) {
    .main-products .star-rating {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start;
    }

    .main-products .star-rating .rating {
        margin-left: 0px !important;
    }

    .main-products .star-rating .rating p {
        margin-top: 5px;
        text-wrap: auto;
    }
} */

h2.drawer__heading, cart-items h1.title {
    text-transform: lowercase;
}

h2.drawer__heading::first-letter, cart-items h1.title::first-letter {
    text-transform: capitalize;
}

.quantity.cart-quantity {
    padding: 6px;
    padding-left: 0;
}

@media screen and (max-width: 770px) {
    .mobile_center {
        text-align: center;
    }
    .mobile_align_center {
        justify-content: center;
    }
    .mobile_left {
        text-align: left;
    }
}

.collection__description p {
    word-wrap: break-word;
}

@media screen and (max-width: 750px) {
    .footer-block__brand-info .footer__list-social {
        margin-top: 20px !important
    }
}

slideshow-component .review-item .review-item__text {
    color: rgba(var(--color-base-text), 0.9)
}

.slider-button-container {
    display: flex;
}

.slider-button-container a {
  padding: 0 2rem;
}

.slider-button-container a:hover {
  font-size: 17.5px;
}

.banner__heading span strong, 
.title strong,
.vertical-ticker__item strong,
.horizontal-ticker__item strong,
.results-container .results h3 strong,
li .bullet-point-text strong,
.main-row ul li p strong,
.benefit-text-h3 strong,
.collapsible_title_span strong,
.collapsible-body-text strong,
.results__caption p strong,
.announcement-bar__message strong,
.slide_review_heading strong,
.slide_review_body strong,
.banner__text.rte.body span strong,
.multicolumn-card__info h3 strong,
.rte p strong,
.feature-icon-card__text p strong,
.feature-icons-text strong,
.reasons-to-buy__subheading p strong,
.stats-title strong,
.stats-body-text strong {
    color: var(--color-highlighted-color);
}

.button.split-slide-button {
  position: relative;
  overflow: hidden;
  transition:
  color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms ease;
}

.button.split-slide-button:hover {
  box-shadow: var(--animation-glow) !important;
}

.split-slide-button .split-slide-right {
  position: absolute;
  display: var(--animation-slide-background);
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--animation-button-hover-color);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.split-slide-button .button-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-slide-button:hover .split-slide-right {
  width: 100%;
}

.split-slide-button:hover .button-text {
  transform: scale(var(--animation-scale));
  color: #ffffff;
}

span.product-added-success {
  z-index: 1;
  font-size: 18px;
  line-height: 18px;
}

.rich-text.content-container {
  position: unset;
}

.rich-main {
  padding: 5px 0;
}

.header__icon--search:has(.icon-search):hover {
  transform: scale(1.1) rotate(-15deg);
}

.header__icon--search {
  transition: all 200ms ease;
}

.header__icon--cart:hover {
  stroke: #000000;
  animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1.5px);
  }
}

.newsletter-form__field-wrapper input {
  transition: all 0.2s ease;
  }
.newsletter-form__field-wrapper input:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

cart-remove-button .button:active {
  transform: none;
}

cart-remove-button:hover svg,
.drawer__close:hover svg {
  scale: 1.1;
}

cart-remove-button:active svg,
.drawer__close:active svg {
  scale: 0.9;
}

cart-remove-button svg,
.drawer__close svg {
  transition: scale .1s ease;
}

cart-remove-button:hover svg path,
.drawer__close:hover svg {
  fill: #ff0000 !important;
}

.animation-section {
  opacity: 0;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  will-change: opacity, transform;
}

.animation-section.main-product {
  will-change: unset;
}

.animation-section:not(:has(.fade-in-child)) {
  transform: translateY(20px);
}

.animation-section.visible {
  opacity: 1;
}

.animation-section.visible:not(:has(.fade-in-child)) {
  transform: translateY(0);
}

.animation-section .fade-in-child > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  will-change: auto;
}

.animation-section.visible .fade-in-child > * {
  opacity: 1;
  transform: translateY(0);
}

.main-product.animation-section.visible .fade-in-child > *:nth-child(1) { transition-delay: 0.1s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(2) { transition-delay: 0.2s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(3) { transition-delay: 0.3s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(4) { transition-delay: 0.4s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(5) { transition-delay: 0.5s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(6) { transition-delay: 0.6s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(7) { transition-delay: 0.7s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(8) { transition-delay: 0.8s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(9) { transition-delay: 0.9s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(10) { transition-delay: 1.0s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(11) { transition-delay: 1.1s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(12) { transition-delay: 1.2s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(13) { transition-delay: 1.3s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(14) { transition-delay: 1.4s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(15) { transition-delay: 1.5s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(16) { transition-delay: 1.6s; }

.main-product.animation-section.visible .fade-in-child > *:nth-child(1) { transition-delay: 0.05s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(2) { transition-delay: 0.1s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(3) { transition-delay: 0.15s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(4) { transition-delay: 0.2s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(5) { transition-delay: 0.25s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(6) { transition-delay: 0.3s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(7) { transition-delay: 0.35s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(8) { transition-delay: 0.4s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(9) { transition-delay: 0.45s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(10) { transition-delay: 0.5s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(11) { transition-delay: 0.55s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(12) { transition-delay: 0.6s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(13) { transition-delay: 0.65s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(14) { transition-delay: 0.7s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(15) { transition-delay: 0.75s; }
.main-product.animation-section.visible .fade-in-child > *:nth-child(16) { transition-delay: 0.8s; }

.fade-in__left_container,
.fade-in__right_container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 1;
}

.fade-in__left_container:empty,
.fade-in__right_container:empty {
  display: block
}

.fade-in__left_container {
  left: 0;
  background: linear-gradient(to left, transparent, rgb(var(--color-background)));
}

.fade-in__right_container {
  right: 0;
  background: linear-gradient(to right, transparent, rgb(var(--color-background)));
}

span strong {
  font-weight: bold;
}

.title strong {
    font-weight: 900;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.slider--tablet.grid--peek.grid--1-col-tablet-down .collection-list__item.grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing) * 1.5);
}
.customer:not(.account):not(.order) {
  margin: 0 auto;
  max-width: 33.4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .customer:not(.account):not(.order) {
    max-width: 47.8rem;
  }
}

.customer > h1,
.customer__title {
  margin-top: 0;
}

.customer form {
  margin-top: 4rem;
}

.customer button {
  margin: 4rem 0 1.5rem;
}

.customer ul {
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  padding-left: 4.4rem;
  text-align: left;
  margin-bottom: 4rem;
}

.customer ul a {
  display: inline;
}

.customer strong {
  font-weight: normal;
  color: rgb(var(--color-foreground));
}

.customer h2.form__message {
  font-size: calc(var(--font-heading-scale) * 1.8rem);
}

@media only screen and (min-width: 750px) {
  .customer h2.form__message {
    font-size: calc(var(--font-heading-scale) * 2.2rem);
  }
}

.customer .field {
  margin: 2rem 0 0 0;
}

.customer .field:first-of-type {
  margin-top: 0;
}

/* Customer Table */
.customer table {
  table-layout: auto;
  border-collapse: collapse;
  border-bottom: 0.01rem solid rgba(var(--color-foreground), 0.08);
  box-shadow: none;
  width: 100%;
  font-size: 1.6rem;
  position: relative;
}

@media screen and (min-width: 750px) {
  .customer table {
    border: none;
    box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.08);
  }
}

@media screen and (forced-colors: active) {
  .customer table {
    border-top: 0.1rem solid transparent;
    border-bottom: 0.1rem solid transparent;
  }
}

.customer tbody {
  color: rgb(var(--color-foreground));
}

.customer th,
.customer td {
  font-weight: 400;
  line-height: 1;
  border: none;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .customer td {
    padding-right: 2.2rem;
  }
}

.customer tbody td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.customer td:empty {
  display: initial;
}

.customer thead th {
  font-size: 1.2rem;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
}

.customer tbody td:first-of-type {
  padding-top: 4rem;
}

@media screen and (min-width: 750px) {
  .customer th,
  .customer td:first-of-type {
    text-align: left;
    padding-left: 0;
    padding-right: 2.2rem;
  }

  .customer thead th,
  .customer tbody td {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .customer th:first-of-type,
  .customer td:first-of-type {
    padding-left: 2.2rem;
  }

  .customer tbody td {
    vertical-align: top;
  }

  .customer tbody td:first-of-type {
    padding-top: 2.4rem;
  }
}

.customer tbody td:last-of-type {
  padding-bottom: 4rem;
}

@media screen and (min-width: 750px) {
  .customer tbody td:last-of-type {
    padding-bottom: 0;
  }
}

.customer tbody tr {
  border-top: 0.01rem solid rgba(var(--color-foreground), 0.08);
}

@media screen and (min-width: 750px) {
  .customer tbody tr:first-of-type {
    border-top: none;
  }
}

@media screen and (forced-colors: active) {
  .customer tbody tr {
    border-top: 0.1rem solid transparent;
  }
}

.customer tfoot td:first-of-type,
.customer tfoot td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.customer tfoot td:first-of-type {
  text-align: left;
}

.customer tfoot tr:first-of-type td {
  padding-top: 4rem;
}

@media screen and (min-width: 750px) {
  .customer tfoot tr:first-of-type td,
  .customer tfoot tr:first-of-type th {
    padding-top: 2.4rem;
  }
}

.customer tfoot tr:last-of-type td {
  padding-bottom: 4rem;
}

@media screen and (min-width: 750px) {
  .customer tfoot tr:last-of-type td,
  .customer tfoot tr:last-of-type th {
    padding-bottom: 2.4rem;
  }
}

/* works around colspan phantom border issues */
.customer thead::after,
.customer tfoot::before {
  content: " ";
  height: 0.1rem;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  background: rgba(var(--color-foreground), 0.08);
}

@media screen and (forced-colors: active) {
  .customer thead::after,
  .customer tfoot::before {
    background: CanvasText;
  }
}

/* mobile table overrides */
@media screen and (max-width: 749px) {
  .customer thead,
  .customer th,
  .customer tfoot td:first-of-type {
    display: none;
  }

  .customer td {
    display: flex;
    text-align: right;
  }

  .customer td::before {
    color: rgba(var(--color-foreground), 0.9);
    content: attr(data-label);
    font-size: 1.4rem;
    padding-right: 2rem;
    text-transform: uppercase;
    flex-grow: 1;
    text-align: left;
  }

  .customer td:first-of-type {
    display: flex;
    align-items: center;
  }

  .customer tr {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }
}

/* Pagination */
.customer .pagination {
  margin-top: 5rem;
  margin-bottom: 7rem;
}

@media screen and (min-width: 990px) {
  .customer .pagination {
    margin-top: 7rem;
    margin-bottom: 10rem;
  }
}

.customer .pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.customer .pagination li {
  flex: 1 1;
  max-width: 4rem;
}

.customer .pagination li:not(:last-child) {
  margin-right: 1rem;
}

.customer .pagination li :first-child {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4rem;
  width: 100%;
  padding: 0;
  text-decoration: none;
}

.customer .pagination li :first-child svg {
  height: 0.6rem;
}

.customer .pagination li:first-of-type svg {
  margin-left: -0.2rem;
  transform: rotate(90deg);
}

.customer .pagination li:last-of-type svg {
  margin-right: -0.2rem;
  transform: rotate(-90deg);
}

.customer .pagination li [aria-current]::after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.01rem;
  position: absolute;
  bottom: 0.08rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: currentColor;
}

/* Login */
.login a {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.login a[href="#recover"] {
  margin-left: 0;
  margin-right: 0;
}

.login .field + a {
  margin-top: 1rem;
}

.login p {
  margin: 1.5rem 0;
}

.login h3 {
  margin-top: 1.5rem;
  text-align: left;
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

#customer_login_guest button {
  margin-top: 0;
}

#recover,
#recover + div {
  display: none;
}

#recover:target {
  display: block;
}

#recover:target + div {
  display: block;
}

#recover:target ~ #login,
#recover:target ~ #login + div {
  display: none;
}

#recover,
#login {
  scroll-margin-top: 20rem;
}

#recover {
  margin-bottom: 0;
}

.activate button[name="decline"],
.addresses li > button,
.addresses form button[type] {
  background-color: rgba(
    var(--color-background),
    var(--alpha-button-background)
  );
  color: rgb(var(--color-link));
}

@media only screen and (min-width: 750px) {
  .activate button[name="decline"] {
    margin-top: inherit;
    margin-left: 1rem;
  }
}

/* Account/Order */
:is(.account, .order) {
  margin: 0 auto;
  max-width: var(--page-width);
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (min-width: 750px) {
  :is(.account, .order) {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media screen and (min-width: 990px) {
  :is(.account, .order) > div:nth-of-type(2) {
    display: flex;
    margin-top: 5rem;
  }
}

@media screen and (min-width: 990px) {
  :is(.account, .order) > div:nth-of-type(2) > div:first-of-type {
    flex-grow: 1;
    padding-right: 3.2rem;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .order > div:nth-of-type(2) > div:last-of-type {
    display: flex;
  }

  .order > div:nth-of-type(2) > div:last-of-type div {
    padding-right: 3.2rem;
  }
}

:is(.account, .order) p {
  margin: 0 0 2rem;
  font-size: 1.6rem;
}

:is(.account, .order) h1 {
  margin-bottom: 1rem;
}

:is(.account, .order) h2 {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  :is(.account, .order) h2 {
    margin-top: 0;
  }
}

.account h1 + a {
  display: inline-flex;
  align-items: center;
}

.account a svg {
  width: 1.5rem;
  margin-bottom: -0.03rem;
  margin-right: 1rem;
}

@media screen and (min-width: 750px) {
  .account thead th:last-child,
  .account td:last-child {
    text-align: right;
  }

  .account table td:first-of-type {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

.account table td:first-of-type a {
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-link), 0.2);
  border: 0.1rem solid transparent;
  font-size: 1.2rem;
}

.account table td:first-of-type a:hover {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-link), 0.2);
}

.order td:first-of-type {
  align-items: initial;
}

@media screen and (min-width: 750px) {
  .order thead th:nth-last-child(-n + 3),
  .order td:nth-last-child(-n + 3) {
    text-align: right;
  }
}

.order tfoot tr:last-of-type td,
.order tfoot tr:last-of-type th {
  font-size: 2.2rem;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 750px) {
  .order tfoot tr:last-of-type td,
  .order tfoot tr:last-of-type th {
    padding-bottom: 2.4rem;
  }
}

.order tfoot tr:last-of-type td:before {
  font-size: 2.2rem;
}

.order table p,
.order > div:nth-of-type(2) > div:first-of-type h2,
.order > div:nth-of-type(2) > div:last-of-type h2 + p {
  margin-bottom: 0;
}

.order > div:nth-of-type(2) > div:first-of-type h2 ~ p {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.order > div:nth-of-type(2) > div:first-of-type h2 ~ p:last-of-type {
  margin-bottom: 3rem;
}

.order .item-props {
  font-size: 1.4rem;
  margin-top: 0.05px;
  display: flex;
  flex-direction: column;
}

.order .item-props > span {
  word-break: break-all;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
}

.order .fulfillment {
  width: fit-content;
  border: 0.01rem solid rgba(var(--color-foreground), 0.2);
  padding: 1rem;
  margin-top: 1rem;
  font-size: 1.4rem;
  text-align: left;
}

.order .fulfillment a {
  margin: 0.7rem 0;
}

.order .fulfillment span {
  display: block;
}

.order tbody ul {
  list-style: none;
  font-size: 1.2rem;
  text-align: right;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .order tbody ul {
    text-align: left;
  }
}

.order table a {
  line-height: calc(1 + 0.3 / var(--font-body-scale));
}

.order tbody tr:first-of-type td:first-of-type > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (min-width: 750px) {
  .order tbody tr:first-of-type td:first-of-type > div {
    align-items: flex-start;
  }
}

.order .properties {
  font-size: 1.4rem;
  margin-top: 1rem;
}

.order .properties span {
  display: block;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
}

.order svg {
  width: 1.1rem;
  color: rgb(var(--color-base-accent-2));
  margin-right: 0.5rem;
}

.order dl {
  margin: 0;
}

.order dd {
  margin-left: 0;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
}

.order dd s {
  color: rgba(var(--color-foreground), 0.7);
}

.order .unit-price {
  font-size: 1.1rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  margin-top: 0.2rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
}

.order .regular-price {
  font-size: 1.3rem;
}

/* Addresses */
.addresses li > button {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.addresses li > button + button,
.addresses form button + button {
  margin-top: 0rem;
}

@media screen and (min-width: 750px) {
  .addresses li > button:first-of-type {
    margin-top: 3rem;
  }
}

.addresses form button:first-of-type {
  margin-right: 1rem;
}

label[for="AddressCountryNew"],
label[for="AddressProvinceNew"] {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.addresses form {
  display: flex;
  flex-flow: row wrap;
}

.addresses form > div {
  width: 100%;
  text-align: left;
}

.addresses ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

li[data-address] {
  margin-top: 5rem;
}

.addresses [aria-expanded="false"] ~ div[id] {
  display: none;
}

.addresses [aria-expanded="true"] ~ div[id] {
  display: block;
}

.addresses h2 {
  text-align: left;
}

li[data-address] > h2 {
  text-align: center;
  font-size: calc(var(--font-heading-scale) * 1.8rem);
  margin-bottom: 0;
}

@media only screen and (min-width: 750px) {
  li[data-address] > h2 {
    font-size: calc(var(--font-heading-scale) * 2.2rem);
  }
}

.addresses ul p {
  margin-bottom: 0;
}

.addresses input[type="checkbox"] {
  margin-top: 2rem;
  margin-left: 0;
}

@media only screen and (min-width: 750px) {
  .addresses form > div:nth-of-type(1) {
    margin-right: 2rem;
  }

  .addresses form > div:nth-of-type(2) {
    margin-top: 0;
  }

  .addresses form > div:nth-of-type(1),
  .addresses form > div:nth-of-type(2) {
    box-sizing: border-box;
    flex-basis: calc(50% - 1rem);
  }
}

.addresses form > div:nth-of-type(7),
.addresses form > div:nth-of-type(7) + div[id] {
  margin-top: 1.5rem;
}
.disclosure {
  position: relative;
}

.disclosure__button {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 4rem;
  padding: 0 1.5rem 0 1.5rem;
  font-size: 1.3rem;
  background-color: transparent;
}

.disclosure__list-wrapper {
  border-width: var(--popup-border-width);
  border-style: solid;
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  overflow: hidden;
  position: absolute;
  bottom: 100%;
  transform: translateY(-1rem);
  z-index: 2;
  background-color: rgb(var(--color-background));
  border-radius: var(--popup-corner-radius);
  box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity));
}

.disclosure__list {
  position: relative;
  overflow-y: auto;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  scroll-padding: 0.5rem 0;
  min-height: 8.2rem;
  max-height: 19rem;
  max-width: 22rem;
  min-width: 12rem;
  width: max-content;
}

.disclosure__item {
  position: relative;
}

.disclosure__link {
  display: block;
  padding: 0.5rem 2.2rem;
  text-decoration: none;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
}
.newsletter__wrapper {
  padding-right: calc(4rem / var(--font-body-scale));
  padding-left: calc(4rem / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .newsletter__wrapper {
    padding-right: 9rem;
    padding-left: 9rem;
  }
}

.newsletter__wrapper > * {
  margin-top: 0;
  margin-bottom: 0;
}

.newsletter__wrapper > * + * {
  margin-top: 2rem;
}

.newsletter__wrapper > * + .newsletter-form {
  margin-top: 3rem;
}

.newsletter__subheading {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__wrapper .newsletter-form__field-wrapper {
  max-width: 36rem;
}

.newsletter-form__field-wrapper .newsletter-form__message {
  margin-top: 1.5rem;
}

.newsletter__button {
  margin-top: 3rem;
  width: fit-content;
}

@media screen and (min-width: 750px) {
  .newsletter__button {
    flex-shrink: 0;
    margin: 0 0 0 1rem;
  }
}
.quick-add {
  position: relative;
  grid-row-start: 4;
  margin: 0 0 1rem;
  z-index: 1;
}

.card--card .quick-add {
  margin: 0 1.3rem 1rem;
}

.quick-add-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(var(--color-foreground), 0.2);
  height: 100%;
}

.quick-add-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}

.quick-add-modal__content {
  --modal-height-offset: 3.2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: var(--modal-height-offset) auto 0;
  width: 100%;
  background-color: rgb(var(--color-background));
  overflow: hidden;
  max-width: var(--page-width);
  width: calc(100% - 3rem);
}

@media screen and (min-width: 750px) {
  .quick-add-modal__content {
    --modal-height-offset: 10rem;
    margin-top: var(--modal-height-offset);
    width: 80%;
    max-height: calc(100% - var(--modal-height-offset) * 2);
    overflow-y: auto;
  }

  quick-add-modal .quick-add-modal__toggle {
    top: 2rem;
    right: 2rem;
  }
}

@media screen and (min-width: 990px) {
  .quick-add-modal__content {
    width: 70%;
  }
}

.quick-add-modal__content img {
  max-width: 100%;
}

.quick-add-modal__content-info {
  --modal-padding: 2.5rem;
  padding-right: 4.4rem;
  display: flex;
  overflow-y: auto;
  padding: var(--modal-padding);
  height: 100%;
}

.quick-add-modal__content-info > * {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 749px) {
  quick-add-modal .slider .product__media-item.grid__item {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .quick-add-modal__content {
    bottom: var(--modal-height-offset);
  }

  .quick-add-modal__content-info > * {
    max-height: 100%;
  }

  quick-add-modal .product--mobile-columns .product__media-item {
    width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
  }
}

.quick-add-modal__toggle {
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  color: rgba(var(--color-foreground), 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1.2rem;
  z-index: 5;
  width: 4rem;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
}

.quick-add-modal__toggle:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.quick-add-modal__toggle .icon {
  height: auto;
  margin: 0;
  width: 2.2rem;
}

quick-add-modal .product:not(.featured-product) .product__view-details {
  display: block;
}

quick-add-modal .quick-add-hidden,
quick-add-modal .product__modal-opener:not(.product__modal-opener--image),
quick-add-modal .product__media-item:not(:first-child) {
  display: none !important;
}

quick-add-modal .slider.slider--mobile {
  overflow: visible;
}

quick-add-modal .product__column-sticky .product__media-list {
  margin-bottom: 0;
}

quick-add-modal .product__media-list .deferred-media {
  display: block;
  width: 100%;
}

quick-add-modal .product__column-sticky {
  top: 0;
  position: relative;
}

@media screen and (min-width: 750px) {
  quick-add-modal .product:not(.product--no-media) .product__media-wrapper {
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  quick-add-modal .product:not(.product--no-media) .product__info-wrapper {
    padding-left: 4rem;
    max-width: 54%;
    width: calc(54% - var(--grid-desktop-horizontal-spacing) / 2)
  }

  quick-add-modal .product--columns .product__media-item:not(.product__media-item--single):not(:only-child) {
    max-width: 100%;
    width: 100%;
  }

  quick-add-modal .thumbnail-slider .thumbnail-list.slider--tablet-up {
    display: none;
  }
}

quick-add-modal .page-width {
  padding: 0;
}

quick-add-modal .product__title > h1 {
  display: none;
}

quick-add-modal .product__title > a {
  display: block;
  text-decoration: none;
}

quick-add-modal .product__title > a:hover {
  color: rgb(var(--color-foreground));
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  text-decoration-thickness: 0.3rem;
}

quick-add-modal .product-form__buttons {
  max-width: initial;
}

.quick-add__submit {
  padding: 0.8rem;
  min-width: 100%;
  box-sizing: border-box;
}

quick-add-modal .product-media-container.constrain-height {
  --viewport-offset: calc((var(--modal-height-offset) + var(--modal-padding) + var(--popup-border-width)) * 2);
}

@media screen and (min-width: 750px) {
  quick-add-modal .product-media-container.constrain-height {
    --constrained-min-height: 400px;
  }
}
.reasons-to-buy__content {
  display: flex;
  place-items: center;
  flex-direction: column;
}

.reasons-to-buy__image {
  display: flex;
  margin: 2rem auto;
}

.reasons-to-buy__image img {
  max-width: 100%;
  border-radius: 18px;
}

.reasons-to-buy__points,
.reasons-to-buy__points p {
  font-weight: 500;
  letter-spacing: normal;
  word-break: normal;
}

.reasons-to-buy__points {
  display: flex;
  align-items: start;
  gap: 1rem;
  text-align: left;
  padding: 2rem;
}

.reasons__text {
  margin-top: 0px;
}

.reasons-to-buy__content-inner {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.reasons-to-buy__caption {
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
}
.reasons-to-buy__button {
  display: flex;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 25px;
  margin: 2rem auto;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: .5rem;
  word-break: break-all;
}

.stat-content p {
  margin: 0;
}

.stat-card {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04);
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.stat-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.stats-title,
.stats-title p {
  font-weight: 600;
  color: #000;
  text-align: var(--heading-alignment);
}

.stats-body-text,
.stats-body-text p {
  text-align: var(--body-alignment);
}

.meter-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  width: 100%;
}

.meter-track {
  width: 85%;
  height: 12px;
  background-color: #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.meter-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 6px;
  background: var(--progress-bar-bg);
}

div.meter-shine {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 6px 6px 0 0;
}

.meter-percentage {
  margin-left: 12px;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--percentage-text-color);
}

@media screen and (max-width: 750px) {
  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .reasons-to-buy__content-inner {
    flex-direction: column;
  }
}

@media screen and (min-width: 750px) {
  .reasons-to-buy__content-inner.reasons-to-buy__reasons-first {
    flex-direction: row-reverse;
  }

  .reasons-to-buy__content-inner {
    gap: 4rem;
  }
}
.article-template > *:first-child:not(.article-template__hero-container) {
  margin-top: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template > *:first-child:not(.article-template__hero-container) {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

.article-template__hero-container {
  max-width: 130rem;
  margin: 0 auto;
}

.article-template__hero-small {
  height: 11rem;
}

.article-template__hero-medium {
  height: 22rem;
}

.article-template__hero-large {
  height: 33rem;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .article-template__hero-small {
    height: 22rem;
  }

  .article-template__hero-medium {
    height: 44rem;
  }

  .article-template__hero-large {
    height: 66rem;
  }
}

@media screen and (min-width: 990px) {
  .article-template__hero-small {
    height: 27.5rem;
  }

  .article-template__hero-medium {
    height: 55rem;
  }

  .article-template__hero-large {
    height: 82.5rem;
  }
}

.article-template header {
  margin-top: 4.4rem;
  margin-bottom: 2rem;
  line-height: calc(0.8 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .article-template header {
    margin-top: 5rem;
  }
}

.article-template__title {
  margin: 0;
}

.article-template__title:not(:only-child) {
  margin-bottom: 1rem;
}

.article-template__link {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.article-template__link .icon-wrap {
  display: flex;
  margin-right: 1rem;
  transform: rotate(180deg);
}

.article-template__content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.article-template__social-sharing {
  margin-top: 3rem;
}

.article-template__social-sharing + header,
.article-template__social-sharing + .article-template__content {
  margin-top: 1.5rem;
}

.article-template__comment-wrapper {
  margin-top: 5rem;
  padding: 2.7rem 0;
}

@media screen and (min-width: 750px) {
  .article-template__comment-wrapper {
    margin-top: 6rem;
    padding: 3.6rem 0;
  }
}

.article-template__comment-wrapper h2 {
  margin-top: 0;
}

.article-template__comments {
  margin-bottom: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments {
    margin-bottom: 7rem;
  }
}

.article-template__comments-fields {
  margin-bottom: 4rem;
}

.article-template__comments-comment {
  color: rgba(var(--color-foreground), 0.9);
  background-color: rgb(var(--color-background));
  margin-bottom: 1.5rem;
  padding: 2rem 2rem 1.5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments-comment {
    padding: 2rem 2.5rem;
  }
}

.article-template__comments-comment p {
  margin: 0 0 1rem;
}

.article-template__comment-fields > * {
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .article-template__comment-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4rem;
  }
}

.article-template__comment-warning {
  margin: 2rem 0 2.5rem;
}

@media screen and (min-width: 990px) {
  .article-template__comments .pagination-wrapper {
    margin: 5rem 0 8rem;
  }
}

.article-template__back:last-child {
  margin-bottom: 3.2rem;
}
.page-width .title-wrapper-with-link.main-title-with-text {
  margin-bottom: 0.5rem;
}
.text-under-title {
  text-align: center;
  margin-bottom: 3rem;
}
.text-under-title p:first-child {
  margin-top: 0;
}

.bundle-deals {
  max-width: 900px;
  margin: 0 auto;
}

.bundle-deals__media {
  display: grid;
  column-gap: 2rem;
  margin-bottom: 1rem;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.bundle-deals__media-item {
  display: block;
  cursor: pointer;
  max-width: 20rem;
}

.bundle-deals__media-item:not(:first-child) {
  position: relative;
}

.bundle-deals__media-item:not(:first-child) {
  position: relative;
}

.bundle-deals__media-item:not(:first-child)::before {
  content: "+";
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  line-height: 1;
}

.bundle-deals__media-item img,
.bundle-deals__media-item svg {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  border-radius: 0.5rem;
}

.bundle-deals__media-item--disabled img {
  filter: grayscale(1);
  opacity: 0.3;
}

.bundle-deals__form {
  margin-bottom: 0.75rem;
}

.bundle-deals__product {
  margin-bottom: 1.25rem;
}

.bundle-deals__checkbox-container {
  display: flex;
  align-items: center;
}

.bundle-deals__checkbox {
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  opacity: 0 !important;
  pointer-events: none;
}

.checkmark-unchecked {
  display: none;
}

.bundle-deals__checkbox:not(:checked)
  + .bundle-deals__checkbox-label
  .checkmark-unchecked {
  display: block;
}

.bundle-deals__checkbox:not(:checked)
  + .bundle-deals__checkbox-label
  .checkmark-checked {
  display: none;
}

.bundle-deals__checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.bundle-deals__checkbox-label svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.7rem;
  color: rgb(var(--color-base-accent-1));
}

.color-accent-1 .bundle-deals__checkbox-label svg,
.color-accent-2 .bundle-deals__checkbox-label svg {
  color: rgb(var(--color-foreground));
}

.bundle-deals__title {
  margin: 0;
  font-size: 1.6rem;
  color: rgb(var(--color-foreground));
}

.bundle-deals__checkbox:not(:checked)
  + .bundle-deals__checkbox-label
  .bundle-deals__title {
  text-decoration: line-through;
  opacity: 0.5;
}

.bundle-deals__info {
  display: flex;
  align-items: center;
  padding-left: 2.3rem;
}

.bundle-deals__price,
.bundle-deals__compare-price {
  font-weight: 700;
  font-size: 1.6rem;
}

.bundle-deals__price {
  color: rgb(var(--color-base-accent-1));
}

.color-accent-1 .bundle-deals__price,
.color-accent-2 .bundle-deals__price {
  color: rgb(var(--color-foreground));
}

.bundle-deals__compare-price {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.5);
}

.bundle-deals__variant-select-container {
  margin-right: 1rem;
}

.bundle-deals__variant-select-container .select {
  width: fit-content;
}

.bundle-deals__variant-select-container .select__select {
  height: 2.1rem;
}

.bundle-deals__prices {
  flex-shrink: 0;
  line-height: 1;
}

.bundle-deals__product--deselected .bundle-deals__info {
  opacity: 0.5;
}

.bundle-deals__total-price-container {
  font-weight: 700;
  font-size: 1.8rem;
  color: rgb(var(--color-foreground));
  margin: 0;
  text-align: left;
  border-top: solid 1px rgba(var(--color-foreground), 0.1);
  line-height: 2.5;
}

.bundle-deals__total-price {
  color: rgb(var(--color-base-accent-1));
}

.color-accent-1 .bundle-deals__total-price,
.color-accent-2 .bundle-deals__total-price {
  color: rgb(var(--color-foreground));
}

.bundle-deals__total-compare-price {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.5);
}

.bundle-deals__center,
.bundle-deals__button {
  max-width: 45rem;
  margin: 0 auto;
  width: 100%;
}

.bundle-deals__center {
  padding-bottom: 1rem;
}

@media screen and (min-width: 1000px) {
  .bundle-deals__media {
    column-gap: 3rem;
  }

  .bundle-deals__media-item:not(:first-child)::before {
    left: -1.5rem;
    font-size: 2.5rem;
  }

  .bundle-deals__checkbox-label svg {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
  }

  .bundle-deals__title,
  .bundle-deals__price,
  .bundle-deals__compare-price {
    font-size: 2rem;
  }

  .bundle-deals__info {
    padding-left: 3rem;
  }

  .bundle-deals__variant-select-container .select__select {
    height: 2.5rem;
  }

  .bundle-deals__variant-select-container {
    margin-right: 1.5rem;
  }

  .bundle-deals__total-price-container {
    font-size: 2.3rem;
  }

  .bundle-deals-horizontal-images-left,
  .bundle-deals-horizontal-images-right {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    align-items: center;
  }

  .bundle-deals-horizontal-images-left .bundle-deals__media {
    margin-right: 0;
  }

  .bundle-deals-horizontal-images-right .bundle-deals__media {
    margin-left: 0;
  }

  .bundle-deals-horizontal-images-left .bundle-deals__empty,
  .bundle-deals-horizontal-images-right .bundle-deals__empty {
    display: block;
  }

  .bundle-deals-horizontal-images-left .bundle-deals__center,
  .bundle-deals-horizontal-images-left .bundle-deals__button,
  .bundle-deals-horizontal-images-right .bundle-deals__button,
  .bundle-deals-horizontal-images-right .bundle-deals__center {
    margin: 0;
  }

  .bundle-deals-horizontal-images-right .bundle-deals__center {
    order: 1;
    justify-self: flex-end;
  }
  .bundle-deals-horizontal-images-right .bundle-deals__media {
    order: 2;
  }
  .bundle-deals-horizontal-images-right .bundle-deals__button {
    order: 3;
    justify-self: flex-end;
  }
  .bundle-deals-horizontal-images-right .bundle-deals__empty {
    order: 4;
  }
}
.collection-list {
  margin-top: 0;
  margin-bottom: 0;
}

.collection-list-title {
  margin: 0;
}

@media screen and (max-width: 749px) {
  .collection-list:not(.slider) {
    padding-left: 0;
    padding-right: 0;
  }

  .section__collection_list .page-width {
    padding-left: 0;
    padding-right: 0;
  }

  .section__collection_list .collection-list:not(.slider) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.collection-list__item:only-child {
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .slider.collection-list--1-items {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider.collection-list--1-items,
  .slider.collection-list--2-items,
  .slider.collection-list--3-items,
  .slider.collection-list--4-items {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 750px) {
  .collection-list__item a:hover {
    box-shadow: none;
  }
}

@media screen and (max-width: 989px) {
  .collection-list.slider .collection-list__item {
    max-width: 100%;
  }
}

.collection-list-view-all {
  margin-top: 2rem;
}
.content-and-comparison-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  column-gap: 50px;
  position: relative;
  z-index: 0;
}
.content-and-comparison-slider--no-content {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 900px) {
  .content-and-comparison-slider {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .content-and-comparison-slider--slider-first .comparison-slider {
    order: -1;
  }
}

.content-and-comparison-slider .content-container .title {
  margin-top: 0;
}
.comparison-slider {
  position: relative;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.comparison-slider__overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
}
.comparison-slider__overlay-under {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
}
.comparison-slider__overlay img,
.comparison-slider__overlay-under img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  vertical-align: bottom;
  margin: 0;
  border: none;
}
.comparison-slider__overlay-under img {
  object-position: top right;
}
.comparison-slider__underlay img {
  width: 100%;
  vertical-align: bottom;
  margin: 0;
  border: none;
  visibility: hidden;
}
.comparison-slider__before-text,
.comparison-slider__after-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.comparison-slider__before-text h3,
.comparison-slider__after-text h3 {
  text-align: center;
  width: fit-content;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 0.5rem 1.3rem 0.6rem;
  margin: 0;
  white-space: nowrap;
}
.comparison-slider__after-text {
  left: auto;
  right: 0;
}
.comparison-slider__input {
  opacity: 0;
  position: absolute;
  z-index: 5;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
  overflow: hidden;
}
.comparison-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 50rem;
  max-height: 100%;
  width: 5rem;
  border: solid 4px red;
}
.comparison-slider__line {
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  height: 100%;
  width: 6px;
  cursor: e-resize;
  transform: translateX(-50%);
}
.comparison-slider__arrow-left {
  width: 10px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-20px, -50%);
  clip-path: polygon(100% 0%, 0 50%, 100% 100%);
  display: block !important;
}
.comparison-slider__arrow-right {
  width: 10px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(20px, -50%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  display: block !important;
}
.content-and-comparison-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  column-gap: 5rem;
}
.content-and-comparison-table--no-content {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 899px) {
  .content-and-comparison-table {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .content-and-comparison-table--table-first .comparison-table-container {
    order: -1;
  }
}

.content-and-comparison-table .content-container .title {
  margin-top: 0;
}
.comparison-table-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 50rem;
}
.comparison-table {
  flex-grow: 1;
  border-spacing: 0;
}
.comparison-table tbody {
  box-shadow: 0.5rem 0.5rem 1rem rgba(var(--color-foreground), 0.2),
    0 0 0 0.2rem rgba(var(--color-foreground), 0.07);
  border-radius: 2rem;
}
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 -0.1rem 0 0 rgba(var(--color-foreground), 0.05),
    inset 0 0.1rem 0 0 rgba(var(--color-foreground), 0.05);
}
.comparison-table img {
  vertical-align: middle;
}
.comparison-table th {
  padding: 0.5rem 0.75rem;
  font-size: 1.8rem;
  line-height: 1.3;
}
.comparison-table tbody tr:first-of-type .comparison-table__row-name {
  border-radius: 2rem 0 0 0;
}
.comparison-table tbody tr:last-of-type .comparison-table__row-name {
  border-radius: 0 0 0 2rem;
}
.comparison-table tbody tr:first-of-type td:last-child {
  border-radius: 0 2rem 0 0;
}
.comparison-table tbody tr:last-of-type td:last-child {
  border-radius: 0 0 2rem 0;
}
.comparison-table tbody td:not(.comparison-table__row-name) {
  padding: 1rem 2rem;
}
.comparison-table__x {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.comparison-table__checkmark {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin: auto;
  display: inline-block;
}
.comparison-table__x span {
  content: "";
  display: block;
  height: 0.3rem;
  width: 1.8rem;
  background: rgb(var(--color-foreground));
  border-radius: 1rem;
  transform: rotate(45deg);
  flex-shrink: 0;
  flex-grow: 0;
}
.comparison-table__x span:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg);
}
.comparison-table .comparison-table__row-name h3 {
  margin: 0;
}
@media screen and (max-width: 750px) {
  .comparison-table__checkmark,
  .comparison-table__x {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .comparison-table__logo img {
    max-width: var(--mobile-logo-width);
    height: auto;
  }
}
.contact img {
  max-width: 100%;
}

.contact .form__message {
  align-items: flex-start;
}

.contact .icon-success {
  margin-top: 0.2rem;
}

.contact .field {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 750px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}

.track-button {
  display: flex;
  justify-content: center;
  height: 57px;
}
@media (min-width: 650px) {
  .track-button {
    position: absolute;
    top: 50%; 
    right: 10px; 
    transform: translateY(-50%);
    max-width: 210px;
    width: 100%;
    margin-top: 0px  !important;
  }
}
@media (max-width: 650px) {
  .track-button {
    position: relative;
    margin-top: 10px;
  }
}


.track-button input {
  display: flex;
  justify-content: center;
  min-height: 0px !important;
}

.order-tracking-form .field input {
  height: 70px;
  padding: 20px 240px 20px 20px;
}

.order-tracking-form .field label {
  top: 30%;
}

@media screen and (min-width: 750px) {
  .contact__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
  }
}

.order-tracking-card {
  border-radius: 30px;
  width: 100%;
  padding: 55px 70px;
}
@media (max-width: 768px) {
  .order-tracking-card {
    padding: 35px 30px;
  }
}

.order-tracking-form {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.email-signup-banner .newsletter-form,
.email-signup-banner .newsletter-form__field-wrapper {
  display: inline-block;
}

@media only screen and (min-width: 750px) {
  .email-signup-banner:not(.banner--desktop-transparent) .email-signup-banner__box {
    width: 100%;
  }
}

.email-signup-banner__box .email-signup-banner__heading {
  margin-bottom: 0;
}

.email-signup-banner__box > * + .newsletter__subheading {
  margin-top: 2rem;
}

.email-signup-banner__box .newsletter__subheading p {
  margin: 0;
}

.email-signup-banner-background {
  width: 100%;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 749px) {
  .email-signup-banner:not(.banner--mobile-bottom) .banner__box:not(.email-signup-banner__box--no-image) {
    background-color: transparent;
    --color-foreground: 255, 255, 255;
    --color-button: 255, 255, 255;
    --color-button-text: 0, 0, 0;
  }
}

@media only screen and (min-width: 750px) {
  .banner--desktop-transparent .email-signup-banner__box--no-image * {
    color: rgb(var(--color-base-text));
  }

  .banner--desktop-transparent .email-signup-banner__box .field__input {
    background-color: transparent;
  }

  .banner--desktop-transparent .email-signup-banner__box--no-image .field__input {
    box-shadow: 0 0 0 0.1rem rgba(var(--color-base-text), 0.55);
  }

  .banner--desktop-transparent .email-signup-banner__box--no-image .field__input:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--color-base-text), 0.75);
  }

  .banner--desktop-transparent .email-signup-banner__box--no-image .field__button:focus-visible {
    outline: 0.2rem solid rgba(var(--color-base-text), 0.5);
    box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
      0 0 0.5rem 0.4rem rgba(var(--color-base-text), 0.3);
  }
}

@media only screen and (min-width: 750px) {
  .email-signup-banner-background-mobile {
    display: none;
  }
}

@media only screen and (max-width: 749px) {
  .email-signup-banner-background:not(.email-signup-banner-background-mobile) {
    display: none;
  }
}

.email-signup-banner .banner__media {
  overflow: hidden;
}

@media screen and (max-width: 749px) {
  .banner--mobile-content-align-left .newsletter-form__message {
    justify-content: flex-start;
  }

  .banner--mobile-content-align-right .newsletter-form__message {
    justify-content: right;
  }
}

@media screen and (min-width: 750px) {
  .banner--content-align-center .newsletter-form__message {
    justify-content: center;
  }

  .banner--content-align-right .newsletter-form__message {
    justify-content: right;
  }
}
.blog-placeholder {
  margin: 0 1.5rem;
  background: rgb(var(--color-background));
}

@media screen and (min-width: 750px) {
  .blog-placeholder {
    text-align: center;
    width: 50%;
    margin: 0;
  }
}

.blog-placeholder__content {
  padding: 3rem;
  background: rgba(var(--color-foreground), 0.04);
}

.blog-placeholder .placeholder {
  position: relative;
}

.blog-placeholder h2 {
  margin: 0;
}

.blog-placeholder .rte-width {
  margin-top: 1.2rem;
  color: rgba(var(--color-foreground), 0.9);
}

@media screen and (min-width: 990px) {
  .grid--1-col-desktop .article-card .card__content {
    text-align: center;
  }
}

.blog__title {
  margin: 0;
}

.blog__posts.articles-wrapper {
  margin-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .blog__posts.articles-wrapper {
    margin-bottom: 0;
  }
}

.blog__posts.articles-wrapper .article {
  scroll-snap-align: start;
}

@media screen and (max-width: 749px) {
  .blog__post.article {
    width: calc(100% - 3rem);
  }
}

.background-secondary .blog-placeholder__content {
  background-color: rgb(var(--color-background));
}

.blog__posts .card-wrapper {
  width: 100%;
}

.blog__button {
  margin-top: 3rem;
}

@media screen and (min-width: 750px) {
  .blog__button {
    margin-top: 5rem;
  }
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  @media screen and (min-width: 750px) {
    .blog__posts .article + .article {
      margin-left: var(--grid-desktop-horizontal-spacing);
    }
  }
}
.featured-product .product__media-list {
  width: 100%;
  margin: 0;
  padding-bottom: 0;
}

.featured-product .product-media-container {
  margin-bottom: var(--media-shadow-vertical-offset);
  max-width: 100%;
}

.featured-product .product__media-item {
  padding-left: 0;
  width: 100%;
}

.featured-product .product__media-item:not(:first-child) {
  display: none;
}

.background-secondary .featured-product {
  padding: 2.5rem;
}

.featured-product .share-button:nth-last-child(2) {
  display: inline-flex;
}

.share-button + .product__view-details {
  display: inline-flex;
  float: right;
  align-items: center;
}

.share-button + .product__view-details::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (min-width: 750px) {
  .featured-product .product__media-item {
    /* padding-bottom: 0; */
  }

  .background-secondary .featured-product {
    /* padding: 5rem; */
  }
}

@media screen and (min-width: 990px) {
  .background-secondary .featured-product:not(.product--no-media) > .product__info-wrapper {
    /* padding: 0 0 0 5rem; */
  }

  .background-secondary .featured-product:not(.product--no-media).product--right > .product__info-wrapper {
    /* padding: 0 5rem 0 0; */
  }

  .featured-product:not(.product--no-media) > .product__info-wrapper {
    /* padding: 0 7rem; */
  }

  .background-secondary .featured-product {
    /* padding: 6rem 7rem; */
    position: relative;
    z-index: 1;
  }
}
.footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.footer:not(.color-accent-1) {
  border-top: none;
}

.footer__content-top {
  padding-bottom: 5rem;
  display: block;
}

@media screen and (max-width: 749px) {
  .footer .grid {
    display: block;
  }

  .footer-block.grid__item {
    padding: 0;
    margin: 4rem 0;
    width: 100%;
  }

  .footer-block.grid__item:first-child {
    margin-top: 0;
  }

  .footer__content-top {
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 750px) {
  .footer__content-top .grid {
    row-gap: 6rem;
    margin-bottom: 0;
  }
}

.footer__content-bottom {
  border-top: solid 0.1rem rgba(var(--color-foreground), 0.08);
  padding-top: 3rem;
}

.footer__content-bottom:only-child {
  border-top: 0;
}

.footer__content-bottom-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media screen and (max-width: 749px) {
  .footer__content-bottom {
    flex-wrap: wrap;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    row-gap: 1.5rem;
  }

  .footer__content-bottom-wrapper {
    flex-wrap: wrap;
    row-gap: 1.5rem;
    justify-content: center;
  }
}

.footer__localization:empty + .footer__column--info {
  align-items: center;
}

@media screen and (max-width: 749px) {
  .footer__localization:empty + .footer__column {
    padding-top: 1.5rem;
  }
}

.footer__column {
  width: 100%;
  align-items: flex-end;
}

.footer__column--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (min-width: 750px) {
  .footer__column--info {
    padding-left: 0;
    padding-right: 0;
    align-items: flex-end;
  }
}

.footer-block:only-child:last-child {
  text-align: center;
  max-width: 76rem;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .footer-block {
    display: block;
    margin-top: 0;
  }
}

.footer-block:empty {
  display: none;
}

.footer-block--newsletter {
  display: flex;
  align-items: flex-end;
  margin-top: 3rem;
  gap: 1rem;
}

.footer-block--newsletter:only-child {
  margin-top: 0;
}

@media screen and (max-width: 749px) {
  .footer-block.footer-block--menu:only-child {
    text-align: left;
  }
}

@media screen and (min-width: 750px) {
  .footer-block--newsletter {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.footer-block__heading {
  margin-bottom: 2rem;
  margin-top: 0;
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

@media screen and (min-width: 990px) {
  .footer-block__heading {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

.footer__list-social:empty,
.footer-block--newsletter:empty {
  display: none;
}

.footer__follow-on-shop {
  display: flex;
  text-align: center;
}

.footer__list-social.list-social:only-child {
  justify-content: center;
}

.footer-block__newsletter {
  text-align: center;
  flex-grow: 1;
}

@media screen and (min-width: 750px) {
  /* Pushes other components to the right of the flexbox */
  .footer-block__newsletter:not(:only-child) {
    text-align: left;
    margin-right: auto;
  }

  .footer-block__newsletter:not(:only-child) .footer__newsletter {
    justify-content: flex-start;
    margin: 0;
  }

  .footer-block__newsletter:not(:only-child)
    .newsletter-form__message--success {
    left: auto;
  }

  .footer__follow-on-shop {
    margin-bottom: 0.4rem;
  }
  /* Follow on shop is the first button but it has siblings*/
  .footer__follow-on-shop:first-child:not(:last-child) {
    justify-content: flex-start;
    margin-right: auto;
    text-align: left;
  }

  /*
    All three components are present, email, Follow on Shop, and social icons.
    Moves the FoS button next to the social icons so they appear grouped together
  */
  .footer__follow-on-shop:not(:first-child):not(:last-child) {
    justify-content: flex-end;
    text-align: right;
  }
}

@media screen and (max-width: 749px) {
  /*
    On a small screen we want all the items to be centered
    because they will be stacked.
   */
  .footer-block--newsletter {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    align-items: center;
    gap: 3rem;
  }

  .footer__list-social.list-social,
  .footer__follow-on-shop,
  .footer-block__newsletter {
    display: flex;
    justify-content: center;
  }

  .footer-block__newsletter {
    flex-direction: column;
  }
}

@media screen and (min-width: 750px) {
  .footer-block__newsletter + .footer__list-social {
    margin-top: 0;
  }
}

.footer__localization {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 1rem 1rem 0;
}

.footer__localization:empty {
  display: none;
}

.localization-form {
  display: flex;
  flex-direction: column;
  flex: auto 1 0;
  padding: 1rem;
  margin: 0 auto;
}

.localization-form:only-child {
  display: inline-flex;
  flex-wrap: wrap;
  flex: initial;
  padding: 1rem 0;
}

.localization-form:only-child .button,
.localization-form:only-child .localization-form__select {
  margin: 1rem 1rem 0.5rem;
  flex-grow: 1;
}

.footer__localization h2 {
  margin: 1rem 1rem 0.5rem;
  color: rgba(var(--color-foreground), 0.9);
}

@media screen and (min-width: 750px) {
  .footer__localization {
    padding: 0.4rem 0;
    justify-content: flex-start;
  }

  .localization-form {
    padding: 1rem 2rem 1rem 0;
  }

  .localization-form:first-of-type {
    padding-left: 0;
  }

  .localization-form:only-child {
    justify-content: start;
    width: auto;
    margin: 0 1rem 0 0;
  }

  .localization-form:only-child .button,
  .localization-form:only-child .localization-form__select {
    margin: 1rem 0;
  }

  .footer__localization h2 {
    margin: 1rem 0 0;
  }
}

@media screen and (max-width: 989px) {
  noscript .localization-form:only-child,
  .footer__localization noscript {
    width: 100%;
  }
}

.localization-form .button {
  padding: 1rem;
}

.localization-form__currency {
  display: inline-block;
}

@media screen and (max-width: 749px) {
  .localization-form .button {
    word-break: break-all;
  }
}

.localization-form__select {
  border-radius: var(--inputs-radius-outset);
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  text-align: left;
  min-height: calc(4rem + var(--inputs-border-width) * 2);
  min-width: calc(7rem + var(--inputs-border-width) * 2);
}

.disclosure__button.localization-form__select {
  padding: calc(2rem + var(--inputs-border-width));
  background: rgb(var(--color-background));
}

noscript .localization-form__select {
  padding-left: 0rem;
}

@media screen and (min-width: 750px) {
  noscript .localization-form__select {
    min-width: 20rem;
  }
}

.localization-form__select .icon-caret {
  position: absolute;
  content: "";
  height: 0.6rem;
  right: calc(var(--inputs-border-width) + 1.5rem);
  top: calc(50% - 0.2rem);
}

.localization-selector.link {
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: rgb(var(--color-foreground));
  width: 100%;
  padding-right: 4rem;
  padding-bottom: 1.5rem;
}

noscript .localization-selector.link {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}

.disclosure .localization-form__select {
  padding-top: 1.5rem;
}

.localization-selector option {
  color: #000000;
}

.localization-selector + .disclosure__list-wrapper {
  margin-left: 1rem;
  opacity: 1;
  animation: animateLocalization var(--duration-default) ease;
}

@media screen and (min-width: 750px) {
  .footer__payment {
    margin-top: 1.5rem;
  }
}

.footer__content-bottom-wrapper--center {
  justify-content: center;
}

.footer__copyright {
  text-align: center;
  margin-top: 1.5rem;
}

@media screen and (min-width: 750px) {
  .footer__content-bottom-wrapper:not(.footer__content-bottom-wrapper--center)
    .footer__copyright {
    text-align: right;
  }
}

@keyframes appear-down {
  0% {
    opacity: 0;
    margin-top: -1rem;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.footer-block__details-content {
  margin-bottom: 4rem;
}

@media screen and (min-width: 750px) {
  .footer-block__details-content {
    margin-bottom: 0;
  }

  .footer-block__details-content > p,
  .footer-block__details-content > li {
    padding: 0;
  }

  .footer-block:only-child li {
    display: inline;
  }

  .footer-block__details-content > li:not(:last-child) {
    margin-right: 1.5rem;
  }
}

.footer-block__details-content .list-menu__item--link,
.copyright__content a {
  color: rgba(var(--color-navigation-links), 0.9);
}

.footer-block__details-content .list-menu__item--active {
  transition: text-decoration-thickness var(--duration-short) ease;
  color: rgb(var(--color-navigation-links));
}

@media screen and (min-width: 750px) {
  .footer-block__details-content .list-menu__item--link:hover,
  .copyright__content a:hover {
    color: rgb(var(--color-navigation-links));
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }

  .footer-block__details-content .list-menu__item--active:hover {
    text-decoration-thickness: 0.2rem;
  }
}

@media screen and (max-width: 989px) {
  .footer-block__details-content .list-menu__item--link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 750px) {
  .footer-block__details-content .list-menu__item--link {
    display: inline-block;
    font-size: 1em;
  }

  .footer-block__details-content > :first-child .list-menu__item--link {
    padding-top: 0;
  }
}

.footer-block-image {
  display: flex;
}

.footer-block-image.left {
  justify-content: flex-start;
}

.footer-block-image.center {
  justify-content: center;
}

.footer-block-image.right {
  justify-content: flex-end;
}

@media screen and (max-width: 749px) {
  .footer-block-image,
  .footer-block-image.left,
  .footer-block-image.center,
  .footer-block-image.right {
    justify-content: center;
  }
}

.footer-block__image-wrapper {
  margin-bottom: max(
    calc(
      2rem + var(--media-shadow-vertical-offset) * var(--media-shadow-visible)
    ),
    2rem
  );
  overflow: hidden !important;
}

.footer-block__image-wrapper img {
  display: block;
  height: auto;
  max-width: 100%;
}

.footer-block__brand-info {
  text-align: left;
}

.footer-block:only-child .footer-block__brand-info {
  text-align: center;
}

.footer-block:only-child
  > .footer-block__brand-info
  > .footer-block__image-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.footer-block-image > img,
.footer-block__brand-info > img {
  height: auto;
}

.footer-block:only-child
  .footer-block__brand-info
  .footer__list-social.list-social {
  justify-content: center;
}

.footer-block__brand-info .footer__list-social.list-social {
  justify-content: flex-start;
  margin-left: -1.3rem;
  margin-right: -1.3rem;
}

.footer-block__details-content .placeholder-svg {
  max-width: 20rem;
}

.copyright__content {
  font-size: var(--policy-link-size);
}

.copyright__content a {
  color: currentColor;
  text-decoration: none;
}

.policies {
  display: inline;
}

.policies li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.policies li::before {
  content: "\00B7";
  padding: 0 0.8rem;
}

.policies li a {
  padding: 0.6rem 0;
  display: block;
}

.copyright_branding__container {
  font-size: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media screen and (min-width: 750px) {
  .policies li a {
    padding: 0;
  }
}
@keyframes animateLocalization {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(-1rem);
  }
}

.footer .disclosure__link {
  padding: 0.95rem 3.5rem 0.95rem 2rem;
  color: rgba(var(--color-foreground), 0.9);
}

.footer .disclosure__link:hover {
  color: rgb(var(--color-foreground));
}

.footer .disclosure__link--active {
  text-decoration: underline;
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  @media screen and (max-width: 749px) {
    .footer .grid {
      margin-left: 0;
    }
  }

  @media screen and (min-width: 750px) {
    .footer__content-top .grid {
      margin-left: -3rem;
    }

    .footer__content-top .grid__item {
      padding-left: 3rem;
    }
  }
}

/* footer v2 */

.footer .footer-block__details-content.footer-block__details-content-mb p {
  margin-bottom: 1rem;
}

.footer .footer__newsletter,
.footer .newsletter-form__field-wrapper {
  max-width: none;
}

@media screen and (min-width: 750px) {
  .footer__content-top .grid {
    column-gap: 0;
    margin-left: calc((var(--grid-desktop-horizontal-spacing) / 2) * -1);
    margin-right: calc((var(--grid-desktop-horizontal-spacing) / 2) * -1);
  }

  .footer-block.grid__item {
    margin: 0 calc(var(--grid-desktop-horizontal-spacing) / 2);
    flex-shrink: 0;
    flex-grow: 0;
    max-width: none;
  }

  .footer-block.footer-block--desktop-12 {
    width: calc(100% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-11 {
    width: calc(91.63% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-10 {
    width: calc(83.33% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-9 {
    width: calc(75% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-6 {
    width: calc(50% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-5 {
    width: calc(41.6% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-4 {
    width: calc(33.3% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-3 {
    width: calc(25% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-2 {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing));
  }

  .footer-block.footer-block--desktop-1 {
    width: calc(8.33% - var(--grid-desktop-horizontal-spacing));
  }
}

@media screen and (max-width: 749px) {
  .footer__content-top .grid {
    column-gap: var(--grid-mobile-horizontal-spacing);
    row-gap: 0;
    display: flex;
    margin: 0;
  }

  .footer-block.grid__item {
    margin: 0;
    flex-shrink: 0;
    flex-grow: 0;
    max-width: none;
    margin-bottom: 4rem;
  }

  .footer-block.grid__item:last-child {
    margin-bottom: 0;
  }

  .footer-block__details-content {
    margin-bottom: 0;
  }

  .footer-block.footer-block--mobile-1 {
    width: calc(50% - (var(--grid-mobile-horizontal-spacing) / 2));
  }

  .footer-block.footer-block--mobile-2 {
    width: 100%;
  }

  .footer-block__details-content .list-menu__item--link {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .footer_card--half-width .card__information,
  .footer-block--mobile-1 .card__information {
    padding: 0;
  }

  .footer_card--half-width {
    max-width: 50%;
  }
}
.banner {
  display: flex;
  position: relative;
  flex-direction: column;
}

.banner__box {
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .banner--content-align-mobile-right .banner__box {
    text-align: right;
  }

  .banner--content-align-mobile-left .banner__box {
    text-align: left;
  }
}

@media only screen and (min-width: 750px) {
  .banner--content-align-right .banner__box {
    text-align: right;
  }

  .banner--content-align-left .banner__box {
    text-align: left;
  }

  .banner--content-align-left.banner--desktop-transparent .banner__box,
  .banner--content-align-right.banner--desktop-transparent .banner__box,
  .banner--medium.banner--desktop-transparent .banner__box {
    max-width: 68rem;
  }
}

@media screen and (max-width: 749px) {
  .banner--small.banner--mobile-bottom:not(.banner--adapt) .banner__media,
  .banner--small.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt)
    > .banner__media {
    height: 28rem;
  }

  .banner--medium.banner--mobile-bottom:not(.banner--adapt) .banner__media,
  .banner--medium.banner--stacked:not(.banner--mobile-bottom):not(
      .banner--adapt
    )
    > .banner__media {
    height: 34rem;
  }

  .banner--large.banner--mobile-bottom:not(.banner--adapt) .banner__media,
  .banner--large.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt)
    > .banner__media {
    height: 39rem;
  }

  .banner--small:not(.banner--mobile-bottom):not(.banner--adapt)
    .banner__content {
    min-height: 28rem;
  }

  .banner--medium:not(.banner--mobile-bottom):not(.banner--adapt)
    .banner__content {
    min-height: 34rem;
  }

  .banner--large:not(.banner--mobile-bottom):not(.banner--adapt)
    .banner__content {
    min-height: 39rem;
  }
}

@media screen and (min-width: 750px) {
  .banner {
    flex-direction: row;
  }

  .banner--small:not(.banner--adapt) {
    min-height: 42rem;
  }

  .banner--medium:not(.banner--adapt) {
    min-height: 56rem;
  }

  .banner--large:not(.banner--adapt) {
    min-height: 72rem;
  }

  .banner__content.banner__content--top-left {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .banner__content.banner__content--top-center {
    align-items: flex-start;
    justify-content: center;
  }

  .banner__content.banner__content--top-right {
    align-items: flex-start;
    justify-content: flex-end;
  }

  .banner__content.banner__content--middle-left {
    align-items: center;
    justify-content: flex-start;
  }

  .banner__content.banner__content--middle-center {
    align-items: center;
    justify-content: center;
  }

  .banner__content.banner__content--middle-right {
    align-items: center;
    justify-content: flex-end;
  }

  .banner__content.banner__content--bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .banner__content.banner__content--bottom-center {
    align-items: flex-end;
    justify-content: center;
  }

  .banner__content.banner__content--bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 749px) {
  .banner:not(.banner--stacked) {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .banner--stacked {
    height: auto;
  }

  .banner--stacked .banner__media {
    flex-direction: column;
  }
}

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

.banner__media-half {
  width: 50%;
}

.banner__media-half + .banner__media-half {
  right: 0;
  left: auto;
}

@media screen and (max-width: 749px) {
  .banner--stacked .banner__media-half {
    width: 100%;
  }

  .banner--stacked .banner__media-half + .banner__media-half {
    order: 1;
  }
}

@media screen and (min-width: 750px) {
  .banner__media {
    height: 100%;
  }
}

.banner--adapt,
.banner--adapt_image.banner--mobile-bottom .banner__media:not(.placeholder) {
  height: auto;
}

@media screen and (max-width: 749px) {
  .banner--mobile-bottom .banner__media,
  .banner--stacked:not(.banner--mobile-bottom) .banner__media {
    position: relative;
  }

  .banner--stacked.banner--adapt .banner__content {
    height: auto;
  }

  .banner:not(.banner--mobile-bottom):not(.email-signup-banner) .banner__box {
    background: transparent;
    --color-foreground: 255, 255, 255;
    --color-button: 255, 255, 255;
    --color-button-text: 0, 0, 0;
  }

  .banner:not(.banner--mobile-bottom) .banner__box {
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .banner:not(.banner--mobile-bottom) .button--secondary {
    --color-button: 255, 255, 255;
    --color-button-text: 255, 255, 255;
    --alpha-button-background: 0;
  }

  .banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt)
    .banner__content {
    position: absolute;
    height: auto;
  }

  .banner--stacked.banner--adapt:not(.banner--mobile-bottom) .banner__content {
    max-height: 100%;
    overflow: hidden;
    position: absolute;
  }

  .banner--stacked:not(.banner--adapt) .banner__media {
    position: relative;
  }

  .banner::before {
    display: none !important;
  }

  .banner--stacked .banner__media-image-half {
    width: 100%;
  }
}

.banner__content {
  padding: 0;
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@media screen and (min-width: 750px) {
  .banner__content {
    padding: 5rem;
  }

  .banner__content--top-left {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .banner__content--top-center {
    align-items: flex-start;
    justify-content: center;
  }

  .banner__content--top-right {
    align-items: flex-start;
    justify-content: flex-end;
  }

  .banner__content--middle-left {
    align-items: center;
    justify-content: flex-start;
  }

  .banner__content--middle-center {
    align-items: center;
    justify-content: center;
  }

  .banner__content--middle-right {
    align-items: center;
    justify-content: flex-end;
  }

  .banner__content--bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .banner__content--bottom-center {
    align-items: flex-end;
    justify-content: center;
  }

  .banner__content--bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 749px) {
  .banner--mobile-bottom:not(.banner--stacked) .banner__content {
    order: 2;
  }

  .banner:not(.banner--mobile-bottom) .field__input {
    background-color: transparent;
  }
}

.banner__box {
  padding: 4rem 3.5rem;
  position: relative;
  height: fit-content;
  align-items: center;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  z-index: 0;
}

@media screen and (min-width: 750px) {
  .banner--desktop-transparent .banner__box {
    background: transparent;
    --color-foreground: 255, 255, 255;
    --color-button: 255, 255, 255;
    --color-button-text: 0, 0, 0;
    max-width: 89rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .banner--desktop-transparent .button--secondary {
    --color-button: 255, 255, 255;
    --color-button-text: 255, 255, 255;
    --alpha-button-background: 0;
  }

  .banner--desktop-transparent .content-container:after {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .banner--mobile-bottom::after,
  .banner--mobile-bottom .banner__media::after {
    display: none;
  }
}

.banner::after,
.banner__media::after {
  content: "";
  position: absolute;
  top: 0;
  background: #000000;
  opacity: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.banner__box > * + .banner__text {
  margin-top: 1.5rem;
  font-weight: 500;
}

@media screen and (min-width: 750px) {
  .banner__box > * + .banner__text {
    margin-top: 2rem;
  }
}

.banner__box > * + * {
  margin-top: 1rem;
}

.banner__box > *:first-child {
  margin-top: 0;
}

@media screen and (max-width: 749px) {
  .banner--stacked .banner__box {
    width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .banner__box {
    width: auto;
    max-width: 71rem;
    min-width: 45rem;
  }
}

@media screen and (min-width: 1400px) {
  .banner__box {
    max-width: 90rem;
  }
}

.banner__heading {
  margin-bottom: 0;
}

.banner__box .banner__heading + * {
  margin-top: 1rem;
}

.banner__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 45rem;
  word-break: break-word;
}

@media screen and (max-width: 749px) {
  .banner--content-align-mobile-right .banner__buttons--multiple {
    justify-content: flex-end;
  }

  .banner--content-align-mobile-center .banner__buttons--multiple > * {
    flex-grow: 1;
    min-width: 22rem;
  }
}

@media screen and (min-width: 750px) {
  .banner--content-align-center .banner__buttons--multiple > * {
    flex-grow: 1;
    min-width: 22rem;
  }

  .banner--content-align-right .banner__buttons--multiple {
    justify-content: flex-end;
  }
}

.banner__box > * + .banner__buttons {
  margin-top: 2rem;
}
.play-icon-container svg {
  color: rgb(var(--color-foreground));
  height: 50%;
  width: 50%;
}
.play-icon-container {
  position: relative;
  background: rgb(var(--color-background));
  border: 0px solid transparent !important;
  height: 50px;
  border-radius: 50%;
  width: 50px;
  z-index: 0;
  cursor: pointer;
}

.slide-text-container {
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
}

.play-button-element {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  background-color: transparent !important;
  border: 0px solid transparent !important;
}

.full-size {
  width: 100%;
  height: 100%;
}

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

.video-container {
  aspect-ratio: 9 / 16;
}

.video-container video {
  width: 100%;
}
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.split-container--full {
  grid-template-columns: 1fr;
}

.split-container--reversed {
  direction: rtl;
}

.split-container--reversed > * {
  direction: ltr;
}

@media screen and (max-width: 900px) {
  .split-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.text-block {
  max-width: 600px;
  margin: 0 auto;
}

.image-compare {
  position: relative;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section__image_comparison_slider .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section__image_comparison_slider .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image--before {
  z-index: 2;
}

.image--after {
  z-index: 1;
}

.divider {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}

.divider__arrow {
  position: absolute;
  width: 12px;
  height: 20px;
  background: currentColor;
}

.divider__arrow--left {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.divider__arrow--right {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.slider-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  z-index: 4;
}

.label {
  position: absolute;
  z-index: 5;
  top: 1rem;
}

.label--before {
  left: 1rem;
}

.label--after {
  right: 1rem;
}

.label span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.image-slider {
  position: relative;
}
.image-slide__image svg {
  width: 100%;
}

.image-slide__image img,
.video-slide__video video {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

.video-slide__video {
  position: relative;
}

.video-slide__play {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  z-index: 1;
  cursor: pointer;
}

.video-slide__play__btn {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 0;
  background: rgb(var(--color-background));
  outline: none;
  border: none;
  cursor: pointer;
}

.video-slide__play__btn svg {
  color: rgb(var(--color-foreground));
  height: 50%;
  width: 50%;
}

.video-slide__play__btn--animation::before,
.video-slide__play__btn--animation::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 50%;
  border: solid 1px rgb(var(--color-background));
  animation: ripple 2s linear infinite;
}

.video-slide__play__btn--animation::after {
  animation-delay: 1s;
}

@media screen and (max-width: 750px) {
  .video-slide__play__btn--mobile-size-2 {
    width: 3rem;
    height: 3rem;
  }

  .video-slide__play__btn--mobile-size-3,
  .video-slide__play__btn--mobile-size-4 {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@keyframes ripple {
  0% {
    opacity: 0;
    transform: none;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.image-slide__desc p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}
.image-slide__desc {
  padding: 1rem;
}
.logo-list__heading .title {
  text-align: center;
  margin-top: 0;
}

.logo-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem;
}

.logo-list__item--gray img {
  filter: grayscale(1);
  opacity: 0.8;
}

@media screen and (min-width: 750px) {
  .logo-list-container-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 3rem;
  }
  .logo-list-container-horizontal .title {
    margin-bottom: 0;
  }

  .logo-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 750px) {
  .logo-list__item img {
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
  }
}
.blog-articles {
  display: grid;
  grid-gap: 1rem;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}

.blog-articles .card-wrapper {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .blog-articles {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing); 
  }

  .blog-articles--collage > *:nth-child(3n + 1),
  .blog-articles--collage > *:nth-child(3n + 2):last-child {
    grid-column: span 2;
    text-align: center;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .card,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .card {
    text-align: center;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--small .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--small .ratio::before {
    padding-bottom: 22rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--medium .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--medium .ratio::before {
    padding-bottom: 44rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--large .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--large .ratio::before {
    padding-bottom: 66rem;
  }
}

@media screen and (min-width: 990px) {
  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--small .ratio .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--small .ratio .ratio::before {
    padding-bottom: 27.5rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--medium .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--medium .ratio::before {
    padding-bottom: 55rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--large .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--large .ratio::before {
    padding-bottom: 82.5rem;
  }
}
.page-title {
  margin-top: 0;
}

.main-page-title {
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .main-page-title {
    margin-bottom: 4rem;
  }
}

.page-placeholder-wrapper {
  display: flex;
  justify-content: center;
}

.page-placeholder {
  width: 52.5rem;
  height: 52.5rem;
}
.product {
  margin: 0;
}

.product.grid {
  gap: 0;
}

.product--no-media {
  max-width: 57rem;
  margin: 0 auto;
}

.product__media-wrapper {
  padding-left: 0;
}

.product-media__badge {
  position: absolute;
  z-index: 1;
}

.product-media__badge--small {
  width: 15%;
}

.product-media__badge--medium {
  width: 20%;
}

.product-media__badge--large {
  width: 25%;
}

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

.product-media__badge--top-right {
  top: 1rem;
  right: 1rem;
}

.product-media__badge--top-left {
  top: 1rem;
  left: 1rem;
}

.product-media__badge--bottom-right {
  bottom: 1rem;
  right: 1rem;
}

.product-media__badge--bottom-left {
  bottom: 1rem;
  left: 1rem;
}

.product-title--uppercase {
  text-transform: uppercase;
}
.product-title--nouppercase {
  text-transform: none!important;
}

.product-page-price .price__regular .price-item--regular {
  font-size: 2.5rem;
}

.swatches-container {
  display: flex;
  column-gap: 0.5rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 7px;
}

.swatch-color {
  position: relative;
  /* border-radius: 50%; */
}

.swatch-color:hover .swatch-color__image {
  outline: 2px solid #939496;
}

.swatch-color:first-child {
  margin-left: 2.5px;
}

.swatch-color__image {
  width: var(--custom-swtach-size);
  height: var(--custom-swtach-size);
  position: relative;
  overflow: hidden;
  border: solid 0.3rem rgb(var(--color-background));
  border-radius: var(--custom-swatch-border-radius);
}

.swatch-color input:checked + .swatch-color__image {
  /* box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.3); */
  outline: 2.5px solid var(--variants-custom-color);
}

.variant_radio_label_container {
  margin: 7px 3.5px 0px 0px;
  border-radius: 2px;
  width: fit-content; 
  display: inline-block;
  /* outline: 1px solid rgba(0,0,0,0.3); */
}

.variant_radio_label_container > label {
  cursor: pointer !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  border-radius: 2px;
  /* outline-color: 1px solid rgba(0,0,0,0.3); */
  color: var(--variants-custom-color) !important;
  /* outline: 2px solid rgba(0, 0, 0, 0.3); */
}
.product-form__input input[type="radio"] + .variant_radio_label_container label:hover,
.variant_radio_label_container > label:hover {
  /* background-color: gray !important; */
  /* outline: 2.5px solid var(--variants-custom-color); */
  border-color: rgba(var(--variants-custom-color));
}

.product-form__input input[type="radio"]:checked + .variant_radio_label_container label,
.variant_radio_input:checked + .variant_radio_label_container > label {
  /* box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.3); */
  /* outline: 2.5px solid var(--variants-custom-color); */
  border-color: rgba(var(--variants-custom-color));
}

.variant_radio_input[type=radio]:disabled+div>label, .variant_radio_input[type=radio].disabled+div>label {
  border-color: rgba(0,0,0,0.1) !important;
  color: rgba(0,0,0,0.6) !important;
  text-decoration: line-through !important;
}

.variant_radio_input[type=radio]:disabled+div>label, .variant_radio_input[type=radio].disabled+div>label {
  border-color: rgba(0,0,0,0.1) !important;
  color: rgba(0,0,0,0.6) !important;
  text-decoration: line-through !important;
}

.variant_radio_input[type=radio]:disabled+div, .variant_radio_input[type=radio].disabled+div {
  outline: 1px solid rgba(0,0,0,0.2) !important;
}

.variant_radio_input[type=radio]:disabled+div>label:hover, .variant_radio_input[type=radio].disabled+div>label:hover {
  outline: 2.5px solid rgba(0,0,0,0.3);
}


.swatch-color__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.swatch-color__custom-color {
  width: 95%;
  height: 95%;
  background: var(--bg-color);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: solid 1px rgba(var(--color-foreground), 0.3);
}

.swatch-color_hidden-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.swatch-color__label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5em);
  text-align: center;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  transform: translate(-50%, 50%);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  font-size: 1.5rem;
  line-height: 2em;
  padding: 0.25em 0.65em;
  border-radius: 0.5em;
  transition: all 0.25s ease-in-out;
  white-space: nowrap;
  display: none;
}

@media (hover: hover) {
  .swatch-color:hover .swatch-color__label {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

.swatch-color__label::before {
  font-size: 1em;
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.75em;
  height: 0.5em;
  background: rgb(var(--color-foreground));
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

@media screen and (min-width: 750px) {
  .product__column-sticky {
    display: block;
    position: sticky;
    top: 3rem;
    z-index: 2;
  }

  .product--thumbnail .thumbnail-list {
    padding-right: var(--media-shadow-horizontal-offset);
  }

  .product__info-wrapper {
    padding: 0 0 0 5rem;
  }

  .product__info-wrapper--extra-padding {
    padding: 0 0 0 8rem;
  }

  .product--right .product__info-wrapper {
    padding: 0 5rem 0 0;
  }

  .product--right .product__info-wrapper--extra-padding {
    padding: 0 8rem 0 0;
  }

  .product--right .product__media-list {
    margin-bottom: 2rem;
  }

  .product__media-container .slider-buttons {
    display: none;
  }

  .swatch-color__label {
    display: block;
  }
}
.payment-badges-block {
  position: relative;
  text-align: center;
  max-height: 100%;
  max-width: 100%;
}
.payment-badges-block .list-payment {
  padding-top: 0;
}
.payment-badges {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.emoji-benefits-container p,
.emoji-benefits-container {
  font-size: 1.4rem;
  line-height: 1;
}

@media screen and (min-width: 990px) {
  .product--large:not(.product--no-media) .product__media-wrapper {
    max-width: 65%;
    width: calc(65% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--large:not(.product--no-media) .product__info-wrapper {
    padding: 0 0 0 4rem;
    max-width: 35%;
    width: calc(35% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--large:not(.product--no-media).product--right
  .product__info-wrapper {
    padding: 0 4rem 0 0;
  }

  .product--medium:not(.product--no-media) .product__media-wrapper,
  .product--small:not(.product--no-media) .product__info-wrapper {
    max-width: 55%;
    width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--medium:not(.product--no-media) .product__info-wrapper,
  .product--small:not(.product--no-media) .product__media-wrapper {
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

/* Dynamic checkout */

.shopify-payment-button__button {
  font-family: inherit;
  min-height: 4.6rem;
}

.shopify-payment-button__button [role="button"].focused,
.no-js .shopify-payment-button__button [role="button"]:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
  0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
}

.shopify-payment-button__button [role="button"]:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none !important;
}

.shopify-payment-button__button [role="button"]:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
  0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
}

.shopify-payment-button__button--unbranded {
  --color-button: var(--color-base-outline-button-labels);
  --color-button-text: var(--color-base-outline-button-labels);
  --color-button: var(--color-background);
  --alpha-button-background: 1;
}

.color-background-2 .shopify-payment-button__button--unbranded,
.color-accent-1 .shopify-payment-button__button--unbranded,
.color-accent-2 .shopify-payment-button__button--unbranded,
.color-accent-3 .shopify-payment-button__button--unbranded {
  --color-button: var(--color-background);
  --color-button-text: var(--color-foreground);
}

.color-inverse .shopify-payment-button__button--unbranded {
  --color-button: var(--color-background);
  --color-button-text: var(--color-foreground);
}

.shopify-payment-button__button--unbranded::after {
  --border-opacity: var(--buttons-border-opacity);
}

.shopify-payment-button__button--unbranded {
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  color: rgb(var(--color-button-text));
  font-size: 1.4rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  letter-spacing: 0.07rem;
}

.shopify-payment-button__button--unbranded::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}

.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: rgba(var(--color-button), var(--alpha-button-background));
}

.shopify-payment-button__more-options {
  margin: 1.6rem 0 1rem;
  font-size: 1.2rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.05rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.shopify-payment-button__button + .shopify-payment-button__button--hidden {
  display: none;
}

/* Product form */

.product-form {
  display: block;
}

.product-form__error-message-wrapper:not([hidden]) {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.product-form__error-message-wrapper svg {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.7rem;
  margin-top: 0.5rem;
}

/* Form Elements */
.product-form__input {
  flex: 0 0 100%;
  padding: 0;
  margin: 0 0 1.2rem 0;
  /* max-width: 37rem; */
  min-width: fit-content;
  border: none;
}

.product-form__input {
  margin-bottom: 10px;
}

variant-radios,
variant-selects {
  display: block;
}

.product-form__input--dropdown {
  margin-bottom: 1.6rem;
}

.product-form__input .form__label {
  padding-left: 0;
  font-weight: 600;
}

fieldset.product-form__input .form__label {
  margin-bottom: 0.2rem;
}

.product-form__input input[type="radio"] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.product-form__input input[type="radio"] + label,
.product-form__input input[type="radio"] + .variant_radio_label_container label {
  border: var(--variant-pills-border-width) solid
  rgba(var(--color-base-accent-3), var(--variant-pills-border-opacity));
  background-color: rgb(var(--color-background));
  color: rgba(var(--color-foreground));
  border-radius: var(--variant-pills-radius);
  color: rgb(var(--color-foreground));
  display: inline-block;
  /* margin: 0.7rem 0.5rem 0.2rem 0; */
  padding: 1rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}

.product-form__input input[type="radio"] +  .variant_radio_label_container label:before {
  content: " ";
  position: absolute;
  top: calc(var(--variant-pills-border-width) * -1);
  right: calc(var(--variant-pills-border-width) * -1);
  bottom: calc(var(--variant-pills-border-width) * -1);
  left: calc(var(--variant-pills-border-width) * -1);
  z-index: -1;
  border-radius: var(--variant-pills-radius);
  box-shadow: var(--variant-pills-shadow-horizontal-offset)
  var(--variant-pills-shadow-vertical-offset)
  var(--variant-pills-shadow-blur-radius)
  rgba(var(--color-shadow), var(--variant-pills-shadow-opacity));
}

.product-form__input input[type="radio"] + label:hover {
  border-color: rgb(var(--color-foreground));
}

.product-form__input input[type="radio"]:checked + label {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.product-form__input
input[type="radio"]:not(.disabled)
+ label
> .visually-hidden {
  display: none;
}

@media screen and (forced-colors: active) {
  .product-form__input input[type="radio"]:checked + label {
    text-decoration: underline;
  }
}

.product-form__input input[type="radio"]:checked + label::selection {
  background-color: rgba(var(--color-background), 0.3);
}

.product-form__input input[type="radio"]:disabled + label,
.product-form__input input[type="radio"].disabled + label {
  border-color: rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: line-through;
}

.product-form__input input[type="radio"].disabled:checked + label,
.product-form__input input[type="radio"]:disabled:checked + label {
  color: rgba(var(--color-background), 0.6);
}
.product-form__input input[type="radio"]:focus-visible + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* Fallback */
.product-form__input input[type="radio"].focused + label,
.no-js .shopify-payment-button__button [role="button"]:focus + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* No outline when focus-visible is available in the browser */
.no-js
.product-form__input
input[type="radio"]:focus:not(:focus-visible)
+ label {
  box-shadow: none;
}

.product-form__input .select {
  max-width: 25rem;
}

.no-js .product-form__submit.button--secondary {
  --color-button: var(--color-base-accent-1);
  --color-button-text: var(--color-base-solid-button-labels);
  --alpha-button-background: 1;
}

.product-form__submit[aria-disabled="true"]
+ .shopify-payment-button
.shopify-payment-button__button[disabled],
.product-form__submit[disabled]
+ .shopify-payment-button
.shopify-payment-button__button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

@media screen and (forced-colors: active) {
  .product-form__submit[aria-disabled="true"] {
    color: Window;
  }
}

/* Overrides */
.shopify-payment-button__more-options {
  color: rgb(var(--color-foreground));
}

.product-form__submit {
  margin-bottom: 1rem;
  font-size: 1.9rem;
}
.product-form__buttons--uppercase .product-form__submit {
  text-transform: uppercase;
}

.shopify-payment-button__button {
  letter-spacing: 0.1rem;
  font-size: 18px;
  padding-top: 0;
  padding-bottom: 0;
}

.product-form__buttons--uppercase .shopify-payment-button__button {
  text-transform: uppercase;
}

/* Product info */
 
.product__info-container > * + * {
  margin: 1.5rem 0;
}
.main-products .product__info-container > * + * {
  margin: 0rem 0;
}

.product__info-container iframe {
  max-width: 100%;
}

.product__info-container .product__description {
  padding: 16px 0 0;
}

.product__text {
  margin-bottom: 0;
}

a.product__text {
  display: block;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.9);
}

.product__text.caption-with-letter-spacing {
  text-transform: uppercase;
}

.product__title {
  word-break: break-word;
}

.product__title > * {
  margin: 0;
}

.product__title > a {
  display: none;
}

.product__title + .product__text.caption-with-letter-spacing {
  margin-top: -1.5rem;
}

.product__text.caption-with-letter-spacing + .product__title {
  margin-top: 0;
}

.product__accordion .accordion__content {
  padding: 0 1rem;
  padding-top: 1.5rem;
}

.product .price dl {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* .product .price--sold-out .price__badge-sold-out {
  background: transparent;
  color: rgb(var(--color-base-text));
  border-color: transparent;
} */

.product .price--sold-out .price__badge-sale {
  display: none;
}

@media screen and (min-width: 750px) {
  .product__info-container {
    max-width: 60rem;
  }

  .product__info-container .price--on-sale .price-item--regular {
    font-size: 1.6rem;
  }

  .product__info-container > *:first-child {
    margin-top: 0;
  }
}

.product__description-title {
  font-weight: 600;
}

.product--no-media .product__title,
.product--no-media .product__text,
.product--no-media noscript .product-form__input,
.product--no-media .product__tax,
.product--no-media .product__sku,
.product--no-media shopify-payment-terms {
  text-align: center;
}

.product--no-media .product__media-wrapper,
.product--no-media .product__info-wrapper {
  padding: 0;
}

.product__tax {
  margin-top: -1.4rem;
}

.product--no-media noscript .product-form__input,
.product--no-media .share-button {
  max-width: 100%;
}

.product--no-media fieldset.product-form__input,
.product--no-media .product-form__quantity,
.product--no-media .product-form__input--dropdown,
.product--no-media .share-button,
.product--no-media .product__view-details,
.product--no-media .product__pickup-availabilities,
.product--no-media .product-form {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product--no-media .product-form {
  flex-direction: column;
}

.product--no-media .product-form > .form {
  max-width: 30rem;
  width: 100%;
}

.product--no-media .product-form__quantity,
.product--no-media .product-form__input--dropdown {
  flex-direction: column;
  max-width: 100%;
}

.product-form__quantity .form__label {
  margin-bottom: 0.6rem;
  line-height: 1;
}

.product-form__quantity-top .form__label {
  margin-bottom: 1.2rem;
}

.product--no-media fieldset.product-form__input {
  flex-wrap: wrap;
  margin: 0 auto 1.2rem auto;
}

.product--no-media .product__info-container > modal-opener {
  display: block;
  text-align: center;
}

.product--no-media .product-popup-modal__button {
  padding-right: 0;
}

.product--no-media .price {
  text-align: center;
}

/* Product media */
.product__media-list video {
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

@media screen and (max-width: 749px) {
  .product__media-list {
    margin-left: -2.5rem;
    margin-bottom: 3rem;
    width: calc(100% + 4rem);
  }

  .product__media-wrapper slider-component:not(.thumbnail-slider--no-slide) {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .slider.product__media-list::-webkit-scrollbar {
    height: 0.2rem;
    width: 0.2rem;
  }

  .product__media-list::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-foreground));
  }

  .product__media-list::-webkit-scrollbar-track {
    background-color: rgba(var(--color-foreground), 0.2);
  }

  .product__media-list .product__media-item {
    width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
  }

  .product--mobile-columns .product__media-item {
    width: calc(50% - 1.5rem - var(--grid-mobile-horizontal-spacing));
  }
}

@media screen and (min-width: 750px) {
  .product--thumbnail .product__media-list,
  .product--thumbnail_slider .product__media-list {
    padding-bottom: calc(
            var(--media-shadow-vertical-offset) * var(--media-shadow-visible)
    );
  }

  .product__media-list {
    padding-right: calc(
            var(--media-shadow-horizontal-offset) * var(--media-shadow-visible)
    );
  }

  .product--thumbnail .product__media-item:not(.is-active),
  .product--thumbnail_slider .product__media-item:not(.is-active) {
    display: none;
  }

  .product-media-modal__content
  > .product__media-item--variant.product__media-item--variant {
    display: none;
  }

  .product-media-modal__content > .product__media-item--variant:first-child {
    display: block;
  }
}

.product__media-item.product__media-item--variant {
  display: none;
}

.product__media-item--variant:first-child {
  display: block;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .product__media-list .product__media-item:first-child {
    padding-left: 0;
  }

  .product--thumbnail_slider .product__media-list {
    margin-left: 0;
  }

  .product__media-list .product__media-item {
    width: 100%;
  }
}

.product__media-icon .icon {
  width: 1.2rem;
  height: 1.4rem;
}

.product__media-icon,
.thumbnail__badge {
  background-color: rgb(var(--color-background));
  border-radius: 50%;
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  transition: color var(--duration-short) ease,
  opacity var(--duration-short) ease;
}

.product__media-video .product__media-icon {
  opacity: 1;
}

.product__modal-opener--image .product__media-toggle:hover {
  cursor: zoom-in;
}

.product__modal-opener:hover .product__media-icon {
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
}

@media screen and (min-width: 750px) {
  .grid__item.product__media-item--full {
    width: 100%;
  }

  .product--columns
  .product__media-item:not(.product__media-item--single):not(:only-child) {
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--large.product--columns
  .product__media-item--full
  .deferred-media__poster-button {
    height: 5rem;
    width: 5rem;
  }

  .product--medium.product--columns
  .product__media-item--full
  .deferred-media__poster-button {
    height: 4.2rem;
    width: 4.2rem;
  }

  .product--medium.product--columns
  .product__media-item--full
  .deferred-media__poster-button
  .icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .product--small.product--columns
  .product__media-item--full
  .deferred-media__poster-button {
    height: 3.6rem;
    width: 3.6rem;
  }

  .product--small.product--columns
  .product__media-item--full
  .deferred-media__poster-button
  .icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}

@media screen and (min-width: 990px) {
  .product--stacked .product__media-item {
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product:not(.product--columns)
  .product__media-list
  .product__media-item:first-child,
  .product:not(.product--columns)
  .product__media-list
  .product__media-item--full {
    width: 100%;
    max-width: 100%;
  }

  .product__modal-opener .product__media-icon {
    opacity: 0;
  }

  .product__modal-opener:hover .product__media-icon,
  .product__modal-opener:focus .product__media-icon {
    opacity: 1;
  }
}

.product__media-item > * {
  display: block;
  position: relative;
}

.product__media-toggle {
  display: flex;
  border: none;
  background-color: transparent;
  color: currentColor;
  padding: 0;
}

.product__media-toggle::after {
  content: "";
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
  bottom: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  z-index: 2;
}

.product__media-toggle:focus-visible {
  outline: 0;
  box-shadow: none;
}

/* outline styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .product__media-toggle:focus-visible,
  .product__media-toggle:focus-visible:after,
  .product-form__input input[type="radio"]:focus-visible + label {
    outline: transparent solid 1px;
    outline-offset: 2px;
  }
}
.product__media-toggle.focused {
  outline: 0;
  box-shadow: none;
}

.product__media-toggle:focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
  border-radius: var(--media-radius);
}

.product__media-toggle.focused:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
  border-radius: var(--media-radius);
}

.product-media-modal {
  background-color: rgb(var(--color-background));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.product-media-modal[open] {
  visibility: visible;
  opacity: 1;
  z-index: 101;
}

.product-media-modal__dialog {
  display: flex;
  align-items: center;
  height: 100vh;
}

.product-media-modal__content {
  max-height: 100vh;
  width: 100%;
  overflow: auto;
}

.product-media-modal__content > *:not(.active),
.product__media-list .deferred-media {
  display: none;
}

@media screen and (min-width: 750px) {
  .product-media-modal__content {
    padding-bottom: 2rem;
  }

  .product-media-modal__content > *:not(.active) {
    display: block;
  }

  .product__modal-opener:not(.product__modal-opener--image) {
    display: none;
  }

  .product__media-list .deferred-media {
    display: block;
  }
}

@media screen and (max-width: 749px) {
  .product--thumbnail
  .is-active
  .product__modal-opener:not(.product__modal-opener--image),
  .product--thumbnail_slider
  .is-active
  .product__modal-opener:not(.product__modal-opener--image) {
    display: none;
  }

  .product--thumbnail .is-active .deferred-media,
  .product--thumbnail_slider .is-active .deferred-media {
    display: block;
    width: 100%;
  }
}

.product-media-modal__content > * {
  display: block;
  height: auto;
  margin: auto;
}

.product-media-modal__content .media {
  background: none;
}

.product-media-modal__model {
  width: 100%;
}

.product-media-modal__toggle {
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  color: rgba(var(--color-foreground), 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  right: 2rem;
  padding: 1.2rem;
  position: fixed;
  z-index: 2;
  top: 2rem;
  width: 4rem;
}

.product-media-modal__content .deferred-media {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .product-media-modal__content {
    padding: 2rem 11rem;
  }

  .product-media-modal__content > * {
    width: 100%;
  }

  .product-media-modal__content > * + * {
    margin-top: 2rem;
  }

  .product-media-modal__toggle {
    right: 5rem;
    top: 2.2rem;
  }
}

@media screen and (min-width: 990px) {
  .product-media-modal__content {
    padding: 2rem 11rem;
  }

  .product-media-modal__content > * + * {
    margin-top: 1.5rem;
  }

  .product-media-modal__content {
    padding-bottom: 1.5rem;
  }

  .product-media-modal__toggle {
    right: 5rem;
  }
}

.product-media-modal__toggle:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.product-media-modal__toggle .icon {
  height: auto;
  margin: 0;
  width: 2.2rem;
}

/* Product popup */

.product-popup-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  background: rgba(var(--color-foreground), 0.2);
  height: 100%;
}

.product-popup-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}

.product-popup-modal__content {
  border-radius: var(--popup-corner-radius);
  background-color: rgb(var(--color-background));
  overflow: auto;
  height: 80%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5rem;
  width: 92%;
  position: absolute;
  top: 0;
  padding: 0 1.5rem 0 3rem;
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-style: solid;
  border-width: var(--popup-border-width);
  box-shadow: var(--popup-shadow-horizontal-offset)
  var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
  rgba(var(--color-shadow), var(--popup-shadow-opacity));
}

.product-popup-modal__content.focused {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3),
  var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset)
  var(--popup-shadow-blur-radius)
  rgba(var(--color-shadow), var(--popup-shadow-opacity));
}

.product-popup-modal__content:focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3),
  var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset)
  var(--popup-shadow-blur-radius)
  rgba(var(--color-shadow), var(--popup-shadow-opacity));
}

@media screen and (min-width: 750px) {
  .product-popup-modal__content {
    padding-right: 1.5rem;
    margin-top: 10rem;
    width: 70%;
    padding: 0 3rem;
  }

  .product-media-modal__dialog .global-media-settings--no-shadow {
    overflow: visible !important;
  }
}

.product-popup-modal__content img {
  max-width: 100%;
}

@media screen and (max-width: 749px) {
  .product-popup-modal__content table {
    display: block;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0;
  }

  .product-media-modal__dialog .global-media-settings,
  .product-media-modal__dialog .global-media-settings video,
  .product-media-modal__dialog .global-media-settings model-viewer,
  .product-media-modal__dialog .global-media-settings iframe,
  .product-media-modal__dialog .global-media-settings img {
    border: none;
    border-radius: 0;
  }
}

.product-popup-modal__opener {
  display: inline-block;
}

.product-popup-modal__button {
  font-size: 1.6rem;
  padding-right: 1.3rem;
  padding-left: 0;
  min-height: 4.4rem;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.product-popup-modal__button:hover {
  text-decoration-thickness: 0.2rem;
}

.product-popup-modal__content-info {
  padding-right: 4.4rem;
}

.product-popup-modal__content-info > * {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .product-popup-modal__content-info > * {
    max-height: 100%;
  }
}

.product-popup-modal__toggle {
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  color: rgba(var(--color-foreground), 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: sticky;
  padding: 1.2rem;
  z-index: 2;
  top: 1.5rem;
  width: 4rem;
  margin: 0 0 0 auto;
}

.product-popup-modal__toggle:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.product-popup-modal__toggle .icon {
  height: auto;
  margin: 0;
  width: 2.2rem;
}

.product__media-list .media > * {
  overflow: hidden;
}

.thumbnail-list {
  flex-wrap: wrap;
  grid-gap: 1rem;
}

/* Fix to show some space at the end of our sliders in all browsers to be applied on thumbnails */
.slider--mobile.thumbnail-list:after {
  content: none;
}

@media screen and (min-width: 750px) {
  .product--stacked .thumbnail-list {
    display: none;
  }

  .thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.thumbnail-list_item--variant:not(:first-child) {
  display: none;
}

@media screen and (min-width: 990px) {
  .thumbnail-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .product--medium .thumbnail-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .product--large .thumbnail-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .product__media-item {
    display: flex;
    align-items: center;
  }

  .product__modal-opener {
    width: 100%;
  }

  .thumbnail-slider {
    display: flex;
    align-items: center;
  }

  .thumbnail-slider .thumbnail-list.slider {
    display: flex;
    padding: 0.5rem;
    flex: 1;
    scroll-padding-left: 0.5rem;
  }

  .thumbnail-list__item.slider__slide.mobile-thumb-small {
    width: calc(20% - 0.6rem);
  }
  .thumbnail-list__item.slider__slide.mobile-thumb-medium {
    width: calc(25% - 0.6rem);
  }
  .thumbnail-list__item.slider__slide.mobile-thumb-large {
    width: calc(33% - 0.6rem);
  }
}

@media screen and (min-width: 750px) {
  .product--thumbnail_slider .thumbnail-slider {
    display: flex;
    align-items: center;
  }

  .thumbnail-slider .thumbnail-list.slider--tablet-up {
    display: flex;
    padding: 0.5rem;
    flex: 1;
    scroll-padding-left: 0.5rem;
  }

  .product__media-wrapper .slider-mobile-gutter .slider-button {
    display: none;
  }

  .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
    width: calc(25% - 0.8rem);
  }

  .product--thumbnail_slider .slider-mobile-gutter .slider-button {
    display: flex;
  }
}

@media screen and (min-width: 900px) {
  .product--small
  .thumbnail-list.slider--tablet-up
  .thumbnail-list__item.slider__slide {
    width: calc(25% - 0.8rem);
  }

  .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
    width: calc(20% - 0.8rem);
  }
}

.thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  color: rgb(var(--color-base-text));
  cursor: pointer;
  background-color: transparent;
}

.thumbnail:hover {
  opacity: 0.7;
}

.thumbnail.global-media-settings img {
  border-radius: 0;
}

.thumbnail[aria-current] {
  /* box-shadow: 0 0 0rem 0.1rem rgb(var(--color-foreground)); */
  border: 1.2px solid rgb(var(--color-foreground));
}

.image-magnify-full-size {
  cursor: zoom-out;
  z-index: 1;
  margin: 0;
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

.image-magnify-hover {
  cursor: zoom-in;
}

.product__modal-opener--image .product__media-zoom-none,
.product__media-icon--none {
  display: none;
}

@media (hover: hover) {
  .product__media-zoom-hover,
  .product__media-icon--hover {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .product__media-zoom-hover,
  .product__media-icon--hover {
    display: flex;
  }
}

.js .product__media {
  overflow: hidden !important;
}

/* .thumbnail[aria-current]:focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
} */

/* .thumbnail[aria-current]:focus,
.thumbnail.focused {
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
  0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
} */

/* outline styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  /* .thumbnail[aria-current]:focus,
  .thumbnail.focused {
    outline: transparent solid 1px;
  } */
}
/* .thumbnail[aria-current]:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground));
} */

.thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.thumbnail__badge .icon {
  width: 1rem;
  height: 1rem;
}

.thumbnail__badge .icon-3d-model {
  width: 1.2rem;
  height: 1.2rem;
}

.thumbnail__badge {
  color: rgb(var(--color-foreground), 0.6);
  height: 2rem;
  width: 2rem;
  left: auto;
  right: calc(0.4rem + var(--media-border-width));
  top: calc(0.4rem + var(--media-border-width));
}

@media screen and (min-width: 750px) {
  .product:not(.product--small) .thumbnail__badge {
    height: 3rem;
    width: 3rem;
  }

  .product:not(.product--small) .thumbnail__badge .icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .product:not(.product--small) .thumbnail__badge .icon-3d-model {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.thumbnail-list__item {
  position: relative;
}

.thumbnail-list__item::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.product:not(.featured-product) .product__view-details {
  display: none;
}

.product__view-details {
  display: block;
  text-decoration: none;
}

.product__view-details:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.product__view-details .icon {
  width: 1.2rem;
  margin-left: 1.2rem;
  flex-shrink: 0;
}

/* Inventory status */

.product__inventory {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product--no-media .product__inventory {
  justify-content: center;
}

/* This keeps the container from getting display: none; applied to it and to make sure we're not introducing some layout shift when switching to an unavailable variant */
.product__inventory.visibility-hidden:empty {
  display: block;
}

.product__inventory.visibility-hidden:empty::after {
  content: "#";
}

/* Icon with text */
.icon-with-text {
  --icon-size: calc(var(--font-heading-scale) * 3rem);
  --icon-spacing: calc(var(--font-heading-scale) * 1rem);
}

.icon-with-text--icon-medium {
  --icon-size: calc(var(--font-heading-scale) * 3.5rem);
}

.icon-with-text--icon-large {
  --icon-size: calc(var(--font-heading-scale) * 4rem);
}

.icon-with-text--horizontal {
  display: flex;
  justify-content: center;
  column-gap: 3rem;
  flex-direction: row;
}

.icon-with-text--vertical {
  --icon-size: calc(var(--font-heading-scale) * 2rem);
}

.icon-with-text--vertical.icon-with-text--icon-medium {
  --icon-size: calc(var(--font-heading-scale) * 2.5rem);
}

.icon-with-text--vertical.icon-with-text--icon-large {
  --icon-size: calc(var(--font-heading-scale) * 3rem);
}

.icon-with-text .icon {
  /* fill: rgb(var(--color-foreground)); */
  height: var(--icon-size);
  width: var(--icon-size);
}

.icon-with-text--horizontal .icon,
.icon-with-text--horizontal img {
  margin-bottom: var(--icon-spacing);
}

.icon-with-text--vertical .icon {
  min-height: var(--icon-size);
  min-width: var(--icon-size);
  margin-right: var(--icon-spacing);
}

.icon-with-text img {
  height: var(--icon-size);
  width: var(--icon-size);
  object-fit: contain;
}

.icon-with-text--vertical img {
  margin-right: var(--icon-spacing);
}

.icon-with-text--horizontal .h4 {
  padding-top: calc(var(--icon-size) + var(--icon-spacing));
  text-align: center;
}

.icon-with-text--horizontal svg + .h4,
.icon-with-text--horizontal img + .h4,
.icon-with-text--horizontal.icon-with-text--text-only .h4 {
  padding-top: 0;
}

.icon-with-text__item {
  display: flex;
  align-items: center;
}

.icon-with-text--horizontal .icon-with-text__item {
  flex-direction: column;
  width: 33%;
}

.icon-with-text--vertical .icon-with-text__item {
  margin-bottom: 0.5rem;
  gap: 5px;
}

.icon-with-text--vertical .icon-with-text__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 500px) {
  .icon-with-text--horizontal {
    column-gap: 1.5rem;
  }

  .icon-with-text--horizontal .h4 {
    font-size: calc(var(--font-heading-scale) * 1.1rem);
  }

  .icon-with-text--vertical .h4 {
    font-size: calc(var(--font-heading-scale) * 1.4rem);
  }
}

/* SKU block */

.product__sku.visibility-hidden::after {
  content: "#";
}

/* Product-thumbnail snippet */

.product-media-container {
  --aspect-ratio: var(--preview-ratio);
  --ratio-percent: calc(1 / var(--aspect-ratio) * 100%);
  position: relative;
  width: 100%;
  max-width: calc(100% - calc(var(--media-border-width) * 2));
}

@media screen and (min-width: 770px) {
  .product-media-container.media-fit-contain .media img {
    object-fit: contain;
  }
  
  .product-media-container.media-fit-cover .media img {
    object-fit: cover;
  }
}

.product-media-container .media {
  padding-top: var(--ratio-percent);
}

@media screen and (max-width: 770px) {
  .mobile-product-media .product-media-container .media {
    padding-top: calc(1 / var(--aspect-ratio) * var(--mobile_height) * 100%);
  }
}

@media screen and (min-width: 500px) {
  .product-media-container.constrain-height {
    /* arbitrary offset value based on average theme spacing and header height */
    --viewport-offset: 400px;
    --constrained-min-height: 370px;
    --constrained-height: max(
            var(--constrained-min-height),
            calc(100vh - var(--viewport-offset))
    );
    margin-right: auto;
    margin-left: auto;
  }

  .product-media-container.constrain-height.media-fit-contain {
    --contained-width: calc(var(--constrained-height) * var(--aspect-ratio));
    width: min(var(--contained-width), 100%);
  }

  .product-media-container.constrain-height .media {
    padding-top: min(var(--constrained-height), var(--ratio-percent));
  }
}

@media screen and (max-width: 749px) {
  .product-media-container.media-fit-cover {
    display: flex;
    align-self: stretch;
  }

  .product-media-container.media-fit-cover .media {
    /* allow media img element to scale relative to modal-opener/product-media-container */
    position: initial;
  }
}

@media screen and (min-width: 750px) {
  .product-media-container {
    max-width: 100%;
  }

  .product-media-container:not(.media-type-image) {
    /* override to use actual media ratio (not poster ratio) for video/models on desktop */
    --aspect-ratio: var(--ratio);
  }

  .product-media-container.constrain-height {
    --viewport-offset: 170px;
    --constrained-min-height: 500px;
  }

  .product-media-container.media-fit-cover,
  .product-media-container.media-fit-cover .product__modal-opener,
  .product-media-container.media-fit-cover .media {
    height: 100%;
  }

  .product-media-container.media-fit-cover .deferred-media__poster img {
    object-fit: cover;
    width: 100%;
  }
}

.product-media-container .product__modal-opener {
  display: block;
  position: relative;
}

@media screen and (min-width: 750px) {
  .product-media-container
  .product__modal-opener:not(.product__modal-opener--image) {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .product__info-wrapper--top-padding {
    padding-top: 1.5rem;
  }
}

/* Hybrid variant picker styles */
hybrid-variant-picker .product-form__input {
  user-select: none;
  margin-bottom: 0;
}

hybrid-variant-picker fieldset.product-form__input .swatches-container {
  margin: 0.7rem 0;
}

hybrid-variant-picker .product-form__input--dropdown {
  margin-bottom: 1.6rem;
}

hybrid-variant-picker .product-form__input--dropdown .form__label,
hybrid-variant-picker fieldset.product-form__input .form__label {
  padding-left: 0;
  font-weight: 600;
  color: var(--variants-custom-color) !important;
}

/* Make sure color swatches and dropdowns have consistent spacing */
hybrid-variant-picker
  fieldset.product-form__input
  + .product-form__input--dropdown,
hybrid-variant-picker
  .product-form__input--dropdown
  + fieldset.product-form__input {
  margin-top: 0.5rem;
}
.multicolumn .title {
  margin: 0;
}

.multicolumn.no-heading .title {
  display: none;
}

.multicolumn .title-wrapper-with-link {
  margin-top: 0;
}

@media screen and (max-width: 749px) {
  .multicolumn .title-wrapper-with-link {
    margin-bottom: 3rem;
  }

  .multicolumn .page-width {
    padding-left: 0;
    padding-right: 0;
  }
}

.multicolumn-card__image-wrapper--third-width {
  width: 33%;
}

.testimonial-card .multicolumn-card__info {
  padding: 20px 20px 20px !important;
}

.multicolumn-card__image-wrapper--half-width {
  width: 50%;
}

.multicolumn-list__item.center
  .multicolumn-card__image-wrapper:not(
    .multicolumn-card__image-wrapper--full-width
  ),
.multicolumn-list__item:only-child {
  margin-left: auto;
  margin-right: auto;
}

.multicolumn .button {
  margin-top: 1.5rem;
}

@media screen and (min-width: 750px) {
  .multicolumn .button {
    margin-top: 4rem;
  }
}

.multicolumn-list {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.multicolumn-list__item:only-child {
  max-width: 72rem;
}

.multicolumn-list__item--empty {
  display: none;
}

.multicolumn:not(.background-none) .multicolumn-card {
  background: rgb(var(--color-background));
  height: 100%;
}

.multicolumn.background-primary .multicolumn-card {
  background: rgb(var(--color-background))
    linear-gradient(
      rgba(var(--color-foreground), 0.04),
      rgba(var(--color-foreground), 0.04)
    );
}

.multicolumn-list h3 {
  line-height: calc(1 + 0.5 / max(1, var(--font-heading-scale)));
}

.multicolumn-list h3,
.multicolumn-list p {
  margin: 0;
}

.multicolumn-card-spacing {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.multicolumn-card__info > :nth-child(2) {
  margin-top: 1rem;
}

.multicolumn-list__item.center .media--adapt,
.multicolumn-list__item .media--adapt .multicolumn-card__image {
  width: auto;
}

.multicolumn-list__item.center .media--adapt img {
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 749px) {
  .multicolumn-list {
    margin: 0;
    width: 100%;
  }

  .multicolumn-list:not(.slider) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 750px) {
  .multicolumn-list.slider,
  .multicolumn-list.grid--4-col-desktop {
    padding: 0;
  }

  .multicolumn-list__item,
  .grid--4-col-desktop .multicolumn-list__item {
    padding-bottom: 0;
  }

  .background-none .grid--2-col-tablet .multicolumn-list__item {
    margin-top: 4rem;
  }
}

.background-none .multicolumn-card-spacing {
  padding: 0;
  margin: 0;
}

.multicolumn .multicolumn-card.content-container {
  padding: 2.5rem 0;
}

.multicolumn-card__info {
  padding: 2.5rem;
}

.background-none .multicolumn-card__info {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.background-none .slider .multicolumn-card__info {
  padding-bottom: 0;
}

.background-none .multicolumn-card__image-wrapper + .multicolumn-card__info {
  padding-top: 2.5rem;
}

.background-none
  .multicolumn-list:not(.slider)
  .center
  .multicolumn-card__info {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media screen and (max-width: 749px) {
  .background-none .slider .multicolumn-card__info {
    padding-bottom: 1rem;
  }

  .multicolumn.background-none .slider.slider--mobile {
    margin-bottom: 0rem;
  }
}

@media screen and (min-width: 750px) {
  .background-none .multicolumn-card__image-wrapper {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .background-none .multicolumn-list .multicolumn-card__info,
  .background-none
    .multicolumn-list:not(.slider)
    .center
    .multicolumn-card__info {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.multicolumn-card {
  position: relative;
  box-sizing: border-box;
}

.multicolumn-card
  > .multicolumn-card__image-wrapper--full-width:not(
    .multicolumn-card-spacing
  ) {
  border-top-left-radius: calc(
    var(--text-boxes-radius) - var(--text-boxes-border-width)
  );
  border-top-right-radius: calc(
    var(--text-boxes-radius) - var(--text-boxes-border-width)
  );
  overflow: hidden;
}

.multicolumn.background-none .multicolumn-card {
  border-radius: 1.5rem;
}

.multicolumn-card__info .link {
  text-decoration: none;
  font-size: inherit;
  margin-top: 1.5rem;
}

.multicolumn-card__info .icon-wrap {
  margin-left: 0.8rem;
  white-space: nowrap;
}

@media screen and (min-width: 990px) {
  .multicolumn-list__item--empty {
    display: list-item;
  }
}

.multicolumn-list.slider--mobile {
  align-items: normal;
}
.icon-bar-card__icon {
  --small-icon-size: 3rem;
  --medium-icon-size: 5rem;
  --large-icon-size: 7rem;
  padding-top: 2.5rem;
}
.icon-bar-card__icon svg {
  display: inline-block;
}
.icon-bar-card__icon--small svg {
  height: var(--small-icon-size);
  width: var(--small-icon-size);
}
.icon-bar-card__icon--small img {
  height: var(--small-icon-size);
}
.icon-bar-card__icon--small span {
  font-size: 28px;
}
.icon-bar-card__icon--medium svg {
  height: var(--medium-icon-size);
  width: var(--medium-icon-size);
}
.icon-bar-card__icon--medium img {
  height: var(--medium-icon-size);
}
.icon-bar-card__icon--medium span {
  font-size: 34px;
}
.icon-bar-card__icon--large svg {
  height: var(--large-icon-size);
  width: var(--large-icon-size);
}
.icon-bar-card__icon--large img {
  height: var(--large-icon-size);
}
.icon-bar-card__icon--large span {
  font-size: 40px;
}

.icon-bar-card__icon--accent-1 svg {
  fill: rgb(var(--color-base-accent-1));
}
.icon-bar-card__icon--accent-2 svg {
  fill: rgb(var(--color-base-accent-2));
}
.icon-bar-card__icon--text svg {
  fill: rgb(var(--color-base-text));
}

.multicolumn .multicolumn-title-with-text {
  margin-bottom: 0.5rem;
}
.multicolumn-text {
  text-align: center;
  margin-bottom: 3rem;
}
.multicolumn-text p:first-child {
  margin-top: 0;
}
.icon-bar-card .multicolumn-card__info {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

@media screen and (max-width: 749px) {
  .icon-bar-slider.slider--mobile.grid--peek.grid--1-col-tablet-down
    .grid__item,
  .icon-bar-slider.slider--tablet.grid--peek.grid--1-col-tablet-down
    .grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing) - 1.5rem);
  }
}
/* Base */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
}

body {
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-size: 1.5rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }
}

.password-modal__content-heading {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

@media only screen and (min-width: 750px) {
  .password-modal__content-heading {
    font-size: 1.8rem;
  }
}

/* Password Section */

.full-height {
  height: 100%;
}

.password {
  background-color: rgb(var(--color-background));
  height: 100%;
}

.password-link {
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
}

.password-link svg {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
}

.password-modal__content {
  padding: 4.5rem 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.password-modal__content-heading {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

@media only screen and (min-width: 750px) {
  .password-modal__content-heading {
    font-size: 1.8rem;
  }
}

.password-modal .password-form {
  max-width: 50rem;
}

.password-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  width: 100%;
}

.password-field.field {
  flex: 1 20rem;
}

.password-field .form__message {
  margin-top: 1.5rem;
}

.password-button {
  margin-top: 3rem;
  width: 100%;
}

@media only screen and (max-width: 749px) {
  .password-field--error + .password-button {
    margin-top: 1.5rem;
  }
}

@media only screen and (min-width: 750px) {
  .password-button {
    margin-top: 0;
    margin-left: 2rem;
    width: auto;
    align-self: start;
  }
}

.password-logo {
  width: 100%;
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 750px) {
  .password-logo {
    margin-bottom: 0;
  }
}

.password-heading {
  margin-top: 5rem;
  font-weight: 400;
}

.password-main {
  flex-grow: 1;
}

.password-main > section:only-child {
  height: 100%;
}

.password-main > section:only-child > .newsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 0;
}

.password-main > section:only-child .newsletter__wrapper:not(.email-signup-banner__box) {
  width: 100%;
}

.password-main > section:only-child > :not(.newsletter--narrow) > .newsletter__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.password__footer-text a {
  padding: 0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.password__footer-login {
  margin-top: 1.2rem;
  padding-bottom: 4rem;
}

.password-modal .icon-close {
  color: rgb(var(--color-foreground));
}

.password__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}

hr {
  margin: 0 !important;
}

.list-social:not(:empty) + .password__footer-caption {
  margin-top: 3rem;
}

.password__footer-caption a {
  padding: 0;
  color: rgb(var(--color-link));
}

.modal__toggle,
.modal__close-button {
  list-style-type: none;
}

details[open] .modal__toggle,
.modal__close-button {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  padding: 0.8rem;
  color: rgb(var(--color-foreground));
  background-color: transparent;
}

.no-js .modal__close-button {
  display: none;
}

.no-js .modal__toggle {
  z-index: 2;
}

.modal__toggle::-webkit-details-marker {
  display: none;
}

details.modal .modal__toggle-close {
  display: none;
}

details[open].modal .modal__toggle-close {
  background: rgb(var(--color-background));
  cursor: pointer;
  display: flex;
  padding: 0.8rem;
  z-index: 1;
}

details[open].modal .modal__toggle-close svg,
.modal__close-button svg {
  height: 1.7rem;
  width: 1.7rem;
}

details[open].modal .modal__toggle-close:hover {
  opacity: 0.75;
}

.js details[open].modal .modal__toggle-close {
  display: none;
}

details.modal .modal__toggle-open {
  display: flex;
}

.no-js details[open].modal .modal__toggle-open {
  display: none;
}

.password-header {
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: rgb(var(--color-foreground));
  max-width: var(--page-width);
  margin: 0 auto;
  text-align: center;
}

@media only screen and (min-width: 750px) {
  .password-header {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1.5fr 1fr;
    padding: 2rem 5rem 2.5rem;
    text-align: left;
  }
}

.password-header details-modal {
  flex-shrink: 0;
}

.password-content {
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .password-content {
    margin-bottom: 1.8rem;
    margin-top: 1rem;
  }
}

.shopify-name {
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.icon-shopify {
  width: 7rem;
  height: 2rem;
  vertical-align: top;
  color: rgb(var(--color-foreground));
}

password-modal {
  justify-self: flex-end;
  grid-column: 3;
}
.multicolumn .multicolumn-title-with-text {
  margin-bottom: 0.5rem;
}
.multicolumn-text {
  text-align: center;
  margin-bottom: 3rem;
}
.multicolumn-text p:first-child {
  margin-top: 0;
}

.pricing-table {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 5rem;
  padding-top: 1rem;
}

.plan-card {
  width: 100%;
  max-width: 32rem;
  box-shadow: 0.5rem 0.5rem 1.5rem rgba(var(--color-base-text), 0.3);
  position: relative;
}

.plan-card__badge {
  position: absolute;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 0;
  padding: 0 0.5em;
  border-radius: 0.2em;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plan-card__icon svg {
  fill: rgb(var(--color-foreground));
}

.plan-card .plan-card__icon--small img {
  max-width: 3rem;
  width: 100%;
}

.plan-card .plan-card__icon--small svg {
  width: 3rem;
  height: 3rem;
}

.plan-card .plan-card__icon--medium img {
  max-width: 4.5rem;
  width: 100%;
}

.plan-card .plan-card__icon--medium svg {
  width: 4.5rem;
  height: 4.5rem;
}

.plan-card .plan-card__icon--large img {
  max-width: 6rem;
  width: 100%;
}

.plan-card .plan-card__icon--large svg {
  width: 6rem;
  height: 6rem;
}

.plan-card__title {
  margin: 0;
  font-size: 2rem;
}

.pricing-plan__desc,
.pricing-plan__benefits {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.pricing-plan__benefits {
  padding-left: 2.25rem;
}

.pricing-plan__benefit-item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.pricing-plan__benefit-item__icon {
  margin-right: 0.5rem;
  color: rgb(var(--color-background));
  background: none;
  flex-shrink: 0;
  height: 2.1rem;
  display: flex;
  align-items: center;
}

.pricing-plan__benefit-item__icon svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.3rem;
}

.pricing-plan__benefit-item__text {
  font-size: 1.5rem;
  line-height: 2.1rem;
  margin: 0;
  text-align: left;
}

.plan-card-style-1 {
  padding: 3rem 0 2rem;
  border-radius: 1rem;
}

.plan-card__btn {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

.plan-card-style-1 .plan-card__icon,
.plan-card-style-2 .plan-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.plan-card-style-1 .plan-card__title,
.plan-card-style-2 .plan-card__title {
  text-align: center;
  margin: 0;
  padding: 0 2rem;
  margin-bottom: 1.25rem;
}

.plan-card-style-1 .plan-card__price-container {
  padding: 1rem 2rem;
  margin: 0 -0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2.5rem;
  box-shadow: inset 0 1.1rem 1rem -1rem rgba(255, 255, 255, 0.75),
    inset 0 -1.1rem 1rem -1rem rgba(0, 0, 0, 0.25),
    0 1.2rem 1rem -1rem rgba(0, 0, 0, 0.25);
}

.plan-card__price {
  color: rgb(var(--color-foreground));
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  text-align: center;
  line-height: 1;
}

.plan-card__price-text {
  color: rgb(var(--color-foreground));
  font-size: 1.2rem;
  display: block;
  text-align: center;
  line-height: 1;
}

.plan-card-style-2 {
  padding-bottom: 2rem;
  border-radius: 1rem;
}

.plan-card-style-2 .plan-card__top {
  padding-top: 3rem;
  border-radius: 1rem 1rem 0 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin: 0 -0.3rem;
  background: none;
}

.plan-card-style-2 .plan-card__title {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 2rem;
}

.plan-card-style-2 .plan-card__title::before {
  content: "";
  display: block;
  --circle-size: 80rem;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 1.1rem 1rem -0.75rem rgba(var(--color-base-text), 0.2);
  background: rgb(var(--color-background));
}

.plan-card-style-2 .plan-card__price-container {
  background: none;
}

.plan-card-style-2 .plan-card__price-container {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 1.25rem;
}

.plan-card-style-2 .plan-card__price-container span,
.plan-card-style-3 .plan-card__price-container span {
  display: inline;
}

.plan-card-style-3 {
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.plan-card-style-3 .plan-card__top {
  padding: 2.5rem 2rem 4.5rem;
  margin-bottom: -2.5rem;
  border-radius: 1rem;
  position: relative;
  text-align: center;
}

.plan-card-style-3 .plan-card__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.plan-card-style-3 .plan-card__price {
  font-size: 2rem;
}

.plan-card-style-3 .plan-card__bottom {
  background: rgb(var(--color-background));
  margin: 0 1rem;
  padding-bottom: 2rem;
  border-radius: 1rem;
  box-shadow: 0.5rem 0.5rem 1.5rem rgba(var(--color-base-text), 0.3);
  padding-top: 3rem;
  position: relative;
}

.plan-card-style-3 .plan-card__bottom--icon-small {
  padding-top: 4rem;
}

.plan-card-style-3 .plan-card__bottom--icon-medium {
  padding-top: 5rem;
}

.plan-card-style-3 .plan-card__bottom--icon-large {
  padding-top: 7rem;
}

.plan-card-style-3 .plan-card__icon {
  position: absolute;
  left: 2.5rem;
  top: calc(100% - 3.5rem);
  z-index: 1;
  box-shadow: 0.1rem 0.1rem 0.75rem rgba(var(--color-base-text), 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
}

.plan-card-style-3 .plan-card__icon svg {
  padding: 0.9rem;
}

..plan-card-style-3 .plan-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
}

.plan-card-style-3 .plan-card__icon--small {
  width: 3rem;
  height: 3rem;
}

.plan-card-style-3 .plan-card__icon--medium {
  width: 4.5rem;
  height: 4.5rem;
}

.plan-card-style-3 .plan-card__icon--large {
  width: 6rem;
  height: 6rem;
}

.plan-card__btn {
  background: none;
  --color-button: var(--color-background);
  --color-button-text: var(--color-foreground);
}

.plan-card__btn .button--secondary {
  --color-button-text: var(--color-background);
  --color-button: var(--color-foreground);
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1090;
  transition: width 0s, height 0s, background-color 0.3s;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0);
}
.popup-overlay--active {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  border-radius: 1.25rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  z-index: 1100;
  transition: all 0.3s ease-in-out;
  max-width: calc(100% - 1rem);
  width: 38rem;
}
.popup-modal--image {
  width: 76rem;
}
.popup-modal--image-second .popup-modal__content {
  order: -1;
}
.popup-modal__container {
  display: flex;
}
.popup-modal--active {
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
}
.popup-modal__image {
  width: 100%;
  max-width: 38rem;
  position: relative;
}
.popup-modal__image img {
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
  position: absolute;
  top: 0;
  left: 0;
}
.popup-modal__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem 2.5rem;
  background: rgb(var(--color-background));
  max-width: 38rem;
  width: 100%;
}
.popup-modal__title {
  margin: 0;
  margin-bottom: 2rem;
  z-index: 0;
  margin-top: 2rem;
}
.popup-modal__title span {
  display: block;
}
.popup-modal__title .title {
  margin: 0;
  position: relative;
  z-index: 0;
}
.popup-modal__title .title::before {
  content: "";
  display: block;
  width: 25rem;
  height: 25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(var(--color-base-accent-1), 0.1) 20%,
    rgba(0, 0, 0, 0) 60%
  );
}
.popup-modal__title__prefix,
.popup-modal__title__suffix {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}
.popup-modal__title .h2 {
  font-size: calc(var(--font-heading-scale) * 2.5rem);
}
.popup-modal__title .h1 {
  font-size: calc(var(--font-heading-scale) * 3.5rem);
}
.popup-modal__title .h0 {
  font-size: calc(var(--font-heading-scale) * 4.5rem);
}
.popup-modal__title .title {
  line-height: calc(1 + 0.2 / max (1, var(--font-heading-scale)));
}
.popup-modal__text p {
  margin-top: 0;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.popup-modal__timer p {
  margin: 0;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: var(--font-heading-weight);
}
.popup-modal__timer__minutes,
.popup-modal__timer__seconds {
  font-size: 4rem;
}
.popup-modal__timer__colon {
  font-size: 3rem;
}
.popup-modal__email-form {
  padding: 0 3rem;
  width: 100%;
}
.popup-modal .newsletter-form__message {
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}
.popup-modal .button {
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.popup-modal__close {
  cursor: pointer;
  outline: none;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 0.2rem rgba(var(--color-foreground), 0.5);
  background: rgb(var(--color-background));
  z-index: 2;
}
.popup-modal__close span {
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  background: rgba(var(--color-foreground), 0.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.popup-modal__close span:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg);
}

.popup-modal__dismiss-btn {
  border: none;
  outline: none;
  background: none;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.75);
  cursor: pointer;
  position: relative;
}
.popup-modal__dismiss-btn:hover {
  text-decoration: underline;
}

@media screen and (max-width: 50rem) {
  .popup-modal__image {
    display: none;
  }
  .popup-modal--image {
    width: 38rem;
  }
}

.success-popup-modal__text {
  margin-bottom: 1rem;
}

.popup-modal__discount-code {
  margin-bottom: 1.5rem;
  position: relative;
}

.field:hover.field::after {
  box-shadow: 0 0 0 var(--inputs-border-width)
    rgba(var(--color-foreground), var(--inputs-border-opacity));
}

.popup-modal__discount-code .field {
  align-items: center;
}

.popup-modal__discount-code .field__input {
  padding-left: 1.2rem;
  box-shadow: none;
  cursor: default;
}

.popup-modal__discount-code
  .field__input:not(:placeholder-shown)
  ~ .field__label {
  left: calc(var(--inputs-border-width) + 1.2rem);
}

.popup-modal .popup-modal__copy-btn {
  margin: 0;
  display: flex;
  align-items: center;
  min-width: auto;
  width: fit-content;
  min-height: 3.9rem;
  line-height: 1;
  margin-right: 0.4rem;
  font-size: 1.6rem;
  padding: 0 2.5rem;
}

.popup-modal__copy-btn svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.5rem;
}

.popup-modal__success-msg {
  font-size: 1.3rem;
  margin: 0;
  margin-top: 0.2rem;
  color: #00a100;
  display: none;
}
.related-products {
  display: block;
}

.related-products__heading {
  margin: 0 0 3rem;
}
.content-and-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  column-gap: 5rem;
}
.content-and-results--no-content {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 900px) {
  .content-and-results {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .content-and-results--results-first .results-container {
    order: -1;
  }
}

.content-and-results .content-container .title,
.results-container .title {
  margin-top: 0;
}
.results-container .title {
  margin-bottom: 1.9rem;
}
.content-and-results__image {
  max-width: 100%;
  margin-bottom: 1rem;
}
.content-and-results__image img {
  max-width: 100%;
}

.results__rows-container {
  margin-bottom: 1rem;
}
.results__percentage {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  position: relative;
  --border-width: 0.7rem;
  flex-shrink: 0;
  margin-right: 2rem;
  z-index: 0;
}
.results__percentage::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  z-index: -2;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgb(var(--color-base-accent-1)) 0%,
    rgb(var(--color-base-accent-1)) var(--percentage),
    rgb(var(--color-background)) var(--percentage),
    rgb(var(--color-background)) 100%
  );
}
.color-accent-1 .results__percentage::before,
.color-accent-2 .results__percentage::before {
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgb(var(--color-foreground)) 0%,
    rgb(var(--color-foreground)) var(--percentage),
    rgb(var(--color-background)) var(--percentage),
    rgb(var(--color-background)) 100%
  );
}
.results__percentage::after {
  content: "";
  display: block;
  position: absolute;
  top: var(--border-width);
  left: var(--border-width);
  bottom: var(--border-width);
  right: var(--border-width);
  border-radius: 50%;
  z-index: -1;
  background: rgb(var(--color-background));
}
.results__percentage p {
  margin: 0;
  color: rgb(var(--color-base-accent-1));
  font-size: 1.8rem;
  font-weight: 700;
}
.color-accent-1 .results__percentage p,
.color-accent-2 .results__percentage p {
  color: rgb(var(--color-foreground));
}

.results__row {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(var(--color-foreground), 0.05);
}
.results__row:first-of-type {
  border-top: 2px solid rgba(var(--color-foreground), 0.05);
}
.results__text p {
  margin: 0;
}

.results__caption p {
  margin: 0;
  font-size: 1.2rem;
}
.rich-text {
  z-index: 1;
}

.rich-text__wrapper {
  display: flex;
  justify-content: center;
  /* width: calc(100% - 4rem / var(--font-body-scale)); */
}

.rich-text:not(.rich-text--full-width) .rich-text__wrapper {
  margin: auto;
  /* width: calc(100% - 8rem / var(--font-body-scale)); */
}

.rich-text__blocks {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .rich-text__wrapper {
    width: 100%;
  }

  .rich-text__wrapper--left {
    justify-content: flex-start;
  }

  .rich-text__wrapper--right {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .rich-text__blocks {
    max-width: 500px;
  }
}

@media screen and (min-width: 768px) {
  .rich-text__blocks {
    max-width: 78rem;
  }
}

.rich-text__blocks * {
  overflow-wrap: break-word;
}

.rich-text__blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}

.rich-text__blocks > * + * {
  margin-top: 2rem;
}

.rich-text__blocks > * + a {
  margin-top: 3rem;
}

.rich-text__buttons {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 45rem;
  margin-bottom: 10px;
  word-break: break-word;
}

.rich-text__buttons--multiple > * {
  flex-grow: 1;
  min-width: 22rem;
}

.rich-text__buttons + .rich-text__buttons {
  margin-top: 1rem;
}

.rich-text__blocks.left .rich-text__buttons {
  justify-content: flex-start;
}

.rich-text__blocks.right .rich-text__buttons {
  justify-content: flex-end;
}
.testimonial-card__stars {
  font-size: 2.2rem;
  color: #ffd700;
}
.testimonial-card__author-container {
  display: flex;
    align-items: start;
    flex-direction: column;
    padding-top: 1rem;
    margin-top: .5rem;
    border-top: solid 1px rgba(var(--color-foreground), .06);
}
.multicolumn-list__item.center .testimonial-card__author-container {
  justify-content: center;
}
.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.testimonial-card__avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
}
.testimonial-card .multicolumn-card-spacing {
  padding: 0;
  margin: 0;
}
.testimonial-card__author {
  font-style: italic;
  font-weight: 600;
  font-size: 1em;
}
.testimonial-card .multicolumn-card__info {
  padding: 2rem;
  position: relative;
  padding-top: 1rem;
}
.testimonial-card__quotes {
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgb(var(--color-base-accent-2));
  transform: translateY(-50%);
  margin: 0 !important;
}
.testimonial-card__quotes img {
  width: 60%;
}

.testimonial-card__quotes--image-blank {
  width: 3.5rem;
  height: 3.5rem;
  right: 5px;
  top: 5px;
  transform: none;
}
.testimonial-card__info--no-image-no-stars h3 {
  padding: 0 3rem;
}

.testimonial-card .testimonial-card__info--image-no-stars {
  padding-top: 1.25rem;
}
.testimonial-card__info--image-no-stars .testimonial-card__quotes {
  width: 4rem;
  height: 4rem;
}

.multicolumn .testimonial-card .multicolumn-card__info h3 {
  margin-top: 0.5rem;
  font-size: calc(var(--font-heading-scale) * 1.45rem);
  margin-bottom: 1rem;
}
@charset 'UTF-8';
/* Slider */

/* Arrows */
.slider-arrow {
  outline: none;
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.slider-arrow:hover {
  opacity: 1;
}

.slider-arrow svg {
  width: 55%;
  height: 55%;
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-prev svg {
  transform: rotate(-90deg);
}

.slider-arrow-next {
  right: 0;
}

.slider-arrow-next svg {
  transform: rotate(90deg);
}

@media screen and (max-width: 750px) {
  .slider-arrow {
    width: 3rem;
    height: 3rem;
  }
  .slider-arrow-prev {
    left: 0.5rem;
  }
  .slider-arrow-next {
    right: 0.5rem;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 35px;
}

.slick-dots {
  position: absolute;
  bottom: -30px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;

  display: inline-block;

  width: 2rem;
  height: 2rem;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 2rem;
  height: 2rem;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 0.6rem;
  height: 0.6rem;
  display: block;
  border-radius: 50%;

  content: "";
  text-align: center;

  opacity: 0.25;
  background: rgb(var(--color-foreground));

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  width: 0.9rem;
  height: 0.9rem;
}
/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  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');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper,swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;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}.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);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{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,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(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,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(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,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.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-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,swiper-container:not(.swiper-watch-progress) .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)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{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-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev: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,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s 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}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.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(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.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, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance: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-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s 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:.2s transform,.2s 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:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(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-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification,swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.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}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* @media screen and (max-width: 749px) {
  .collection .grid__item:only-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
 */
@media screen and (max-width: 989px) {
  .collection .slider.slider--tablet {
    margin-bottom: 1.5rem;
  }
}

.collection .loading-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  padding: 0 1.5rem;
  opacity: 0.7;
}

@media screen and (min-width: 750px) {
  .collection .loading-overlay {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.collection.loading .loading-overlay {
  display: block;
}

.collection--empty .title-wrapper {
  margin-top: 10rem;
  margin-bottom: 15rem;
}

@media screen and (max-width: 989px) {
  .collection .slider--tablet.product-grid {
    scroll-padding-left: 1.5rem;
  }
}

.collection__description > * {
  margin: 0;
}

.collection__title.title-wrapper {
  margin-bottom: 2.5rem;
}

.collection__title .title:not(:only-child) {
  margin-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .collection__title--desktop-slider .title {
    margin-bottom: 2.5rem;
  }

  .collection__title.title-wrapper--self-padded-tablet-down {
    padding: 0 5rem;
  }

  .collection slider-component:not(.page-width-desktop) {
    padding: 0;
  }

  .collection--full-width slider-component:not(.slider-component-desktop) {
    padding: 0 1.5rem;
    max-width: none;
  }
}

.collection__view-all a:not(.link) {
  margin-top: 1rem;
}
.video-section__media {
  position: relative;
  padding-bottom: 56.25%;
}

.video-section__media.deferred-media {
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius) rgba(var(--color-shadow), var(--media-shadow-opacity));
}

.video-section__media.deferred-media:after {
  content: none;
}

.video-section__poster.deferred-media__poster:focus {
  outline-offset: 0.3rem;
}

.video-section__media iframe {
  background-color: rgba(var(--color-foreground), 0.03);
  border: 0;
}

.video-section__poster,
.video-section__media iframe,
.video-section__media video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.image-with-text .grid {
  margin-bottom: 0;
}

.image-with-text__grid {
  align-items: stretch;
}

.image-with-text .grid__item {
  position: relative;
}

@media screen and (min-width: 750px) {
  .image-with-text__grid--reverse {
    flex-direction: row-reverse;
  }
}

.image-with-text__media {
  min-height: 100%;
  overflow: visible;
}

.image-with-text__media--small {
  height: 19.4rem;
}

.image-with-text__media--medium {
  height: 29.6rem;
}

.image-with-text__media--large {
  height: 43.5rem;
}

@media screen and (min-width: 750px) {
  .image-with-text__media--small {
    height: 31.4rem;
  }

  .image-with-text__media--medium {
    height: 46rem;
  }

  .image-with-text__media--large {
    height: 69.5rem;
  }
}

.image-with-text__media--placeholder {
  position: relative;
  overflow: hidden;
}

.image-with-text__media--placeholder:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-foreground), 0.04);
}

.image-with-text__media--placeholder.image-with-text__media--adapt {
  height: 20rem;
}

@media screen and (min-width: 750px) {
  .image-with-text__media--placeholder.image-with-text__media--adapt {
    height: 30rem;
  }
}

.image-with-text__media--placeholder > svg {
  position: absolute;
  left: 50%;
  max-width: 80rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  fill: currentColor;
}

.image-with-text__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-self: center;
  padding: 3rem calc(3rem / var(--font-body-scale)) 3rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 990px) {
  .bg-is-accent-1.text-is-accent-1,
  .bg-is-accent-2.text-is-accent-2,
  .bg-is-background-1.text-is-background-1,
  .bg-is-background-2.text-is-background-2,
  .bg-is-inverse.text-is-inverse {
    padding-left: 0;
    padding-right: 0;
  }
}

.image-with-text .grid__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.image-with-text:not(.image-with-text--overlap)
  .image-with-text__media-item:after {
  border-radius: var(--media-radius);
}

.image-with-text:not(.image-with-text--overlap)
  .image-with-text__text-item:after {
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}

.image-with-text .image-with-text__media-item > * {
  border-radius: var(--media-radius);
  overflow: hidden;
}

.image-with-text .global-media-settings {
  overflow: hidden !important;

}

.image-with-text .image-with-text__text-item > * {
  border-radius: var(--text-boxes-radius);
  overflow: hidden;
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}

.image-with-text:not(.image-with-text--overlap)
  .image-with-text__media-item
  > *,
.image-with-text:not(.image-with-text--overlap)
  .image-with-text__text-item
  > * {
  box-shadow: none;
}

@media screen and (max-width: 749px) {
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid__item
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__media
    img {
    /* border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; */
  }

  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid__item
    .image-with-text__content {
    /* border-top-left-radius: 0;
    border-top-right-radius: 0; */
  }

  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .image-with-text__content {
    border-top: 0;
  }
}

.image-with-text__content--mobile-right > * {
  align-self: flex-end;
  text-align: right;
}

.image-with-text__content--mobile-center > * {
  align-self: center;
  text-align: center;
}

.image-with-text--overlap .image-with-text__content {
  width: 90%;
  margin: -3rem auto 0;
}

@media screen and (min-width: 750px) {
  .image-with-text__grid--reverse .image-with-text__content {
    margin-left: auto;
  }

  .image-with-text__content--bottom {
    justify-content: flex-end;
    align-self: flex-end;
  }

  .image-with-text__content--top {
    justify-content: flex-start;
    align-self: flex-start;
  }

  .image-with-text__content--desktop-right > * {
    align-self: flex-end;
    text-align: right;
  }

  .image-with-text__content--desktop-left > * {
    align-self: flex-start;
    text-align: left;
  }

  .image-with-text__content--desktop-center > * {
    align-self: center;
    text-align: center;
  }

  .image-with-text--overlap .image-with-text__text-item {
    display: flex;
    padding: 3rem 0;
  }

  .image-with-text--overlap .image-with-text__content {
    height: auto;
    width: calc(100% + 4rem);
    min-width: calc(100% + 4rem);
    margin-top: 0;
    margin-left: -4rem;
  }

  .image-with-text--overlap
    .image-with-text__grid--reverse
    .image-with-text__content {
    margin-left: 0;
    margin-right: -4rem;
  }

  .image-with-text--overlap
    .image-with-text__grid--reverse
    .image-with-text__text-item {
    justify-content: flex-end;
  }

  .image-with-text__media-item--top {
    align-self: flex-start;
  }

  .image-with-text__media-item--middle {
    align-self: center;
  }

  .image-with-text__media-item--bottom {
    align-self: flex-end;
  }

  .image-with-text__media-item--small,
  .image-with-text__media-item--large + .image-with-text__text-item {
    flex-grow: 0;
  }
  

  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__media
    img,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__text-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media-item:after,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media,
  .image-with-text.collapse-corners:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__media
    img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .grid:not(.image-with-text__grid--reverse)
    .image-with-text__content {
    border-left: 0;
  }

  .image-with-text.collapse-borders:not(.image-with-text--overlap)
    .image-with-text__grid--reverse
    .image-with-text__content {
    border-right: 0;
  }
}

.image-with-text:not(.collapse-corners, .image-with-text--overlap)
  .image-with-text__media-item {
  z-index: 2;
}

.image-with-text__content {
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  word-break: break-word;
}

@media screen and (min-width: 990px) {
  .image-with-text__content {
    padding: 6rem 7rem 7rem;
  }
}

.image-with-text__content > * + * {
  margin-top: 2rem;
}

.image-with-text__content > .image-with-text__text:empty ~ a {
  margin-top: 2rem;
}

.image-with-text__content > :first-child:is(.image-with-text__heading),
.image-with-text__text--caption + .image-with-text__heading,
.image-with-text__text--caption:first-child {
  margin-top: 0;
}

.image-with-text__content :last-child:is(.image-with-text__heading),
.image-with-text__text--caption {
  margin-bottom: 0;
}

.image-with-text__content .button + .image-with-text__text {
  margin-top: 2rem;
}

.image-with-text__content .image-with-text__text + .button {
  margin-top: 3rem;
}

.image-with-text__heading {
  margin-bottom: 0;
}

.image-with-text__text p {
  margin-top: 0;
  margin-bottom: 1rem;
}

@media screen and (max-width: 749px) {
  .collapse-padding .image-with-text__grid .image-with-text__content {
    padding-left: 0;
    padding-right: 0;
  }
  
/* .image-with-text .global-media-settings {
  border-radius: 0px;
} */
}

@media screen and (min-width: 750px) {
  .collapse-padding
    .image-with-text__grid:not(.image-with-text__grid--reverse)
    .image-with-text__content:not(.image-with-text__content--desktop-center) {
    padding-right: 0;
  }

  .collapse-padding
    .image-with-text__grid--reverse
    .image-with-text__content:not(.image-with-text__content--desktop-center) {
    padding-left: 0;
  }
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .image-with-text .grid {
    margin-left: 0;
  }
}

/*
  Multirow
  note: consider removing from this stylesheet if multirow-specific styles increase signficantly
*/
.multirow__inner {
  display: flex;
  flex-direction: column;
  row-gap: var(--grid-mobile-vertical-spacing);
}

@media screen and (min-width: 750px) {
  .multirow__inner {
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}
/*
 * This is a manifest file that"ll be compiled into application, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin"s
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You"re free to add application-wide styles to this file and they"ll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* All of these styles are used in Shopify Theme and During Preview!! */
