/** Shopify CDN: Minification failed

Line 2914:17 The "+" operator only works if there is whitespace on both sides

**/
/* Derived from base colors (theme settings) */

:root {
  --color-foreground: var(--color-base-text);
  --color-background: var(--color-base-background);
  --color-heading: var(--color-base-heading);
  --color-border: var(--color-base-border);
}

/* Primary button */

:root {
  --color-button-background: var(--color-base-accent);
  --color-button-border: var(--color-base-accent);
  --color-button-text: var(--color-base-solid-button-labels);
}

/* Secondary button */

.button--secondary {
  --color-button-background: var(--color-background);
  --color-button-border: var(--color-base-outline-button-labels);
  --color-button-text: var(--color-base-outline-button-labels);
}

/* Tertiary button */

.button--tertiary {
  --color-button-background: var(--color-background);
  --color-button-border: var(--color-border);
  --color-button-text: var(--color-base-outline-button-labels);
}

.button--primary-inverted {
  --color-button-background: var(--color-background);
  --color-button-border: var(--color-base-accent);
  --color-button-text: var(--color-base-accent);
}

/* Links */

:root {
  --color-link: var(--color-base-outline-button-labels);
}

/* Badges */

:root {
  --color-badge-background: rgba(var(--color-background), 0.95);
  --color-badge-foreground: rgb(var(--color-foreground));
  --color-badge-border: rgb(var(--color-border));
}

/* Duration */

:root {
  --duration-short: 100ms;
  --duration-default: 250ms;
  --duration-long: 500ms;
  --duration-animate: 1000ms;
  --image-position: center center;
}

/* base */

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-width-desktop {
  padding: 0;
  margin: 0 auto;
}

.w-full {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }

  .page-width--narrow {
    padding: 0 9rem;
  }

  .page-width-desktop {
    padding: 0;
  }
}

@media screen and (min-width: 990px) {
  .page-width--inner {
    padding: 0 15rem;
  }

  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }

  .page-width-desktop {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
}

.page-width--full-width {
  max-width: 100%;
  padding: 0;
}

.section+.section {
  margin-top: var(--spacing-sections-mobile);
}

@media screen and (min-width: 750px) {
  .section+.section {
    margin-top: var(--spacing-sections-desktop);
  }
}

.element-margin {
  margin-top: 5rem;
}

.element-margin-small {
  margin-top: 3rem;
}

@media screen and (min-width: 750px) {
  .element-margin {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

[data-page-rendering] .shopify-section+.shopify-section {
  content-visibility: auto;
}

.shopify-design-mode[data-page-rendering] .shopify-section+.shopify-section,
.no-js [data-page-rendering] .shopify-section+.shopify-section {
  content-visibility: visible;
}

body {
  background-color: rgb(var(--color-background));
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #484848;
}

.background-secondary {
  border-top: 0.1rem solid rgb(var(--color-border));
  padding: 4rem 0 5rem;
}

@media screen and (min-width: 750px) {
  .background-secondary {
    padding: 6rem 0 5rem;
  }
}

.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;
  list-style: none;
}

.hidden {
  display: none !important;
}

@media only screen and (min-width: 769px) {
  .desktop-hidden {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  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;
}

body.overflow-hidden {
  padding-inline-end: var(--scrollbar-width);
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.heading,
h1,
h2,
h3,
h4,
h5,
h6
.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  color: #484848;
  ;
  line-height: 1.25;
  margin: 0;
}

.h0 {
  font-size: calc(var(--font-heading-scale) * 3.6rem);
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: calc(var(--font-heading-scale) * 6rem);
  }
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 2.8rem);
  font-weight: 700;
}

@media only screen and (min-width: 750px) {

  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 3.6rem);
    font-weight: 700;
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
  font-weight: 700;
}

@media only screen and (min-width: 750px) {

  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
    font-weight: 700;
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
  font-weight: 700;
}

@media only screen and (min-width: 750px) {

  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 2rem);
    font-weight: 700;
  }
}

h4,
.h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

@media only screen and (min-width: 750px) {

  h4,
  .h4 {
    font-size: calc(var(--font-heading-scale) * 1.6rem);
  }
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

@media only screen and (min-width: 750px) {

  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

h6,
.h6 {
  color: rgba(var(--color-foreground), 0.75);
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}

[data-heading-capitalize] h1,
[data-heading-capitalize] h2,
[data-heading-capitalize] h3,
[data-heading-capitalize] .h0,
[data-heading-capitalize] .h1,
[data-heading-capitalize] .h2,
[data-heading-capitalize] .h3,
[data-heading-capitalize] .card-information__text,
[data-heading-capitalize] .bundle-products .product-title {
  text-transform: uppercase;
}

[data-heading-capitalize] .article-card__title,
[data-heading-capitalize] .article-template__navigation .h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem - 0.2rem);
  letter-spacing: 0.2em;
}

[data-heading-capitalize] .card-information__text.h4,
[data-heading-capitalize] .bundle-products .product-title {
  font-size: calc(var(--font-heading-scale) * 1.5rem - 0.2rem);
  letter-spacing: 0.2em;
}

@media only screen and (min-width: 750px) {

  [data-heading-capitalize] .article-card__title,
  [data-heading-capitalize] .article-template__navigation .h3 {
    font-size: calc(var(--font-heading-scale) * 2rem - 0.2rem);
  }

  [data-heading-capitalize] .card-information__text.h4,
  [data-heading-capitalize] .bundle-products .product-title {
    font-size: calc(var(--font-heading-scale) * 1.6rem - 0.2rem);
  }
}

blockquote {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-inline-start: 0.2rem solid rgb(var(--color-border));
  padding-inline-start: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-inline-start: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.7 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.2rem;
  }
}

.typeset0,
.typeset,
.typeset2,
.typeset3 {
  line-height: 1.25;
  color: rgb(var(--color-foreground));
}

.typeset0 {
  font-size: 1.3rem;
}

@media screen and (min-width: 750px) {
  .typeset0 {
    font-size: 1.4rem;
  }
}

.typeset {
  font-size: 1.5rem;
}

@media screen and (min-width: 750px) {
  .typeset {
    font-size: 1.6rem;
  }
}

.typeset2 {
  font-size: 1.8rem;
}

@media screen and (min-width: 750px) {
  .typeset2 {
    font-size: 2rem;
  }
}

.typeset3 {
  font-size: 2rem;
}

@media screen and (min-width: 750px) {
  .typeset3 {
    font-size: 2.4rem;
  }
}

.typeset .link,
.typeset2 .link,
.typeset3 .link {
  font-size: inherit;
}

.caption-with-letter-spacing {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.75);
}

.caption-with-letter-spacing .link {
  font-size: inherit;
  color: inherit;
}

.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));
  letter-spacing: 0.04rem;
}

.color-foreground {
  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 rgb(var(--color-border));
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgb(var(--color-border));
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.left {
  text-align: start;
}

.right {
  text-align: end;
}

@media screen and (max-width: 749px) {
  .mobile-center {
    text-align: center;
  }

  .mobile-left {
    text-align: start;
  }

  .mobile-right {
    text-align: end;
  }
}

.uppercase {
  text-transform: uppercase;
}

.light {
  opacity: 0.7;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

.link {
  font-family: inherit;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  position: relative;
  border: none;
  box-shadow: none;
  text-decoration: none;
  color: rgb(var(--color-link));
  background-color: transparent;
  background-image: linear-gradient(to top, rgb(var(--color-border)) 0px, rgb(var(--color-border)) 0px), linear-gradient(to top, transparent 0px, transparent 0px);
  background-repeat: no-repeat;
  background-position: right bottom, right bottom;
  background-size: 0% 0.1rem, 100% 0.1rem;
  transition-property: background-size;
  transition-timing-function: ease;
  transition-duration: var(--duration-default);
}

/* @media screen and (hover: hover) {
  .link:hover {
    background-position: left bottom, left bottom;
    background-size: 100% 0.1rem, 100% 0.1rem;
  }
} */

.link--text {
  color: rgb(var(--color-foreground));
}

.link--underline {
  background-image: linear-gradient(to top, rgb(var(--color-link)) 0px, rgb(var(--color-link)) 0px), linear-gradient(to top, rgb(var(--color-border)) 0px, rgb(var(--color-border)) 0px);
}

.link-with-icon {
  background-image: none;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.link-with-icon .label {
  position: relative;
}

@media screen and (hover: hover) {
  .link-with-icon .label {
    background-color: transparent;
    background-image: linear-gradient(to top, rgb(var(--color-link)) 0px, rgb(var(--color-link)) 0px), linear-gradient(to top, rgb(var(--color-border)) 0px, rgb(var(--color-border)) 0px);
    background-repeat: no-repeat;
    background-position: right bottom, right bottom;
    background-size: 0% 0.1rem, 100% 0.1rem;
    transition: background-size var(--duration-default) ease;
  }

  .link-with-icon:hover .label {
    background-position: left bottom, left bottom;
    background-size: 100% 0.1rem, 100% 0.1rem;
  }
}

.link-with-icon .icon {
  width: 2rem;
  height: 2rem;
  margin-inline-end: 1rem;
}

.circle-divider::after {
  content: '\2022';
  font-weight: 400;
  margin: 0 1.3rem 0 1.5rem;
}

.circle-divider:last-of-type::after {
  content: none;
}

.dash-divider::after {
  content: '\2014';
  font-weight: 400;
  margin: 0 1rem 0 1.2rem;
}

.dash-divider:last-of-type::after {
  content: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: rgb(var(--color-border));
  display: block;
  margin: 5rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.placeholder {
  background-color: rgba(var(--color-base-text), 0.04);
  color: rgba(var(--color-base-text), 0.55);
  fill: rgba(var(--color-base-text), 0.55);
}

details>* {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}

/* arrow animation */
@media screen and (hover: hover) {
  .animate-arrow .icon-arrow path {
    transform: translateX(-0.25rem);
    transition: transform var(--duration-default) ease;
  }

  .animate-arrow:hover .icon-arrow path {
    transform: translateX(-0.05rem);
  }
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -0.3rem;
  height: 0.6rem;
  transition: transform var(--duration-default) ease;
}

summary::-webkit-details-marker {
  display: none;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open]>summary::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: block;
  cursor: default;
  background: none;
}

.disclosure-has-popup>summary::before {
  content: none;
}

.disclosure-has-popup[open]>summary+* {
  z-index: 101;
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-keyboard-focus), 0.5);
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
.focused,
.no-js *:focus {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-keyboard-focus), 0.5);
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-keyboard-focus), 0.5);
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-keyboard-focus), 0.5);
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-keyboard-focus), 0.5);
}

.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid rgb(var(--color-keyboard-focus));
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-keyboard-focus), 0.5);
}

.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* component-title */
.title-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.title-wrapper.center {
  justify-content: center;
}

.title-wrapper.right {
  justify-content: flex-end;
}

.title-wrapper.left {
  justify-content: left;
}

.title-wrapper .title {
  margin: 0;
}

.text-bold {
  font-weight: 700;
}

.font-weight-bold {
  font-weight: 700 !important;
}


.title {
  margin: 3rem 0 2rem;
}

.title--primary {
  margin: 4rem 0;
}

@media screen and (min-width: 990px) {
  .title {
    margin: 5rem 0 3rem;
  }

  .title--primary {
    margin: 2rem 0;
  }

  .title-wrapper {
    margin-bottom: 3rem;
    align-items: center;
  }
}

.title-wrapper .link {
  font-size: 1.6rem;
  margin-top: 0;
  flex-shrink: 0;
}

.title-wrapper .link-with-icon {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-heading-scale) * 1.3rem);
  letter-spacing: 0.3rem;
  font-weight: 600;
}

.title-wrapper.right .link-with-icon .icon {
  width: 1.5rem;
}

.title-wrapper--no-margin {
  margin-bottom: 0;
}

.title-wrapper--no-heading {
  display: none;
}

@media screen and (max-width: 989px) {
  .title-wrapper--mobile-link {
    display: flex;
  }
}

[data-heading-center] .title-wrapper:not(.title-wrapper--no-heading) {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

[data-heading-center] .page-title {
  text-align: center;
}

.title .link {
  font-size: inherit;
  line-height: normal;
}

.subtitle {
  font-size: 1.6rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  letter-spacing: 0.05rem;
  color: rgba(var(--color-foreground), 0.7);
}

@media screen and (min-width: 750px) {
  .subtitle {
    font-size: 1.8rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  column-gap: var(--grid-horizontal-spacing);
  --grid-horizontal-spacing: 1rem;
}

@media screen and (min-width: 480px) {
  .grid {
    --grid-horizontal-spacing: 2rem;
  }
}

@media screen and (min-width: 750px) {
  .grid {
    --grid-horizontal-spacing: 3rem;
  }
}

.grid__item {
  padding-bottom: 0.5rem;
  flex-grow: 1;
  flex-shrink: 0;
  width: calc(25% - var(--grid-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-horizontal-spacing) / 2);
}

@media screen and (min-width: 750px) {
  .grid__item {
    padding-bottom: 1rem;
  }

  .grid__item--one-third {
    max-width: 100%;
    width: calc(33.33% - var(--grid-horizontal-spacing) / 2);
  }

  .grid__item--two-third {
    max-width: 100%;
    width: calc(66.67% - var(--grid-horizontal-spacing) / 2);
  }

  .grid__item--one-quarter {
    max-width: 100%;
    width: calc(25% - var(--grid-horizontal-spacing) / 2);
  }

  .grid__item--three-quarter {
    max-width: 100%;
    width: calc(75% - var(--grid-horizontal-spacing) / 2);
  }
}

.grid--gapless {
  margin-bottom: 0;
  --grid-horizontal-spacing: 0rem;
}

.grid--gapless .grid__item {
  padding-bottom: 0;
}

@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .grid--1-col-tablet .grid__item {
    max-width: 100%;
  }

  .grid--one-third-max.grid--2-col-tablet .grid__item {
    max-width: calc(50% - var(--grid-horizontal-spacing) / 2);
  }

  .grid--one-third-max.grid--3-col-tablet .grid__item {
    max-width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
  }
}

@media screen and (min-width: 990px) {
  .grid--one-third-max.grid--3-col-desktop .grid__item {
    max-width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
  }
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
  }
}

.grid--2-col .grid__item {
  width: calc(50% - var(--grid-horizontal-spacing) / 2);
  max-width: 100%;
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - var(--grid-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-horizontal-spacing) / 2);
  }

  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
  }

  .featuerd-blog.range .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
  }

  .featuerd-blog.range .articles-wrapper.grid {
    justify-content: center;
  }

  .grid--3p3-col-tablet .grid__item {
    width: calc(30.3% - var(--grid-horizontal-spacing) * 3 / 3.3);
  }

  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-horizontal-spacing) / 2);
  }

  .grid--2p3-col-tablet .grid__item {
    width: calc(43.48% - var(--grid-horizontal-spacing) 2 / 2.3);
  }

  .grid--1-col-tablet .grid__item {
    width: 100%;
  }
}

@media screen and (min-width: 990px) {
  .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-horizontal-spacing) * 5 / 6);
  }

  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-horizontal-spacing) * 4 / 5);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-horizontal-spacing) * 3 / 4);
  }

  .grid--4p3-col-desktop .grid__item {
    width: calc(25% - var(--grid-horizontal-spacing) * 4 / 4.3);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
  }

  .grid--3p3-col-desktop .grid__item {
    width: calc(30.3% - var(--grid-horizontal-spacing) * 3 / 3.3);
  }

  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-horizontal-spacing) / 2);
  }

  .grid--rigid.grid--6-col-desktop .grid__item {
    max-width: calc(16.66% - var(--grid-horizontal-spacing) * 5 / 6);
  }

  .grid--rigid.grid--5-col-desktop .grid__item {
    max-width: calc(20% - var(--grid-horizontal-spacing) * 4 / 5);
  }

  .grid--rigid.grid--4-col-desktop .grid__item {
    max-width: calc(25% - var(--grid-horizontal-spacing) * 3 / 4);
  }

  .grid--rigid.grid--3-col-desktop .grid__item {
    max-width: calc(33.33% - var(--grid-horizontal-spacing) * 2 / 3);
  }

  .grid--rigid.grid--2-col-desktop .grid__item {
    max-width: calc(50% - var(--grid-horizontal-spacing) / 2);
  }
}

@media screen and (min-width: 990px) {
  .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: 480px) {
  .grid--1-col-mobile .grid__item {
    max-width: 100%;
    width: 100%;
  }
}

.grid__item--vertical-align {
  align-self: center;
}

.grid__item--full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

.grid--no-gutters {
  column-gap: 0;
}

.grid--no-gutters .grid__item {
  padding-bottom: 0;
}

/* component-media */

.media-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
}

[data-lazy-image] .media-wrapper.loading,
.media-wrapper[loading] {
  position: relative;
}

[data-lazy-image] .media-wrapper.loading::before,
[data-lazy-image] .media-wrapper.loading::after,
.media-wrapper[loading]::before,
.media-wrapper[loading]::after {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.2rem;
  left: 50%;
  top: 50%;
  margin-top: -0.1rem;
  margin-left: -2.5rem;
  z-index: 1;
  background-color: rgb(var(--color-base-background));
}

[data-lazy-image] .media-wrapper.loading::before,
.media-wrapper[loading]::before {
  opacity: 1;
  background-color: rgb(var(--color-base-text));
}

[data-lazy-image] .media-wrapper.loading::after,
[data-lazy-image] .media-wrapper--small.loading::after,
.media-wrapper[loading]::after {
  animation: preloading 1.5s infinite ease;
  will-change: transform;
}

[data-lazy-image] .media-wrapper.loading img[is=lazy-image],
.media-wrapper[loading] img[is=lazy-image] {
  opacity: 0;
}

.media-wrapper--large[loading]::before,
.media-wrapper--large[loading]::after {
  width: 8rem;
  height: 0.3rem;
  margin-left: -4rem;
  margin-top: -0.15rem;
}

[data-lazy-image] .media-wrapper--small.loading::before,
[data-lazy-image] .media-wrapper--small.loading::after {
  width: 3rem;
  margin-left: -1.5rem;
}

.media {
  display: block;
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media>*:not(.zoom, .deferred-media__poster-button),
.media model-viewer,
.media>picture *:not(.zoom, .deferred-media__poster-button) {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media>img,
.media>picture img {
  backface-visibility: hidden;
  object-fit: cover;
  object-position: var(--image-position);
}

.media>img,
.media>picture {
  transition: opacity var(--duration-long) ease;
}

.media--image-contain>img,
.media--image-contain>picture img {
  object-fit: contain;
}

.media--square {
  padding-bottom: 100%;
}

.media--portrait {
  padding-bottom: 125%;
}

.media--landscape {
  padding-bottom: 66.6%;
}

.media--cropped {
  padding-bottom: 56%;
}

.media--wide {
  padding-bottom: 56.25%;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}

.media.media--hover-effect>img+img,
.media.media--hover-effect>picture+picture {
  opacity: 0;
  pointer-events: none;
  background-color: rgb(var(--color-placeholder));
}

@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}

.media .image-fit {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: var(--image-position);
}

.media--image-contain .image-fit {
  object-fit: contain;
}

.media--adapt {
  position: relative;
  height: 0;
  padding-bottom: var(--image-ratio-percent);
}

.main-collection--banner.media--adapt {
  aspect-ratio: 1/1;
  height: 100%;
}

.media--adapt .image-fit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.media--200px {
  height: 200px
}

.media--250px {
  height: 250px
}

.media--400px {
  height: 260px
}

.media--370px {
  height: 250px
}

.media--450px {
  height: 292.5px
}

.media--500px {
  height: 325px
}

.media--550px {
  height: 357.5px
}

.media--600px {
  height: 390px
}

.media--650px {
  height: 422.5px
}

.media--700px {
  height: 455px
}

.media--750px {
  height: 487.5px
}

.media--850px {
  height: 552.5px
}

.media--900px {
  height: 585px
}

.media--100vh {
  height: 100vh
}

@media screen and (min-width: 750px) {
  .media--370px {
    height: 370px
  }

  .media--400px {
    height: 400px
  }

  .media--450px {
    height: 450px
  }

  .media--500px {
    height: 500px
  }

  .media--550px {
    height: 550px
  }

  .media--600px {
    height: 600px
  }

  .media--650px {
    height: 650px
  }

  .media--700px {
    height: 700px
  }

  .media--750px {
    height: 750px
  }

  .media--850px {
    height: 850px
  }

  .media--900px {
    height: 900px
  }
}

@media screen and (max-width: 749px) {
  .media-mobile--200px {
    height: 200px
  }

  .media-mobile--250px {
    height: 250px
  }

  .media-mobile--300px {
    height: 300px
  }

  .media-mobile--400px {
    height: 400px
  }

  .media-mobile--500px {
    height: 500px
  }

  .media-mobile--600px {
    height: 600px
  }

  .media-mobile--100vh {
    height: 90vh
  }

  .media-mobile--square {
    padding-bottom: 100%;
  }

  .media-mobile--portrait {
    padding-bottom: 125%;
  }

  .media-mobile--landscape {
    padding-bottom: 66.6%;
  }

  .media-mobile--adapt {
    position: relative;
    height: 0;
    padding-bottom: var(--image-ratio-percent);
  }

  .media-mobile--adapt .image-fit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
  }

  .main-collection--banner .media-mobile--adapt {
    height: 100%;
    aspect-ratio: 1 / 1;
  }
}

deferred-media {
  display: block;
}

/* component-button */
/* Button - default */

.button,
.shopify-challenge__button {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-family: inherit;
  padding: 1rem 3rem;
  padding-top: calc(1rem + var(--font-button-baseline));
  text-decoration: none;
  border-radius: var(--button-radius);
  border: var(--button-border-width) solid rgb(var(--color-button-background));
  color: rgb(var(--color-button-text));
  background-color: rgb(var(--color-button-background));
  font-family: var(--font-button-family);
  max-width: 100%;
  min-height: 4.6rem;
  text-transform: uppercase;
  font-weight: 600;
  transition-property: color, background-color, box-shadow;
  transition-duration: var(--duration-long);
  transition-timing-function: ease;
  -webkit-appearance: none;
  appearance: none;
  overflow: hidden;
  box-shadow: var(--button-shadow-horizontal-offset) var(--button-shadow-vertical-offset) rgba(var(--color-shadow), var(--shadow-opacity));
}

.shopify-challenge__button {
  border: var(--button-border-width) solid rgb(var(--color-button-background));
}

@media screen and (min-width: 750px) {

  .button,
  .shopify-challenge__button {
    min-height: 5rem;
  }

  .button--large {
    font-size: calc(var(--font-button-size) + 2px);
    padding: 1.5rem 3rem;
    padding-top: calc(1.5rem + var(--font-button-baseline));
    min-height: 6rem;
  }
}

.button[disabled],
.button[aria-disabled=true] {
  pointer-events: none;
}

.button,
.button-label,
.shopify-challenge__button {
  font-size: var(--font-button-size);
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: unset;
  font-size: 16px;
}

.button--tertiary {
  font-size: calc(var(--font-button-size) - 1px);
  padding: 0.8rem 1.5rem;
  padding-top: calc(0.8rem + var(--font-button-baseline));
  min-width: 9rem;
  min-height: 4rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  border: none;
  box-shadow: inset 0 0 0 0.1rem rgb(var(--color-button-border));
  transition: box-shadow var(--duration-default) ease;
}

.button--small {
  font-size: max(calc(var(--font-button-size) - 2px), 1.2rem);
  padding: 0.6rem 2rem;
  padding-top: calc(0.6rem + var(--font-button-baseline));
  min-height: 4rem;
  min-width: 18rem;
}

.shopify-challenge__container .shopify-challenge__button {
  min-width: 16rem;
  margin-top: 3rem;
}

/* Button - hover */

@media screen and (hover: hover) {
  .button::after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skew(-15deg);
    background-image: linear-gradient(90deg, transparent, rgba(var(--color-button-text), 0.25), transparent);
  }

  .button--secondary::after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background-image: none;
    background-color: rgb(var(--color-button-text));
    backface-visibility: hidden;
    will-change: transform;
    transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
    transform-origin: 0% 100%;
    transition: transform var(--duration-long) ease;
  }

  .button--tertiary::after {
    content: none;
  }

  .button:hover {
    box-shadow: none;
    background-color: #c22748;
    border-color: #b82544;
    transition-delay: 0s;
  }

  .button:hover::after {
    animation: shine var(--duration-animate) ease;
  }

  .button--secondary:hover {
    color: rgb(var(--color-button-background));
    transition-delay: 0s;
  }

  .button--secondary:hover::after {
    animation: none;
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }

  .button--tertiary:hover {
    color: rgb(var(--color-button-text));
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-button-border));
    transition-delay: 0s;
  }

  .button--primary-inverted:hover {
    animation: none;
    transform: none;
  }

  @keyframes shine {
    to {
      left: 100%;
    }
  }
}

/* Button - other */

.button:disabled,
.button[aria-disabled=true],
.button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button.loading {
  color: transparent;
}

.button.loading::after {
  content: '';
  display: block;
  animation: loading var(--duration-long) infinite linear;
  border: 0.2rem solid transparent;
  border-inline-start: 0.2rem solid rgb(var(--color-button-text));
  border-radius: 100%;
  height: 2.4rem;
  width: 2.4rem;
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1.2rem;
  margin-left: -1.2rem;
  right: auto;
  bottom: auto;
  background: none;
  transform: none;
  transform-origin: unset;
}

.button--small.loading:before {
  width: 2rem;
  height: 2rem;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.button--cta {
  min-height: 4.5rem;
  background: none;
  box-shadow: none;
  min-width: auto;
  max-width: 100%;
  padding: 0;
  border: none;
  justify-content: space-between;
  text-transform: none;
  color: rgb(var(--color-link));
}

.button--cta.button--small {
  min-height: 2.7rem;
  min-width: auto;
}

.button--cta.button--small .label {
  padding-inline-end: 1rem;
  font-size: 1rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 750px) {
  .button--cta {
    min-width: 22.5rem;
  }

  .button--cta.button--large .label {
    font-size: 1.8rem;
  }
}

@media screen and (hover: hover) {
  .button--cta:hover {
    color: rgb(var(--color-link));
    background-color: transparent;
  }
}

.button--cta::before,
.button--cta::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.1rem;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  transform: none;
  border: none;
  background-image: none;
  background-color: rgb(var(--color-border));
  transition: transform var(--duration-default) ease;
}

.button--cta::before {
  transform: scaleX(0);
  transform-origin: left;
  transition-delay: 0s;
}

.button--cta::after {
  transform-origin: right;
  transition-delay: 0.25s;
}

@media screen and (hover: hover) {
  .button--cta:hover::before {
    transform: scaleX(1);
    transition-delay: 0.25s;
  }

  .button--cta:hover::after {
    transform: scaleX(0);
    transition-delay: 0s;
  }
}

.button--cta .label {
  padding-inline-end: 2rem;
  font-size: 1.6rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.04rem;
  text-align: start;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  transition: transform var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .button--cta:hover .label {
    transform: translateX(0.5rem);
  }
}

.button--cta .icon {
  fill: currentColor;
  width: 1.5rem;
  height: 1.5rem;
}

.button--cta.loading {
  color: rgb(var(--color-link));
}

.button--cta.loading::before {
  content: none;
}

.button--cta.loading::after {
  background-color: transparent;
  border-width: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: -0.8rem;
  margin-left: 0;
  left: auto;
  right: 0;
}

.button--cta.loading .icon {
  color: transparent;
}

.button--arrow {
  box-shadow: none;
  min-height: auto;
  min-width: auto;
}

/* component-form */
.field__input,
.select__select,
.customer .field input,
.customer select {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(var(--color-foreground));
  width: 100%;
  box-shadow: inset 0 0 0 0.1rem rgb(var(--color-border));
  height: 4.2rem;
  box-sizing: border-box;
  transition: box-shadow var(--duration-default) ease;
}

@media screen and (min-width: 750px) {

  .field__input,
  .select__select,
  .customer .field input,
  .customer select {
    min-height: 4.5rem;
  }
}

.select__select {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.75);
}

.select__select option {
  color: initial;
}

@media screen and (hover: hover) {

  .field__input:hover,
  .select__select:hover,
  .customer .field input:hover,
  .customer select:hover {
    box-shadow: inset 0 0 0 0.2rem rgb(var(--color-border));
  }
}

.field__input.invalid,
.select__select.invalid,
.customer .field input.invalid,
.customer select.invalid {
  box-shadow: inset 0 0 0 0.1rem var(--color-critical);
}

@media screen and (hover: hover) {

  .field__input.invalid:hover,
  .select__select.invalid:hover,
  .customer .field input.invalid:hover,
  .customer select.invalid:hover {
    box-shadow: inset 0 0 0 0.2rem var(--color-critical);
  }
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 0.2rem rgb(var(--color-border));
}

.text-area,
.select {
  display: inline-block;
  position: relative;
  width: 100%;
}

/* Select */

.select .icon-caret,
.customer select+svg {
  height: 1rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.35rem);
  right: 1rem;
}

.select__select,
.customer select {
  cursor: pointer;
  padding: 0;
  padding-inline-start: 1.5rem;
  padding-inline-end: 4rem;
  ;
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
}

.customer .field {
  display: block;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: start;
  padding: 1.5rem;
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  color: rgb(var(--color-foreground));
  opacity: 0.7;
  transition: opacity var(--duration-default) ease;
}

.field__input:focus::placeholder,
.customer .field input:focus::placeholder {
  opacity: .7;
}

.field__input:-webkit-autofill,
.customer .field input:-webkit-autofill {
  background-clip: text;
  -webkit-background-clip: text;
}

.field__input::-webkit-search-decoration,
.customer .field input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

@media screen and (hover: hover) {
  .field__button:hover {
    color: currentColor;
  }
}

.field__button::before {
  content: none;
}

.field__button>.icon {
  height: 2.5rem;
  width: 2.5rem;
}

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  padding: 1.2rem;
  min-height: 10rem;
  resize: none;
}

.text-area--resize-vertical {
  resize: vertical;
}

input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin-inline-end: 0.5rem;
  cursor: pointer;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  font-family: var(--font-body-family);
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--color-success);
}

.form__message.errors {
  color: var(--color-critical);
}

.form__message.errors .rte a {
  color: inherit;
}

.form__message.errors+.errors {
  margin-top: 1rem;
}

.form__message.errors+.errors ul {
  margin-top: 0;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: start;
}

.customer .field .form__message {
  display: none;
}

small.form__message.errors {
  display: none;
}

.form__message .icon,
.customer .form__message .icon {
  align-self: flex-start;
  height: 1.6rem;
  width: 1.6rem;
  margin-inline-end: 0.5rem;
}

.customer .field .form__message .icon {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.6rem;
}

.form-status .icon {
  width: 1.8rem;
  height: 1.8rem;
}

.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;
}

/* component-quantity */
.quantity {
  position: relative;
  width: 12rem;
  display: flex;
  align-items: center;
  --color-keyboard-focus: var(--color-border);
}

.form__label+.quantity {
  width: 14rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-border));
}

.no-js .quantity {
  height: 4rem;
  width: 10rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-border));
}

.quantity__input {
  font-family: inherit;
  color: currentColor;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0 0.5rem;
  height: 3.6rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}

.form__label+.quantity .quantity__input {
  height: 4.5rem;
}

.quantity__button {
  padding: 0;
  position: relative;
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  /* background-color: rgba(var(--color-foreground), 0.06); */
  transition: color var(--duration-default) ease;
}

.form__label+.quantity .quantity__button {
  flex: 0 0 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
}

.form__label+.quantity .quantity__button:first-child {
  margin-inline-start: 1rem;
}

.form__label+.quantity .quantity__button:last-child {
  margin-inline-end: 1rem;
}

.quantity__button::after {
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  background-color: rgb(var(--color-foreground));
  transition: transform var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .quantity__button:hover {
    /* color: rgb(var(--color-background)); */
  }

  .quantity__button:hover::after {
    /* transform: scale(1); */
  }
}

.quantity__button .icon {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  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-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity__input[type=number] {
  -moz-appearance: textfield;
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.no-js details[open] .modal__toggle {
  position: absolute;
  z-index: 101;
  height: 3.4rem;
  width: 4.4rem;
  right: 1.5rem;
}

@media screen and (min-width: 750px) {
  .no-js details[open] .modal__toggle {
    height: 4.4rem;
    right: calc(100% / 2 - 30rem);
  }
}

.modal__toggle-close {
  display: none;
}

.no-js details[open] .modal__toggle span {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgb(var(--color-background));
}

.no-js details[open] .modal__toggle .icon-close {
  display: flex;
  width: 1.2rem;
  height: 1.2rem;
}

.modal__toggle-open {
  display: flex;
}

.no-js details[open] .modal__toggle-open {
  display: none;
}

.no-js .modal__close-button {
  visibility: hidden;
}

.modal__close-button {
  padding: 1.2rem;
  height: 4.4rem;
  width: 4.4rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  color: rgb(var(--color-link));
}

.modal__close-button .icon {
  width: 2rem;
  height: 2rem;
  transition: transform var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .modal__close-button:hover .icon {
    transform: scale(0.8) rotate(90deg);
  }
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(var(--color-background));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-js details[open] .modal__content {
  overflow: visible;
}

.no-js details[open] .modal-overlay {
  display: block;
  animation: fade-in var(--duration-long) ease;
}

.no-js details[open] .modal-overlay::after {
  content: '';
  position: absolute;
  background-color: rgba(var(--color-overlay), 0.5);
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
}

/* component-cart-count-bubble */
.cart-count-bubble:empty {
  display: none;
}

.cart-count-bubble {
  position: absolute;
  /* background-color: rgb(var(--color-base-accent)); */
  color: #d7395a;
  font-family: var(--font-button-family);
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  top: .8rem;
  right: 0.1rem;
  line-height: 1;
  transition-property: opacity, transform, color, background-color;
  transition-duration: var(--duration-default);
  transition-timing-function: ease;
}

@media screen and (min-width: 750px) {
  .cart-count-bubble {
    top: 0.7rem;
  }
}

.cart-count-bubble--dot {
  top: 1.2rem;
  right: 0.8rem;
  width: 0.4rem;
  height: 0.4rem;
  background-color: rgb(var(--color-header-foreground));
}

/* section-header */
.shopify-section-header.animate , .shopify-section-announcement-sticky.animate {
  transition: transform var(--duration-default) ease;
}

/* Main Header Layout */
.header-wrapper {
  display: block;
  position: relative;
  z-index: 20;
  transition: box-shadow var(--duration-default) ease;
}

.header-wrapper--border-bottom {
  box-shadow: 0 0.1rem 0 rgba(var(--color-header-border), 0.3);
}

.header {
  display: grid;
  grid-template-areas: 'left-icon heading icons';
  grid-template-columns: 2fr 1fr 2fr;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .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 1fr auto;
    column-gap: 2rem;
  }

  .header--top-center {
    grid-template-areas:
      'left-icon heading icons'
      'navigation navigation navigation';
  }

  .header--center-split {
    grid-template-areas: 'left-icon navigation heading navigation-split icons';
    grid-template-columns: auto 1fr auto 1fr auto;
    column-gap: 2rem;
  }

  .header--center-split .header__heading {
    margin: 0 1rem;
  }

  .header--off-canvas {
    grid-template-areas: 'left-icon heading icons';
    grid-template-columns: 1fr auto 1fr;
    column-gap: 2rem;
  }

  .header--off-canvas header-drawer {
    display: block;
  }

  .header--off-canvas .header__inline-menu {
    display: none;
  }

  .header--off-canvas .header__heading,
  .header--off-canvas .header__heading-link {
    grid-area: heading;
    justify-self: center;
  }

  .header--middle-left .header__inline-menu {
    min-width: 45rem;
  }

  /* .header:not(.header--middle-left):not(.header--center-split) .header__inline-menu {
    margin-top: 1.05rem;
  } */
}

.header-wrapper>.header::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-header-background);
  background-color: rgb(var(--color-header-background));
}

.header.page-width,
.is-megamenu .page-width {
  max-width: 120rem;
  padding-inline: 1.5rem;
  padding-block: 0;
}

@media screen and (min-width: 750px) {
  .header-wrapper>.header::before {
    transition: height var(--duration-default) ease;
  }
}

.header *[tabindex='-1']:focus {
  outline: none;
}

.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: block;
  position: relative;
  word-break: break-word;
  text-decoration: none;
  padding-top: 1.55rem;
  padding-bottom: 1.15rem;
}

a.header__menu-item.header__menu-item--top.list-menu__item {
  padding: 15px 26px;
}

@media screen and (max-width:1168px) {
  a.header__menu-item.header__menu-item--top.list-menu__item {
    padding-inline: 1.5rem;
  }
}

.header__heading-link::before,
.header__heading-link::after {
  content: none;
}

.header__heading-link .h2 {
  line-height: 1;
  color: rgb(var(--color-header-foreground));
  transition: color var(--duration-default) ease;
}

@media screen and (hover: hover) {
  .header__heading-link:hover .h2 {
    color: rgb(var(--color-header-foreground), 0.7);
  }
}

.header__heading-logo {
  width: auto;
  height: auto;
  max-height: var(--image-logo-height);
}

@media screen and (min-width: 750px) {
  .header__heading-logo {
    transition: opacity var(--duration-default) ease;
  }
}

.header__heading-logo.inverse {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@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: center;
    justify-self: start;
  }

  .header--mobile-left {
    grid-template-columns: auto 2fr 1fr;
  }
}

@media screen and (min-width: 990px) {

  .header__heading,
  .header__heading-link {
    justify-self: start;
  }

  .header--top-center .header__heading-link,
  .header--top-center .header__heading,
  .header--center-split .header__heading-link,
  .header--center-split .header__heading {
    justify-self: center;
  }
}

/* Header icons */
.header__right {
  display: flex;
  margin-top: -1px;
  grid-area: icons;
  justify-self: end;
  margin-inline-end: 0;
}

.header__icon:not(.header__icon--summary),
.header__icon span:not(.cart-count-bubble) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icon span:not(.cart-count-bubble) {
  height: 100%;
}

.header__icon {
  color: rgb(var(--color-header-foreground));
  /* height: 3.4rem;
  width: 5.2rem; */
}

@media screen and (hover: hover) {
  .header__icon:hover {
    color: rgba(var(--color-header-foreground), 0.7);
  }
}

@media screen and (min-width: 750px) {
  .header__icon {
    /* height: 4.4rem; */
    transition: color var(--duration-default) ease;
    /* width: 3.2rem; */
  }
}

/* .header__icon::after {
  content: none;
} */

.header__icon .icon {
  stroke-width: var(--icon-weight);
  height: 2rem;
  width: 2rem;
  fill: none;
  vertical-align: middle;
  transition: transform var(--duration-default) ease;
  will-change: transform;
}

.header__icon .icon,
#icon-close,
#icon-search,
#icon-cart {
  overflow: visible;
}

@media screen and (hover: hover) {
  .header__icon:hover .icon {
    transform: scale(1.07);
  }
}

.header__icon--cart {
  position: relative;
}

.no-js .cart-drawer-container {
  display: none;
}

@media screen and (max-width: 989px) {
  menu-drawer~.header__right .header__icon--account {
    display: none;
  }
}

/* Search */
.header__left {
  display: flex;
  grid-area: left-icon;
  /* margin-inline-start: -1.5rem; */
}

.header__left header-menu-toggle,
.header__left--localization search-modal,
.header__left--localization>localization-form,
.header__left--localization>store-selector-form,
.header--top-center .header__left search-modal,
.header--center-split .header__left search-modal {
  display: none;
}

search-modal {
  display: inline-flex;
  line-height: 0;
}

.header--top-center .header__right search-modal,
.header--center-split .header__right search-modal,
.header--top-center .header__left--localization~.header__right search-modal,
.header--center-split .header__left--localization~.header__right search-modal {
  display: inline-flex;
}

@media screen and (min-width: 990px) {

  .header__left--localization>localization-form,
  .header__left--localization>store-selector-form,
  .header--top-center .header__left search-modal,
  .header--center-split .header__left search-modal {
    display: block;
  }

  .header--top-center .header__right search-modal,
  .header--center-split .header__right search-modal {
    /* display: none; */
  }
}

.details-modal {
  overflow: hidden;
  height: 0;
}

/* Header localization */
.header .localization-selector {
  width: auto;
  padding: 0;
  height: 3.4rem;
  color: rgb(var(--color-header-foreground));
  background-color: transparent;
  border: none;
}

@media screen and (min-width: 750px) {
  .header .localization-selector {
    height: 4.4rem;
    margin-bottom: 0;
  }
}

.header .localization-selector .icon+.label,
.header .localization-selector .new-localization+.label {
  margin-inline-start: 1rem;
}

.header .localization-selector .label {
  font-family: var(--font-navigation-family);
  font-weight: var(--font-navigation-weight);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: 0;
}

@media screen and (max-width:989px) {
  .header .localization-selector .label {
    color: #484848;
  }
}

.header .menu-drawer .localization-selector {
  color: #484848;
}

.header__left>localization-form .localization-selector+.disclosure__list,
.header__left>store-selector-form .localization-selector+.disclosure__list,
.header__right>localization-form .localization-selector+.disclosure__list,
.header__right>store-selector-form .localization-selector+.disclosure__list {
  animation-name: animateHeaderLocalization;
  top: calc(100% +0rem);
  bottom: auto;
  border: none;
  box-shadow: 0 1rem 2rem rgba(var(--color-header-foreground), 0.08);
  --color-background: var(--color-header-background);
  --color-link: var(--color-header-foreground);
}

@keyframes animateHeaderLocalization {
  0% {
    opacity: 0;
    transform: translate(-50%, -1rem);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.header__right .localization-form {
  display: none;
}

@media screen and (min-width: 990px) {
  .header__right .localization-form {
    display: block;
    padding: 0;

  }

  .header__right .header__menu-item__track {
    padding: 0 15px 0 0;
  }
}

/* Header cart drawer */
summary .header__icon--summary::after,
drawer-close-button.header__icon--summary::after,
drawer-close-button.header__icon--menu::after {
  content: '';
  position: absolute;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  transform: scale(0);
  background-color: rgba(var(--color-foreground), 0.08);
  transition: transform var(--duration-default) ease;
}

details[open].menu-opening>summary .header__icon--summary::after {
  transform: scale(1);
}

drawer-close-button.header__icon--summary,
drawer-close-button.header__icon--menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

drawer-close-button.header__icon--menu {
  left: auto;
  right: 2.3rem;
}

drawer-close-button.header__icon--summary .icon-close,
drawer-close-button.header__icon--menu .icon-close {
  height: 1.4rem;
  width: 1.4rem;
  top: 3px;
  right: 0;
  stroke-width: calc(var(--icon-weight) - 0.1px);
  color: rgb(var(--color-link));
}

/* Header menu drawer */
.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: var(--duration-default);
  stroke-width: calc(calc(var(--icon-weight) * 2) - 0.4px);
}

.header__icon--menu .icon-close {
  height: 1.4rem;
  width: 1.4rem;
  stroke-width: calc(var(--icon-weight) - 0.1px);
}

details:not([open])>.header__icon--menu .icon-close,
details[open]>.header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

details[open].menu-opening>.header__icon--menu span {
  color: rgb(var(--color-header-foreground));
  transition: color var(--duration-default) ease;
}

.js details[open]:not(.menu-opening)>.header__icon--menu .icon-close {
  visibility: hidden;
}

.js details[open]:not(.menu-opening)>.header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

/* Header menu */
.header__inline-menu {
  margin-inline-start: -1.2rem;
  grid-area: navigation;
  display: none;
}

.header__inline-menu-split {
  grid-area: navigation-split;
}

.header--top-center .header__inline-menu,
.header--top-center .header__heading-link,
.header--center-split .header__inline-menu,
.header--center-split .header__heading-link {
  margin-inline-start: 0;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
  }

  .header--top-center .header__inline-menu {
    justify-self: center;
    overflow: hidden;
  }

  .header--top-center .header__inline-menu>.list-menu--inline {
    justify-content: center;
  }

  .header--center-split .header__inline-menu:not(.header__inline-menu-split) {
    text-align: end;
  }

  .header--center-split .header__inline-menu .list-menu {
    justify-content: center;
    column-gap: 0;
  }

  .header--middle-left .header__inline-menu {
    margin-inline-start: 0;
    text-align: end;
  }
}

@media screen and (min-width: 1200px) {
  .header--center-split .header__inline-menu .list-menu {
    column-gap: 1.5rem;
  }

  .header--middle-left .header__right {
    margin-inline-start: 8rem;
  }
}

.header__menu {
  padding: 0 1rem;
}

[data-animate-image] .header__menu-item>use-animate {
  transition: none;
}

.header__menu-item {
  font-family: var(--font-navigation-family);
  font-size: var(--font-navigation-size);
  font-weight: var(--font-navigation-weight);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 1.2rem 1.5rem;
  color: rgb(var(--color-header-foreground));
  transition: color var(--duration-default) ease;
  text-transform: capitalize;
  font-size: 14px;
}

.navbar .header__menu-item {
  padding: 6px 10px;
  line-height: 1.375;
  height: fit-content;
  align-items: baseline;
  gap: 4px;
}

.btn-badge {
  background: #d7395a;
  color: white;
  padding: 5px 1rem;
  border-radius: 4px;
  margin-left: 1rem;
  font-size: 1.2rem;
  height: 2.6rem;
  display: block;
  margin-block: -1.5px;
}

.header__right.navbar .disclosure__button {
  height: fit-content;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1.375;
}

.header__right.navbar .disclosure__button:hover .label {
  color: #d7395a;
}

.header__right.navbar .disclosure__button:hover .btn-arrow {
  fill: #d7395a;
  transform: rotate(180deg);
}

.header__right.navbar .disclosure__button .btn-arrow {
  margin: 0;
  margin-left: 4px;
  margin-right: 5px;
  width: 12px;
  height: 12px;
}

.search-btn {
  padding: 6px 10px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-btn svg {
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  fill: rgb(var(--color-header-foreground));
}

.header__icon--account {
  padding: 6px 10px;
  width: fit-content;
  height: fit-content;
}

.header__icon--account svg {
  width: 18px;
  height: 22px;
  fill: rgb(var(--color-header-foreground));
}

.cart-drawer-container {
  padding: 6px 0 6px 1rem;
}

.cart-drawer-container .header__icon {
  width: fit-content;
  height: fit-content;
  top: 2.3%;
  right: 5%;
}

.cart-drawer-container .header__icon svg {
  width: 16.5px;
  font-size: 22px;
}

.mini-cart__inner .mini-cart__header .header__icon .icon {
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 769px) {
  .header__menu-item-blog {
    display: none;
  }
}

@media screen and (hover: hover) {
  .header__menu-item:hover {
    color: #d7395a;
  }
}

.header__menu-item--top .label {
  --color-border: var(--color-header-border);
  text-transform: uppercase;
  font-weight: 400;
}

@media screen and (hover: hover) {
  .header__menu-item .label {
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: right bottom, right bottom;
    background-size: 0% 0.1rem, 100% 0.1rem;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: var(--duration-default);
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
  }

  details[open].menu-opening>.header__menu-item .label,
  .no-js details[open]>.header__menu-item .label,
  .header__menu-item:hover .label {
    /* background-position: left bottom, left bottom;
    background-size: 100% 0.1rem, 100% 0.1rem; */
  }
}

.header__active-menu-item .label,
.list-menu__item--active .label {
  background-position: left bottom, left bottom;
  background-size: 100% 0.1rem, 100% 0.1rem;
}

.header__menu-item .icon-caret {
  position: static;
  height: .6rem;
  width: auto;
  display: none;
  transition: transform var(--duration-default) ease;
}

.header__submenu .icon-caret {
  margin-inline-start: 1.2rem;
  margin-top: 0.3rem;
  display: block;
}

ul.list-menu li .list-menu .header__menu-item:hover .label {
  color: black !important;
}

.mega-menu-btn a:hover {
  color: black !important;
}

.header__submenu details[open]>summary .icon-caret {
  transform: scaleY(-1);
}

@keyframes animateMenuOpen {
  0% {
    height: 0;
  }

  100% {
    height: 27rem;
  }
}

@keyframes animateOverlayOpen {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Sections */
.section--divider {
  border-top: 0.1rem solid rgb(var(--color-base-border));
}

.section--padding,
.header-section--padding {
  padding-top: calc(var(--section-padding-top) * 0.75);
  padding-bottom: calc(var(--section-padding-bottom) * 0.75);
}

.spacing-section {
  display: block;
  min-height: var(--spacing-section-mobile);
}

@media screen and (min-width: 750px) {
  .section--padding {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
  }

  .spacing-section {
    min-height: var(--spacing-section-desktop);
  }
}

@media screen and (min-width: 990px) {
  .header-section--padding {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
  }
}

.transition-body {
  position: relative;
}

.transition-body::after {
  content: '';
  display: block;
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: url(cross.svg), url(cross.png), zoom-out;
  pointer-events: none;
  transition: opacity var(--duration-long) ease;
  background-color: rgba(var(--color-overlay), 0.5);
}

#MainContent,
.shopify-section-footer {
  transition: transform var(--duration-long) ease;
}

.badge {
  border: none;
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.5rem 1rem;
  text-align: center;
  word-break: break-word;
  width: max-content;
  background-color: var(--color-badge-background);
  border-color: var(--color-badge-border);
  color: var(--color-badge-foreground);
  font-family: var(--font-button-family);
  border-radius: 0.4rem;
}

@media screen and (max-width: 990px) {
  .badge {
    /* font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    padding-top: calc(0.3rem + calc(var(--font-button-baseline) * 0.65)); */
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
}

.badge:empty {
  display: none;
}

.badge--onsale {
  color: var(--color-sale-badge);
  background-color: var(--color-sale-badge-background);
  border-color: var(--color-sale-badge-background);
}

.icon-plus-alt {
  position: relative;
}

.icon-plus-alt::before,
.icon-plus-alt::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
}

.icon-plus-alt::before {
  width: 100%;
  height: 0.1rem;
}

.icon-plus-alt::after {
  width: 0.1rem;
  height: 100%;
}

@media screen and (forced-colors: active) {
  .icon {
    color: CanvasText;
    fill: CanvasText !important;
  }
}

quick-view-drawer {
  display: none;
}

/* Animate */

use-animate {
  display: block;
}

[data-animate-image] use-animate {
  transition-duration: var(--duration-long);
  transition-timing-function: ease;
}

[data-animate-image] use-animate[data-animate^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-animate-image] use-animate[data-animate^=fade][animate],
.no-js [data-animate-image] use-animate[data-animate^=fade] {
  opacity: 1;
  transform: translateZ(0);
}

[data-animate-image] use-animate[data-animate=fade-up] {
  transform: translate3d(0, 5rem, 0);
}

/* [data-animate-image] use-animate[data-animate^=zoom-fade] .image-animate {
  opacity: 0;
} */
[data-animate-image] use-animate[data-animate=zoom-fade][animate]:not(.loading) .image-animate {
  animation: zoom-fade var(--duration-animate) ease forwards;
}

[data-animate-image] use-animate[data-animate=zoom-fade-small][animate]:not(.loading) .image-animate {
  animation: zoom-fade-small var(--duration-animate) ease forwards;
}

.no-js [data-animate-image] use-animate .image-animate {
  opacity: 1;
}

@keyframes zoom-fade {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoom-fade-small {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes appear-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear-up {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fade-out {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes preloading {

  0%,
  44%,
  88.1%,
  100% {
    transform-origin: left;
  }

  0%,
  100%,
  88% {
    transform: scaleX(0);
  }

  44.1%,
  88% {
    transform-origin: right;
  }

  33%,
  44% {
    transform: scaleX(1);
  }
}

.modal-scrollbar-measure {
  display: block;
  position: absolute;
  top: -100rem;
  width: 5rem;
  height: 5rem;
  overflow: scroll;
}

.breadcrumb {
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

.breadcrumb--divider {
  border-bottom: 0.1rem solid rgb(var(--color-border));
  padding-bottom: 0.6rem;
}

.breadcrumb .link {
  font-size: inherit;
}

.breadcrumb .link:hover {
  color: #d7395a;
}

.shopify-policy__container {
  margin-bottom: 5rem;
}

@media screen and (min-width: 750px) {
  .shopify-policy__container {
    margin-bottom: 7rem;
  }
}

/* Flickity v3.0.0 */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: pan-y;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.flickity-rtl .flickity-slider {
  left: unset;
  right: 0;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-cell {
  position: absolute;
  left: 0;
}

.flickity-rtl .flickity-cell {
  left: unset;
  right: 0;
}

.flickity-button {
  position: absolute;
  background-color: rgb(var(--color-background));
  border: none;
  color: rgb(var(--color-foreground));
}

.flickity-button:hover {
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 25%;
  top: 25%;
  width: 50%;
  height: 50%;
}

.flickity-page-dots {
  position: absolute;
  z-index: 2;
  bottom: 100%;
  padding: 0 1rem;
  background-color: rgb(var(--color-background));
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 0;
  animation: fade-in var(--duration-default) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  background-color: transparent;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 0;
}


.flickity-page-dot.is-selected {
  opacity: 1;
  background-color: #fff;
}

/* .flickity-page-dot::after {
  content: '';
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: rgb(var(--color-foreground));
  transition: transform var(--duration-default) ease;
} */

/* .flickity-page-dot.is-selected::after {
  transform: scale(1.5);
} */

/* Ambient animation */

@media (prefers-reduced-motion: no-preference) {

  .animate--ambient>img,
  .animate--ambient>svg {
    animation: animateAmbient 30s linear infinite;
  }

  @keyframes animateAmbient {
    0% {
      transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
    }

    100% {
      transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
    }
  }
}

/* Highlight text */

span[data-highlight=marker] {
  background-color: unset;
}

[animate] span[data-highlight=marker] {
  animation: 1s hlMarker 0.5s 1 normal forwards;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  background: linear-gradient(90deg, rgb(var(--color-highlight)), rgba(var(--color-highlight), 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  padding: 0.15rem;
}

@keyframes hlMarker {
  to {
    background-position: 0 0;
  }
}

span[data-highlight] {
  position: relative;
}

span[data-highlight=circle] {
  padding: 0 1rem 0;
}

span[data-highlight] mark,
span[data-highlight] mark {
  background-color: transparent;
  width: 100%;
  position: absolute;
}

span[data-highlight=circle] mark {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -43%);
}

span[data-highlight=underline] mark {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

span[data-highlight] mark svg {
  fill: none;
  color: rgb(var(--color-highlight));
  transition: stroke-dashoffset 0s 0.2s;
}

span[data-highlight=circle] mark svg {
  stroke-width: 2px;
  stroke-miterlimit: 10;
  stroke-dasharray: 338;
  stroke-dashoffset: 338;
  stroke-linecap: round;
}

[animate] span[data-highlight=circle] mark svg {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s cubic-bezier(.645, .045, .355, 1);
}

span[data-highlight=underline] mark svg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

[animate] span[data-highlight=underline] mark svg path {
  opacity: 1;
  animation: hlUnderline 1.3s cubic-bezier(.65, 0, .35, 1) forwards;
}

@keyframes hlUnderline {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

[is=scroll-snap-slider]:not(.-show-scroll-bar) {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

[is=scroll-snap-slider]:not(.-show-scroll-bar)::-webkit-scrollbar {
  display: none !important;
}

.view-all.mobile {
  display: block;
}

.view-all.desktop {
  display: none;
}


@media screen and (min-width: 769px) {
  .view-all.mobile {
    display: none;
  }

  .view-all.desktop {
    display: block;
  }
}


/* new colors */
.bg-green {
  background-color: #1e7548 !important
}

.bg-black {
  background-color: black !important;
}

.bg-spring-blue {
  background-color: #42a1ca !important;
}

.bg-aea {
  background-color: #cc3195 !important;
}

.text-white {
  color: #fff !important;
}

.bg-primary {
  background-color: var(--color-critical) !important;
}

img {
  max-width: 100%;
  display: block;

}

.survey-mask.cover .tooltip {
  margin: auto;
}

.collection-tabbing-section .view-all .button {
  display: flex;
  line-height: 1.25;
  padding-block: 1.4rem;
  background-color: white;
  border: 1px solid rgb(255, 141, 161);
}

.collection-tabbing-section .view-all .button:hover {
  color: #fff;
  background-color: #d7395a;
  border-color: #d7395a;
}

.collection-tabbing-section .slider-mobile-gutter .grid__item .media--wide {
  padding-bottom: 125.67%;
}

@media screen and (max-width:768px) {
  .section--padding.home-page {
    padding-bottom: 2rem;
  }
}

.image-with-text__grid .image-animate .placeholder {
  display: none;
}

.yotpo-sr-bottom-line-text.yotpo-sr-bottom-line-text--right-panel {
  font-size: 1.4rem !important;
  font-family: var(--font-heading-family) !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
}

.star-container svg {
  height: 1.4rem !important;
  width: 1.4rem !important;
}

.yotpo-sr-bottom-line-summary {
  align-items: center !important;
}

.star-container {
  margin-right: 5px !important;
}

/* @media screen and ( max-width: 1280px ) {
  .header.page-width , .is-megamenu .page-width {
    max-width: 96rem;
  }
} */
@media screen and (max-width:989px) {
  .navbar .header__menu-item {
    display: none;
  }

  .header__heading-link {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

}

@media screen and (max-width: 768px) {
  .search-btn {
    padding: 0.6rem 0px;
  }

  .header__icon--account {
    padding: 0.6rem 0px 0.6rem 1rem;
    width: fit-content;
    height: fit-content;
  }

  .cart-drawer-container {
    padding: 0.6rem 0 0.6rem 1rem;
  }

  /* .header.page-width , .is-megamenu .page-width {
    max-width: 54rem;
  } */
}


.mega-menu-btn a {
  line-height: 2rem;
  font-size: 1.4rem;
  color: rgb(var(--color-header-foreground));
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.search-btn:hover svg,
.header__icon--account:hover svg,
.header__icon--cart:hover svg {
  fill: #d7395a;
}

.list-menu-dropdown .header__menu-item .label {
  font-weight: 400;
}

.is-megamenu .list-menu-dropdown .header__menu-item .label {
  font-weight: 700;
}

.list-menu--inline li:last-child .list-menu-dropdown {
  right: calc((100vw - 1200px) / 2);
}

@media screen and (max-width:1200px) {
  .list-menu--inline li:last-child .list-menu-dropdown {
    right: calc((100vw - 1150px) / 2);
  }
}

@media screen and (max-width:1140px) {
  .list-menu--inline li:last-child .list-menu-dropdown {
    right: calc((100vw - 950px) / 2);
  }

  .list-menu--inline li:nth-last-child(2) .list-menu-dropdown {
    right: calc((100vw - 900px) / 2);
  }
}

.menu-mobile--open .transition-content {
  overflow: hidden;
}

/* search css  */


span.search-box__tag.search-keyword {
  background-color: #f8f8f8;
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0 .9rem 1rem 0;
}

.popular-products-list {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.search__recommendation-cover {
  display: flex;
  gap: 3rem;
  margin-inline: -1.5rem;
}

.recommendation-words {
  padding-inline: 1.5rem;
}

.search__recommendation-cover .popular-products {
  max-width: 800px;
  width: 100%;
  padding-inline: 1.5rem;
}

.popular-product-card {
  max-width: 25%;
}

.search__recommendation .popular-product-card a {
  padding: 0;
}

.popular-product-card a img {
  max-width: 170px;
  width: 100%;
  border-top-right-radius: .8rem;
  border-top-left-radius: .8rem;
}

.search-modal.modal__content {
  height: fit-content;
}

.search-modal.modal__content .search-modal__form .field {
  margin-top: 0;
  border: none;
}

.search-modal__content .search__recommendation {
  padding-bottom: 9.5rem;
}

search-modal .search-modal.modal__content {
  top: 56%;
}

.search-product-title {
  margin-block: 1rem;
  color: rgb(72, 72, 72);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

.search-product-title2 {
  margin: 0;
  color: rgb(39, 39, 39);
  font-size: 16px;
  line-height: 1.25;
  font-family: 'sofia-pro';
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.search-product-title2:hover {
  color: #d7395a;
}

.predictive-search__item--link:hover .search-product-title2,
.pradictive-search-btn p a:hover {
  color: #f16e8dff;
}

.predictive-search-results .predictive-search__search-for-button {
  display: none;
}

.shopify-section-header-sticky .search-modal.modal__content {
  top: 99%;
}

.predictive-search .predictive-search__item--link {
  flex-direction: column;
  display: flex;
  padding-inline: 0;
}

.header .search-modal.searching .predictive-search__result-group .predictive-search {
  margin: 0;
  overflow: hidden;
}

.predictive-search .predictive-search__heading {
  margin-left: 0;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: capitalize;
}

.predictive-search .predictive-search__image {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.search-modal__form .has-recommendation .search__input {
  color: rgb(0, 0, 0);
}

.predictive-search-swip .swiper-slide {
  max-width: 170px;
}

.predictive-search-results .predictive-search__result-group:first-child {
  width: 100%;
}

.predictive-search .swiper-button-next,
.predictive-search .swiper-button-prev {
  position: relative;
  box-shadow: none;
}

.pradictive-search-btn {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.pradictive-search-btn p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.25;
  color: rgb(72, 72, 72);
  font-weight: 400;
}

.pradictive-search-btn p a {
  color: rgb(39, 39, 39);
}

.pradictive-buttons {
  display: flex;
  position: relative;
}

.predictive-search .swiper-button-next {
  right: -30px;
}

.predictive-search .swiper-button-prev {
  left: -38px;
}

.predictive-search .swiper-button-next::after,
.predictive-search .swiper-button-prev::after {
  font-size: 16px;
  color: rgb(72, 72, 72);
  font-weight: 700;
}

.search-modal.modal__content.searching {
  min-height: 528px;
  height: 100%;
  padding-inline-end: 0;
}

.search-modal.searching .predictive-search {
  margin-block: 0;
  padding-top: 3rem;
}

.predictive-search-results .predictive-search__results-groups-wrapper {
  padding-bottom: 0;
}

.predictive-search .swiper-wrapper {
  margin-bottom: 3rem;
}

.pradictive-buttons .swiper-button-lock {
  display: flex;
  opacity: 0;
}

.search-modal__form .has-recommendation .search__input::placeholder {
  font-weight: 400;
}

.border-class {
  position: absolute;
  border-top: 1px solid #cecece;
  display: inline;
  width: 100%;
  top: 97.5%;
  z-index: 111;
}

.searching .border-class {
  top: 11.5%;
}

.announcement-bar.header-section--padding {
  z-index: 1;
}

.popular-product-card a img {
  aspect-ratio: 1 / 1.26;
}

@media screen and (max-width:991px) {
  search-modal .search-modal.modal__content {
    top: -58%;
  }

  .search__recommendation-cover {
    flex-direction: column;
    gap: 0;
    margin-inline: 0;
  }

  .search__recommendation .search__recommendation-cover h2.search-box__tag_title {
    margin-bottom: 1rem;
  }

  .border-class {
    z-index: 5;
  }

  .search-modal__content .search__recommendation,
  .search-modal.modal__content.searching {
    height: 100dvh;
  }

  .search__recommendation-cover .popular-products {
    padding: 0;
  }

  .popular-products-list {
    flex-direction: column;
    gap: 1rem;
    padding-left: .75rem;
    margin-bottom: 0;
  }

  .popular-product-card {
    max-width: 500px;
  }

  .search__recommendation .popular-product-card a {
    display: flex;
    gap: .75rem;
  }

  .popular-product-card a img {
    max-width: 31.4%;
    object-fit: cover;
    width: 100%;
    max-height: 85px;
  }

  .search-product-title {
    font-size: 1.2rem;
  }

  .search-product-title2 {
    font-size: 1.4rem;
  }

  .searching .border-class {
    top: 7.5%;
  }

  .header .search-modal.searching .predictive-search {
    padding-top: 2rem;
  }

  .predictive-search .swiper-wrapper {
    margin-bottom: 3rem;
    gap: 1rem;
    flex-direction: column;
  }

  .predictive-search-swip .swiper-slide {
    max-width: 500px;
    width: 100% !important;
    margin: 0;
  }

  .predictive-search .predictive-search__item--link {
    flex-direction: row;
    display: flex;
    gap: 1.75rem;
    padding-left: .75rem;
  }

  .pradictive-buttons .swiper-button-next,
  .pradictive-buttons .swiper-button-prev {
    display: none;
  }

  .predictive-search .predictive-search__image {
    max-width: 31.4%;
    max-height: 8.5rem;
  }

  .pradictive-search-btn {
    padding-bottom: 8rem;
  }

  .recommendation-words {
    margin-bottom: 1rem;
    padding-inline: 0;
  }

  .shopify-section-header-sticky .search-modal.modal__content {
    top: 0%;
  }
}

@media screen and (max-width:750px) {
  .search-modal.modal__content.modal__content {
    top: 0%;
    padding-inline-end: 0;
  }

  .search-modal.modal__content .search-modal__form .field {
    padding: 0;
  }

  .border-class {
    top: 100%;
  }

  .predictive-search .predictive-search__heading {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

@media screen and (min-width:990px) {
  .shopify-section-header-sticky .search-modal.modal__content {
    top: 99%;
  }
}

@media screen and (max-width:750px) {
  .popular-product-card a img {
    max-width: 112px;
  }
}

@media screen and (max-width:425px) {

  .popular-product-card a img,
  .predictive-search .predictive-search__image {
    max-width: 21.28%;
  }
}

.shopify-section.shopify-section-header-sticky:not(.shopify-section-header-hidden) .search-modal__form .field {
  margin-top: 0;
}

/* Subscription  */
.custom-selling-plan-new .selling-plan-custom .prod-options__title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  color: #000;
}

.custom-selling-plan-new .selling-plan-custom label.selling-plan-selector.selling_plan {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 17px 16px 18px 22px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.custom-selling-plan-new .selling-plan-custom .selling_plan div input[name="selling-plan-select"] {
  width: 18px;
  height: 18px;
  margin: 0;
  position: relative;
}

.custom-selling-plan-new .selling-plan-custom .selling_plan div .subscription {
  width: 18px;
  height: 18px;
  margin: 0;
  position: relative;
}


.custom-selling-plan-new .selling-plan-custom .selling-plan-selector label.bag-message__label {
  padding-left: 8px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #000;
}

.custom-selling-plan-new .selling-plan-custom .selling-plan-selector label.bag-message__label {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.35;
  align-items: center;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}

.custom-selling-plan-new .selling-plan-custom .selling-plan-selector__inner span.js-selling-plan-price,
.custom-selling-plan-new .selling-plan-custom .selling-plan-selector__inner span.original-price {
  font-size: 17px;
  font-weight: 700;
}

.custom-selling-plan-new .selling-plan-custom .selling-plan-wrapper .selling-plan-selector.selling_plan .skio-sub-points__item {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: flex-start;
}

.custom-selling-plan-new .selling-plan-custom ul.skio-sub-points {
  margin: 8px 0 0;
  padding: 0;
}

.custom-selling-plan-new .selling-plan-custom ul.skio-sub-points ul {
  padding: 0;
  list-style: none;
}

.custom-selling-plan-new .selling-plan-custom li.skio-sub-points__item {
  align-items: center;
  display: flex;
  gap: 17px;
  justify-content: flex-start;
  color: #05302f;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.custom-selling-plan-new .selling-plan-custom li.skio-sub-points__item svg {
  width: 13.6px;
  height: 13.6px;
}

.custom-selling-plan-new .selling-plan-custom .selling-plan-selector label.bag-message__label span.save-label {
  background-color: #d7395a;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  padding: 4px 9px;
  color: #fff;
  margin-left: 12px;
  letter-spacing: normal;
}

.custom-selling-plan-new .selling-plan-custom .selling_plan_options .animated-option {
  display: block;
  padding-top: 12px;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-selling-plan-new .selling-plan-custom .selling_plan .selling_plan_options .animated-option {
  max-height: 0;
  visibility: hidden;
  padding: 0;
  opacity: 0;
}

.custom-selling-plan-new .selling-plan-custom .selling_plan:has(div input[name="selling-plan-select"]:checked) .selling_plan_options .animated-option {
  max-height: 200px;
  visibility: visible;
  padding-top: 11px;
  opacity: 1;
}

.custom-selling-plan-new .selling-plan-custom .selling_plan:has(div input[name="bundle-selling-plan"]:checked) .selling_plan_options .animated-option {
  max-height: 200px;
  visibility: visible;
  padding-top: 21px;
  opacity: 1;
}


.custom-selling-plan-new .selling-plan-custom .selling-plan_options .animated-option {
  display: block;
  padding-top: 12px;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-selling-plan-new .selling-plan-selector .bag-message__checkbox:checked:after {
  border: 4px solid #e91e63;
}

.custom-selling-plan-new .selling-plan-wrapper .selling-plan-selector {
  border: solid 1px #e91e63;
}

.custom-selling-plan-new .selling-plan-wrapper .selling-plan-selector:has(.bag-message__checkbox:checked) {
  background: #fef4f5;
  /* border: solid 1px #e91e63; */
}

.custom-selling-plan-new .selling-plan-selector .bag-message__checkbox:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  outline: 1px solid #e91e63;
  border-radius: 50%;
  background-color: #fff;
  background-size: 12px;
  background-position: center;
  border: 6px solid #fff;
}

.custom-selling-plan-new .selling-plan-selector label.bag-message__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 9.7px;
}

.custom-selling-plan-new .selling-plan-selector .selling-plan-selector__inner {
  align-items: center;
  display: flex;
}

.custom-selling-plan-new .selling-plan-selector label.bag-message__label>span {
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 600;
  color: #05302f;
  letter-spacing: normal;
}

.custom-selling-plan-new .selling-plan-wrapper .selling-plan-selector .text-information {
  color: #e91e63;
  font-size: 13px;
  line-height: 15.6px;
  font-weight: 500 !important;
  margin-top: 5.67px;
}

.custom-selling-plan-new .selling-plan-selector label.bag-message__label .original-price,
.custom-selling-plan-new .selling-plan-selector__inner span.js-selling-plan-price,
.custom-selling-plan-new .selling-plan-selector__inner span.original-price {
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 700;
  color: #484848;
}

.custom-selling-plan-new .selling-plan-selector__inner span.js-selling-plan-price,
.selling-plan-selector__inner span.original-price {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.custom-selling-plan-new span.compare-price {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #484848b3;
  letter-spacing: 0em;
  text-decoration: line-through;
}

select.updated-selected-selling-option,
.selling_plan_wrap .update_selling_plan {
  display: block;
  padding: 9px 18px 9px 6px;
  cursor: pointer;
  width: 100%;
  margin-left: auto;
  border-radius: 4px;
  line-height: 13px;
  font-size: 12px;
  border: 2px solid #000;
  height: auto;
  color: #000000;
  font-family: var(--font-heading-inter);
  -webkit-appearance: none;
  background-image: url(down-svg.svg);
  background-position: calc(100% - 10px);
  background-repeat: no-repeat;
  outline: none;
  box-shadow: none;
}

@media screen and (max-width: 1024px) {
  .custom-selling-plan-new .selling-plan-selector__inner span.js-selling-plan-price {
    flex-wrap: wrap;
  }

  .custom-selling-plan-new .selling-plan-selector .selling-plan-selector__inner {
    align-items: start;
  }

  .custom-selling-plan-new .selling-plan-selector label.bag-message__label .original-price,
  .custom-selling-plan-new .selling-plan-selector__inner span.js-selling-plan-price,
  .custom-selling-plan-new .selling-plan-selector__inner span.original-price {
    font-size: 16px;
    line-height: 19.2px;
  }

  .custom-selling-plan-new .selling-plan-selector label.bag-message__label>span {
    width: 100%;
  }

  .custom-selling-plan-new .selling-plan-custom label.selling-plan-selector.selling_plan {
    padding: 17px 5px 18px 15px;
  }

  .custom-selling-plan-new .selling-plan-custom .selling-plan-selector label.bag-message__label {
    padding-left: 19px;
  }
}

@media screen and (max-width: 749px) {
  .custom-selling-plan-new .selling-plan-custom .selling-plan-wrapper .selling-plan-selector .select_wrap input+label {
    font-size: 12px;
  }

  .custom-selling-plan-new .selling-plan-custom .selling-plan-selector label.bag-message__label {
    padding-left: 8px;
  }

  .custom-selling-plan-new .selling-plan-selector label.bag-message__label>span {
    width: auto;
  }

  .custom-selling-plan-new .selling-plan-custom label.selling-plan-selector.selling_plan {
    padding: 17px 12px 18px 12px;
  }

  .custom-selling-plan-new .selling-plan-selector .selling-plan-selector__inner {
    align-items: center;
  }
}

@media screen and (max-width: 425px) {
  .custom-selling-plan-new .selling-plan-selector label.bag-message__label>span {
    width: 100%;
  }

  .custom-selling-plan-new .selling-plan-selector .selling-plan-selector__inner {
    align-items: start;
  }

  .custom-selling-plan-new .selling-plan-custom .selling-plan-selector label.bag-message__label {
    padding-left: 15px;
  }
}

.custom-selling-plan-new .selling-plan-wrapper .selling-plan-selector .select_wrap input+label {
  border: solid 1px #000;
  padding: 11.5px;
  display: block;
  margin: 0 5px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #000;
  width: 32.6%;
  text-align: center;
  cursor: pointer;
}

.custom-selling-plan-new .selling-plan-wrapper .select_wrap {
  position: relative;
  font-weight: 700;
  display: flex;
  align-items: start;
  margin-left: -5px;
}

.custom-selling-plan-new .selling-plan-wrapper .selling-plan-selector .select_wrap input {
  width: 0;
  height: 0;
  margin: 0;
}

.custom-selling-plan-new .selling-plan-wrapper .selling-plan-selector .select_wrap input:checked+label {
  outline: solid 1px #000;
}

.custom-selling-plan-new .selling-plan-wrapper .select_wrap span {
  margin-top: 5px;
  display: block;
}

.custom-selling-plan-new .selling-plan-wrapper .select_wrap .option-wrapper {
  display: flex;
  margin-top: 5px;
  flex-wrap: wrap;
}

.custom-selling-plan-new .selling-plan-wrapper .select_wrap::after {
  content: none !important;
}

.button.update_selling_plan {
  font-size: 12px;
  padding: 10px;
  min-height: auto;
}

/* Product subscribe */

.product-option-custom .product-subscribe-content {
  background: rgba(243, 252, 252, 1);
  border: 1px solid rgba(243, 252, 252, 1);
  padding: 12px 12px 13px 20px;
  height: auto;
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  border-radius: 10px;
  min-height: 83px;
  position: relative;
}

.product-option-custom .product-subscribe-content:has(.subscribe-checkbox:checked) {
  border-color: #1b8482;
  background: #e6f9f9;
}

.product-option-custom .product-subscribe-content .radio-check {
  margin: 0 2px 0 0;
  margin-top: 10px;
  line-height: 0;
}

.product-option-custom .product-subscribe-content .radio-check span:before {
  background: #fff;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  outline: 4px solid white;
  border: 2px solid #1b8482;
  content: "";
  display: inline-block;
}

.product-option-custom .product-subscribe-content input:checked+.radio-check span:before {
  background: #1b8482;
}

.product-option-custom label.subscribe-lablel {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-flow: column;
  margin-left: 10px;
  flex: 0 0 85%;
}

.product-option-custom span.title-variant {
  font-size: 14px;
  font-weight: 500;
  color: #05302f;
  line-height: 19px;
}

.product-subscribe .price-new {
  font-weight: bold;
}

@media screen and (max-width: 439px) {


  /* select.updated-selected-selling-option , .selling_plan_wrap .update_selling_plan{
      font-size: 14px;
      line-height: 28px;
      height: unset;
      width: 100%;
  } */
}

.recently-viewed-products-data .swiper.recent-slider.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  max-width: 100%;
  width: 100%;
}

.recently-viewed-products-data {
  margin-inline: -1.5rem;
  width: 100%;
}

.recent-slider .swiper-slide {
  max-width: 23.9rem;
}

.recent-product-title {
  text-align: center;
  display: block;
  margin-bottom: 2rem;
  border-top: 1px solid #CECECE;
  color: rgb(72, 72, 72);
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: normal;
  padding-top: 2rem;
  margin-top: 2rem;
}

.recent-slider .swiper-slide .card-wrapper .card__badge {
  display: none;
}

.recent-slider .swiper-slide .card__media {
  border-radius: .8rem;
}

.recent-slider .swiper-slide .card-information .card-information__wrapper {
  text-align: center;
  align-items: center;
}

.recent-slider .swiper-slide .card-wrapper .card-information {
  min-height: 16rem;
  background: white;
  padding: 0;
}

.recent-slider .swiper-slide .card-wrapper .card-information .price--on-button dd {
  margin-left: 0;
}

.recent-slider .swiper-slide .card-wrapper .card-information .price--on-button dl {
  margin-block: 0;
}

.recent-slider .swiper-slide .card-information__wrapper>*:not(.visually-hidden:first-child)+* {
  margin-top: 0;
}

.recent-slider .swiper-slide .card-wrapper .card-information .button--small .price--on-button {
  display: none;
}

.recent-slider .swiper-slide .card-wrapper .card-information .button--small {
  justify-content: center;
  background-color: #000;
}

.recent-slider .swiper-slide .card-wrapper {
  background: transparent;
}

.recent-slider .swiper-button-prev::after,
.recent-slider .swiper-button-next::after {
  content: ' ';
}

.recent-slider .swiper-button-prev,
.recent-slider .swiper-button-next {
  width: 3rem;
  height: 6rem;
  background: white;
  border-radius: .4rem;
  top: 43%;
  z-index: 12;
}

.recent-slider .swiper-button-prev svg,
.recent-slider .swiper-button-next svg {
  width: 1.6rem;
  height: 1.6rem;
  color: rgb(72, 72, 72);
}

.after-effect {
  position: absolute;
  left: 0;
  background: #ffffff4d;
  width: 12.5%;
  z-index: 11;
  height: 100%;
  top: 0;
}

.after-effect2 {
  position: absolute;
  right: 0;
  background: #ffffff4d;
  width: 12.5%;
  z-index: 11;
  height: 100%;
  top: 0;
}

.mini-cart__inner .mini-cart__footer {
  padding: 1.5rem;
}

.mini-cart__inner .mini-cart__actions {
  margin-inline: -1.5rem;
}

.mini-cart__inner .mini-cart__footer .subtotal {
  margin-top: 0;
  margin-bottom: 1rem;
}

.mini-cart__inner .total::before {
  content: ' ';
  margin-bottom: 2.5rem;
  border-top: 1px solid rgb(206, 206, 206);
  width: 100%;
  position: absolute;
  margin-top: -1rem;
}

.cart-drawer .mini-cart__inner .subtotal+.taxes-discounts {
  margin-top: 1rem;
}

.mini-cart__inner .mini-cart__footer .subtotal>*,
.mini-cart__inner #mini-cart-subtotal {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  color: #484848;
  font-family: 'aeonik';
}

.mini-cart__inner .taxes-discounts .tax-note {
  color: rgb(72, 72, 72);
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: normal;
}

.cart-drawer .mini-cart__footer .button-container .button {
  min-height: 5rem;
  padding: 1.4rem .5rem;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 700;
}

@media screen and (max-width:750px) {
  .menu-opening .cart-drawer {
    width: 100%;
  }

  .cart-drawer .mini-cart__inner .mini-cart__main {
    max-width: 100%;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
  }

  .mini-cart__inner .mini-cart__main cart-items {
    padding-inline: 0;
    padding-bottom: 1rem;
  }

  .cart-recommendations-swiper {
    margin-top: 3rem;
    overflow: hidden;
  }

  .product-content-price-text {
    justify-content: space-between;
  }

  .cart-recommendations-swiper .swiper-slide .product-description .button--small .small-hide {
    display: block !important;
  }

  .cart-recommendations-swiper .swiper-slide .product-description .button--small .icon {
    display: none;
  }

  .recent-slider .swiper-slide {
    max-width: 27.7rem;
  }
}

@media screen and (max-width: 500px) {

  drawer-close-button.header__icon--summary .icon-close,
  drawer-close-button.header__icon--menu .icon-close {
    top: 2px;
    right: -1.1rem;
  }
}

.survey--customer.hide,
.section-two-image.hide,
.newsletter.hide,
.page-review-carousel.hide {
  display: none;
}

.header__menu-item .btn-badge {
  display: none;
}

.product-fetures {
  border-top: 1px solid black;
  padding-block: .5rem;
  border-bottom: 1px solid black;
  margin-bottom: 1rem !important;
}

.show-email {
  display: none;
}

@media screen and (max-width:750px) {
  .product-fetures {
    order: 0;
  }

  .show-email {
    margin-top: 1rem;
    display: block;
  }

  .footer-block-image .show-email p {
    font-size: 1.4rem;
    font-family: 'aeonik';
    line-height: 1.25;
  }

  .footer-block-image .show-email p a {
    color: white;
    text-decoration: none;
  }
}

.footer.hide {
  display: none;
}

p.campaign-name {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #d7395a;
  font-family: var(--font-body-family);
}


.mini-cart__navigation li[disabled-item] * {
  pointer-events: none;
}

.mini-cart__navigation li[disabled-item] .quantity__button {
  opacity: 0;
}

.mini-cart__navigation li[disabled-item] price-money.free-price {
  color: #d7395a;
  flex: 1;
  text-align: right;
}

body.hide_subscription_box .custom-selling-plan-new,
body.hide_subscription_box .mini-cart__main purchase-option {
  display: none !important;
}

.menu-drawer__localization.has-open-menu {
  z-index: -1;
}

.search-modal .modal-overlay {
  top: auto;
  bottom: auto;
}

.step-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.step-icon {
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-row .mb-g br {
  display: none;
}

.step-text:nth-child(2) {
  margin-top: .5rem;
}

.mobile-description {
  display: none;
}

@media screen and (max-width:750px) {
  .mobile-description {
    display: block;
    margin-bottom: 1rem;
  }

  .product__description .desktop.product-checklist {
    display: none;
  }
}

.title-addition {
  margin-bottom: 10px !important;
  display: block;
}

.skio-sub-points__item li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skio-sub-points__item li::before {
  position: relative;
  content: url(mark-icon.svg);
  display: inline-flex;
  bottom: -3.5px;
}

.mobile.product-content {
  display: none;
}

@media screen and (max-width:990px) {
  .product-content.desktop {
    display: none;
  }

  .mobile.product-content {
    display: block;
  }
}
.shop-pay-button .cart__dynamic-checkout-buttons shopify-google-pay-button {
  display:none;
}
.cart-paymen-method .list-payment {
  margin-bottom: 1rem;
  justify-content: center;
}

.show-text-icons .cart-icons-text svg .st0 {
  fill: black;
}

.show-text-icons .cart-icons-text svg .st1 {
  stroke: black;
}

.product__info-wrapper.grid__item .st0 {
  fill: black;
}

.purchase-div purchase-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 15px;
  margin-bottom: .5rem; */
  min-height: 3.5rem;
}

.purchase-div {
  padding: 15px 0 5px 0;
}

.subscription-label {
  width: 100%;
  display: flex;
  align-items: center;
}

label.subscription-text {
  font-size: 13px;
  color: #000;
  display: flex;
  line-height: 19px;
}

.selling_plan_wrap {
  width: 25%;
}

input.subscription-checkbox {
  width: 19px;
  height: 19px;
  margin: 0;
  position: relative;
  cursor: pointer;
  border-radius: .2em;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #000;
  background-color: white;
  display: inline-flex;
  align-items: center;
  margin-right: 3px;
  transition: all 0.2s ease;
}

input.subscription-checkbox[checked] {
  border-color: #000;
}

input.subscription-checkbox[checked]::after {
  content: "";
  position: absolute;
  background-color: #000;
  height: 11.5px;
  width: 11.5px;
  top: 2.75px;
  left: 2.75px;
  border-radius: .2em;
  -webkit-transition: .4s;
  transition: .4s;
}

.subscription-label:has(input[checked]) {
  width: 73%;
}


.form__message .rte {
  text-align: left;
}

.form__message.errors {
  justify-items: start;
}

.register-form-links {
  display: flex;
  text-align: left;
  gap: .5rem;
}

.register-form-links p,
.register-form-text .font-size-sm {
  color: rgb(72, 72, 72);
  font-size: 1.4rem;
  line-height: 1.75rem;
}

.register-form-links p a {
  font-weight: 700;
  color: rgb(72, 72, 72);
}

.register-form-links input[type=checkbox] {
  margin-bottom: 1.8rem;
  accent-color: rgb(215, 57, 90);
}

.register-form-text input[type=checkbox] {
  accent-color: rgb(215, 57, 90);
}

.register-form-text {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  text-align: left;
}

@media screen and (max-width:750px) {
  .register-form-links {
    align-items: center;
  }

  .register-form-links input[type=checkbox],
  .register-form-text input[type=checkbox] {
    width: 2rem;
  }
}

.waitlist-overlay-content {
  background: white;
  border-radius: 8px;
  min-width: 800px;
  /* width: 100%; */
  position: relative;
  display: flex;
}

.waitlist-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  padding: 0;
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
}

.klaviyo-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.klaviyo-email {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.hidden {
  display: none !important;
}

.waitlist-overlay .waitlist-overlay-content .card--image-animate.image-animate {
  padding-bottom: 62.5%;
  max-width: 40rem;
  width: 100%;
  border-top-left-radius: .8rem;
  border-bottom-left-radius: .8rem;
}

.waitlist-overlay .waitlist-overlay-content klaviyo-form {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  padding-inline: 4rem;
  flex-direction: column;
  justify-content: center;
}

.waitlist-overlay .waitlist-overlay-content .klaviyo-form-wrap {
  width: 100%;
}

.waitlist-overlay .waitlist-overlay-content klaviyo-form input {
  width: auto;
  min-height: 4.4rem;
  margin-bottom: 0;
  border: 1px solid #969696;
}

.waitlist-overlay .waitlist-overlay-content .show-waitlist-container {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.waitlist-overlay-add {}

.waitlist-form-data {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.waitlist-overlay {
  display: none;
}

.waitlist-overlay.active {
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  z-index: 9999;
}

.klaviyo-button.restock-alert {
  background-color: white;
  border: none;
  color: rgb(72, 72, 72);
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: left;
  padding-inline: 0;
  align-items: flex-start;
  font-weight: 400;
}

.klaviyo-button.restock-alert p {
  margin: 0;
}

button.waitlist-btn {
  background: #A47DAB;
  border-color: #A47DAB;
}

.submit-svg {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  margin-top: .5rem;
}

.submit-svg svg {
  width: 2rem;
  height: 2rem;
}

.waitlist-overlay {
  max-width: 80rem;
}

.klaviyo-form-product .selected-product-form.hide {
  display: none;
}

.klaviyo-form-product {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selected-product-form {
  display: flex;
  width: 40rem;
  gap: 1.25rem;
  margin-block: 1rem;
  justify-content: center;
}

.selected_first_product .media--image-contain>img,
.media--image-contain>picture img {
  object-fit: cover;
}

.selected-product-form .selected_first_product .card-wrapper--button-inside-box .card-information {
  min-height: 16rem;
}

.selected_first_product .card-information .card-information__text {
  font-size: 1.8rem !important;
}

span.selected_first_product {
  display: flex;
  width: 190px;
}

.klaviyo-form-product .show-waitlist-container.hideen {
  display: none;
}

.waitlist-overlay-content .klaviyo-form-product .product-show {
  padding-inline: 1rem;
}

.newsletter__wrapper p {
  font-size: 2.6rem !important;
}

@media screen and (max-width:990px) {
  .waitlist-overlay .waitlist-overlay-content .product-show .selected-product-form .selected_first_product .card--image-animate.image-animate {
    height: 13.5rem;
  }

  .waitlist-overlay-content {
    flex-direction: column;
    min-width: 100%;
    max-width: 50rem;
    gap: 1rem;
  }

  .waitlist-overlay .waitlist-overlay-content .card--image-animate.image-animate {
    padding-bottom: 0;
    height: 23.5rem;
    max-width: 100%;
    border-top-right-radius: .8rem;
    border-bottom-left-radius: 0;
  }

  .waitlist-overlay .waitlist-overlay-content klaviyo-form {
    padding-inline: 3rem;
  }

  .waitlist-close-btn {
    z-index: 5;
  }

  .waitlist-overlay .waitlist-overlay-content .klaviyo-form-wrap {
    margin-bottom: 3rem;
  }

  .waitlist-overlay .waitlist-overlay-content klaviyo-form input {
    min-height: 4.4rem;
  }

  .waitlist-overlay .klaviyo-button.restock-alert {
    padding-top: 2rem;
  }

  .waitlist-overlay .waitlist-overlay-content .show-waitlist-container {
    margin-top: 2rem;
  }
}

@media screen and (max-width:750px) {
  .selected-product-form {
    width: 100%;
  }

  span.selected_first_product {
    width: 50%;
  }

  .waitlist-overlay {
    padding-inline: 1.5rem;
  }

  .newsletter .newsletter__wrapper p {
    font-size: 2.2rem !important;
    margin: 0;
    line-height: 2.6rem !important;
  }
}


.mini-cart-popup {
  position: absolute;
  right: 2%;
  max-width: 39.9rem;
  width: 100%;
  transform: translateY(-100%);
  color: #000000;
  padding: 10px 1.5rem;
  border-radius: 4px;
  font-size: 1.4rem;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: -1;
  background-color: #ffeff2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-cart-popup.visible {
  transform: translateY(0);
  opacity: 1;
  z-index: 1000;
}

.mini-cart-popup button#view-cart-button {
  background: none;
  border: none;
  font-size: 1.4rem;
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
}

.mini-cart-popup svg#tooltip__close {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  right: .5em;
}

@media screen and (max-width:989px) {
  .mini-cart-popup {
    right: auto;
    left: 50%;
    max-width: 95%;
    transform: translateX(-50%) translateY(-100%);
  }

  .mini-cart-popup.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@media screen and (min-width:1200px) {
  .mini-cart-popup {
    right: auto;
    left: calc(50% + 483px - 300px);
  }
}

body.no-scroll {
  overflow: hidden;
}



.custom-selling-plan-new select#selling_plan_select {
  width: 100%;
  background: transparent;
  padding: 10px 35px 10px 15px;
  color: #000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="none" stroke="black" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19 9l-7 7-7-7"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.3em;
  border-color:#000;
}

.custom-selling-plan-new *:focus-visible {
  outline: none;
  outline-offset: unset;
  box-shadow: none;
}



/* KKLAVIYO FORM  */
klaviyo-form input {
  width: 100%;
  margin-bottom: 1.25rem;
  padding: .875em 1em;
  border-radius: .25rem;
  border: 1px solid #969696;
  min-height: 4.4rem;
}

.show-waitlist-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.show-waitlist-container .waitlist-title {
  color: rgb(72, 72, 72);
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
}

.show-waitlist-container .waitlist-description {
  font-size: 1.6rem;
  line-height: 2rem;
  color: rgb(72, 72, 72);
  margin-bottom: 2rem;
}

klaviyo-form input::placeholder {
  color: grey;
}

@media screen and (max-width:750px) {
  .show-waitlist-container .waitlist-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.recently-viewed-products-data .swiper-slide .card-information__wrapper a {
  text-decoration: none;
  font-size: 16px !important;
  line-height: 20px;
}

.recently-viewed-products-data .swiper-slide .card-information__wrapper .card-information__range {
  margin-block: 1rem;
}

.recently-viewed-products-data .swiper-slide .card-information .inside-box .button {
  min-width: 100%;
}

.mini-cart__empty-text {
  font-family: 'aeonik';
}

.klaviyo-error.body-text , .klaviyo-error-res{
  color: #d72828;
  font-size: 1.4rem;
}
.klaviyo-error-res{
  margin-top: 5px;
}


.shipping-secondry-text a.text-secondary {
  color: #d7395a !important;
  display: inline-flex !important;
  margin: 0 !important;
}

@media screen and (max-width:425px) {
  .yotpo-sr-bottom-line-summary span .star-container {
    width: 12px;
  }
}

.mega-menu__item-link:hover .header__menu-item .label {
  color: black !important;
}

.sidebar-continer .blog-articles.grid--1-col .grid__item {
  max-width: 48%;
}



.discount-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

input#discountCodeInput {
  height: 50px;
  font-size: 1.6rem;
  outline: none;
  box-shadow: none;
  text-align: left;
  border: 1px solid rgb(150, 150, 150);
  color: rgb(72, 72, 72);
  border-radius: .4rem;
  flex: 1;
  padding-left: 1.5rem;
  max-width: 23.5rem;
}

button#applyDiscountBtn {
  min-width: unset;
  max-width: 10.4rem;
  width: 100%;
  font-size: 1.6rem;
  line-height: 2rem;
  background-color: #f16e8d;
  border-color: #f16e8d;
}

.discount-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 2rem 0;
}

.discount-error {
  color: #e22120;
  padding: 8px;
  padding-inline: .5rem;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
}
button#removeDiscountBtn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #484848;
    padding: 3px;
    cursor: pointer;
    position: relative;
    font-weight: 100;
}

.discount-success-wrapper:has(.discount-success:not(:empty)) {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eee;
  padding: 10px;
  color: #000;
  font-weight: bold;
  border-radius: 20px;
  width: fit-content;
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 0.8rem;
}

button#removeDiscountBtn svg {
    width: 1.1rem;
    height: 1.1rem;
}

button#removeDiscountBtn .loading-overlay {
    top: 18%;
    width: 100%;
    height: 100%;
}

button#removeDiscountBtn .loading-overlay .loading-overlay__spinner {
    width: auto;
    display: inline-block;
    background: #eee;
}
@media screen and (max-width:750px) {
  input#discountCodeInput{
    max-width: unset;
  }
}

.card-information__button .price--on-button {
  display: block;
    height: 2rem;
}
.card-information__button .price--on-button dl {
  margin: 0;
}
/* .price-item price-money bdi .price__suffix {
  vertical-align: bottom;
} */

.free-shipping .free-shipping__text price-money bdi .price__suffix,
.price-wrap .price price-money bdi .price__suffix {
  vertical-align: baseline;
}

add-to-cart.button , .product-form__submit , bundle-add-buttons.button , button.product-bundle-form__submit.button{
  background-color: #000;
  border-color: #000;
}
 .product-form__submit:hover{
  background-color: #000;
  border-color: #000;
 }

/* body.modal-open {
  overflow: hidden !important;
  touch-action: none;
  position: fixed;
  width: 100%;
} */

.product-button .button--small .small-hide {
    display: flex;
    align-items: center;
    width: 100%;
    padding: .5rem 1rem;
    justify-content: space-between;

}
@media screen and (max-width:990px) {
  .cart-recommendations-swiper .swiper-slide .product-description .button--small .small-hide {
        display: flex !important;
  }
}
@media screen and (max-width:750px) {
  .container-section.product-pair .card-wrapper--button-inside-box .card-information__button.inside-box .button--small {
        padding: 1rem;
    justify-content: center;
  }
  .card-information__button .price--on-button {
        height: 1.6rem;
        margin-left: .5rem;
  }
  .product product-recommendations .card-wrapper--button-inside-box.card-wrapper add-to-cart.button .price--on-button {
        margin: 0;
    height: auto;
  }
}

@media screen and (max-width:990px) {
  a.header__icon.header__icon--account.focus-inset.account-mobile-hide{
    display: none;
  }
}

.get-to-know-us-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.get-to-know-us-wrapper img.background-image {
  width: 100%;
  display: block;
  height:auto;
}

.get-to-know-us-wrapper .text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}

.about-page-width {
  max-width: 151.2rem;
  margin: 0 auto;
    padding-inline:4rem;
}
.h2.ns-subtitle-small {
font-size: 3rem !important;
}
.h0.ns-subtitle-small {
font-size: 4.2rem !important;
}
@media screen and (max-width:749px) {
    .about-page-width {
        padding-inline:1.986rem;
    }
    .get-to-know-us-wrapper img.background-image {
        object-fit: cover;
        height:100%;
    }
    .h2.ns-subtitle-small {
      font-size: 1.8rem !important;
    }
    .h0.ns-subtitle-small {
      font-size: 2.4rem !important;
    }
}
@media screen and (max-width:450px) {
   .get-to-know-us-wrapper img.background-image {
    min-height:8rem;
   }
}


button.yotpo-sr-bottom-line-summary.yotpo-sr-bottom-line-button {
    flex-direction: row !important;
}


.cart-paymen-method.footer__payment {
  display: none;  
}

.yotpo-bottom-line .yotpo-bottom-line-left-panel{
  font-size: 5rem !important;
}

.yotpo-bottom-line-basic-text,
h3.yotpo-review-title{
  font-size: 1.4rem;
}

.yotpo-review .yotpo-review-center-panel h3.yotpo-review-title{
  margin-bottom: 1rem !important;
}

span.yotpo-reviewer-name.unselectable,
.yotpo-date-format,
.yotpo-custom-questions-wrapper.yotpo-review-key-value-question,
.yotpo-review-votes-wrapper,
.yotpo-reviewer-verified-buyer-text[data-v-4c2f4803]{
  font-size: 1.2rem;
}

span.yotpo-reviewer-name.unselectable,
.yotpo-reviewer-verified-buyer-text[data-v-4c2f4803]{
  font-weight: 600;
}

.yotpo-display-s .yotpo-review .yotpo-review-center-panel .yotpo-review-content{
  margin-top: 0;
}

.yotpo-display-s .yotpo-review{
  margin: 2.4rem 0;
}

.yotpo-reviews-main-widget svg{
  width: 1.2rem;
}

@media screen and (max-width: 749px) {
  .yotpo-custom-questions-question-wrapper .yotpo-custom-questions-wrapper-suffix-padding {
    display: none;
  }
}

.qty-message {
display: block;
color: #d10808;
font-size: 1.2rem;
margin-top: .5rem;
}
.max-limit-toast {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 10px 20px;
border-radius: 5px;
z-index: 9999;
font-size: 14px;
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
text-align: center;
max-width:35rem;
Width:100%;
box-sizing: border-box;
}

@media screen and (max-width:991px) {
  #accordion__products .col-12 {
    flex: 50%;
  }
}
@media screen and (max-width:749px) {
  #accordion__products .col-12 {
    flex: 100%;
  }
  .product-swiper .swiper-slide .card-information__button.inside-box .button {
    align-items: baseline;
  }
}
.menu-drawer__navigation-container:has(.menu-drawer__navigation.has-open-child) .menu-drawer__localization {
  z-index: -1;
}
@media screen and (max-width:499px) {
  .video-swiper .swiper-wrapper .swiper-slide {
    max-width: 30rem;
  }
}

.transcy-switcher-container{
      z-index: 29 !important;
}