/** Shopify CDN: Minification failed

Line 10258:12 Expected "*/" to terminate multi-line comment

**/
/**
 * This file needs to be CAREFULLY assessed for what we need/don't need
 */ 




:where(x-drawer, x-modal, x-popover):not(:defined) {
  display: none;
}

:where(.modal, .drawer, .popover, .header-search) {
  z-index: 999;
  display: none;
  position: relative;
}

:where(.modal, .drawer, .popover, .header-search)::part(overlay) {
  background: rgb(var(--page-overlay));
  min-height: 100vh;
  position: fixed;
  inset: 0;
}

:where(.modal, .drawer, .popover, .header-search)::part(close-button) {
  color: currentColor;
  cursor: pointer;
  background: none;
  border: none;
  place-items: center;
  padding: 0;
  display: grid;
}

:where(.modal, .drawer, .popover, .header-search)::part(close-button) > svg {
  display: block;
}

@media screen and (pointer: fine) {
  :where(.modal, .drawer, .popover, .header-search)::part(close-button) {
    opacity: .6;
    transition: all .2s ease-in;
  }

  :where(.modal, .drawer, .popover, .header-search)::part(close-button):hover {
    opacity: 1;
  }
}

:where(.modal, .drawer, .popover, .header-search)::part(tap-area) {
  position: relative;
}

:where(.modal, .drawer, .popover, .header-search)::part(tap-area):before {
  content: "";
  position: absolute;
  inset: -.65rem;
}

.modal {
  --distance-to-bleed: var(--modal-body-padding-inline);
  --modal-header-padding-block: .875rem;
  --modal-header-padding-inline: 1.25rem;
  --modal-body-padding-block: 1.25rem;
  --modal-body-padding-inline: 1.25rem;
  --modal-body-max-width: 30rem;
}

.modal::part(base) {
  place-items: end center;
  width: 100%;
  height: 100%;
  display: grid;
  position: fixed;
  inset: 0;
}

.modal::part(content) {
  max-width: var(--modal-body-max-width);
  background-color: rgb(var(--background));
  background-image: var(--background-gradient);
  color: rgb(var(--text-color));
  isolation: isolate;
  width: 100%;
  max-height: 75vh;
  overflow: auto;
}

@supports (height: 100dvh) {
  .modal::part(content) {
    max-height: 85dvh;
  }

  @media screen and (max-width: 699px) {
    .quick-buy-modal::part(content) {
      max-height: calc(100dvh - var(--header-height, 3.75rem) - var(--announcement-bar-height, 1.75rem));
    }
  }
}

.modal::part(header) {
  background: inherit;
  /*border-block-end: 1px solid rgb(var(--border-color));*/
  text-align: center;
  z-index: 2;
  align-items: center;
  padding-block-start: var(--modal-header-padding-block);
  padding-block-end: var(--modal-header-padding-block);
  padding-inline-start: var(--modal-header-padding-inline);
  padding-inline-end: var(--modal-header-padding-inline);
  display: grid;
  position: sticky;
  inset-block-start: 0;
}

.modal::part(close-button) {
  position: absolute;
  inset-inline-end: var(--modal-header-padding-inline);
}

.modal::part(body) {
  padding-block-start: var(--modal-body-padding-block);
  padding-block-end: var(--modal-body-padding-block);
  padding-inline-start: var(--modal-body-padding-inline);
  padding-inline-end: var(--modal-body-padding-inline);
}

@media screen and (min-width: 700px) {
  .modal {
    --modal-header-padding-block: 1.125rem;
    --modal-header-padding-inline: 2rem;
    --modal-body-padding-block: 2rem;
    --modal-body-padding-inline: 2rem;
  }

  .modal::part(base) {
    place-items: center;
  }

  .modal--lg {
    --modal-body-max-width: 45rem;
  }

  .modal--xl {
    --modal-body-max-width: 75rem;
  }
}

.drawer {
  --distance-to-bleed: var(--drawer-body-padding-inline);
  --drawer-header-padding-block: 1rem;
  --drawer-header-padding-inline: 1.25rem;
  --drawer-body-padding-block: 1.25rem;
  --drawer-body-padding-inline: 1.25rem;
  --drawer-footer-padding-block: 1rem;
  --drawer-footer-padding-inline: 1.25rem;
  --drawer-max-width: min(92vw, 28.125rem);
}

.drawer::part(base) {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
}

.drawer::part(content) {
  max-width: var(--drawer-max-width);
  background-color: rgb(var(--background));
  background-image: var(--background-gradient);
  color: rgb(var(--text-color));
  grid-auto-rows: auto minmax(0, 1fr) auto;
  align-content: start;
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
}

.drawer::part(header) {
  min-height: min(var(--header-height), 5rem);
  border-block-end: 1px solid rgb(var(--border-color));
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  padding-block-start: var(--drawer-header-padding-block);
  padding-block-end: var(--drawer-header-padding-block);
  padding-inline-start: var(--drawer-header-padding-inline);
  padding-inline-end: var(--drawer-header-padding-inline);
  display: flex;
}

.drawer::part(body) {
  overscroll-behavior-y: contain;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  padding-block-start: var(--drawer-body-padding-block);
  padding-block-end: var(--drawer-body-padding-block);
  padding-inline-start: var(--drawer-body-padding-inline);
  padding-inline-end: var(--drawer-body-padding-inline);
  display: grid;
  overflow: hidden auto;
}

.drawer::part(footer) {
  background-color: rgb(var(--background));
  background-image: var(--background-gradient);
  border-block-start: 1px solid rgb(var(--border-color));
  padding-block-start: var(--drawer-footer-padding-block);
  padding-block-end: var(--drawer-footer-padding-block);
  padding-inline-start: var(--drawer-footer-padding-inline);
  padding-inline-end: var(--drawer-footer-padding-inline);
}

.drawer--sm {
  --drawer-max-width: min(92vw, 25rem);
}

.drawer--center-body::part(body) {
  align-self: center;
}

@media screen and (min-width: 1000px) {
  .drawer {
    --drawer-header-padding-block: 1.125rem;
    --drawer-header-padding-inline: 2rem;
    --drawer-body-padding-block: 2rem;
    --drawer-body-padding-inline: 2rem;
    --drawer-footer-padding-block: 2rem;
    --drawer-footer-padding-inline: 2rem;
  }
}

.popover {
  --distance-to-bleed: var(--popover-body-padding-inline);
  --popover-header-padding-block: .875rem;
  --popover-header-padding-inline: 1.25rem;
  --popover-body-padding-block: 1.25rem;
  --popover-body-padding-inline: 1.25rem;
}

.popover::part(content) {
  background: rgb(var(--background));
  color: rgb(var(--text-color));
  isolation: isolate;
  width: 100%;
  max-height: 75vh;
  overflow: auto;
}

@supports (height: 100dvh) {
  .popover::part(content) {
    max-height: 85dvh;
  }
}

.popover::part(header) {
  background: inherit;
  border-block-end: 1px solid rgb(var(--border-color));
  text-align: center;
  z-index: 2;
  align-items: center;
  padding-block-start: var(--popover-header-padding-block);
  padding-block-end: var(--popover-header-padding-block);
  padding-inline-start: var(--popover-header-padding-inline);
  padding-inline-end: var(--popover-header-padding-inline);
  display: grid;
  position: sticky;
  inset-block-start: 0;
}

.popover::part(close-button) {
  position: absolute;
  inset-inline-end: var(--popover-header-padding-inline);
}

.popover::part(body) {
  padding-block-start: var(--popover-body-padding-block);
  padding-block-end: var(--popover-body-padding-block);
  padding-inline-start: var(--popover-body-padding-inline);
  padding-inline-end: var(--popover-body-padding-inline);
}

.popover__value-list {
  text-align: center;
  justify-items: center;
  gap: .75rem;
  display: grid;
}

.popover__value-list > * {
  text-align: inherit;
  color: rgb(var(--text-color) / .65);
  width: 100%;
  transition: color .2s ease-in-out;
}

.popover__value-list > *[aria-selected="true"],
.popover__value-list > *:hover {
  color: rgb(var(--text-color));
}

@media screen and (max-width: 999px) {
  .popover::part(base) {
    place-items: end center;
    width: 100%;
    height: 100%;
    display: grid;
    position: fixed;
    inset: 0;
  }
}

@media screen and (min-width: 1000px) {
  .popover {
    --popover-block-offset: .75rem;
    position: absolute;
  }

  .popover::part(content) {
    border: 1px solid rgb(var(--border-color));
    box-shadow: 2px 2px 6px rgb(var(--text-color) / .05);
    width: max-content;
    max-width: 18.75rem;
    max-height: min(60vh, 25rem);
  }

  .popover::part(overlay),
  .popover::part(header) {
    display: none;
  }

  .popover__value-list {
    text-align: start;
    justify-items: start;
  }

  .popover:has(.popover__value-list)::part(body) {
    padding-inline-end: 2.5rem;
  }

  .popover--top-start {
    inset-block-end: calc(100% + var(--popover-block-offset));
    inset-inline-start: 0;
  }

  .localization-selectors--footer .popover--top-start {
    inset-inline-start: -7rem;
  }

  .popover--top-end {
    inset-block-end: calc(100% + var(--popover-block-offset));
    inset-inline-end: 0;
  }

  .popover--bottom-start {
    inset-block-start: calc(100% + var(--popover-block-offset));
    inset-inline-start: 0;
  }

  .popover--bottom-end {
    inset-block-start: calc(100% + var(--popover-block-offset));
    inset-inline-end: 0;
  }
}

.pop-in {
  z-index: 10;
  padding: 2rem;
  display: none;
  position: fixed;
  inset-block-end: 1rem;
  inset-inline: 1rem;
}

.pop-in__close-button {
  inset-block-start: 1.25rem;
  inset-inline-end: 1.25rem;
  position: absolute !important;
}

@media screen and (min-width: 700px) {
  .pop-in {
    inset-block-end: 2rem;
    inset-inline: 2rem;
  }
}






@media screen and (max-width: 699px) {

  .order-summary__header,
  .order-summary__body td:nth-child(n+2),
  .order-summary__footer td:first-child {
    display: none;
  }

  .order-summary__body td {
    border-width: 0;
  }

  .order-summary__body tr:last-child td {
    border-block-end-width: 1px;
  }

  .order-summary__body tr:first-child td {
    padding-block-start: 0;
  }

  .order-summary__body tr:last-child td {
    padding-block-end: calc(var(--table-cell-padding-block) * 2);
  }
}

@media screen and (min-width: 700px) {
  .order-summary .line-item-info {
    max-width: 500px;
  }
}

.shopify-section--announcement-bar,
.shopify-section--header {
  transform: translateY(calc(((var(--announcement-bar-height, 0px) + var(--header-height, 0px)) * -1) * var(--hide-header-group, 0)));
  transition: transform .25s ease-in-out;
}


.line-item {
  --line-item-media-width: 4.375rem;
  align-items: center;
  column-gap: 1.5rem;
  display: flex;
}

.line-item__media {
  width: var(--line-item-media-width);
  flex-shrink: 0;
}

.line-item__title {
  line-height: 1.5 !important;
}

.line-item .price-list > .h5 {
  font-size: min(var(--text-h5), 3.625vw);
}

@media screen and (min-width: 700px) {
  .line-item {
    --line-item-media-width: 7.5rem;
  }
}

.discount-badge {
  background: rgb(var(--on-sale-badge-background));
  color: rgb(var(--on-sale-badge-text));
  align-items: center;
  column-gap: .5rem;
  padding: .125rem .5rem;
  display: flex;
}

.shipping-estimator__form {
  gap: var(--fieldset-gap);
  display: grid;
}

@media screen and (min-width: 700px) {
  .shipping-estimator__form {
    flex-wrap: wrap;
    display: flex;
  }

  .shipping-estimator__form .select {
    max-width: 15rem;
  }
}





.horizontal-product-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  align-items: center;
  column-gap: 1.5rem;
  display: flex;
  position: relative;
  container: horizontal-product-card / inline-size;
}

.horizontal-product-card__figure {
  flex-shrink: 0;
  width: 6.25rem;
}

.horizontal-product-card__info {
  flex-grow: 1;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-columns: auto;
  justify-items: start;
  gap: .625rem;
  display: grid;
}

.horizontal-product-card__info .product-title a {
  text-decoration: underline;
}

.\@large\:horizontal-product-card__button {
  display: none;
}

@media screen and (min-width: 700px) {
  .horizontal-product-card {
    column-gap: 2rem;
  }
}

@container horizontal-product-card (width >=450px) {
  .horizontal-product-card__info {
    grid-auto-flow: column;
    align-items: center;
  }

  .\@narrow\:horizontal-product-card__button {
    display: none;
  }

  .\@large\:horizontal-product-card__button {
    display: block;
  }
}

.product-list {
  --product-list-max-items-per-row-allowed: 2;
  --product-list-calculated-items-per-row: min(var(--product-list-max-items-per-row-allowed), var(--product-list-items-per-row));
  --product-list-default-row-gap: 2.1875rem;
  --product-list-default-column-gap: .625rem;
  --product-list-calculated-row-gap: clamp(var(--section-vertical-spacing) / 4, var(--product-list-default-row-gap) * var(--product-list-vertical-spacing-factor, 1), var(--section-vertical-spacing) * 2);
  --product-list-calculated-column-gap: clamp(var(--container-gutter) / 4, var(--product-list-default-column-gap) * var(--product-list-horizontal-spacing-factor, 1), var(--container-gutter) * 2);
  --product-list-card-width: calc(100% / var(--product-list-calculated-items-per-row) - var(--product-list-calculated-column-gap, 0px) * (var(--product-list-calculated-items-per-row) - 1) / var(--product-list-calculated-items-per-row));
  grid: auto / repeat(auto-fit, var(--product-list-card-width));
  align-items: start;
  column-gap: var(--product-list-calculated-column-gap);
  row-gap: var(--product-list-calculated-row-gap);
  display: grid;
}

.product-list--carousel {
  --product-list-default-column-gap: 1.25rem;
  grid: auto / auto-flow var(--product-list-card-width);
  justify-content: safe center;
}

@media screen and (max-width: 699px) {
  .product-list:not(.product-list--carousel) {
    margin-inline: -.625rem;
  }

  .product-list--carousel {
    --product-list-card-width: min(300px, 65%);
  }
}

@media screen and (min-width: 700px) {
  .product-list {
    --product-list-max-items-per-row-allowed: 3;
    --product-list-default-row-gap: 3rem;
    --product-list-default-column-gap: 1.5rem;
  }

  .product-list--compact {
    --product-list-max-items-per-row-allowed: 4;
  }
}

@media screen and (min-width: 1000px) {
  .product-list {
    --product-list-max-items-per-row-allowed: 4;
    --product-list-default-row-gap: 4rem;
    --product-list-default-column-gap: 3rem;
  }

  .product-list--compact {
    --product-list-max-items-per-row-allowed: 5;
  }

  .product-list--carousel {
    scroll-snap-type: x mandatory;
  }
}

@media screen and (min-width: 1150px) {
  .product-list {
    --product-list-max-items-per-row-allowed: var(--product-list-items-per-row);
  }
}

@media screen and (min-width: 1400px) {
  .product-list {
    --product-list-default-row-gap: 4rem;
    --product-list-default-column-gap: 3.75rem;
  }
}

.quick-buy-modal {
  --modal-body-max-width: 55.625rem;
}

@media screen and (max-width: 699.9px) {
  .quick-buy-modal {
    /* Hack to prevent klaviyo discount banner from covering ATC button on mobile */
    z-index: 90000;
  }

  .quick-buy-modal .variant-picker__option-info {
    font-size: var(--text-xs);
  }
}

.quick-buy-modal::part(header) {
  background: transparent;
  padding: 0;
}

.quick-buy-modal::part(close-button) {
  inset-block-start: var(--modal-header-padding-inline);
}

.quick-buy-modal::part(content) {
  position: relative;
}

.quick-buy-modal::part(body) {
  padding-block: 0;
  padding-inline: 0;
}

.quick-buy-modal__content-wrapper {
  position: relative;
}

.quick-buy-modal__content {
  grid-template-columns: minmax(0, 1fr);
  display: grid;
}

.quick-buy-modal__close-button {
  position: absolute;
  inset-block-start: 1.875rem;
  inset-inline-end: 1.875rem;
}

.quick-buy-modal__content-wrapper .quick-buy-modal__close-button {
  inset-block-start: calc(1.875rem - var(--modal-body-padding-block));
  inset-inline-end: calc(1.875rem - var(--modal-body-padding-inline));
}

.quick-buy-modal__view-more {
  margin-block-start: 2rem;
  display: inline-block;
}

@media screen and (max-width: 699px) {

  .quick-buy-modal__gallery-wrapper,
  .quick-buy-modal__info-wrapper {
    padding-inline-start: var(--modal-body-padding-inline);
    padding-inline-end: var(--modal-body-padding-inline);
  }

  .quick-buy-modal__info-wrapper {
    padding-inline-start: var(--modal-body-padding-inline);
    padding-inline-end: var(--modal-body-padding-inline);
    padding-block-end: var(--modal-body-padding-block);
  }

  .quick-buy-modal__gallery-wrapper .price-list {
    justify-content: center;
  }

  .quick-buy-modal__gallery-wrapper .price-list .h6 {
    font-size: .6875rem;
  }

  .quick-buy-modal__mobile-info {
    margin-block-start: 1.25rem;
  }

  .quick-buy-modal__info-wrapper {
    border-block-start-width: 1px;
    margin-block-start: 1.25rem;
  }

  .quick-buy-modal__info-wrapper .product-info__block-item:is([data-block-type="vendor"], [data-block-type="title"], [data-block-type="price"], [data-block-type="rating"], [data-block-type="separator"]),
  .quick-buy-modal__info-wrapper .product-info__block-group[data-group-type="text-with-rating"] {
    display: none;
  }

  .quick-buy-modal__info-wrapper .product-info__block-item[data-block-type="variant-picker"] {
    --product-info-gap: 1.25rem;
  }

  .quick-buy-modal__info-wrapper .product-info__block-item[data-block-type="buy-buttons"] {
    --product-info-gap: 1.5rem;
  }
}

@media screen and (min-width: 700px) {
  .quick-buy-modal {
    --modal-body-padding-inline: 3.125rem;
    --modal-body-padding-block: 3.125rem;
  }

  .quick-buy-modal__content {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    align-items: center;
    display: grid;
  }

  .quick-buy-modal__info-wrapper {
    padding-inline: var(--modal-body-padding-inline);
    padding-block: var(--modal-body-padding-block);
  }

  .quick-buy-modal__content .product-info {
    top: unset;
    position: relative;
  }
}

.link-reverse {
  text-underline: none;
  background: linear-gradient(to right, currentColor, currentColor) 0 min(100%, 1.35em) / 0 1px no-repeat;
  transition: background-size .3s ease-in-out;
}

@media screen and (pointer: fine) {
  .link-reverse:hover {
    background-size: 100% 1px;
  }
}

.link-faded {
  color: rgb(var(--text-color) / .65);
  transition: color .2s ease-in-out;
}

@media screen and (pointer: fine) {
  .link-faded:hover {
    color: rgb(var(--text-color));
  }
}

.link-faded-reverse {
  transition: color .2s ease-in-out;
}

@media screen and (pointer: fine) {
  .link-faded-reverse:hover {
    color: rgb(var(--text-color) / .65);
  }
}



.js tr[onclick] {
  cursor: pointer;
  transition: background .2s;
}

.js tr[onclick]:hover {
  background: rgb(var(--text-color) / .05);
}

@media screen and (min-width: 700px) {
  table {
    --table-cell-padding-block: 1rem;
    --table-cell-padding-inline: .75rem;
    --table-foot-cell-padding-block: 1rem;
    --table-foot-cell-padding-inline: .75rem;
  }
}

.table--reduce-border :is(td) + td {
  border-inline-start-width: 0;
}

.table--lg {
  --table-cell-padding-block: 1.5rem;
  --table-cell-padding-inline: .5rem;
}

@media screen and (min-width: 700px) {
  .table--lg {
    --table-cell-padding-block: 2rem;
    --table-cell-padding-inline: .75rem;
  }
}

.social-media--list {
  align-items: center;
  gap: var(--social-media-list-gap, .75rem 2rem);
  flex-wrap: wrap;
  display: flex;
}

@media screen and (min-width:1000px) {
  .social-media--list {
    justify-content: end;
  }
}

.social-media--list .social-media__item {
  opacity: .65;
  transition: opacity .2s, color .2s;
}

.social-media--list svg {
  width: var(--social-media-icon-size, 1.25rem);
}

@media screen and (pointer: fine) {
  .social-media--list .social-media__item:hover {
    opacity: 1;
  }
}

.social-media--block {
  grid-template-columns: repeat(auto-fit, minmax(0, .33fr));
  gap: 1px;
  display: grid;
}

.social-media--block:has(:nth-child(4)) {
  grid-template-columns: repeat(auto-fit, minmax(0, .25fr));
}

.social-media--block .social-media__item {
  outline: 1px solid rgb(var(--border-color));
  z-index: 0;
  width: 100%;
  transition: background .15s, color .15s, outline .15s, z-index .15s;
}

.social-media--block a {
  padding-block: .625rem;
  display: block;
}

.social-media--block svg {
  margin-inline: auto;
}

@media screen and (pointer: fine) {
  .social-media--block .social-media__item:hover {
    background: rgb(var(--branding-background));
    outline-color: rgb(var(--branding-background));
    color: rgb(var(--branding-color));
    z-index: 1;
  }
}

@media not screen and (pointer: fine) {
  .social-media--block .social-media__item {
    background: rgb(var(--branding-background));
    outline-color: rgb(var(--branding-background));
    color: rgb(var(--branding-color));
  }
}

@media screen and (min-width: 700px) {
  .social-media--block {
    grid-template-columns: repeat(auto-fit, minmax(0, 3.75rem));
  }
}

.branding-colors--facebook {
  --branding-background: 24 119 242;
  --branding-color: 255 255 255;
}

.branding-colors--twitter {
  --branding-background: 29 161 242;
  --branding-color: 255 255 255;
}

.branding-colors--instagram {
  --branding-background: 195 42 163;
  --branding-color: 255 255 255;
}

.branding-colors--pinterest {
  --branding-background: 189 8 28;
  --branding-color: 255 255 255;
}

.branding-colors--youtube {
  --branding-background: 255 0 0;
  --branding-color: 255 255 255;
}

.branding-colors--tiktok {
  --branding-background: 1 1 1;
  --branding-color: 255 255 255;
}

.branding-colors--vimeo {
  --branding-background: 26 183 234;
  --branding-color: 255 255 255;
}

.branding-colors--linkedin {
  --branding-background: 10 102 194;
  --branding-color: 255 255 255;
}

.branding-colors--whatsapp {
  --branding-background: 79 206 93;
  --branding-color: 255 255 255;
}

.branding-colors--snapchat {
  --branding-background: 255 252 0;
  --branding-color: 0 0 0;
}

.branding-colors--tumblr {
  --branding-background: 54 70 93;
  --branding-color: 255 255 255;
}

.branding-colors--wechat {
  --branding-background: 9 184 62;
  --branding-color: 255 255 255;
}

.branding-colors--reddit {
  --branding-background: 255 69 0;
  --branding-color: 255 255 255;
}

.branding-colors--line {
  --branding-background: 6 199 85;
  --branding-color: 255 255 255;
}

.branding-colors--spotify {
  --branding-background: 30 215 96;
  --branding-color: 255 255 255;
}

.branding-colors--21buttons {
  --branding-background: 0 0 0;
  --branding-color: 255 255 255;
}

.branding-colors--email {
  --branding-background: var(--text-color);
  --branding-color: var(--background);
}

.color-swatch {
  --size-xs: 1.375rem;
  --size-sm: 1.625rem;
  --size-md: 2.125rem;

  --swatch-offset: 2px;
  --swatch-size: var(--size, var(--size-md));
  --swatch-border-size: 1px;
  --swatch-disabled-strike-color: rgb(var(--border-color));
  width: var(--swatch-size);
  height: var(--swatch-size);
  padding: var(--swatch-offset);
  border: var(--swatch-border-size) solid #ddd;
  background-clip: content-box;
  background-origin: content-box;
  background-color: var(--swatch-background-fallback, transparent);
  background-image: var(--swatch-background);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  place-items: center;
  display: grid;
  position: relative;
}

.color-swatch[data-option-size="sm"] {
  /* --swatch-size: 1.625rem; */
  --size: var(--size-sm);
  --size-scaled-max: var(--size-md);
}

.color-swatch[data-option-size="xs"] {
  /* --swatch-size: 1.375rem; */
  --size: var(--size-xs);
  --size-scaled-max: var(--size-sm);
}

:disabled + .color-swatch:before,
:disabled + .color-swatch-wrapper > .color-swatch:before,
.color-swatch.is-disabled:before,
.color-swatch-wrapper.is-disabled > .color-swatch:before {
  content: "";
  margin: var(--swatch-disabled-margin, var(--swatch-offset));
  background: linear-gradient(to bottom right, transparent calc(50% - .5px), var(--swatch-disabled-strike-color) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px));
  position: absolute;
  inset: 0;
}

:checked + .color-swatch,
:checked + .color-swatch-wrapper > .color-swatch,
.color-swatch.is-selected,
.color-swatch-wrapper.is-selected > .color-swatch {
  --swatch-disabled-margin: 0;
  --swatch-disabled-strike-color: currentColor;
  border-color: currentColor;
}

:focus-visible + .color-swatch,
:focus-visible + .color-swatch-wrapper > .color-swatch {
  outline-offset: calc(var(--swatch-offset));
}

.thumbnail-swatch {
  --swatch-size: 3rem;
  --swatch-disabled-strike-color: rgb(var(--border-color));
  width: var(--swatch-size);
  height: var(--swatch-size);
  border-radius: min(4px, var(--input-border-radius));
  border-width: 1px;
  display: block;
  position: relative;
}

:checked + .thumbnail-swatch,
.thumbnail-swatch.is-selected {
  --swatch-disabled-strike-color: currentColor;
  border-color: currentColor;
}

:disabled + .thumbnail-swatch:before,
.thumbnail-swatch.is-disabled:before {
  content: "";
  background: linear-gradient(to bottom right, transparent calc(50% - .5px), var(--swatch-disabled-strike-color) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px));
  position: absolute;
  inset: 0;
}

.thumbnail-swatch > img {
  border-radius: inherit;
  height: 100%;
}

:focus-visible + .thumbnail-swatch {
  outline-offset: 2px;
}

@media screen and (min-width: 700px) {
  .thumbnail-swatch {
    --swatch-size: 4.25rem;
  }
}

.block-swatch {
  --size: 2.5rem;
  --swatch-border-size: 1px;
  --swatch-padding: 0.25rem;
  --swatch-disabled-strike-color: rgb(var(--border-color));
  padding: var(--swatch-padding);
  border-width: var(--swatch-border-size);
  border-radius: var(--input-border-radius);
  color: rgb(var(--text-color) / .65);
  justify-content: center;
  align-items: center;
  column-gap: .875rem;
  height: var(--size);
  min-width: var(--size);
  display: flex;
  overflow: hidden;
  position: relative;
}

.block-swatch[data-option-size="sm"] {
  --size: 2rem;
  font-size: var(--text-xs);
  --swatch-padding: 0.125rem;
}

.block-swatch[data-option-size="xs"] {
  --size: 1.75rem;
  font-size: var(--text-xxs);
  --swatch-padding: 0.125rem;
}

.block-swatch.is-disabled {
  color: rgb(var(--text-color) / .5);
}

:checked + .block-swatch,
.block-swatch.is-selected {
  --swatch-disabled-strike-color: currentColor;
  color: var(--text-color);
  border-color: currentColor;
}

:checked + .block-swatch:not(.is-disabled),
.block-swatch:not(.is-disabled).is-selected {
  color: white;
  border-color: #3d4040;
  background: #3d4040;
}

.block-swatch:before {
  content: "";
  background: linear-gradient(to bottom right, transparent calc(50% - .5px), var(--swatch-disabled-strike-color) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px));
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

:disabled + .block-swatch:before,
.block-swatch.is-disabled:before {
  opacity: 1;
}

:focus-visible + .block-swatch {
  outline-offset: 2px;
}

.block-swatch__color {
  background: var(--swatch-background) center / cover;
  width: 1rem;
  height: 1rem;
  border: 1px solid #ddd;
}

.content-tabs::part(tab-list) {
  border-block-end: 1px solid rgb(var(--border-color));
  white-space: nowrap;
  grid-auto-flow: column;
  justify-content: start;
  gap: 2.5rem;
  margin-block-end: 1.5rem;
  display: grid;
}

.content-tabs [role="tab"] {
  box-shadow: 0 1px rgb(var(--text-color));
  padding-block-end: .625rem;
  transition: opacity .2s ease-in, box-shadow .2s ease-in;
}

.content-tabs [role="tab"]:not([aria-selected="true"]) {
  opacity: .6;
  box-shadow: 0 1px #0000;
}

.content-tabs--center::part(tab-list) {
  width: max-content;
  margin-inline: auto;
}

.content-tabs--center::part(tab-panel-list) {
  text-align: center;
  width: min(800px, 100%);
  margin-inline: auto;
  display: block;
}

@media screen and (min-width: 1000px) {
  .content-tabs::part(tab-list) {
    gap: 4.375rem;
    margin-block-end: 2rem;
  }
}



@media screen and (min-width: 700px) {
  .constrained-image {
    width: var(--image-max-width);
  }
}

.text-with-icon {
  align-items: center;
  gap: .625rem;
  display: flex;
}

.text-with-icon > svg {
  flex-shrink: 0;
}

.icon {
  vertical-align: middle;
  height: auto;
  transition: transform .2s;
  display: block;
}

.group[aria-expanded="true"] .icon.group-expanded\:rotate {
  transform: rotateZ(180deg);
}

[dir="rtl"] .icon--direction-aware {
  scale: -1;
}

.offset-icon {
  --icon-baseline-distance: calc(1em * 1.65 / 2);
  top: var(--icon-baseline-distance);
  position: relative;
  translate: 0 -50%;
}

@supports (top: 1lh) {
  .offset-icon {
    top: .5lh;
  }
}

.price-list {
  flex-wrap: wrap;
  align-items: baseline;
  display: flex;
}

.localization-selectors {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1000px) {
  .localization-selectors--footer {
    justify-content: end;
    align-items: end;
  }
}

@media screen and (max-width: 999px) {
  .localization-selectors--footer {
    justify-content: start;
    align-items: start;
  }
}

.localization-selectors__separator {
  background: rgb(var(--border-color));
  width: 1px;
  height: .5rem;
}

.localization-selectors__separator:last-child {
  display: none;
}

.localization-toggle {
  align-items: center;
  column-gap: .625rem;
  display: flex;
}

.localization-toggle > svg {
  transition: transform .2s;
}

.localization-toggle[aria-expanded="true"] > svg {
  transform: rotate(180deg);
}

.country-flag {
  width: 20px;
  height: 15px;
}

.payment-methods {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.badge {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
  align-items: center;
  width: max-content;
  padding: .0625rem .3125rem;
  font-size: .625rem;
  display: flex;
}

.badge--sm {
  font-size: .625rem !important;
}

.badge--on-sale {
  background: rgb(var(--on-sale-badge-background));
  color: rgb(var(--on-sale-badge-text));
}

.badge--sold-out {
  background: rgb(var(--sold-out-badge-background));
  color: rgb(var(--sold-out-badge-text));
}

.badge--bundle {
  background: rgb(var(--bundle-badge-background));
  color: rgb(var(--bundle-badge-text));
}

.badge--custom {
  background: rgb(var(--custom-badge-background));
  color: rgb(var(--custom-badge-text));
}

@media screen and (min-width: 700px) {
  .badge {
    font-size: .6875rem;
  }
}

.badge-list {
  flex-wrap: wrap;
  gap: .25rem;
  display: flex;
}

.badge-list--vertical {
  flex-direction: column;
}

.feature-badge {
  font-size: var(--text-xs);
  align-items: center;
  column-gap: .5rem;
  padding: .375rem .5rem;
  display: inline-flex;
}

.feature-badge :is(svg, img) {
  flex-shrink: 0;
}

.feature-badge-list {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.rating-badge {
  flex-wrap: wrap;
  align-items: center;
  column-gap: .5rem;
  line-height: normal;
  display: flex;
}

.rating-badge__stars {
  column-gap: .125rem;
  display: flex;
  position: relative;
  top: -.5px;
}

@media (pointer: fine) {
  .is-scrollable[allow-drag] {
    cursor: grab;
  }

  .is-scrollable[allow-drag]:active {
    cursor: grabbing;
    -webkit-user-select: none;
    user-select: none;
    scroll-snap-type: none;
  }
}

.text-with-rating {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem .5rem;
  display: flex;
}

.inventory {
  row-gap: .5rem;
  font-weight: 500;
  display: grid;
}

.progress-bar {
  background: rgb(var(--text-color) / .1);
  height: 2px;
  display: block;
  position: relative;
}

.progress-bar:before {
  content: "";
  transform: scaleX(var(--progress, 0));
  transform-origin: var(--transform-origin-start);
  background: currentColor;
  width: 100%;
  height: 100%;
  transition: transform .45s ease-in-out;
  display: block;
}

[data-tooltip] {
  --tooltip-text-color: var(--text-color);
  --tooltip-background: var(--background);
  position: relative;
}

@media screen and (pointer: fine) {
  [data-tooltip]:after {
    content: attr(data-tooltip);
    inset-block-end: calc(100% + var(--tooltip-offset, .5rem));
    border-radius: min(1.5rem, var(--button-border-radius));
    background: rgb(var(--tooltip-text-color));
    color: rgb(var(--tooltip-background));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    justify-self: center;
    width: max-content;
    max-width: 15rem;
    padding: .125rem .5rem;
    font-size: .6875rem;
    transition: opacity .1s ease-in-out, visibility .1s ease-in-out, scale .1s ease-in-out;
    position: absolute;
    left: 50%;
    translate: -50%;
    scale: .9;
  }

  [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
    scale: 1;
  }
}

.separator-dot {
  --dot-size: .25rem;
  width: var(--dot-size);
  height: var(--dot-size);
  background: currentColor;
  border-radius: 100%;
}

.animated-plus {
  --animated-plus-size: .625rem;
  width: var(--animated-plus-size);
  height: var(--animated-plus-size);
  display: block;
  position: relative;
}

.animated-plus:before,
.animated-plus:after {
  content: "";
  background-color: currentColor;
  transition: transform .25s ease-in-out, opacity .25s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(-90deg);
}

.animated-plus:before {
  width: var(--animated-plus-size);
  opacity: 1;
  height: 1px;
}

.animated-plus:after {
  height: var(--animated-plus-size);
  width: 1px;
}

.group[aria-expanded="true"] .animated-plus.group-expanded\:rotate:before {
  opacity: 0;
}

.group[aria-expanded="true"] .animated-plus.group-expanded\:rotate:before,
.group[aria-expanded="true"] .animated-plus.group-expanded\:rotate:after {
  transform: translate(-50%, -50%)rotate(90deg);
}

@media (pointer: fine) {
  .is-scrollable[allow-drag] {
    cursor: grab;
  }

  .is-scrollable[allow-drag]:active {
    cursor: grabbing;
    -webkit-user-select: none;
    user-select: none;
    scroll-snap-type: none;
  }
}

@media screen and (min-width: 700px) {
  .play-button svg {
    width: 5rem;
    height: 5rem;
  }
}

.quantity-selector {
  --quantity-selector-height: 2.7rem;
  --quantity-selector-input-width: 2.5rem;
  --tooltip-offset: calc(-1 * var(--quantity-selector-height) / 2 + 1rem);
  grid-template-columns: var(--quantity-selector-height) auto var(--quantity-selector-height);
  grid-auto-rows: var(--quantity-selector-height);
  border-width: 1px;
  display: inline-grid;
}

.quantity-selector__button {
  place-content: center;
  display: grid;
}

.quantity-selector__button svg {
  transition: opacity .2s;
}

.quantity-selector__button[disabled] svg,
.quantity-selector__button:hover svg {
  opacity: .65;
}

.quantity-selector__input {
  -webkit-appearance: textfield;
  appearance: textfield;
  min-width: var(--quantity-selector-input-width);
  width: var(--quantity-selector-character-count, 1ch);
  text-align: center;
  background: none;
}

.quantity-selector__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-selector--sm {
  --quantity-selector-height: 2.2rem;
  --quantity-selector-input-width: 2rem;
}

.breadcrumb {
  display: none;
}

.breadcrumb--visible {
  display: block;
}

.breadcrumb__list {
  align-items: center;
  column-gap: .5rem;
  line-height: 1;
  display: flex;
}

.breadcrumb__list--pdp {
  align-items: start;
  line-height: .75;
}

.breadcrumb__list-item + .breadcrumb__list-item:before {
  content: "/";
  color: rgb(var(--text-color) / .65);
  margin-inline-end: .375rem;
  font-size: .625rem;
  display: inline-block;
}

@media screen and (min-width: 1000px) {
  .breadcrumb {
    display: block;
  }
}

.breadcrumb--floating {
  position: absolute;
  inset-block-start: 1.25rem;
  inset-inline-start: var(--container-gutter);
}

.breadcrumb--padded {
  padding-bottom: 25px;
}

.section-spacing .breadcrumb--floating {
  inset-block-start: calc(-1 * var(--section-vertical-spacing) + 1.25rem);
}

.bordered-block {
  border-block-start: none;
  border-block-end: 1px solid rgb(var(--border-color));
  margin: 2rem 0;
  padding: 3rem 0;
}

.bordered-box {
  border-width: 1px;
  padding: 2.5rem 1.25rem 1.25rem;
  position: relative;
}

.bordered-box__title {
  inset-block-start: 0;
  text-align: center;
  background: rgb(var(--background));
  width: max-content;
  padding-inline: .5rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1000px) {
  .bordered-box {
    padding: 3rem;
  }
}

.loading-bar {
  z-index: 2000;
  pointer-events: none;
  mix-blend-mode: exclusion;
  transform-origin: var(--transform-origin-start);
  background: #fff;
  width: 100%;
  height: 2px;
  position: fixed;
  top: 0;
  left: 0;
  transform: scaleX(0);
}

@media screen and (min-width: 700px) {
  .loading-bar {
    height: 3px;
  }
}

.circular-progress {
  transition: opacity .25s;
  transform: rotate(-90deg);
}

.circular-progress circle:last-child {
  stroke-dasharray: var(--stroke-dasharray);
  stroke-dashoffset: var(--stroke-dasharray);
}

@media (prefers-reduced-motion: no-preference) {
  img[is="image-parallax"] {
    transform: scale(1.3)translateY(-11.5385%);
  }
}

.scroll-margin-offset {
  scroll-margin-block-start: 20px;
}

.share-buttons {
  align-items: center;
  gap: .875rem;
  display: flex;
}

.share-buttons .social-media {
  --social-media-icon-size: 1rem;
  --social-media-list-gap: .75rem;
}

/*
.share-buttons--native:not([hidden]) + .share-buttons {
  display: none;
}
*/

.loading-state {
  position: relative;
  min-height: 20vh;
}

.loading-state::before {
  content: "Loading...";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
}

.customer-account-box {
  min-height: calc(100vh - var(--section-vertical-spacing) * 2 - var(--announcement-bar-height, 0px) - var(--header-height, 0px));
  text-align: center;
  align-items: center;
  display: grid;
}

.customer-account-category {
  border-block-end-width: 1px;
  padding-block-end: .625rem;
}

.customer-account-overview {
  grid-gap: 2.5rem 3rem;
  display: grid;
}

.customer-account-order-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  display: grid;
}

@media screen and (min-width: 1000px) {
  .customer-account-overview {
    grid-template-columns: minmax(0, 1fr) 14rem;
  }
}

@media screen and (min-width: 1150px) {
  .customer-account-overview {
    grid-template-columns: minmax(0, 1fr) 18rem;
    column-gap: 3.75rem;
  }
}

.customer-address-list {
  --addresses-per-row: 1;
  grid-template-columns: repeat(var(--addresses-per-row), minmax(0, 1fr));
  gap: 3rem 3.75rem;
  display: grid;
}

@media screen and (min-width: 700px) {
  .customer-address-list {
    --addresses-per-row: 2;
  }
}

@media screen and (min-width: 1000px) {
  .customer-address-list {
    --addresses-per-row: 3;
  }
}

.customer-order {
  grid: auto / minmax(0, 1fr);
  gap: 3rem;
  display: grid;
}

.customer-order__details {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 3rem;
  display: grid;
}

.customer-order__address-list {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-content: start;
  gap: 2.5rem 3.75rem;
  display: grid;
}

@media screen and (min-width: 1150px) {
  .customer-order {
    grid: auto / auto-flow minmax(0, 1fr) 14rem;
    column-gap: 3.75rem;
  }
}

@media screen and (min-width: 1400px) {
  .customer-order {
    grid-auto-columns: minmax(0, 1fr) 18rem;
  }
}

.announcement-bar {
  --announcement-bar-gutter: .625rem;
  text-align: center;
  font-size: var(--announcement-bar-font-size);
  place-content: center;
  column-gap: .75rem;
  padding-block: 0.5em;
  padding-inline-start: max(var(--announcement-bar-gutter), 50% - var(--container-max-width) / 2);
  padding-inline-end: max(var(--announcement-bar-gutter), 50% - var(--container-max-width) / 2);
  display: flex;
}




.blog-tags {
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  display: flex;
}

.article {
  --article-wrapper-offset: 0px;
  --article-wrapper-padding-inline: 0px;
  padding-block-end: var(--section-vertical-spacing);
}

.article__toolbar {
  visibility: hidden;
  z-index: 3;
  width: 100vw;
  padding-block: 1rem;
  transition: transform .2s, visibility .2s, inset-block-start .15s ease-in-out;
  position: fixed;
  inset-block-start: var(--sticky-area-height);
  transform: translateY(-100%);
}

.article__toolbar.is-visible {
  visibility: visible;
  transform: translateY(0);
}

.article__toolbar .social-media {
  gap: .75rem 1rem;
}

.article__toolbar .social-media svg {
  width: 1rem;
  height: 1rem;
}

.article__image {
  overflow: hidden;
}

.article__image > img {
  height: var(--article-image-height);
  object-fit: cover;
}

.humans-being-logo {
  height: 200px;
  object-fit: contain;
}

.article__wrapper {
  padding: 1.5rem var(--article-wrapper-padding-inline) 0;
  background: rgb(var(--background));
  gap: 5rem;
  margin-inline-start: max(var(--container-gutter), 50% - var(--container-max-width) / 2 - var(--article-wrapper-padding-inline));
  margin-inline-end: max(var(--container-gutter), 50% - var(--container-max-width) / 2 - var(--article-wrapper-padding-inline));
  display: grid;
  position: relative;
  z-index: 2;
}

.article__image + .article__wrapper {
  margin-block-start: var(--article-wrapper-offset);
}

.article__comments {
  gap: inherit;
  scroll-margin-block-start: calc(var(--sticky-area-height) + 20px);
  display: grid;
}

.article__footer {
  gap: 2.5rem;
  display: grid;
}

@media screen and (min-width: 700px) {
  .article {
    --article-wrapper-offset: -2.75rem;
    --article-wrapper-padding-inline: 3.125rem;
  }

  .article__wrapper {
    gap: 6.25rem;
    padding-block-start: 2.5rem;
  }

  .article__footer {
    grid: auto / auto-flow minmax(0, 1fr);
    align-items: center;
  }
}

@media screen and (min-width: 1000px) {
  .article {
    --article-wrapper-offset: -4.375rem;
  }
}

.comment {
  gap: 1.125rem;
  display: grid;
}

.comment:not(:first-child) {
  padding-block-start: 2rem;
}

.cart-page {
  align-items: start;
  row-gap: max(4rem, var(--section-vertical-spacing-tight));
  display: grid;
}

.cart-footer {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.cart-recap {
  gap: .5rem;
  display: grid;
}

.cart-recap [type="submit"] {
  margin-block-start: 1rem;
}

@media screen and (min-width: 700px) {
  .cart-footer {
    flex-direction: row;
    gap: 3rem;
  }

  .cart-footer > :not(:only-child) {
    width: min(34rem, 100%);
  }

  .cart-recap {
    text-align: end;
    justify-items: end;
    margin-inline-start: auto;
  }
}

@media screen and (min-width: 1000px) {
  .cart-page {
    row-gap: max(6rem, var(--section-vertical-spacing-tight));
  }
}

.cart-drawer::part(body) {
  padding-block: 0;
}

:is(.cart-drawer:has(.cart-drawer__order-note[open])::part(header), .cart-drawer:has(.cart-drawer__order-note[open])::part(body)) {
  opacity: .4;
  pointer-events: none;
  transition: opacity .2s;
}

.cart-drawer:not(:has(.cart-drawer__footer:only-child))::part(footer) {
  padding-block-start: calc(var(--drawer-footer-padding-block) - .5rem);
}

.cart-drawer .free-shipping-bar {
  font-size: var(--text-sm);
  border-block-end-width: 1px;
  margin-inline-start: calc(-1 * var(--drawer-body-padding-inline));
  margin-inline-end: calc(-1 * var(--drawer-body-padding-inline));
  padding-block: .5rem;
  padding-inline-start: var(--drawer-body-padding-inline);
  padding-inline-end: var(--drawer-body-padding-inline);
}

.cart-drawer__items {
  gap: 1.5rem;
  padding-block-start: var(--drawer-body-padding-block);
  padding-block-end: var(--drawer-body-padding-block);
  display: grid;
}

.cart-drawer__complementary-products {
  padding-inline: var(--drawer-body-padding-inline);
  border-block-start-width: 1px;
  padding-block: 1.25rem;
  margin-inline: calc(-1 * var(--drawer-body-padding-inline)) !important;
  row-gap: 1.25rem !important;
}

.cart-drawer__button-price {
  align-items: center;
  display: flex;
}

.cart-drawer__button-price:before {
  content: "";
  background: currentColor;
  border-radius: 100%;
  width: 3px;
  height: 3px;
  margin-inline-end: 1.125rem;
}

.cart-drawer__footer {
  align-items: start;
  gap: 1rem;
  display: grid;
}

.cart-drawer__order-note {
  background-color: rgb(var(--background));
  background-image: var(--background-gradient);
  box-shadow: 1px 0 6px rgb(var(--border-color));
  z-index: 2;
  border-block-start-width: 1px;
  width: 100%;
  padding-block-start: calc(var(--drawer-footer-padding-block) - .5rem);
  padding-block-end: var(--drawer-footer-padding-block);
  padding-inline-start: var(--drawer-body-padding-inline);
  padding-inline-end: var(--drawer-body-padding-inline);
  display: none;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
}

@media screen and (min-width: 700px) {
  .cart-drawer__complementary-products {
    padding-block: 2rem;
    row-gap: 1rem !important;
  }
}

.collection-banner,
.page-banner {
  display: block;
  position: relative;
}

.collection-banner .breadcrumb,
.page-banner .breadcrumb {
  z-index: 2;
}

.collection {
  --collection-gap: 2rem;
  --collection-grid-template: minmax(0, 1fr);
  --collection-sidebar-width: 15rem;
  grid-template-columns: var(--collection-grid-template);
  align-items: start;
  gap: var(--collection-gap);
  margin-block-end: var(--section-vertical-spacing);
  scroll-margin-block-start: calc(var(--collection-toolbar-height, 0px) + 20px);
  display: grid;
}

.collection:only-child {
  margin-block-start: 1.5rem;
}

.collection__main {
  row-gap: var(--section-stack-gap);
  display: grid;
}

.collection .product-list[collection-mobile-layout="medium"] {
  --product-list-items-per-row: var(--collection-items-per-row-medium);
}

.collection .product-list[collection-mobile-layout="large"] {
  --product-list-items-per-row: var(--collection-items-per-row-large);
}

@media screen and (min-width: 700px) {
  .collection:only-child {
    margin-block-start: 3rem;
  }

  .collection .product-list[collection-desktop-layout="compact"] {
    --product-list-items-per-row: var(--collection-items-per-row-compact);
  }

  .collection .product-list[collection-desktop-layout="compact"] .product-card__info {
    display: none;
  }

  .collection .product-list[collection-desktop-layout="medium"] {
    --product-list-items-per-row: var(--collection-items-per-row-medium);
  }

  .collection .product-list[collection-desktop-layout="large"] {
    --product-list-items-per-row: var(--collection-items-per-row-large);
  }
}

@media screen and (min-width: 1150px) {
  .collection {
    --collection-gap: 3.125rem;
  }
}

.collection-toolbar {
  box-shadow: 0 1px rgb(var(--border-color)), 0 -1px rgb(var(--border-color));
  background-color: rgb(var(--background));
  z-index: 2;
  min-height: 3em;
  transition: inset-block-start .15s ease-in-out;
  display: flex;
  position: sticky;
  inset-block-start: var(--sticky-area-height);
  inset-inline-start: 0;
}

.collection-toolbar .popover {
  --popover-block-offset: 0px;
  inset-inline-end: -1px;
}

.collection-toolbar__button-list {
  flex-grow: 1;
  display: flex;
}

.collection-toolbar__button {
  padding-block: .75rem;
}

.collection-toolbar__button :is(svg) {
  transition: transform .2s;
}

.collection-toolbar__button[aria-expanded="true"] svg {
  transform: rotateZ(180deg);
}

.collection-toolbar__button-container {
  width: 100%;
  position: relative;
}

.collection-toolbar__button-container + .collection-toolbar__button-container {
  border-inline-start-width: 1px;
}

.collection-toolbar__layout-switch-list {
  border-inline-start-width: 1px;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  padding-inline: 1.25rem;
  display: flex;
}

.collection-toolbar__button {
  opacity: .5;
  transition: opacity .2s;
}

.collection-toolbar__button:hover,
.collection-toolbar__button.is-active {
  opacity: 1;
}

@media screen and (min-width: 700px) {
  .collection-toolbar {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .collection-toolbar__button {
    padding-block: 1.125rem;
  }

  .collection-toolbar__button-list {
    flex-direction: row-reverse;
    flex: none;
  }

  .collection-toolbar__button-container {
    border-inline-start-width: 1px;
  }

  .collection-toolbar__button-container > .collection-toolbar__button {
    width: max-content;
    padding-inline: 2.875rem;
  }

  .collection-toolbar__layout-switch-list {
    border-inline-width: 0 1px;
    padding-inline: 1.875rem;
  }

  .collection-toolbar__products-count {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
  }
}

.facets .accordion-list .accordion:first-child {
  border-block-start-width: 0;
}

.facets .accordion-list .accordion:first-child .accordion__toggle {
  padding-block-start: 0;
}

.facets .accordion-list .accordion:last-child {
  border-block-end-width: 0;
}

.facets .accordion-list .accordion:last-child .accordion__content {
  padding-block-end: 0;
}

.active-facets {
  flex-wrap: wrap;
  align-items: center;
  gap: .625rem;
  display: flex;
}

.removable-facet {
  font-size: var(--text-sm);
  border-width: 1px;
  align-items: center;
  column-gap: .375rem;
  padding: .375rem .625rem;
  display: flex;
}

.facets-clear-all {
  margin-inline-start: .625rem;
}

@media screen and (min-width: 700px) {
  .removable-facet {
    font-size: var(--text-base);
    column-gap: .625rem;
    padding: .625rem .875rem;
  }
}

@media screen and (min-width: 1000px) {
  .facets-sidebar {
    top: calc(var(--sticky-area-height) + var(--collection-toolbar-height, 0px) + 20px);
    width: var(--collection-sidebar-width);
    grid-column-end: -2;
    display: block;
    position: sticky;
  }
}

.collection-list {
  gap: var(--collection-list-gap, 0px);
  display: flex;
}

.collection-list .collection-card {
  flex-basis: var(--collection-list-item-size, calc(100% / var(--collection-list-items-per-row) - var(--collection-list-gap, 0px) * (var(--collection-list-items-per-row) - 1) / var(--collection-list-items-per-row)));
}

.collection-list--text-outside {
  row-gap: 3rem;
}

.collection-card {
  align-content: start;
  gap: 1.5rem;
  display: grid;
}

.countdown {
  gap: var(--section-stack-gap);
  display: grid;
}

.countdown__timer {
  text-transform: uppercase;
  text-align: center;
  grid: auto / auto-flow minmax(0, 1fr) auto;
  align-items: center;
  column-gap: .75rem;
  display: grid;
}

.countdown__timer-item {
  display: grid;
}

.countdown__timer-flip {
  --heading-letter-spacing: 0;
  justify-content: center;
  column-gap: 2px;
  display: flex;
}

.countdown__timer-flip::part(digit) {
  color: rgb(var(--countdown-timer-flip-text-color));
}

.countdown__timer-flip--background::part(digit) {
  background: rgb(var(--countdown-timer-flip-background));
  border-radius: .25rem;
  padding: .375rem .5rem;
}

@media screen and (max-width: 699px) {
  .countdown__content {
    text-align: center;
  }

  .countdown__timer {
    justify-content: center;
  }
}

@media screen and (min-width: 700px) {
  .collection-list--single-card {
    margin: 0 20%;
  }

  .countdown {
    grid-template-columns: minmax(250px, 570px) max-content;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
  }

  .countdown__timer-item {
    row-gap: .5rem;
  }

  .countdown--reverse {
    grid-template-columns: max-content minmax(250px, 570px);
  }

  .countdown--reverse .countdown__timer {
    order: -1;
  }
}

@media screen and (min-width: 1000px) {
  .countdown__timer {
    column-gap: 1rem;
  }
}

.countdown-condensed {
  column-gap: 2.25rem;
  justify-content: var(--countdown-condensed-justify-content, space-between);
  padding: 1rem var(--container-gutter);
  display: flex;
}

.countdown-condensed__text {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.5rem;
  display: flex;
}

.countdown-condensed__timer {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  flex-shrink: 0;
  align-items: center;
  column-gap: .25rem;
  display: flex;
}

.countdown-condensed__timer-item {
  display: grid;
}

.countdown-condensed__timer-flip {
  font-size: .625rem;
  font-weight: bolder;
}

.countdown-condensed__timer-unit {
  font-size: .5rem;
}

@media screen and (max-width: 699px) {
  .countdown-condensed .h6 {
    font-size: .625rem;
  }
}

@media screen and (min-width: 700px) {
  .countdown-condensed {
    column-gap: 5rem;
  }

  .countdown-condensed__timer {
    column-gap: .75rem;
  }

  .countdown-condensed__timer-flip {
    font-size: .75rem;
  }

  .countdown-condensed__timer-unit {
    font-size: .625rem;
  }
}

.footer {
  background: rgb(var(--background));
  color: rgb(var(--text-color));
  padding-block-start: var(--section-vertical-spacing);
  padding-block-end: min(var(--section-vertical-spacing), 3rem);
}

.footer__inner {
  row-gap: min(var(--section-vertical-spacing), 3rem);
  display: grid;
}

.footer__block-list {
  justify-content: start;
  align-items: start;
  gap: min(var(--section-vertical-spacing), 2.5rem);
  display: grid;
}

.footer__aside {
  text-align: center;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
  display: grid;
}

.footer__aside .payment-methods {
  justify-content: center;
  max-width: 30rem;
}

@media screen and (min-width: 700px) {
  .footer__block-list {
    justify-content: var(--footer-content-justify-items);
    flex-wrap: wrap;
    gap: 3rem;
    display: flex;
  }

  .footer__block {
    flex: auto;
  }

  .footer__block--links,
  .footer__block--bcorp-tagline {
    flex-grow: 0;
    max-width: 14rem;
  }

  .footer__block--newsletter {
    flex-basis: 14rem;
    max-width: 18rem;
  }

  .footer__block--text {
    flex-basis: 14rem;
    max-width: 24rem;
  }
}

@media screen and (min-width: 1000px) {
  .footer__aside {
    grid-auto-flow: column;
    justify-content: space-between;
  }

  .footer__aside .payment-methods {
    justify-content: end;
  }
}

@media screen and (min-width: 1150px) {
  .footer__block-list {
    justify-content: var(--footer-content-justify-items);
    column-gap: 3.75rem;
  }
}

@media screen and (min-width: 1400px) {
  .footer__block-list {
    column-gap: 5rem;
  }
}

.gift-card__image {
  max-width: 16.875rem;
  margin-inline: auto;
}

.gift-card__logo {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 30px auto;
}

.gift-card__redeem-info {
  padding: 1.5rem;
}

.gift-card__save {
  place-items: center;
  gap: 1.5rem;
  display: grid;
}

.gift-card__qr-code {
  width: 5rem;
  height: 5rem;
}

@media screen and (min-width: 700px) {
  .gift-card__redeem-info {
    padding: 2rem;
  }

  .gift-card__save {
    grid-auto-flow: column;
  }
}

.faq {
  justify-content: start;
  align-items: start;
  column-gap: 3.75rem;
  display: flex;
}

.faq__toc {
  align-content: start;
  justify-items: start;
  gap: .75rem;
  /*min-width: 150px;
  max-width: 300px;*/
  transition: inset-block-start .15s ease-in-out;
  display: grid;
  position: sticky;
  inset-block-start: calc(var(--sticky-area-height) + 1.25rem);
}

.faq__toc-item {
  text-underline: none;
  background: linear-gradient(to right, currentColor, currentColor) 0 min(100%, 1.35em) / 0 1px no-repeat;
  transition: background-size .3s ease-in-out;
}

.faq__toc-item.is-active {
  background-size: 100% 1px;
}

.faq__content {
  flex-basis: 100%;
}

.faq__category {
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1rem;
  scroll-margin-block-start: 1.25rem;
  display: flex;
}

.faq__category + .accordion {
  margin-block-start: 1.25rem;
}

.accordion + .faq__category {
  margin-block-start: 3rem;
}

.featured-collections-navigation {
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: safe center;
  column-gap: 1.5rem;
  display: grid;
}

.featured-collections-navigation > button:not(:only-child) {
  padding-block-end: 2px;
  position: relative;
}

.featured-collections-navigation > button:not(:only-child):after {
  content: "";
  width: calc(100% - var(--heading-letter-spacing));
  transform-origin: var(--transform-origin-start);
  background: currentColor;
  height: 1px;
  transition: transform .3s;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  transform: scaleX(0);
}

.featured-collections-navigation > button:not(:only-child)[aria-current="true"]:after {
  transform: scaleX(1);
}

@media screen and (min-width: 700px) {
  .featured-collections-navigation {
    column-gap: 2.5rem;
  }
}

.featured-collections-carousel {
  display: grid;
  position: relative;
}

.featured-collections-carousel > * {
  grid-area: 1 / -1;
}

.featured-collections-carousel__item {
  gap: var(--section-stack-gap);
  grid-template-columns: minmax(0, 1fr);
  display: grid;
}

.featured-collections-carousel__item:not(.is-selected) {
  display: none;
}


.header-search {
  z-index: -1;
  width: 100%;
  display: none;
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 0;
}

.header-search::part(overlay) {
  min-height: calc(100vh - var(--sticky-area-height));
  inset-block-start: var(--sticky-area-height);
}

.header-search::part(content) {
  max-height: calc(100vh - var(--header-height, 0px) - var(--announcement-bar-height, 0px) - 1.25rem);
  background: rgb(var(--background));
  color: rgb(var(--text-color));
  overflow: auto;
}

@supports (max-height: 100dvh) {
  .header-search::part(content) {
    max-height: min(var(--header-search-max-height, 100vh), 100dvh - var(--header-height, 0px) - var(--announcement-bar-height, 0px) - 1.25rem);
  }
}

.header-search__form-control {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: .75rem;
  padding-block: .75rem;
  display: grid;
}

.header-search__input {
  -webkit-appearance: none;
  appearance: none;
  background: none;
}

.header-search__input::-webkit-search-decoration {
  display: none;
}

.header-search__input::-webkit-search-cancel-button {
  display: none;
}

.header-search__input::-webkit-search-results-button {
  display: none;
}

.header-search__input::-webkit-search-results-decoration {
  display: none;
}

@media screen and (min-width: 700px) {
  .header-search__form-control {
    column-gap: 1.25rem;
    padding-block: 1.5rem;
  }
}

.predictive-search {
  display: block;
}

.predictive-search__no-results {
  text-align: center;
  padding-block: 2.5rem 4rem;
}

.predictive-search__results {
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  padding-block: 1.25rem 2rem;
  display: grid;
}

.predictive-search__suggestions {
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  gap: .75rem 1.5rem;
  display: grid;
}

.predictive-search__suggestions mark {
  background: none;
  font-weight: bolder;
}

.predictive-search__suggestions span,
.predictive-search__suggestions mark {
  text-transform: capitalize;
}

.predictive-search__tabs::part(tab-list-scrollable) {
  scrollbar-width: none;
  margin-inline-start: calc(-1 * var(--distance-to-bleed));
  margin-inline-end: calc(-1 * var(--distance-to-bleed));
  padding-inline-start: var(--distance-to-bleed);
  padding-inline-end: var(--distance-to-bleed);
  display: flex;
  overflow: auto;
}

.predictive-search__tabs::part(tab-list) {
  width: min-content;
  min-width: 100%;
}

.predictive-search__category {
  border-block-end-width: 1px;
  padding-block-end: .625rem;
}

.predictive-search__products {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
  display: grid;
}

.predictive-search__blog-posts {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem 2.5rem;
  display: grid;
}

.predictive-search__blog-posts .blog-post-card__info {
  row-gap: .75rem;
}

.predictive-search__collections {
  align-items: start;
  gap: var(--container-gutter);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}

@media screen and (max-width: 699px) {
  .predictive-search__suggestions {
    grid: auto / auto-flow max-content;
    row-gap: 1.25rem;
  }

  .predictive-search__products .horizontal-product-card__figure {
    max-width: 4.375rem;
  }

  .predictive-search__blog-posts .blog-post-card {
    grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
    align-items: center;
  }
}

@media screen and (min-width: 700px) {
  .predictive-search__no-results {
    padding-block: 4.75rem 6.25rem;
  }

  .predictive-search__results {
    padding-block: 1.5rem 3rem;
  }

  .predictive-search__blog-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .predictive-search__blog-posts .blog-post-card__category {
    font-size: .6875rem;
  }
}

@media screen and (min-width: 1000px) {
  .predictive-search__results--with-suggestions {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .predictive-search__products {
    grid-template-columns: repeat(var(--product-list-items-per-row, 4), minmax(0, 1fr));
  }

  .predictive-search__blog-posts {
    grid-template-columns: repeat(var(--blog-post-list-items-per-row, 4), minmax(0, 1fr));
  }

  .predictive-search__collections {
    grid-template-columns: repeat(var(--collection-list-items-per-row), minmax(0, 1fr));
  }
}

.mega-menu {
  --mega-menu-gap: 2.5rem;
  --mega-menu-linklist-gap: 2.5rem;
  --mega-menu-promo-gap: 2rem;
  max-height: calc(100vh - var(--header-height, 0px) - var(--announcement-bar-height, 0px) - 20px);
  justify-content: safe flex-start;
  align-items: start;
  column-gap: var(--mega-menu-gap);
  background: rgb(var(--background));
  color: rgb(var(--text-color));
  border-block-end-width: 1px;
  width: 100%;
  padding-block: 2.5rem;
  padding-inline-start: var(--container-gutter);
  padding-inline-end: var(--container-gutter);
  display: flex;
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 0;
  overflow-y: auto;
}

.mega-menu--reverse {
  flex-direction: row-reverse;
}

.mega-menu--reverse .mega-menu__promo {
  justify-content: flex-start;
}

.mega-menu__linklist {
  gap: var(--mega-menu-linklist-gap);
  flex-wrap: wrap;
  flex: 0 auto;
  display: flex;
}

.mega-menu__linklist > * {
  max-width: 280px;
}

.mega-menu__promo {
  justify-content: flex-end;
  column-gap: var(--mega-menu-promo-gap);
  flex: 0 auto;
  display: flex;
}

.mega-menu__promo > * {
  flex: 315px;
  min-width: 240px;
  max-width: 315px;
}

@media screen and (min-width: 1400px) {
  .mega-menu {
    --mega-menu-gap: 6.25rem;
    --mega-menu-linklist-gap: 2.5rem 6.25rem;
  }

  .mega-menu:has(.mega-menu__linklist > :nth-child(5)) {
    --mega-menu-linklist-gap: 2.5rem 4rem;
  }
}

.header-sidebar {
  --header-linklist-padding-block: 1rem;
}

.header-sidebar::part(close-button) {
  opacity: 1;
}

.header-sidebar::part(header) {
  border-block-end: none;
}

.header-sidebar::part(content) {
  box-sizing: border-box;
  overflow-x: hidden;
}

.header-sidebar::part(panel-list) {
  position: relative;
}

.header-sidebar__scroller {
  padding-block-end: var(--drawer-body-padding-block);
  padding-inline-start: var(--drawer-body-padding-inline);
  padding-inline-end: var(--drawer-body-padding-inline);
  overflow-y: auto;
}

.header-sidebar__linklist-button {
  text-align: start;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-block-start: calc(var(--header-linklist-padding-block) / 2);
  padding-block-end: calc(var(--header-linklist-padding-block) / 2);
  transition: color .2s;
  display: flex;
}

@media screen and (pointer: fine) {
  .header-sidebar__main-panel li:has([aria-expanded="true"]) ~ li .header-sidebar__linklist-button {
    color: rgb(var(--text-color) / .65);
  }

  .header-sidebar__main-panel li:has(~ li [aria-expanded="true"]):not(:has([aria-expanded="true"])) .header-sidebar__linklist-button {
    color: rgb(var(--text-color) / .65);
  }
}

.header-sidebar__sub-panel li:has([aria-expanded="true"]) ~ li .header-sidebar__linklist-button {
  color: rgb(var(--text-color) / .65);
}

.header-sidebar__sub-panel li:has(~ li [aria-expanded="true"]):not(:has([aria-expanded="true"])) .header-sidebar__linklist-button {
  color: rgb(var(--text-color) / .65);
}

.header-sidebar__sub-panel li:has([aria-expanded="true"]) .header-sidebar__linklist-button {
  color: rgb(var(--text-color)) !important;
}

.header-sidebar__back-button {
  border-block-end-width: 1px;
  width: 100%;
  margin-block-end: 1rem;
  padding-block-start: var(--header-linklist-padding-block);
  padding-block-end: 1rem;
}

.header-sidebar__back-button.is-divided {
  margin-block-end: .5rem;
}

.header-sidebar__nested-linklist {
  border-inline-start-width: 1px;
  row-gap: .75rem;
  margin-block: 2px 1.125rem;
  margin-inline-start: .5rem;
  padding-inline-start: 1.5rem;
  display: grid;
}

.header-sidebar__main-panel {
  background-color: rgb(var(--background));
  background-image: var(--background-gradient);
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  grid-auto-columns: max-content;
  height: 100%;
  display: grid;
}

.header-sidebar__footer {
  position: relative;
}

.header-sidebar__footer:before {
  content: "";
  background: linear-gradient(transparent, rgb(var(--background)));
  width: 100%;
  height: 2.5rem;
  position: absolute;
  inset-block-end: 100%;
  inset-inline-start: 0;
}

.header-sidebar__footer > * {
  padding-block: 1.25rem;
  padding-inline-start: var(--drawer-footer-padding-inline);
  padding-inline-end: var(--drawer-footer-padding-inline);
}

.header-sidebar__footer .localization-selectors {
  border-block-start-width: 1px;
  justify-content: flex-start;
  column-gap: 1.25rem;
}

.header-sidebar__collapsible-panel {
  width: var(--drawer-max-width);
  background-color: rgb(var(--background));
  background-image: var(--background-gradient);
  height: 100%;
  display: none;
  position: absolute;
  inset-block-start: 0;
}

.header-sidebar__promo {
  grid-auto-flow: column;
  gap: 2rem 1.25rem;
  margin-block-start: 1.25rem;
  display: flex;
}

.header-sidebar__promo > * {
  /*min-width: 12.5rem;*/
  min-width: 100%;
}

.header-sidebar__promo > *:only-child {
  min-width: 100%;
}

.header-sidebar__linklist.divide-y .header-sidebar__linklist-button {
  padding-block-start: var(--header-linklist-padding-block);
  padding-block-end: var(--header-linklist-padding-block);
}

.header-sidebar__linklist.divide-y .header-sidebar__back-button {
  padding-block-end: var(--header-linklist-padding-block);
}

.header-sidebar__linklist.divide-y .header-sidebar__nested-linklist {
  margin-block-end: calc(.5rem + var(--header-linklist-padding-block));
}

.header-sidebar__linklist.divide-y .header-sidebar__promo {
  margin-block-start: .75rem;
}

@media screen and (min-width: 700px) {
  .header-sidebar {
    --header-linklist-padding-block: 1.25rem;
  }
}

@media screen and (min-width: 1000px) {
  .header-sidebar::part(panel-list) {
    position: static;
  }

  .header-sidebar::part(content) {
    overflow-x: visible;
  }

  .header-sidebar:has(.header-sidebar__collapsible-panel[aria-activedescendant])::part(content) {
    border-inline-end: 1px solid rgb(var(--border-color));
  }

  .header-sidebar__main-panel {
    z-index: 1;
    position: relative;
  }

  .header-sidebar__collapsible-panel .header-sidebar__scroller {
    inset-block: min(var(--header-height), 5rem) 0;
    width: 100%;
    position: absolute;
  }

  .header-sidebar__promo {
    flex-direction: column;
  }

  .header-sidebar__promo > * {
    min-width: 100%;
  }
}

.image-with-text {
  display: grid;
  overflow: hidden;
}

@media screen and (min-width: 50rem) {
  .image-with-text > .prose {
    box-sizing: content-box;
    max-width: var(--image-with-text-content-max-width);
    padding-inline-start: var(--container-gutter);
    padding-inline-end: var(--container-gutter);
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 700px) {
  .image-with-text > .prose {
    max-width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.image-with-text > :is(svg, img) {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 699px) {
  .image-with-text > .prose {
    margin-inline: auto;
  }
}

@media screen and (min-width: 700px) {
  .image-with-text {
    --image-with-text-gap: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .image-with-text > .prose {
    padding-inline-start: var(--image-with-text-gap);
  }

  .image-with-text--reverse > :is(picture, svg, img) {
    order: 9999;
  }

  .image-with-text--reverse > .prose {
    margin-inline-start: auto;
    padding-inline-end: var(--image-with-text-gap);
  }
}

@media screen and (min-width: 1000px) {
  .image-with-text {
    --image-with-text-gap: 6rem;
  }
}

.image-with-text-block > :not(img, svg, picture) {
  background: rgb(var(--background));
  padding: 2.375rem 1.25rem;
  box-shadow: 0 1px 20px #3636364d;
}

@media screen and (min-width: 700px) {
  .image-with-text-block > :not(img, svg, picture) {
    padding: 3rem 1rem;
  }
}

.image-with-text-block--parallax {
  min-height: var(--content-over-media-height, auto);
  aspect-ratio: var(--image-with-text-block-aspect-ratio);
  transform: unset;
  clip-path: inset(0);
}

@media (prefers-reduced-motion: no-preference) {

  .image-with-text-block--parallax > svg,
  .image-with-text-block--parallax > picture img {
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }

  @supports (min-height: 100lvh) {
    :is(.image-with-text-block--parallax > svg, .image-with-text-block--parallax > picture img) {
      min-height: 100lvh;
    }
  }
}

.images-with-text-scroll {
  --sticky-area-height: calc(var(--announcement-bar-is-sticky, 0) * var(--announcement-bar-height, 0px) + var(--header-is-sticky, 0) * var(--header-height, 0px));
  align-items: start;
  display: grid;
  position: relative;
}

.images-with-text-scroll:before {
  content: "";
  background: rgb(var(--images-with-text-scroll-overlay));
  z-index: 1;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.images-with-text-scroll__image-background,
.images-with-text-scroll__container {
  grid-area: 1 / -1;
}

.images-with-text-scroll__image-background {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  position: sticky;
  inset-block-start: 0;
}

.images-with-text-scroll__container {
  z-index: 1;
  place-items: start center;
  row-gap: 2rem;
  padding-block-start: var(--section-vertical-spacing);
  padding-block-end: var(--section-vertical-spacing);
  display: grid;
}

.images-with-text-scroll__item {
  display: contents;
}

.images-with-text-scroll__item:not(:first-child) > .images-with-text-scroll__image {
  opacity: 0;
}

.images-with-text-scroll__image {
  grid-area: 1 / 1;
  align-self: center;
}

.images-with-text-scroll__text {
  text-align: center;
  grid-area: 2 / 1;
  max-width: 375px;
}

@media screen and (min-width: 700px) {
  .images-with-text-scroll__container {
    row-gap: 3rem;
  }
}

@media screen and (max-width: 999px) {
  .images-with-text-scroll__item:not(.is-selected) {
    visibility: hidden;
  }

  .images-with-text-scroll__image {
    width: min(56vw, 27.5rem);
  }
}

@media screen and (min-width: 1000px) {
  .images-with-text-scroll {
    min-height: calc(100vh - var(--sticky-area-height));
  }

  .images-with-text-scroll__container {
    --image-width: min(50vw - var(--container-gutter), 575px);
    --image-height: min(var(--image-width), var(--image-width) / var(--images-with-text-scroll-master-image-ratio));
    --content-padding: calc((100vh - var(--image-height) - var(--sticky-area-height)) / 2);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    align-items: center;
    padding-block-start: var(--content-padding);
    padding-block-end: var(--content-padding);
  }

  .images-with-text-scroll__image {
    height: var(--image-height);
    object-fit: contain;
    object-position: center;
    position: sticky;
    inset-block-start: calc(var(--content-padding) + var(--sticky-area-height));
  }

  .images-with-text-scroll__text {
    text-align: var(--images-with-text-scroll-text-alignment);
    grid-area: auto / 2;
  }

  .images-with-text-scroll--reverse .images-with-text-scroll__image {
    grid-column: 2;
  }

  .images-with-text-scroll--reverse .images-with-text-scroll__text {
    grid-column: 1;
  }
}

.logo-list {
  grid: auto / repeat(var(--logo-list-items-per-row), minmax(0, 250px));
  justify-content: center;
  gap: var(--logo-list-gap);
  display: grid;
}

.logo-list__item {
  outline: 1px solid rgb(var(--logo-list-item-border-color));
  place-items: center;
  padding: 1.25rem;
  display: grid;
}

@media screen and (min-width: 700px) {
  .logo-list__item {
    padding: 2rem 1.5rem;
  }
}

.media-grid {
  --media-grid-column-count: 2;
  align-items: start;
  gap: var(--media-grid-gap);
  grid: auto-flow dense var(--media-grid-row-height) / repeat(var(--media-grid-column-count), minmax(0, 1fr));
  display: grid;
}

.media-grid__item {
  grid-area: span min(2, var(--media-grid-item-row-span)) / span 2;
  height: 100%;
  container-type: inline-size;
}

.media-grid__item > * {
  height: 100%;
}

@media screen and (min-width: 700px) {
  .media-grid {
    --media-grid-column-count: 12;
  }

  .media-grid__item {
    grid-area: span var(--media-grid-item-row-span) / span var(--media-grid-item-column-span);
  }
}

.multi-column {
  grid: var(--multi-column-grid);
  column-gap: var(--multi-column-gap);
  row-gap: var(--section-stack-gap);
  justify-content: var(--multi-column-content-alignment);
  display: grid;
}

.multi-column__item {
  align-content: start;
  gap: 2rem;
  display: grid;
}

.multi-column__item--overlap {
  gap: 0;
}

.multi-column__item--overlap > .prose {
  isolation: isolate;
  margin-block-start: -.875rem;
}

.multiple-media-with-text {
  --multiple-media-with-text-gap: 2rem;
  grid: var(--multiple-media-with-text-grid);
  gap: var(--multiple-media-with-text-gap);
  display: grid;
}

.multiple-media-with-text__media-wrapper {
  grid-area: media-wrapper;
  grid: var(--multiple-media-with-text-media-grid);
  column-gap: var(--multiple-media-with-text-media-gap);
  display: grid;
}

.multiple-media-with-text__media-wrapper > * {
  grid-row: 1 / -1;
}

.multiple-media-with-text__content-wrapper {
  grid-area: content-wrapper;
}

@media screen and (min-width: 1000px) {
  .multiple-media-with-text {
    --multiple-media-with-text-gap: 2rem 4rem;
  }
}

@media screen and (min-width: 1150px) {
  .multiple-media-with-text {
    --multiple-media-with-text-gap: 2rem 7.5rem;
  }
}

.multiple-media-with-text--overlap .multiple-media-with-text__media-wrapper > :first-child {
  grid-column: 1 / 3;
}

.multiple-media-with-text--overlap .multiple-media-with-text__media-wrapper > :nth-child(2) {
  grid-column: 2 / 4;
}

@media screen and (min-width: 700px) {
  .multiple-media-with-text--overlap.multiple-media-with-text--reverse .multiple-media-with-text__media-wrapper > :first-child {
    grid-column: 2 / 4;
  }

  .multiple-media-with-text--overlap.multiple-media-with-text--reverse .multiple-media-with-text__media-wrapper > :nth-child(2) {
    grid-column: 1 / 3;
  }
}

@media screen and (min-width: 700px) {
  .newsletter .form {
    width: 35rem;
  }
}

@media screen and (min-width: 700px) {
  .newsletter-popup {
    width: 23.75rem;
    inset-inline-start: auto;
  }
}

.password {
  position: relative;
}

.password__inner {
  isolation: isolate;
  align-content: space-between;
  row-gap: 3rem;
  min-height: 100vh;
  padding-block: 1.6rem;
  display: grid;
}

@supports (height: 100dvh) {
  .password__inner {
    min-height: 100dvh;
  }
}

.password__header {
  justify-items: center;
  display: grid;
}

.password__header > * {
  grid-area: 1 / -1;
}

.password__password-button {
  margin-inline-start: auto;
}

.password__block-list {
  justify-self: center;
  row-gap: .625rem;
  width: min(100%, 30rem);
  display: grid;
}

.password__content,
.password__social {
  padding: 1.25rem;
}

.password__social {
  display: grid;
}

.password__social .social-media {
  justify-content: center;
}

.password__footer {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  display: flex;
}

@media screen and (min-width: 700px) {
  .password__content {
    padding: 2.5rem;
  }

  .password__footer {
    justify-content: space-between;
  }
}

.prev-next-blog-posts {
  gap: 3.125rem;
  display: grid;
}

@media screen and (min-width: 700px) {
  .prev-next-blog-posts {
    grid: auto / auto-flow minmax(min-content, 31.25rem);
    justify-content: center;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 1150px) {
  .prev-next-blog-posts {
    gap: 3.75rem;
  }
}

.shopify-section--main-product .section-spacing {
  padding-block-start: 0;
}

.product {
  grid: var(--product-grid, none);
  align-items: start;
  gap: var(--product-gap, 1.875rem);
  display: grid;
}

.shopify-section--main-product-with-breadcrumb .section-spacing {
  padding-block-start: 0;
}

@media screen and (min-width: 1000px) {
  .shopify-section--main-product .section-spacing {
    padding-block-start: var(--container-gutter);
  }

  .product {
    --product-gap: 3.5rem;
  }
}

@media screen and (min-width: 1150px) {
  .product {
    --product-gap: 5rem;
  }
}

.product-gallery {
  --product-gallery-gap: 0.5rem;
  --product-gallery-thumbnail-list-gap: 0.1rem 0.1rem;
  --product-gallery-thumbnail-size: 6rem;
  flex-direction: var(--product-gallery-flex-direction, column);
  align-items: start;
  gap: 1.5rem;
  grid-area: product-gallery;
  display: flex;
  position: relative;
}

.quick-buy-modal .product-gallery {
  --product-gallery-carousel-gap: 0rem;
  --product-gallery-thumbnail-list-gap: 0.5rem 0.3125rem;
  --product-gallery-thumbnail-size: clamp(2.5rem, 5vw, 2.75rem);
}

.product-gallery__zoom-button {
  z-index: 1;
  transition: opacity .2s, visibility .2s;
  position: absolute;
  inset-block-start: 1.25rem;
  inset-inline-end: 0;
}

.product-gallery__zoom-button--hidden {
  opacity: 0;
  visibility: hidden;
}

.product-gallery__image-list {
  row-gap: var(--product-gallery-gap);
  grid-auto-rows: max-content;
  grid-auto-columns: minmax(0, 1fr);
  width: 100%;
  display: grid;
}

.product-gallery__carousel {
  grid: var(--product-gallery-carousel-grid, auto / auto-flow 100%);
  align-items: start;
  gap: var(--product-gallery-carousel-gap, 1.5rem min(1.5rem, var(--container-gutter)));
  scroll-snap-type: var(--product-gallery-carousel-scroll-snap-type, x mandatory);
  display: grid;
  position: relative;
}

@media screen and (min-width: 700px) {

  .quick-buy-modal .product-gallery__carousel,
  .quick-buy-modal .product-gallery__thumbnail-scroller {
    margin-inline: 0;
  }
}

.product-gallery[allow-zoom] .product-gallery__media {
  cursor: var(--cursor-zoom-in-svg-url) 18 18, zoom-in;
}

.product-gallery__media > * {
  width: 100%;
}

.product-gallery__thumbnail-list {
  flex-shrink: 0;
  max-width: 100%;
  position: relative;
}

.quick-buy-modal .product-gallery__thumbnail-list--left {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  height: calc(100% - 1rem);
}

.quick-buy-modal .product-gallery__thumbnail {
  padding: 0;
}

.product-gallery__thumbnail-scroller {
  grid-auto-columns: var(--product-gallery-thumbnail-size);
  grid-auto-flow: var(--product-gallery-thumbnail-list-grid-auto-flow, column);
  align-content: start;
  align-items: start;
  gap: var(--product-gallery-thumbnail-list-gap);
  max-height: var(--product-gallery-thumbnail-list-max-height, none);
  scroll-snap-type: both mandatory;
  overscroll-behavior: contain;
  scrollbar-width: none;
  grid-template-columns: none;
  display: grid;
  position: relative;
  overflow: auto;
}

.product-gallery__thumbnail-scroller::-webkit-scrollbar {
  display: none;
}

.quick-buy-modal .product-gallery__thumbnail-list--left .product-gallery__thumbnail-scroller {
  padding: 0;
}

.product-gallery__thumbnail {
  border: 1px solid #0000;
  padding: 1px;
  transition: border-color .1s;
  position: relative;
}

.product-gallery__thumbnail[aria-current="true"] {
  border-color: currentColor;
}

.product-gallery__media-badge {
  position: absolute;
  inset-block-start: 3px;
  inset-inline-end: 3px;
}

@media screen and (max-width: 999px) {
  .product-gallery__carousel-with-arrows {
    align-items: center;
    display: flex;
  }

  .product-gallery__carousel-with-arrows .product-gallery__media > img {
    width: 45vw;
    margin-inline: auto;
  }
}

@media screen and (min-width: 1000px) {
  .product-gallery__thumbnail-list {
    position: sticky;
    inset-block-start: calc(var(--sticky-area-height) + 20px);
  }

  .product-gallery__media {
    scroll-margin-block-start: 1.25rem;
  }
}

.product-info {
  --product-info-gap: 1rem;
  grid-area: product-info;
}

/* Custom font overrides */

.product-info .product-title,
.product-card__info a.product-title.h5,
.price-list--product .h4,
.product-card__info .price-list .h5 .prose a.button,
.shopify-section a.button,
.prose .button-group a.button,
.prose a.link,
.buy-buttons .button,
.cart-drawer__footer .button,
.cart-recap .button {
  font-family: var(--text-font-family);
  font-weight: bold;
}

/* end Custom font overrides */

.product-info__block-list > :not(:first-child) {
  margin-block-start: var(--product-info-gap);
}

.product-info__block-list > :not(:last-child) {
  margin-block-end: var(--product-info-gap);
}

.product-info__block-item:empty {
  display: none;
}

.product-info__block-item:not(:has(> :not([hidden]))) {
  display: none;
}

.product-info__block-item:is([data-block-type="vendor"], [data-block-type="title"], [data-block-type="sku"], [data-block-type="price"]) {
  --product-info-gap: .5rem;
}

.product-info__block-group:has(.product-info__block-item:is([data-block-type="vendor"], [data-block-type="title"], [data-block-type="sku"], [data-block-type="price"])) {
  --product-info-gap: .5rem;
}

.product-info__block-item:is([data-block-type="variant-picker"], [data-block-type="product-variations"], [data-block-type="separator"], [data-block-type="description"], [data-block-type="text"], [data-block-type="liquid"], [data-block-type="share-buttons"]) {
  --product-info-gap: 1.5rem;
}

.product-info__block-group:has(.product-info__block-item:is([data-block-type="variant-picker"], [data-block-type="product-variations"], [data-block-type="separator"], [data-block-type="description"], [data-block-type="text"], [data-block-type="liquid"], [data-block-type="share-buttons"])) {
  --product-info-gap: 1.5rem;
}

.product-info__block-item:is([data-block-type="inventory"], [data-block-type="buy-buttons"], [data-block-type="pickup-availability"], [data-block-type="more-information"], [data-block-type="offers"]) {
  --product-info-gap: .5rem;
  /*2rem*/
}

.product-info__block-group:has(.product-info__block-item:is([data-block-type="inventory"], [data-block-type="buy-buttons"], [data-block-type="pickup-availability"], [data-block-type="more-information"], [data-block-type="offers"])) {
  --product-info-gap: 2rem;
}

.product-info__block-item[data-block-type="complementary-products"] {
  --product-info-gap: 3rem;
}

.product-info__block-group:has(.product-info__block-item[data-block-type="complementary-products"]) {
  --product-info-gap: 3rem;
}

@media screen and (max-width: 699px) {
  .product-info--center :is([data-block-type="vendor"], [data-block-type="title"], [data-block-type="sku"], [data-block-type="price"]) {
    text-align: center;
  }

  .product-info--center :is(.badge-list, .price-list, .rating-badge) {
    justify-content: center;
  }

  .product-info--center .text-with-rating {
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (min-width: 1000px) {
  .product-info {
    position: sticky;
    inset-block-start: calc(var(--sticky-area-height) + 20px);
  }
}

.product-content-below-gallery {
  grid-area: product-content;
}

.product-content-below-gallery product-recommendations:not(:first-child) {
  margin-block-start: max(48px, var(--product-gap, 0px));
}

.product-content-below-gallery product-recommendations:not(:last-child) {
  margin-block-end: max(48px, var(--product-gap, 0px));
}

.product-content-below-gallery__description:not(:last-child) {
  margin-block-end: 1.25rem;
}

.product-info__more-info {
  border-block-width: 1px;
  justify-content: space-between;
  align-items: center;
  padding: .9375rem;
  display: flex;
}

.product-info__more-info > svg {
  transition: transform .2s ease-in-out;
}

@media screen and (pointer: fine) {
  .product-info__more-info:hover > svg {
    transform: translateX(5px);
  }
}

.variant-picker .popover {
  --popover-block-offset: .5rem;
  --popover-body-padding-inline: 1.25rem;
  width: 100%;
}

.variant-picker .popover::part(content) {
  width: 100%;
  max-width: none;
}

:not(.is-disabled) > .variant-picker__dropdown-sold-out-label,
:not(.is-disabled) > .product-sticky-bar__dropdown-sold-out-label {
  display: none;
}

.buy-buttons {
  row-gap: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.buy-buttons > * {
  width: 100% !important;
}

.buy-buttons > div {
  width: 100% !important;
}

.pickup-location {
  align-items: start;
  gap: .25rem;
  display: grid;
}

.pickup-location + .pickup-location {
  padding-block-start: 1rem;
}

.product-offers .page-dots {
  padding-block-end: 1.5rem;
}

.product-offers__item {
  padding: 1.5rem;
}

.product-offers__list--carousel {
  grid: auto / auto-flow 100%;
  display: grid;
}

.complementary-products {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 1.875rem;
  max-width: 40rem;
  margin-inline: auto;
  display: grid;
}

.complementary-products__header {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.complementary-products__header--align-start {
  text-align: start;
  justify-content: space-between;
}

.complementary-products__product-list {
  gap: 1.25rem;
  display: grid;
  position: relative;
}

.complementary-products__product-list--carousel {
  grid: auto / auto-flow 100%;
}

@media screen and (max-width: 699px) {
  .complementary-products__product-list--carousel .product-card__figure {
    max-width: 11.25rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 700px) {
  .complementary-products {
    row-gap: 1rem;
  }

  .complementary-products__header {
    text-align: start;
    justify-content: space-between;
  }
}

.product-sticky-bar {
  --input-padding-inline: clamp(1rem, 2.5vw, 1.5rem);
  --input-padding-block: calc(var(--input-padding-inline) / 2);

  padding: var(--container-gutter);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  width: 100%;
  transition: opacity .2s, visibility .2s, inset-block .15s ease-in-out;
  display: block;
  position: fixed;
  inset-block-end: 0;
  inset-inline-start: 0;
}

.product-sticky-bar.is-visible {
  opacity: 1;
  visibility: visible;
}

/* .product-sticky-bar__info {
  padding-right: var(--input-padding-inline);
} */

.product-sticky-bar__info-inner {
  gap: 0 !important;
  /* gap: var(--input-padding-inline); */
}

.product-sticky-bar__info variant-media {
  flex-shrink: 0;
}

.product-sticky-bar__info img {
  width: 3.75rem;
}

.product-sticky-bar__info-text {
  padding: var(--input-padding-block) var(--input-padding-inline);
}

.product-sticky-bar__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-sticky-bar__options {
  display: flex;
  height: 100%;
  /* gap: 1rem; */
  /* gap: var(--input-padding-inline);) */
}

.product-sticky-bar__option-dropdown {
  border-left: rgb(var(--border-color)) 1px solid;
  height: 100%;
}

.product-sticky-bar__buttons,
.product-sticky-bar__option-dropdown > .relative {
  height: 100%;
}

.product-sticky-bar__option-toggle,
.product-sticky-bar__selected-option {
  display: flex;
  align-items: center;
}

.product-sticky-bar__option-toggle {
  gap: 0.75rem;
  height: 100%;
  padding: 0 var(--input-padding-inline);
}

.product-sticky-bar__quantity {
  border-left: rgb(var(--border-color)) 1px solid;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--input-padding-inline);
}

.product-sticky-bar__selected-option {
  gap: 0.5rem;
}

.product-sticky-bar__popover {
  --popover-block-offset: 0;
  min-width: 100%;
}

.product-sticky-bar__popover::part(content) {
  border-width: 1px 1px 1px 0;
  min-width: 100%;
}

.product-sticky-bar__popover::part(content)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  pointer-events: none;
  border-left: 1px solid rgb(var(--border-color));
}

.product-sticky-bar__popover::part(body) {
  padding: 0 !important;
}

.product-sticky-bar__option-list {
  gap: 0;
  /* padding: var(--input-padding-block) 0; */
}

.product-sticky-bar__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-sticky-bar__option-value {
  padding: var(--input-padding-block) var(--input-padding-inline);
  border-bottom: rgb(var(--border-color)) 1px solid;
}

.product-sticky-bar__option-value[disabled] span {
  opacity: 0.3;
}

@media screen and (max-width: 699.9px) {

  .product-sticky-bar__options,
  .product-sticky-bar__quantity {
    display: none;
  }

  .product-sticky-bar__buttons,
  .product-sticky-bar__buttons .buy-buttons {
    width: 100%;
  }

  .product-sticky-bar__buttons .button {
    background-color: #fff;
  }
}

@media screen and (min-width: 700px) {
  .product-sticky-bar {
    inset-block: var(--sticky-area-height) auto;
    background: rgb(var(--background));
    border-block-end-width: 1px;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    /* padding-block: 1.125rem; */
    /* gap: clamp(1.5rem, 3vw, 2rem); */
    padding: 0;
    display: grid;
  }
}

@media screen and (min-width: 700px) and (max-width: 899.9px) {
  .product-sticky-bar__media {
    display: none;
  }

  .product-sticky-bar__quantity {
    padding: 0;
  }

  .product-sticky-bar__quantity .quantity-selector {
    --quantity-selector-input-width: clamp(0.625rem, 0.625rem + (100vw - 700px) * 0.15, 2.5rem);
    border: 0;
    align-content: center;
    height: 100%;
  }

  .product-sticky-bar .buy-buttons {
    height: 100%;
  }
}

@media screen and (min-width: 900px) {
  .product-sticky-bar__buttons {
    --padding-inline: var(--input-padding-inline);
    --padding-block: calc(var(--padding-inline) - 0.125rem);
    border-left: rgb(var(--border-color)) 1px solid;
    padding: var(--padding-block) var(--padding-inline);
  }
}

.scrolling-content {
  text-align: start;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.scrolling-content[direction="right"] {
  text-align: end;
}

.scrolling-content::part(scroller) {
  min-width: max-content;
  display: inline-flex;
  position: relative;
}

.scrolling-content__item {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.scrolling-content__item > * {
  margin-inline-start: calc(var(--scrolling-content-content-gap) / 2);
  margin-inline-end: calc(var(--scrolling-content-content-gap) / 2);
}

.scrolling-content__image > img {
  max-width: 1.5em;
}

.main-search-form {
  min-width: 18.75rem;
}

.main-search__linklist {
  text-align: center;
  max-width: 25rem;
  margin-inline: auto;
}

.shop-the-look__carousel {
  z-index: 2;
  grid: auto / auto-flow 100%;
  align-items: start;
  gap: .625rem;
  display: grid;
  position: relative;
  overflow: visible;
}

.shop-the-look__carousel.is-expanded {
  overflow: hidden;
}

.shop-the-look__image-wrapper {
  position: relative;
  overflow: hidden;
}

.shop-the-look__hot-spot-list {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
}

.shop-the-look__hot-spot {
  --hot-spot-size: 1rem;
  top: calc(var(--shop-the-look-hot-spot-top) - (var(--hot-spot-size) / 2));
  left: calc(var(--shop-the-look-hot-spot-left) - (var(--hot-spot-size) / 2));
  width: var(--hot-spot-size);
  height: var(--hot-spot-size);
  border-radius: var(--rounded-full);
  transition: transform .2s ease-in-out;
  position: absolute;
}

.shop-the-look__hot-spot:after {
  --hot-spot-after-size: calc(var(--hot-spot-size) * 2.5);
  content: "";
  top: calc(50% - var(--hot-spot-after-size) / 2);
  left: calc(50% - var(--hot-spot-after-size) / 2);
  width: var(--hot-spot-after-size);
  height: var(--hot-spot-after-size);
  background: radial-gradient(50% 50% at 50% 50%, rgb(var(--background) / 0), rgb(var(--background) / .3));
  border-radius: var(--rounded-full);
  animation: 2s ease-in-out infinite alternate ping;
  position: absolute;
}

.shop-the-look__hot-spot[aria-current="true"] {
  transform: scale(1.3);
}

.shop-the-look__item-carousel {
  grid: auto / auto-flow 100%;
  justify-items: center;
  display: grid;
  position: relative;
}

.shop-the-look__item {
  position: relative;
}

.shop-the-look__popover .product-card__figure {
  width: 100%;
  max-width: 10rem;
  margin-inline: auto;
}

.shop-the-look__popover::part(base) {
  height: auto;
  inset: auto auto 0 0;
}

.shop-the-look__popover::part(overlay) {
  display: none;
}

@media screen and (max-width: 699px) {
  .shopify-section--shop-the-look:before {
    content: "";
    opacity: 0;
    pointer-events: none;
    background: rgb(var(--background));
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: opacity .4s;
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
  }

  .shopify-section--shop-the-look:has(.shop-the-look__carousel.is-expanded):before {
    opacity: 1;
  }
}

@media screen and (min-width: 1000px) {
  .shop-the-look__carousel {
    grid: none;
    align-items: center;
  }

  .shop-the-look__item {
    max-width: var(--container-sm-max-width);
    grid: auto / min(550px, 60%) minmax(0, 1fr);
    grid-area: 1 / -1;
    align-items: center;
    gap: .3125rem;
    margin-inline: auto;
    display: grid;
  }

  .shop-the-look__item:not(.is-selected) {
    visibility: hidden;
  }

  .shop-the-look__item-product {
    grid-area: 1 / -1;
    max-width: 16.875rem;
  }

  .shop-the-look__item-product:not(.is-selected) {
    visibility: hidden;
  }

  .shop-the-look__item-content {
    opacity: 0;
    justify-items: center;
    gap: 1.5rem;
    display: grid;
  }
}

@media screen and (pointer: fine) {
  .shop-the-look__hot-spot:hover {
    transform: scale(1.3);
  }
}

.slideshow {
  --slideshow-controls-spacing: var(--container-gutter);
  background: rgb(var(--slideshow-background));
  display: block;
  position: relative;
}

.slideshow .page-dots {
  z-index: 3;
  position: absolute;
  inset-block-end: var(--slideshow-controls-spacing);
  inset-inline-end: var(--slideshow-controls-spacing);
}

.shopify-section--slideshow:first-child .slideshow[allow-transparent-header] {
  --content-over-media-row-gap: 4rem;
}

.slideshow:has(.page-dots, .slideshow__volume-control) {
  --content-over-media-row-gap: 4rem;
}

.slideshow__slide:not(.is-selected) {
  visibility: hidden;
  position: absolute;
  inset: 0;
}

.slideshow__slide-content--boxed {
  padding: 1.5rem;
}

.slideshow__slide-content--with-border {
  outline: 1px solid rgb(var(--border-color));
}

.slideshow__slide-content--with-border-offset {
  outline-offset: -.75rem;
  padding: 2.25rem;
}

.slideshow__volume-control {
  z-index: 1;
  display: grid;
  position: absolute;
  inset-block-end: var(--slideshow-controls-spacing);
  inset-inline-start: var(--slideshow-controls-spacing);
}

.slideshow__next-section-button {
  z-index: 2;
  position: absolute;
  inset-block-end: calc(-1 * var(--circle-button-size) / 2);
  inset-inline-start: calc(50% - var(--circle-button-size) / 2);
}

.shopify-section:has(.slideshow__next-section-button) + .shopify-section {
  --section-vertical-spacing-block-start-compensation: 1.5625rem;
}

@media screen and (min-width: 700px) {
  .slideshow:has(.page-dots, .slideshow__volume-control) {
    --content-over-media-row-gap: 5rem;
  }

  .slideshow__slide-content--boxed {
    padding: 3.5rem;
  }

  .slideshow__slide-content--with-border-offset {
    outline-offset: -1rem;
  }
}

.shopify-challenge__container,
.shopify-email-marketing-confirmation__container {
  max-width: 56.25rem;
  margin-block-start: var(--section-vertical-spacing);
  margin-block-end: var(--section-vertical-spacing);
}

.shopify-policy__container {
  gap: var(--section-stack-gap);
  grid-auto-columns: minmax(0, 1fr);
  max-width: 56.25rem;
  margin-block-start: var(--section-vertical-spacing-tight);
  margin-block-end: var(--section-vertical-spacing-tight);
  display: grid;
}

.shopify-challenge__container {
  gap: 1rem;
  display: grid;
}

.shopify-challenge__container > form {
  display: contents;
}

.shopify-email-marketing-confirmation__container {
  text-align: center;
}

.shopify-policy__title h1 {
  font: inherit;
}

.text-with-icons {
  --text-with-icons-items-per-row: 2;
  --text-with-icons-column-gap: 1.5rem;
  --text-with-icons-row-gap: 2rem;
  justify-content: center;
  gap: var(--text-with-icons-row-gap) var(--text-with-icons-column-gap);
  flex-wrap: wrap;
  display: flex;
}

.text-with-icons > * {
  flex-basis: min(18.75rem, calc(100% / var(--text-with-icons-items-per-row) - var(--text-with-icons-column-gap, 0px) * (var(--text-with-icons-items-per-row) - 1) / var(--text-with-icons-items-per-row)));
}

.text-with-icons > :only-child {
  flex-basis: min(18.75rem, 100%);
}

@media screen and (max-width: 699px) {
  .text-with-icons:not(.text-with-icons--stacked) {
    grid: auto / auto-flow 100%;
    gap: 0;
    display: grid;
  }

  .text-with-icons:not(.text-with-icons--stacked) > * {
    grid-area: 1 / -1;
    padding-inline: 2.5rem;
  }

  .text-with-icons:not(.text-with-icons--stacked) > :not(.is-selected) {
    visibility: hidden;
  }
}

@media screen and (min-width: 700px) {
  .text-with-icons {
    --text-with-icons-items-per-row: 3;
    --text-with-icons-row-gap: 2.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .text-with-icons {
    --text-with-icons-items-per-row: 5;
  }

  .text-with-icons:not(:has(> :nth-child(5))) {
    --text-with-icons-items-per-row: 4;
    --text-with-icons-column-gap: 3.75rem;
  }
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

:is(.sr-only[type="checkbox"]:focus-visible + label, .sr-only[type="radio"]:focus-visible + label) {
  outline: 2px solid highlight;
  outline: 2px solid -webkit-focus-ring-color;
}

.skip-to-content:focus-visible {
  z-index: 9999;
  clip: auto;
  color: #fff;
  background: #000;
  width: auto;
  height: auto;
  padding: 6px 12px;
  font-weight: bold;
  overflow: auto;
}

.tap-area {
  position: relative;
}

.tap-area:before {
  content: "";
  position: absolute;
  inset: -.5rem;
}

.js .js\:hidden,
.no-js .no-js\:hidden {
  display: none;
}

@media print {
  .print\:hidden {
    display: none;
  }
}



@media screen and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .features--zoom-image .zoom-image {
    transform-origin: center;
    transition: scale 8s cubic-bezier(.25, .46, .45, .94);
  }

  .features--zoom-image .group:hover .group-hover\:zoom {
    scale: 1.2;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js [reveal-on-scroll="true"] {
    opacity: 0;
  }
}

.border {
  border-width: 1px;
}

.border-x {
  border-inline-width: 1px;
}

.border-y {
  border-block-width: 1px;
}

.border-t {
  border-block-start-width: 1px;
}

.border-b {
  border-block-end-width: 1px;
}

.divide-x > :not([hidden]) ~ :not([hidden]) {
  border-inline-start-width: 1px;
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  border-block-start-width: 1px;
}

.rounded-full {
  border-radius: var(--rounded-full);
}

.text-success {
  color: rgb(var(--success-text));
}

.text-warning {
  color: rgb(var(--warning-text));
}

.text-error {
  color: rgb(var(--error-text));
}

.text-subdued {
  color: rgb(var(--text-color) / .65);
}

.text-on-sale {
  color: rgb(var(--on-sale-text));
  margin-left: 0.5rem;
}

.text-stroke {
  -webkit-text-stroke: 1px currentColor;
  -webkit-text-fill-color: transparent;
}

.text-gradient {
  background-image: var(--gradient);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-stroke.text-gradient {
  color: rgb(var(--background));
  -webkit-text-stroke-color: transparent;
  -webkit-text-fill-color: unset;
}

.bg-error,
.bg-success,
.bg-warning {
  --border-color: var(--text-color) / .15;
}

.bg-error {
  background: rgb(var(--error-background));
}

.bg-success {
  background: rgb(var(--success-background));
}

.bg-warning {
  background: rgb(var(--warning-background));
}

.opacity-0 {
  opacity: 0;
}

.backdrop-blur {
  -webkit-backdrop-filter: blur(var(--backdrop-blur, 0px));
  backdrop-filter: blur(var(--backdrop-blur, 0px));
}

.filter-invert {
  filter: invert();
}

.lock {
  overflow: hidden;
}

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

.scroll-area {
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  overflow: auto hidden;
}

.hide-scrollbar {
  scrollbar-width: none;
}

.scroll-area::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.snap-x {
  scroll-snap-type: x mandatory;
}

.snap-y {
  scroll-snap-type: y mandatory;
}

.snap-start {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.snap-center {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}



@media screen and (min-width: 700px) {
  .sm\:gap-0\.5 {
    gap: .125rem;
  }

  .sm\:gap-1 {
    gap: .25rem;
  }

  .sm\:gap-1\.5 {
    gap: .375rem;
  }

  .sm\:gap-2 {
    gap: .5rem;
  }

  .sm\:gap-2\.5 {
    gap: .625rem;
  }

  .sm\:gap-3 {
    gap: .75rem;
  }

  .sm\:gap-3\.5 {
    gap: .875rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-4\.5 {
    gap: 1.125rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-5\.5 {
    gap: 1.375rem;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:gap-7 {
    gap: 1.75rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:gap-10 {
    gap: 2.5rem;
  }

  .sm\:gap-12 {
    gap: 3rem;
  }

  .sm\:gap-14 {
    gap: 3.5rem;
  }

  .sm\:gap-16 {
    gap: 4rem;
  }
}


.cart-page ul.text-subdued {
  font-size: 10px;
}

/* Clearfix */
.shopify-section,
.clearfix:after {
  clear: both;
}

/* Slideshow SIngle Title 2025 */
.mci-slideshow-single-title__wrapper {
  position: relative;
  display: grid;
}

.mci-slideshow-single-title__wrapper .slideshow__slide-content {
  z-index: 2;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlapping Images block 2025 */

.mci-block-image-overlap-text-overlay__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .mci-block-image-overlap-text-overlay__container {
    flex-direction: column;
  }

  .mci-block-image-overlap-text-overlay__container .content-over-media {
    width: 100% !important;
  }

  .mci-block-image-overlap-text-overlay__container {
    row-gap: 1.3rem;
  }
}

.mci-block-image-overlap-text-overlay--first-img-top .content-over-media:first-of-type,
.mci-block-image-overlap-text-overlay--last-img-top .content-over-media:last-of-type {
  position: relative;
  z-index: 2;
}

.mci-block-image-overlap-text-overlay__container .content,
.mci-block-image-overlap-text-overlay__container .button,
.mci-block-image-overlap-text-overlay__container .link {
  position: static;
}

.mci-block-image-overlap-text-overlay__container .link:after,
.mci-block-image-overlap-text-overlay__container .button:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


/* Custom.css */
/*------------------------------------
 *   MIDA Heatmap GDPR banner
 *------------------------------------*/

#Mida-GDPR {
  background-color: #404044 !important;
}

.Mida-GDPR__Button--ok {
  border-color: #fff !important;
  border: 2px solid !important;
  text-transform: uppercase;
}

.Mida-GDPR__Privacy-policy a {
  text-decoration: underline;
}

/*------------------------------------
 *   Excel-Like App product page metafields table
 *------------------------------------*/


td.mf_value {
  border: 0;
  padding-left: 0;
  padding-bottom: 0;
}

table.ssbpm_metafields tr.product_mf_row.mf_pdp_model_info,
table.ssbpm_metafields tr.mf_prod_title,
table.ssbpm_metafields tr.mf_var_title,
table.ssbpm_metafields td.mf_name {
  display: none;
}

/*------------------------------------
 *   PLP Save Message
 *------------------------------------*/

.product-card__info .save-message {
  font-size: var(--text-xxs);
  line-height: 1em;
}

.product-card__info .save-message--box {
  padding: 5px 12px;
  background: rgb(var(--on-sale-badge-background));
  color: rgb(var(--on-sale-badge-text));
}

.product-card__info .save-message--final-sale {
  color: rgb(var(--on-sale-badge-background));
}

.product-card__info .save-message--bundle {
  color: rgb(var(--on-sale-badge-background));
  font-weight: 600;
}

/*------------------------------------
 *   ReturnGo Customizations
 *------------------------------------*/

.ReturnGO_Title-module_title {
  font-size: 26px !important;
}

.ReturnGO_SnippetWrapper-module_snippetWrapper div {
  text-align: center;
}

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

.no-scroll {
  overflow: hidden;
}

[data-scrollable] {
  overflow: auto;
}


.Heading {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  color: var(--heading-color);
  transition: color 0.2s ease-in-out;

}

.Heading--normal {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-weight: normal;
}

.Heading--semibold {
  font-weight: 500;
  text-transform: none;
}

.Heading--bold {
  font-weight: 600 !important;
  text-transform: none;
}

.Heading--bolder {
  font-weight: 700 !important;
  text-transform: none;
}

.Heading--capitalize,
.Link--capitalize {
  text-transform: uppercase;
}

.Heading--Medium {
  font-size: 1.75em !important;
  line-height: 120%;
}

.Heading--Large {
  font-size: 200% !important;
  line-height: 120%;
}

.Heading--extraLarge {
  font-size: 275% !important;
  line-height: 120%;
}

.Heading--slider,
.Heading--mpg {
  display: block;
}

.Heading--mpg {
  font-family: var(--heading-font-family);
  font-weight: 400;
}

.Heading--slider {
  display: block;
  font-family: 'Montserrat', var(--heading-font-family);
  -webkit-font-family: 'Montserrat', var(--heading-font-family);
  -ms-font-family: 'Montserrat', var(--heading-font-family);
  text-transform: uppercase;

}

.Heading--slider span {
  word-break: normal;
  white-space: pre-line;
}

.Heading--slider span,
.Heading--bold span {
  line-height: 1.1;
}

.addShadow {
  text-shadow: 0 0 5px #000;
}

@media screen and (max-width:640px) {
  .Heading--Large {
    font-size: 150% !important;

  }

  .Heading--extraLarge {
    font-size: 225% !important;
  }

}

.features--heading-uppercase .Heading {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.Text--subdued {
  color: var(--text-color-light);
}

.Text--alignCenter {
  text-align: center !important;
}

.Text--alignRight {
  text-align: right !important;
}

.Icon-Wrapper--clickable {
  position: relative;
  background: transparent;
  /* This is used to increase the clickable area */
}

.Icon-Wrapper--clickable::before {
  position: absolute;
  content: "";
  top: -8px;
  right: -12px;
  left: -12px;
  bottom: -8px;
  transform: translateZ(0);
  /* Needed to avoid a glitch on iOS */
}

.Icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  fill: currentColor;
  vertical-align: middle;
  stroke-width: 1px;
  background: none;
  pointer-events: none;
}

.Footer__Social .Icon {
  height: 1.3em;
  width: 1.3em;
}

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

/* Override navigation titles to be forced uppercase */
li.HorizontalList__Item a.Heading {
  text-transform: uppercase;
}

li.HorizontalList__Item a.Heading[href="/collections/spring-summer-2023"],
li.HorizontalList__Item a.Heading[href="/collections"] {
  color: #e26a21;
}

.features--heading-small .u-h1,
.features--heading-small .Rte h1 {
  font-size: 20px;
}

.features--heading-small .u-h2,
.features--heading-small .Rte h2 {
  font-size: 18px;
}

.features--heading-small .u-h3,
.features--heading-small .Rte h3 {
  font-size: 16px;
}

.features--heading-small .u-h4,
.features--heading-small .Rte h4 {
  font-size: 15px;
}

.features--heading-small .u-h5,
.features--heading-small .Rte h5 {
  font-size: 13px;
}

.features--heading-small .u-h6,
.features--heading-small .Rte h6 {
  font-size: 12px;
}

.features--heading-small .u-h7 {
  font-size: 11px;
}

.features--heading-small .u-h8 {
  font-size: 10px;
}

.features--heading-normal .u-h1,
.features--heading-normal .Rte h1 {
  font-size: 22px;
}

.features--heading-normal .u-h2,
.features--heading-normal .Rte h2 {
  font-size: 20px;
}

.features--heading-normal .u-h3,
.features--heading-normal .Rte h3 {
  font-size: 17px;
}

.features--heading-normal .u-h4,
.features--heading-normal .Rte h4 {
  font-size: 16px;
}

.features--heading-normal .u-h5,
.features--heading-normal .Rte h5 {
  font-size: 14px;
}

.features--heading-normal .u-h6,
.features--heading-normal .Rte h6 {
  font-size: 13px;
}

.features--heading-normal .u-h7 {
  font-size: 12px;
}

.features--heading-normal .u-h8 {
  font-size: 11px;
}

.features--heading-large .u-h1,
.features--heading-large .Rte h1 {
  font-size: 24px;
}

.features--heading-large .u-h2,
.features--heading-large .Rte h2 {
  font-size: 22px;
}

.features--heading-large .u-h3,
.features--heading-large .Rte h3 {
  font-size: 18px;
}

.features--heading-large .u-h4,
.features--heading-large .Rte h4 {
  font-size: 16px;
}

.features--heading-large .u-h5,
.features--heading-large .Rte h5 {
  font-size: 14px;
}

.features--heading-large .u-h6,
.features--heading-large .Rte h6 {
  font-size: 13px;
}

.features--heading-large .u-h7 {
  font-size: 12px;
}

.features--heading-large .u-h8 {
  font-size: 11px;
}

.features--heading-extralarge .u-h1,
.features--heading-extralarge .Rte h1 {
  font-size: 26px;
}

.features--heading-extralarge .u-h2,
.features--heading-extralarge .Rte h2 {
  font-size: 24px;
}

.features--heading-extralarge .u-h3,
.features--heading-extralarge .Rte h3 {
  font-size: 19px;
}

.features--heading-extralarge .u-h4,
.features--heading-extralarge .Rte h4 {
  font-size: 17px;
}

.features--heading-extralarge .u-h5,
.features--heading-extralarge .Rte h5 {
  font-size: 14px;
}

.features--heading-extralarge .u-h6,
.features--heading-extralarge .Rte h6 {
  font-size: 13px;
}

.features--heading-extralarge .u-h7 {
  font-size: 12px;
}

.features--heading-extralarge .u-h8 {
  font-size: 11px;
}



@media screen and (min-width: 641px) {

  .features--heading-small .u-h1,
  .features--heading-small .Rte h1 {
    font-size: 20px;
  }

  .features--heading-small .u-h2,
  .features--heading-small .Rte h2 {
    font-size: 18px;
  }

  .features--heading-small .u-h3,
  .features--heading-small .Rte h3 {
    font-size: 18px;
  }

  .features--heading-small .u-h4,
  .features--heading-small .Rte h4 {
    font-size: 16px;
  }

  .features--heading-small .u-h5,
  .features--heading-small .Rte h5 {
    font-size: 13px;
  }

  .features--heading-small .u-h6,
  .features--heading-small .Rte h6 {
    font-size: 12px;
  }

  .features--heading-small .u-h7 {
    font-size: 11px;
  }

  .features--heading-small .u-h8 {
    font-size: 10px;
  }

  .features--heading-normal .u-h1,
  .features--heading-normal .Rte h1 {
    font-size: 22px;
  }

  .features--heading-normal .u-h2,
  .features--heading-normal .Rte h2 {
    font-size: 20px;
  }

  .features--heading-normal .u-h3,
  .features--heading-normal .Rte h3 {
    font-size: 17px;
  }

  .features--heading-normal .u-h4,
  .features--heading-normal .Rte h4 {
    font-size: 16px;
  }

  .features--heading-normal .u-h5,
  .features--heading-normal .Rte h5 {
    font-size: 14px;
  }

  .features--heading-normal .u-h6,
  .features--heading-normal .Rte h6 {
    font-size: 13px;
  }

  .features--heading-normal .u-h7 {
    font-size: 12px;
  }

  .features--heading-normal .u-h8 {
    font-size: 11px;
  }

  .features--heading-large .u-h1,
  .features--heading-large .Rte h1 {
    font-size: 24px;
  }

  .features--heading-large .u-h2,
  .features--heading-large .Rte h2 {
    font-size: 22px;
  }

  .features--heading-large .u-h3,
  .features--heading-large .Rte h3 {
    font-size: 19px;
  }

  .features--heading-large .u-h4,
  .features--heading-large .Rte h4 {
    font-size: 17px;
  }

  .features--heading-large .u-h5,
  .features--heading-large .Rte h5 {
    font-size: 13px;
  }

  .features--heading-large .u-h6,
  .features--heading-large .Rte h6 {
    font-size: 13px;
  }

  .features--heading-large .u-h7 {
    font-size: 12px;
  }

  .features--heading-large .u-h8 {
    font-size: 11px;
  }

  .features--heading-extralarge .u-h1,
  .features--heading-extralarge .Rte h1 {
    font-size: 28px;
  }

  .features--heading-extralarge .u-h2,
  .features--heading-extralarge .Rte h2 {
    font-size: 26px;
  }

  .features--heading-extralarge .u-h3,
  .features--heading-extralarge .Rte h3 {
    font-size: 20px;
  }

  .features--heading-extralarge .u-h4,
  .features--heading-extralarge .Rte h4 {
    font-size: 18px;
  }

  .features--heading-extralarge .u-h5,
  .features--heading-extralarge .Rte h5 {
    font-size: 15px;
  }

  .features--heading-extralarge .u-h6,
  .features--heading-extralarge .Rte h6 {
    font-size: 13px;
  }

  .features--heading-extralarge .u-h7 {
    font-size: 12px;
  }

  .features--heading-extralarge .u-h8 {
    font-size: 11px;
  }

}

.js .features--show-page-transition .PageTransition {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--background);
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: all 0.25s ease;
}

/*#region Flexbox helper*/


/*parent fixes flex min-height for IE10/11*/
.u-flex-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-wrap: wrap;
}

.u-flex--middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-flex--bottom {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.u-flex--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-flex-child-strech {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1
}

/*#region Standard button (from old theme)*/


.resetFilter {
  margin: 25px auto;
  display: flex;
  max-width: 300px;
  justify-content: center;
}

.Button,
.shopify-payment-button__button--unbranded,
input.spr-button-primary,
.spr-summary-actions-newreview,
.spr-button-primary:not(input),
.spr-pagination-prev > a,
.spr-pagination-next > a {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 12px));
  text-align: center;
  letter-spacing: 0.2em;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
}

.Button::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1, 1);
  transform-origin: left center;
  z-index: -1;
}


.Button--primary {
  color: var(--button-text-color);
  border-color: var(--button-background);
}

.Button--primary::before {
  background-color: var(--button-background);
}

.Button--reversed {
  color: var(--button-background);
  border-color: var(--button-background);
  background-color: var(--button-text-color);
}

.Button--reversed::before {
  background-color: var(--button-background);
  transform-origin: right center;
  transform: scale(0, 1);
}



.Button--secondary {
  color: var(--text-color-light);
  border: 1px solid rgba(var(--text-color-light-rgb), 0.2);
}

.Button--secondary::before {
  background-color: var(--button-background);
  transform-origin: right center;
  transform: scale(0, 1);
}


.Button--full {
  width: 100%;
}

.Button--stretched {
  padding-left: 40px;
  padding-right: 40px;
}

.Button--centered {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 20px auto;
}

.Button--small {
  font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 10px));
  padding: 12px 24px;
}

.Button__SeparatorDot {
  display: inline-block;
  margin: 0 18px;
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 100%;
  background: currentColor;
}

.ButtonWrapper {
  text-align: center;
}

/* We allow those buttons to have secondary state. The secondary state is displayed (for instance during loading time) when
   the class "Button--secondaryState" is added */
.Button__PrimaryState,
.Button__SecondaryState {
  display: block;
  transition: transform 0.4s cubic-bezier(0.75, 0, 0.125, 1), opacity 0.4s cubic-bezier(0.75, 0, 0.125, 1);
}

.Button__SecondaryState {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 100%);
}

.Button--secondaryState .Button__PrimaryState {
  opacity: 0;
  transform: translateY(-100%);
}

.Button--secondaryState .Button__SecondaryState {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/*#region Button group*/

.ButtonGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: -12px;
}

.ButtonGroup--start {
  justify-content: flex-start;
}

.ButtonGroup__Item {
  margin: 12px;
}

.ButtonGroup__Item--expand {
  flex: 1 1 0;
}

.ButtonGroup--spacingSmall {
  margin: -8px;
}

.ButtonGroup--spacingSmall .ButtonGroup__Item {
  margin: 8px;
}

.ButtonGroup .ButtonGroup--spacingSmall a {
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 20px;
}

.ButtonGroup--sameSize .ButtonGroup__Item {
  flex: 0 1 auto;
  white-space: nowrap;
  max-width: 245px;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .ButtonGroup--sameSize .ButtonGroup__Item {
    flex: 1 1 0;
    /* There is a bug in IE11 so we're forced to use this trick */
  }
}

@media screen and (min-width: 641px) {
  @supports (display: inline-grid) {
    .ButtonGroup--sameSize {
      display: inline-grid;
      grid-template-columns: 1fr 1fr;
    }

    .ButtonGroup--sameSize .ButtonGroup__Item {
      max-width: none;
    }
  }
}

/*#region ----------------------------------------------------------------------------------------------
 * Flickity styles
 * ----------------------------------------------------------------------------------------------*/

.flickity-enabled {
  position: relative;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: auto;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled {
  -webkit-tap-highlight-color: transparent;
}

.flickity-enabled.is-draggable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
}

.flickity-prev-next-button[disabled] {
  opacity: 0;
}

.flickity-prev-next-button svg {
  width: auto;
  height: 50px;
  stroke-width: 1.5px;
  stroke: var(--text-light-color);
}

/* ---- page dots ---- */
.flickity-page-dots {
  width: 100%;
  padding: 0;
  margin: 22px 0 0 0;
  list-style: none;
  text-align: center;
}

.flickity-page-dots .dot {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 8px;
  margin: 0 4px;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border-color);
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
  /* This is used to increase the clickable area */
}

.flickity-page-dots .dot::before {
  position: absolute;
  content: "";
  top: -6px;
  right: -6px;
  left: -6px;
  bottom: -6px;
}


.flickity-page-dots .dot.is-selected {
  /*background: currentColor;*/
  border-color: currentColor;
  opacity: .7;
}


@media screen and (min-width: 641px) {
  .flickity-page-dots .dot {
    width: 60px;
    height: 8px;
    margin: 0 4px;
    border-width: 1px;
  }
}

/*#region ----------------------------------------------------------------------------------------------
 * Default styling for site-wide carousel
 * ----------------------------------------------------------------------------------------------*/

.Carousel {
  position: relative;
}

.Carousel--fixed,
.Carousel--fixed .flickity-viewport,
.Carousel--fixed .Carousel__Cell {
  height: 100%;
}

/* This allows to hide cells that are not first one until slider is loaded */
.Carousel:not(.flickity-enabled) .Carousel__Cell:not(.is-selected) {
  display: none;
}

.Carousel__Cell {
  display: block;
  width: 100%;
}

.Slideshow--constrained .Slideshow__Carousel .Carousel__Cell {
  max-height: 400px;
}

.js .Carousel--fadeIn .flickity-slider {
  transform: none !important;
}


.js .Carousel--fadeIn .Carousel__Cell {
  left: 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.js .Carousel--fadeIn .Carousel__Cell.is-selected {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}


.Carousel--insideDots .flickity-page-dots {
  position: absolute;
  width: 100%;
  margin: 0;
  bottom: 5px;
  left: auto;
}

.Carousel--outsideDots .flickity-page-dots {
  position: relative;
  width: 100%;
  margin: 0;
  bottom: -10px;
  left: auto;
}



.Carousel--insideDots .flickity-prev-next-button {
  bottom: -25px;
  z-index: 1;
}

.Carousel--insideDots .flickity-prev-next-button.next {
  right: 25px;
}

.Carousel--insideDots .flickity-prev-next-button.previous {
  right: 75px;
  margin-right: 15px;
}

@media screen and (min-width: 1008px) {
  .Carousel--insideDots .flickity-page-dots {
    right: 0;
    left: auto;
  }
}

/*#region Collapsible*/
.Collapsible {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.Collapsible + .Collapsible {
  border-top: none;
}

.Collapsible--padded {
  padding-left: 24px;
  padding-right: 24px;
}

.Collapsible__Button {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
}

.Collapsible__Button p {
  max-width: 95%;
}

.Collapsible__Plus {
  position: absolute;
  right: 0;
  top: calc(50% - (11px / 2));
  width: 11px;
  height: 11px;
}

.Collapsible__Plus::before,
.Collapsible__Plus::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-color: currentColor;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.Collapsible__Plus::before {
  width: 11px;
  height: 1px;
  opacity: 1;
}

.Collapsible__Plus::after {
  width: 1px;
  height: 11px;
}

.Collapsible__Button[aria-expanded=true] .Collapsible__Plus::before,
.Collapsible__Button[aria-expanded=true] .Collapsible__Plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.Collapsible__Button[aria-expanded=true] .Collapsible__Plus::before {
  opacity: 0;
}

.Collapsible .Collapsible {
  margin-left: 16px;
  border: none;
}

.Collapsible .Collapsible .Collapsible__Button {
  padding: 13px 0;
}

.Collapsible__Inner {
  display: block;
  height: 0;
  visibility: hidden;
  transition: height 0.35s ease-in-out, visibility 0s ease-in-out 0.35s;
  overflow: hidden;
}

.Collapsible__Button[aria-expanded=true] + .Collapsible__Inner {
  visibility: visible;
  transition: height 0.35s ease-in-out;
}

.Collapsible__Content {
  padding-bottom: 18px;
}

.Collapsible .Linklist {
  margin-bottom: 4px;
}

.Collapsible .Linklist--bordered {
  margin-top: 16px;
  margin-bottom: 4px;
}

@media screen and (min-width: 641px) {

  /* When this class is applied to a collapsible, it will display as a collapsible on mobile but not on larger screen, where it will
     automatically appear is auto-expanded */
  .Collapsible--autoExpand {
    border: none;
    overflow: visible;
  }

  .Collapsible--autoExpand .Collapsible__Button {
    cursor: default;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 16px;
  }

  .Collapsible--autoExpand .Collapsible__Plus {
    display: none;
  }

  .Collapsible--autoExpand .Collapsible__Inner {
    height: auto;
    visibility: visible;
    overflow: visible;
  }

  .Collapsible--autoExpand .Collapsible__Content {
    padding-bottom: 0;
  }

  .Collapsible--autoExpand .Linklist {
    margin-bottom: 0;
  }

  .Collapsible--autoExpand {
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 1008px) {
  .Collapsible--padded {
    padding-left: 30px;
    padding-right: 30px;
  }

  .Collapsible--large .Collapsible__Button {
    padding: 34px 0;
  }

  .Collapsible--large .Collapsible__Content {
    padding-bottom: 45px;
  }
}

/*#region Base drawer*/
.Drawer {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  width: calc(100vw - 65px);
  /* Interestingly, 100% does not work on iOS 9 and lower */
  height: 100vh;
  max-height: none;
  z-index: 20;
  transition: transform 0.5s var(--drawer-transition-timing), visibility 0.5s var(--drawer-transition-timing);
  background: var(--background);
  box-shadow: none;
  touch-action: manipulation;
  /* Animating box-shadow is slow, even on modern browsers, so we instead move it in a pseudo-element and animate opacity */
}

.Drawer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: 2px 0 10px rgba(54, 54, 54, 0.2), -2px 0 10px rgba(54, 54, 54, 0.2);
  opacity: 0;
  transition: opacity 0.5s var(--drawer-transition-timing);
}

.Drawer--secondary {
  background: var(--light-background);
}

.Drawer--fromLeft {
  transform: translateX(calc(-100vw + 65px));
}

.Drawer--fromRight {
  right: 0;
  left: auto;
  transform: translateX(calc(100vw - 65px));
}

.Drawer[aria-hidden=false] {
  visibility: visible;
  transform: translateX(0);
}

.Drawer[aria-hidden=false]::before {
  opacity: 1;
}

.Drawer__Container {
  width: 100%;
}

.Drawer--fromLeft .Drawer__Container {
  padding-left: 18px;
  padding-right: 24px;
}

.Drawer--fromRight .Drawer__Container {
  padding-left: 24px;
  padding-right: 18px;
}

.Drawer__Header {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  max-height: 60px;
  background: inherit;
  text-align: center;
  z-index: 1;
}

.Drawer__Header--flexible {
  min-height: 0 !important;
  max-height: none !important;
  height: auto !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

.Drawer__Header--flexible .Drawer__Close {
  top: 25px;
}

@supports (--css: variables) {
  .Drawer__Header {
    height: var(--header-height);
  }
}

.Drawer__Header--center {
  justify-content: center;
}

.Drawer__Close {
  position: absolute;
  margin-left: 0;
  left: 18px;
  top: calc(50% - 7px);
  line-height: 0;
}

.Drawer__Close svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.25px;
}

.Drawer--fromRight .Drawer__Close {
  right: 18px;
  left: auto;
}

.Drawer__Header--bordered {
  box-shadow: 0 -1px var(--border-color) inset;
}

.Drawer--secondary .Drawer__Header--bordered {
  box-shadow: 0 -1px rgba(var(--border-color-rgb), 0.6) inset;
}

.Drawer--secondary .Collapsible {
  border-bottom-color: rgba(var(--border-color-rgb), 0.6);
}

.Drawer__Content {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(100% - 60px);
  max-height: calc(100% - 50px);
  /* This handles an edge case when the header is much bigger than the maximum size for content, but this only works on Safari as of today */
}

@supports (--css: variables) {
  .Drawer__Content {
    height: calc(100% - var(--header-height));
    max-height: calc(100% - var(--header-height));
  }
}

@supports (width: calc(max(100%))) {
  .Drawer__Content {
    height: max(calc(100% - var(--header-height)), calc(100% - 60px));
    max-height: max(calc(100% - var(--header-height)), calc(100% - 60px));
  }
}

.Drawer__Main {
  flex: 1 1 auto;
}

.Drawer__Footer {
  flex: none;
  box-shadow: 0 -1px var(--border-color);
}

.Drawer--secondary .Drawer__Footer {
  box-shadow: 0 -1px rgba(var(--border-color-rgb), 0.6);
}

.Drawer__Footer--padded {
  padding: 24px;
}

@supports (padding: max(0px)) {
  .Drawer__Footer--padded {
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px) + 24px);
  }
}

@media screen and (min-width: 641px) {
  .Drawer {
    width: 400px;
    transform: translateX(-100%);
  }

  .Drawer--small {
    width: 340px;
  }

  .Drawer--fromRight {
    transform: translateX(100%);
  }

  .Drawer__Header {
    max-height: 80px;
    min-height: 60px;
  }

  @supports (width: calc(max(100%))) {
    .Drawer__Content {
      /* This handles an edge case when the header is much bigger than the maximum size for content, but this only works on Safari as of today */
      height: max(calc(100% - var(--header-height)), calc(100% - 80px));
      max-height: max(calc(100% - var(--header-height)), calc(100% - 80px));
    }
  }

  .Drawer--fromLeft .Drawer__Container,
  .Drawer--fromRight .Drawer__Container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .Drawer__Close {
    left: 30px;
  }

  .Drawer--fromRight .Drawer__Close {
    right: 30px;
    left: auto;
  }

  .Drawer__Close svg {
    stroke-width: 1.5px;
  }

  .Drawer__Footer--padded {
    padding: 24px 30px;
  }
}

/*#region Animation*/

[data-drawer-animated-left],
[data-drawer-animated-right] {
  opacity: 0;
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}

.Drawer[aria-hidden=false] [data-drawer-animated-left],
.Drawer[aria-hidden=false] [data-drawer-animated-right] {
  opacity: 1;
  transform: translateX(0);
}

[data-drawer-animated-left] {
  transform: translateX(-65px);
}

[data-drawer-animated-right] {
  transform: translateX(65px);
}

[data-drawer-animated-bottom] {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.Drawer[aria-hidden=false] [data-drawer-animated-bottom] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
}




/*#region Image overlay*/

.Image--contrast,
.Image--contrast-mobile,
.Image--contrast-dark {
  position: relative;
}

.Image--contrast::after,
.Image--contrast-mobile::after,
.Image--contrast-dark::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.Image--contrast > *,
.Image--contrast-mobile > *,
.Image--contrast-dark > * {
  z-index: 1;
}

.PageHeader__Image.Image--contrast::after,
.Image--contrast-dark::after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.Slideshow__ImageContainer.Image--contrast::after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 45%);
}

.Slideshow__ImageContainer.Image--contrast-dark::after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
}


.CollectionItem__Image.CollectionItem__Image--background.Image--contrast::after,
.CollectionItem__Image.CollectionItem__Image--contain.Image--contrast::after,
.CollectionItem__Image.Image--contrast::after,
.PageHeader__ImageWrapper.Image--contrast::after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.CollectionItem__Image.Image--contrast-dark::after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
}

@media screen and (max-width: 640px) {
  .CollectionItem__Image.CollectionItem__Image--background.Image--contrast-mobile::after {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
}


/*#region --------------------------------------------------------------------
 * VIDEO WRAPPER
 * --------------------------------------------------------------------*/

.VideoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.VideoWrapper iframe,
.VideoWrapper object,
.VideoWrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* For native one we use a different thing */
.VideoWrapper--native::after {
  display: none;
}

.VideoWrapper--native .plyr,
.VideoWrapper--native video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.VideoWrapper--native .plyr__video-wrapper,
.VideoWrapper--native video {
  height: 100%;
}


.VideoWrapper--small {
  padding-bottom: 30%;
}

.VideoWrapper--large {
  padding-bottom: 65%;
}


/*#region Anchor*/
.Anchor {
  display: block;
  position: relative;
  top: -75px;
  visibility: hidden;
}

.Anchor--block {
  top: -350px !important;
}

.Anchor--menu {
  top: -450px !important;
}

.mci-section-anchor-links .mci-section-anchor-links__item img {
  margin: 0 auto;
}

.mci-section-anchor-links .mci-section-anchor-links__item__image-rollover {
  display: none;
}

.mci-section-anchor-links .mci-section-anchor-links__item > a:focus .mci-section-anchor-links__item__image-rollover,
.mci-section-anchor-links .mci-section-anchor-links__item > a:hover .mci-section-anchor-links__item__image-rollover {
  display: block;
}

.mci-section-anchor-links .mci-section-anchor-links__item > a:focus .mci-section-anchor-links__item__image,
.mci-section-anchor-links .mci-section-anchor-links__item > a:hover .mci-section-anchor-links__item__image {
  display: none;
}

@supports (--css: variables) {
  .Anchor {
    top: calc(-1 * (var(--header-height)));
    /* + var(--announcement-bar-height)));*/
  }
}

@media screen and (max-width: 640px) {
  .Anchor--block {
    top: -275px !important;
  }

  .Anchor--menu {
    top: -300px !important;
  }
}



/*#region Placeholder (used within the theme editor only)*/

.PlaceholderSvg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.PlaceholderSvg--dark {
  background: dimgray;
  fill: #a1a1a1;
}

.PlaceholderBackground {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.7;
}

.PlaceholderBackground__Svg {
  height: 100% !important;
  width: auto !important;
  min-width: 100%;
}


/*#region Alerts*/

.Alert,
.spr-form-message {
  display: block;
  padding: 15px 20px;
  white-space: normal;
  font-size: 1rem;
  word-break: break-all;
  word-break: break-word;
  text-shadow: none;
}

.Alert--large {
  padding: 18px 20px;
}

.Alert--error,
.spr-form-message-error {
  background: #f3dbdb;
  color: #cb2b2b;
}

.Alert--success,
.spr-form-message-success {
  background: #d2e4c4;
  color: #307a07;
}

.Alert__ErrorList {
  list-style: none;
}



@media screen and (min-width: 641px) {
  .Alert--large {
    padding: 18px 30px;
  }
}




/**	
 * ----------------------------------------------------------------------------	
 * Breadcrumb (from old theme)
 * ----------------------------------------------------------------------------	*/

.breadcrumbWrap {
  background: #f9f9f9;
  margin: 0 0 30px;
}

.breadcrumbWrap--full {
  background: none;
}

.breadcrumbWrap--pdp {
  background: none;
  max-width: 80%;
  margin: 15px 0;
}

.prev-next {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 999px) {
  .prev-next-wrapper--desktop {
    display: none;
  }

  .prev-next-wrapper--mobile .prev-next {
    margin: -1.45rem 0 0 0;
    min-height: 1.45rem;
  }

  .prev-next-wrapper--mobile .prev-next a:first-child {
    padding-right: 25px;
  }

  .prev-next-wrapper--mobile .prev-next a svg {
    max-width: 13px;
  }
}

@media screen and (min-width: 1000px) {
  .prev-next-wrapper--desktop .prev-next {
    margin: -1.25rem 0 0 0;
  }

  .prev-next-wrapper--mobile {
    display: none;
  }
}

.prev-next svg.Icon {
  height: 2em;
  width: auto
}

.prev-next .Icon {
  margin-top: -2px
}

@media screen and (min-width:1000px) {
  .breadcrumb-prev-next {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0 5px 0;
  }

  .prev-next-wrapper {
    max-width: 20%;
    align-self: center;
    padding-top: 20px;
  }

  .prev-next a:first-child {
    padding-right: 20px;
  }
}

@media screen and (max-width:1000px) {
  .product-info__block-item[data-block-type="title"] .product-title {
    /* Reduce maximum width so the prev/next arrows do not overlap */
    max-width: calc(100% - 5rem);
  }
}



/*#region Featured quote*/

.FeaturedQuote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px;
  background: var(--secondary-elements-background);
  color: var(--secondary-elements-text-color);
  font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 18px));
}

.FeaturedQuote__Author {
  margin-top: 14px;
  font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 14px));
  opacity: 0.5;
}

.FeaturedQuote__Content a {
  text-decoration: underline;
  text-underline-position: under;
}

@media screen and (min-width: 1008px) {
  .FeaturedQuote {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}



/*#region Modal (from old theme)*/


.Modal {
  position: fixed;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  top: 50%;
  left: 50%;
  width: 480px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  padding: 15px 20px 20px 20px;
  z-index: 7;
  opacity: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--background);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

@supports (--css: variables) {
  .Modal {
    max-height: calc(var(--window-height) - 40px);
  }
}

.Modal[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

.Modal--dark {
  background: var(--secondary-elements-background);
  color: var(--secondary-elements-text-color);
}

.Modal--dark .Rte h1,
.Modal--dark .Rte h2,
.Modal--dark .Rte h3,
.Modal--dark .Rte h4,
.Modal--dark .Rte h5,
.Modal--dark .Rte h6 {
  color: var(--secondary-elements-text-color);
}

.Modal--dark .Rte a:not(.Button):hover {
  color: var(--secondary-elements-text-color);
}

.Modal--fullScreen {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: none;
}

.Modal--halfScreen {
  width: 80%;
}


.Modal--pageContent {
  padding: 60px 0 50px 0;
}

.Modal--product {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  top: 15%;
  left: 0;
  bottom: 0;
  right: 0;
  transform: none;
  padding: 60px 40px;
}

.Modal--videoContent {
  justify-content: center;
  background: #000000;
  /* Full theatre experience ! */
  color: #ffffff;
}

.Modal .Heading:not(.Link) {
  color: inherit;
}

.Modal__Header {
  margin-bottom: 30px;
  text-align: center;
}

.Modal__Close {
  display: block;
  margin: 25px auto 0 auto;
  flex-shrink: 0;
}

.Modal__Close--outside {
  position: absolute;
  margin-top: 0;
  top: 20px;
  right: 20px;
  line-height: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

.Modal__Close--outside:hover {
  opacity: 1;
}

.Modal__Close--outside svg {
  height: 16px;
  width: 16px;
  stroke-width: 1.25px;
}

.Modal--fullScreen .Modal__Close--outside {
  right: 40px;
  top: 40px;
}

.Modal__Content iframe {
  display: none;
}

#Modal__Logo {
  margin: 20px 0 -20px 0
}

#Modal__Logo img {
  margin: 0
}

#Modal__Logo img.originals {
  max-width: 175px !important
}

#Modal__Logo img.mondetta {
  max-width: 175px !important
}

#Modal__Logo img.modern {
  max-width: 225px !important
}

#Modal__Logo img.mpgear {
  max-width: 130px !important
}

.Modal[aria-hidden=false] .Modal__Content iframe {
  display: block;
}

/* We override some styles for common elements like table */
.Modal__Content th,
.Modal__Content td {
  border-color: var(--secondary-elements-border-color) !important;
}

.Modal__Content thead th:empty,
.Modal__Content tbody th {
  background: var(--secondary-elements-background) !important;
}

@media screen and (min-width: 641px) {
  .Modal:not(.Modal--pageContent) {
    padding: 35px 40px 40px 40px;
  }
}

@media screen and (min-width: 1008px) {
  .Modal {
    flex-direction: column;
  }

  .Modal--pageContent {
    padding: 100px 0 80px 0;
  }

  .Modal--pageContent .Modal__Content {
    flex: 1 0 0;
  }

  .Modal__Close:not(.Modal__Close--outside) {
    margin-top: 40px;
    flex-shrink: 0;
  }
}

/*#region A11Y*/
.PageSkipLink:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: var(--text-color);
  background-color: var(--background);
  padding: 10px;
  z-index: 10000;
  transition: none;
}

/*#region Page overlay*/
.PageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  background: #363636;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.PageOverlay.is-visible {
  opacity: 0.25;
  visibility: visible;
}

/*#region Page header*/
.PageHeader {
  position: relative;
  margin: 35px 0;
}

.CustomerHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}



.PageHeader--sideImage {
  display: flex;
  margin: 0;
  width: 100%;
  padding: 0 25px 0 0;
  height: auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background: var(--secondary-elements-background);
  color: var(--secondary-elements-text-color);
}

.PageHeader--sideImage img {
  margin-right: 40px;
}

.PageHeader--sideImage .SectionHeader:not(:only-child) {
  margin-bottom: 0;
}

.PageHeader--sideImage .SectionHeader__Description {
  max-width: 100%;
}

.PageHeader--sideImage .SectionHeader h1 {
  color: var(--secondary-elements-text-color);
}



.PageHeader--withBackground {
  display: flex;
  margin: 0;
  width: 100%;
  min-height: 450px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}

.PageHeader--thin.PageHeader--withBackground {
  max-height: 60px;
  min-height: 60px;

}

.PageHeader--thin.PageHeader--withBackground .PageHeader__ImageWrapper {
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  height: 100%;
}


.PageHeader--withBackground .Heading,
.PageHeader--withBackground .Rte a:not(.Button) {
  color: #ffffff;
  -webkit-text-decoration-color: #ffffff;
  text-decoration-color: #ffffff;
}

.PageHeader__ImageWrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
}

.PageHeader__ImageWrapper--article {
  overflow: hidden;
  height: 350px;
}

.PageHeader__Image {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 100% 0;
}

.PageHeader__ImageWrapper--gif {
  background-position: center center;
}


@supports (--css: variables) {
  .PageHeader__ImageWrapper {
    top: calc(0.25 * 0px - 0px * 0);
    top: calc(0.25 * var(--announcement-bar-height, 0px) - var(--header-height, 0px) * var(--use-unsticky-header, 0));
    height: calc(100% + 0px + 0px * 0);
    height: calc(100% + var(--announcement-bar-height, 0px) + var(--header-height, 0px) * var(--use-unsticky-header, 0));
  }

  .PageHeader__ImageWrapper--gif {
    top: calc(0.5 * 0px - 0px * 0);
    top: calc(0.5 * var(--announcement-bar-height, 0px) - var(--header-height, 0px) * var(--use-unsticky-header, 0));
    height: calc(100% + 0px + 0px * 0);
    height: calc(100% + var(--announcement-bar-height, 0px) + var(--header-height, 0px) * var(--use-unsticky-header, 0));
  }

  .PageHeader__Image {
    height: calc(100% + 0px);
    height: calc(100% + var(--announcement-bar-height, 0px));
    top: calc(0 * 0px);
    top: calc(0 * var(--announcement-bar-height, 0px));
  }


}

.PageHeader .SectionHeader__Heading,
.PageHeader .SectionHeader__Description {
  margin-top: 0 !important;
}

.prose ul.category-icons {
  margin-left: 0;
  position: relative;
  left: 0;
  list-style-type: none;
  list-style-position: outside;
  line-height: 120%;
}

.prose .FabricTech {
  display: flex;
  justify-content: flex-start;
  text-align: left !important;
  max-width: 450px;
}

@media screen and (max-width:699px) {
  .prose .FabricTech {
    justify-content: center
  }
}

.prose .FabricTech ul.category-icons {
  position: relative;
  left: 0;
  list-style-type: none;
  list-style-position: outside;
  line-height: 200%;
}

.prose ul.category-icons li {
  margin: 12px 0;
  color: #fff;
  clear: both;
  vertical-align: middle;
}

.prose .FabricTech ul.category-icons li {
  margin: 12px 0;
  color: #000;
  clear: both;
  vertical-align: middle;
  font-size: 1.1em;
}

.prose ul.category-icons li::before {
  content: '';
  display: inline-block;
  height: 22px;
  width: 22px;
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center center;
  margin: -3px 15px 0 0;
  float: left;
}

.prose .FabricTech ul.category-icons li::before {
  content: '';
  display: inline-block;
  height: 32px;
  width: 32px;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  margin: -3px 15px 0 0;
  float: left;
  filter: invert(1);
}

@media screen and (max-width:499px) {
  .prose ul.category-icons li::before {
    margin: 0 8px 0 0;
    height: 35px;
    width: 35px;
    background-size: 35px;
  }

  .prose .FabricTech ul.category-icons li::before {
    margin: 0 8px 0 0;
    height: 45px;
    width: 45px;
    background-size: 45px;
  }
}


.prose ul.category-icons li.category-01::before,
.prose .FabricTech ul.category-icons li.category-01::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-01-4way-stretch-circle.svg?v=1645719331)
}

.prose ul.category-icons li.category-02::before,
.prose .FabricTech ul.category-icons li.category-02::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-02-moisture-wicking-quick-drying-circle.svg?v=1645719331)
}

.prose ul.category-icons li.category-03::before,
.prose .FabricTech ul.category-icons li.category-03::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-03-luxe-soft-circle.svg?v=1645719331)
}

.prose ul.category-icons li.category-04::before,
.prose .FabricTech ul.category-icons li.category-04::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-04-ultra-lightweight-circle.svg?v=1645719938)
}

.prose ul.category-icons li.category-05::before,
.prose .FabricTech ul.category-icons li.category-05::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-05-seamless-circle.svg?v=1645719938)
}

.prose ul.category-icons li.category-06::before,
.prose .FabricTech ul.category-icons li.category-06::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-06-compression-circle.svg?v=1645719331)
}

.prose ul.category-icons li.category-07::before,
.prose .FabricTech ul.category-icons li.category-07::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-07-shape-recovery-circle.svg?v=1648739645)
}

.prose ul.category-icons li.category-08::before,
.prose .FabricTech ul.category-icons li.category-08::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-08-running.svg?v=1644531206)
}

.prose ul.category-icons li.category-09::before,
.prose .FabricTech ul.category-icons li.category-09::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-09-yoga.svg?v=1644531207)
}

.prose ul.category-icons li.category-10::before,
.prose .FabricTech ul.category-icons li.category-10::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-10-fabric.svg?v=1644531207)
}

.prose ul.category-icons li.category-11::before,
.prose .FabricTech ul.category-icons li.category-11::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-11-medium-support.svg?v=1648738588)
}

.prose ul.category-icons li.category-12::before,
.prose .FabricTech ul.category-icons li.category-12::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-12-stays-in-place.svg?v=1648738911)
}

.prose ul.category-icons li.category-13::before,
.prose .FabricTech ul.category-icons li.category-13::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-13-tencel.svg?v=1668793912)
}

.prose ul.category-icons li.category-14::before,
.prose .FabricTech ul.category-icons li.category-14::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-14-antimicrobial.svg?v=1668796138)
}

.prose ul.category-icons li.category-15::before,
.prose .FabricTech ul.category-icons li.category-15::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-15-crossfit.svg?v=1668797870)
}

.prose ul.category-icons li.category-16::before,
.prose .FabricTech ul.category-icons li.category-16::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-16-breathable.svg?v=1702939099)
}

.prose ul.category-icons li.category-17::before,
.prose .FabricTech ul.category-icons li.category-17::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-17-warm-comfort.svg?v=1702939099)
}

.prose ul.category-icons li.category-18::before,
.prose .FabricTech ul.category-icons li.category-18::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/category-18-sustainable.svg?v=1702939546)
}

.SectionHeader__Heading.u-h1 span.title-bold {
  letter-spacing: 0.02em;
  font-weight: bold;
  font-size: 1.3em
}

.SectionHeader--logoLeft {
  left: 0;
}



.PageHeader .Alert {
  margin-top: 22px;
}

.PageHeader__Back {
  display: inline-block;
  margin-bottom: 25px;
}

.PageHeader__Back svg {
  height: 9px;
  margin-right: 12px;
  vertical-align: baseline;
  vertical-align: initial;
}

/* Double selector is just to increase specificity and avoid !important */
.PageHeader--withBackground .SectionHeader.SectionHeader {
  position: relative;
  padding: 60px 0 80px 0;
}

@supports (--css: variables) {
  .PageHeader--withBackground .SectionHeader.SectionHeader {
    margin-top: calc(var(--header-height) * 0);
    margin-top: calc(var(--header-height) * var(--header-is-transparent, 0));
  }
}

@media screen and (max-width: 640px) {

  .PageHeader__ImageWrapper {
    background-position: 50% 10%;
  }

  .PageHeader__ImageWrapper--gif {
    background-position: center center;
  }

  .PageHeader--withBackground {
    min-height: 300px;
  }

  .PageHeader--thin.PageHeader--withBackground .PageHeader__ImageWrapper {
    background-size: 200%;
  }

}


@media screen and (min-width: 641px) {
  .PageHeader {
    margin: 50px 0;
  }

  .PageHeader--withBackground {
    min-height: 450px;
    margin-top: 0;
    margin-bottom: 0;
  }

  @supports (--css: variables) {
    .PageHeader--withBackground {
      min-height: calc(380px + var(--header-height) * 0);
      min-height: calc(380px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }

  .PageHeader--small.PageHeader--withBackground {
    min-height: 320px;
  }

  @supports (--css: variables) {
    .PageHeader--small.PageHeader--withBackground {
      min-height: calc(350px + var(--header-height) * 0);
      min-height: calc(350px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }

  .PageHeader--large.PageHeader--withBackground {
    min-height: 480px;
  }

  @supports (--css: variables) {
    .PageHeader--large.PageHeader--withBackground {
      min-height: calc(410px + var(--header-height) * 0);
      min-height: calc(410px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }

  .PageHeader--withBackground .SectionHeader.SectionHeader {
    margin-top: 50px;
    padding: 40px 0;
  }

  @supports (--css: variables) {
    .PageHeader--withBackground .SectionHeader.SectionHeader {
      margin-top: calc(var(--header-height) * 0);
      margin-top: calc(var(--header-height) * var(--header-is-transparent, 0));
    }
  }
}


@media screen and (min-width: 1140px) {
  .PageHeader--withBackground {
    min-height: 550px;
  }

  @supports (--css: variables) {
    .PageHeader--withBackground {
      min-height: calc(450px + var(--header-height) * 0);
      min-height: calc(450px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }


  .PageHeader--small.PageHeader--withBackground {
    min-height: 400px;
  }

  @supports (--css: variables) {
    .PageHeader--small.PageHeader--withBackground {
      min-height: calc(400px + var(--header-height) * 0);
      min-height: calc(400px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }

  .PageHeader--large.PageHeader--withBackground {
    min-height: 620px;
  }

  @supports (--css: variables) {
    .PageHeader--large.PageHeader--withBackground {
      min-height: calc(520px + var(--header-height) * 0);
      min-height: calc(520px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }

  .SectionHeader--logoLeft {
    left: -400px;
  }


}

@media screen and (min-width: 1800px) {
  .PageHeader--withBackground {
    min-height: 650px;
  }

  @supports (--css: variables) {
    .PageHeader--withBackground {
      min-height: calc(600px + var(--header-height) * 0);
      min-height: calc(600px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }


  .PageHeader--small.PageHeader--withBackground {
    min-height: 500px;
  }

  @supports (--css: variables) {
    .PageHeader--small.PageHeader--withBackground {
      min-height: calc(550px + var(--header-height) * 0);
      min-height: calc(550px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }

  .PageHeader--large.PageHeader--withBackground {
    min-height: 700px;
  }

  @supports (--css: variables) {
    .PageHeader--large.PageHeader--withBackground {
      min-height: calc(650px + var(--header-height) * 0);
      min-height: calc(650px + var(--header-height) * var(--header-is-transparent, 0));
    }
  }
}

/*#region Page layout (to create two columns) and content*/

.PageLayout__Section:first-child {
  margin-bottom: 60px;
}

.PageLayout__Section--sticky {
  position: sticky;
  top: 75px;
  align-self: flex-start;
}

.PageLayout:not(:only-child) {
  margin-top: 35px;
  margin-bottom: 35px;
}

@supports (--css: variables) {
  .PageLayout__Section--sticky {
    top: calc(var(--header-height) + 20px);
  }
}

@media screen and (min-width: 641px) {
  .PageLayout {
    display: flex;
    flex-wrap: nowrap;
  }

  .PageLayout:not(:only-child) {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .PageLayout__Section {
    flex: 1 0 0;
  }

  .PageLayout__Section:first-child {
    margin-bottom: 0;
  }

  .PageLayout__Section--secondary {
    flex: 1 1 200px;
    max-width: 200px;
  }

  .PageLayout__Section + .PageLayout__Section {
    margin-left: 50px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1007px) {
  .PageLayout--breakLap {
    display: block;
  }

  .PageLayout--breakLap .PageLayout__Section:first-child {
    margin-bottom: 60px;
  }

  .PageLayout--breakLap .PageLayout__Section + .PageLayout__Section {
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (min-width: 1008px) {
  .PageLayout__Section--secondary {
    flex-basis: 235px;
    max-width: 235px;
  }
}

@media screen and (min-width: 1140px) {
  .PageLayout__Section + .PageLayout__Section {
    margin-left: 80px;
  }

  .PageLayout__Section--secondary {
    flex-basis: 290px;
    max-width: 290px;
  }
}

/*#region Page spacing wrapper*/
.PageSpacingWrapper {
  margin-bottom: 60px;
}

/*#region Page content*/
.PageContent {
  max-width: 1300px;
  margin: 35px auto;
}

.PageContent::after {
  content: '';
  display: block;
  clear: both;
}

.PageContent--centered {
  text-align: center
}

.PageContent--clearDivs div {
  clear: both;
  margin-top: 1.5em;
}

.PageContent--clearDivs h1,
.PageContent--clearDivs h2,
.PageContent--clearDivs h3,
.PageContent--clearDivs h4 {
  margin-top: 1em;
}

.PageContent .Flex--start img,
.PageContent .Flex--start div img {
  margin: 0 25px 25px 0;
}

.PageContent p {
  margin-bottom: 1.5rem;
}

.PageContent p.Circled {
  color: #000;
  text-align: left;
  font-size: 18px;
  margin: 0 0 10px -5px;
  position: relative;
  text-indent: 45px;
  line-height: 150%;

}

.PageContent p.Circled::before {
  content: '';
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  border: 2px solid #000;
  border-radius: 30px;
  text-indent: 0;
  margin: 0;
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}


.PageContent p.Circled--one::before {
  content: '1';

}

.PageContent p.Circled--two::before {
  content: '2';

}

.PageContent p.Circled--three::before {
  content: '3';

}

.PageContent p.Circled--four::before {
  content: '4';

}

.PageContent p.Circled--five::before {
  content: '5';

}

.PageContent img.fit {
  max-width: 499px;
  margin: 30px 0;
}

.prose .PageContent img.thumbnail {
  max-width: 250px
}


@media screen and (max-width:1007px) {
  .PageContent img.fit {
    max-width: 100%;
    margin: 30px auto;
  }
}

@media screen and (max-width:640px) {
  .prose .PageContent img.thumbnail {
    max-width: 100%;
    margin: 0
  }

  .prose .PageContent img.thumbnail--fixed,
  .prose .PageContent .Float img.thumbnail--fixed {
    max-width: 250px;
    margin: 15px auto;
    float: none;
  }
}

.PageContent--wide {
  max-width: 1600px
}

.PageContent--TwoThirds {
  max-width: 66.66%
}

.PageContent--OneThird {
  margin: 35px 0;
  max-width: 33.33%;
}

.PageContent img.one-third {
  max-width: 33.33%;
}


.PageContent--fitScreen {
  display: flex;
  min-height: calc(100vh - 120px);
  align-items: center;
}

@supports (--css: variables) {
  .PageContent--fitScreen {
    min-height: calc(var(--window-height) - var(--header-height) - 0px - 120px);
    min-height: calc(var(--window-height) - var(--header-height) - var(--announcement-bar-height, 0px) - 120px);
    /* 120px is the margin */
  }
}


.PageContent--inset {
  padding: 40px;
  margin-bottom: 40px;
  background: var(--light-background);
}

.PageContent--narrow {
  max-width: 999px;
}

.PageContent--extraNarrow {
  max-width: 400px;
}

.PageHeader + .PageContent {
  margin-top: 0;
}


.PageContent--policies h1,
.PageContent--policies h2,
.PageContent--policies h3,
.PageContent--policies h4 {
  margin: 20px 0 10px 0;
  text-transform: normal;
}

.PageContent--policies h2 {
  font-size: 1.5em;
}

.PageContent ul {
  list-style-position: outside;
  margin: 10px 0 15px 17px;
}

.PageContent .Flex--start ul,
.PageContent--FlexColumn ul,
.PageContent--FlexColumn ol,
.PageContent--clearDivs ol {
  list-style-position: inside;
}

.PageContent--sectioned {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  margin-top: 30px;
}

.PageContent--faq h2,
.PageContent--sectioned h2 {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.PageContent--faq h3 {
  font-weight: bold;
}

.PageContent--bordered {
  border-top: 1px solid var(--border-color);
  margin-top: 30px;
  padding-top: 30px;
  width: 100%;
}

.PageContent--bordered.dark {
  border-top: 1px solid var(--text-color);
}


.PageContent--FlexColumn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.PageContent--FlexColumn.centered {
  justify-content: center;
  align-items: center;
}

.PageContent--FlexColumn div,
.PageContent--FlexColumn img {
  max-width: 500px;
  height: auto;
  margin-top: 60px;
}

.PageContent--FlexColumn img {
  margin: 0;
}

.PageContent--FlexColumn img.icon {
  max-width: 300px;
  align-self: center;
}

.PageContent--FlexColumn.centered div {
  margin: 30px 15px;
}

.PageContent--FlexColumn.reverse {
  flex-direction: row-reverse;
}


/*MAGAZINE LAYOUT*/


.PageContent--Magazine {
  margin: 60px auto;
  padding: 0 15px;
  max-width: 1800px;
}

.PageContent--Magazine div.block {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  float: left
}

.PageContent--Magazine div.block-widow {
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.PageContent--Magazine div.block {
  width: 50%
}

.PageContent--Magazine div.block-widow {
  width: 100%
}

.PageContent--Magazine div.block div,
.PageContent--Magazine div.block-widow div,
#tripleStory div.block div {
  margin-bottom: 50px
}

.PageContent--Magazine div.block div.one {
  order: 1;
}

.PageContent--Magazine div.block div.two {
  order: 2;
}


.PageContent--Magazine div.block-widow div.two {
  width: 100%
}

.PageContent--Magazine div.block div.spaced {
  margin: 20% 10%;
  justify-self: center;
}

.PageContent--Magazine div.block p.pHeading,
.PageContent--Magazine div.block-widow p.pHeading {
  line-height: 120%;
  text-align: left;
  margin: 10px 0 20px 0;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  display: block;
}

.PageContent--Magazine div.block p,
.PageContent--Magazine div.block-widow p {
  text-align: left;
}

.PageContent--Magazine div.block p.text {
  font-size: 110%;
}


.PageContent--Magazine div.block img,
.PageContent--Magazine div.block-widow img {
  width: auto;
}

.PageContent--Magazine a {
  display: block;
  margin: 10px 0;
}

.PageContent--Magazine div.block ul {
  text-align: left;
}

.Flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
}

.Flex div {
  align-self: center;
  padding: 0 10px;
}

.Flex--nopad div {
  padding: 0;
  border: 1px solid #fff;
}

.prose .Flex div {
  margin-block-start: 0;
}

.Flex--multi-item {
  flex-wrap: wrap;
  justify-content: space-between;
}

.Flex--multi-item div {
  flex: 0 1 25%;
  width: 100%;
  padding: 0px 1.5em;
  margin: 0.5em 0 2em 0;
}

.Flex--multi-item.two-by-two div {
  flex: 0 1 50%;
  padding: 0;
  margin: 10px 0;
}

.Flex--multi-item.two-then-three div {
  flex: 0 1 33.33%;
  padding: 0 6%;
}

.Flex--multi-item.four-then-two div {
  flex: 0 1 25%;
  padding: 0 25px;
}

.Flex--multi-item.start div {
  align-self: flex-start;
}

.Flex--evenly {
  justify-content: space-evenly;
}

.Flex--center {
  align-items: center;
}

.Flex--center div {
  align-self: center;
}

.Flex--start div {
  align-self: flex-start;
}

.Flex--start div,
.Flex--evenly div {
  width: 100%;
  margin-bottom: 25px;
}

.Flex--start div > img {
  margin-bottom: 25px !important;
}

.Flex div.pad {
  padding: 10px;
}

.Flex img,
.PageContent--FlexColumn img {
  display: inline-flex;
}

.Flex img.icon {
  width: auto;
  max-height: 85px;
  padding: 0 0 15px 0;
  display: block;
}

.Flex img.icon--logo {
  max-height: 100px;
}

.PageContent--FlexColumn div {
  margin-bottom: 20px;
}

.Float {
  display: block;
  max-width: 50%;
  margin-top: 5px;
}

.Float--left.headerImg {
  margin-top: 0;
}

.Float--left.small-img,
.Float--right.small-img {
  width: auto;
  max-width: 400px;
}

.Float--left.logo {
  width: auto;
  max-width: 200px;
}

.Float--left,
.Rte img.Float--left {
  margin-right: 30px;
  margin-bottom: 30px;
  margin-left: 0;
  float: left;
}

.Float--right,
.Rte img.Float--right {
  margin-right: 0;
  margin-bottom: 30px;
  margin-left: 30px;
  float: right;
}

.Flex--modelSizes {
  flex-wrap: wrap;
  justify-content: flex-start;
}


.Flex--modelSizes p {
  font-size: 0.8em;
}


@media (max-width:999px) {
  .PageContent--Magazine {
    max-height: 100%;
    padding: 0 30px;
  }

  .PageContent--Magazine div.block {
    width: 100%;
    padding: 0;
    flex-direction: column-reverse;
  }

  .PageContent--Magazine div.block-widow {
    width: 100%;
    padding: 0;
    flex-direction: column
  }

  .PageContent img.one-third {
    max-width: 100%;
  }

  .PageContent--Magazine div.block div,
  .PageContent--Magazine div.block-widow div {
    width: 100%
  }

  .PageContent--Magazine div.block div.one {
    order: 0
  }

  .PageContent--Magazine div.block div.two {
    order: 0
  }

  .PageContent--Magazine div.block-widow div.one {
    order: 2
  }

  .PageContent--Magazine div.block-widow div.two {
    order: 1
  }

  .PageContent--FlexColumn div,
  .PageContent--FlexColumn img {
    max-width: 100%;
  }

  .PageContent--Magazine div.block div.spaced {
    margin: 5% 0;
  }

  .Flex {
    flex-wrap: wrap
  }

  .Flex--twocolumn div {
    width: 50%;
    margin-bottom: 40px;
    padding: 20px;
  }

  .Flex div.pad {
    padding: 10px 0
  }

  .Float--left,
  .Float--right {
    clear: both;
    float: none;
    margin: 25px 0;
    width: 100%;
    max-width: 100%;
  }

  .Flex--start div,
  .Flex--evenly div {
    margin-bottom: 40px;
  }

  .Flex--modelSizes div {
    width: 20%;
  }

  span.dn-arr,
  span.up-arr {
    display: none;
  }
}

@media screen and (max-width:640px) {
  .Flex--modelSizes div {
    width: 33.33%;
  }

  .Float--left.small-img,
  .Float--right.small-img {
    float: none !important;
    clear: both;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .Float--left.logo {
    float: none !important;
    clear: both;
  }

  .Flex--twocolumn div {
    width: 100%;
  }

}

@media screen and (min-width: 641px) {
  .PageContent {
    margin-bottom: 60px;
    margin-top: 60px;
  }

  .Flex--modelSizes div {
    width: 20%;
  }


  .PageContent--fitScreen {
    min-height: calc(100vh - 160px);
  }

  @supports (--css: variables) {
    .PageContent--fitScreen {
      min-height: calc(var(--window-height) - var(--header-height) - 0px - 160px);
      min-height: calc(var(--window-height) - var(--header-height) - var(--announcement-bar-height, 0px) - 160px);
      /* 160px is the margin */
    }
  }
}


@media screen and (max-width:1007px) {
  .Flex--multi-item div {
    width: auto;
    max-width: 50%;
    flex-direction: row;
  }

  .Flex--multi-item.two-then-three div,
  .Flex--multi-item.four-then-two div {
    flex: 0 1 50%;
    padding: 0;
  }



  .Flex--multi-item div img {
    max-width: 150px;
    display: inline;
  }

  .Rte img.mobile-hide-desktop {
    display: block
  }

  .Rte img.desktop-hide-mobile {
    display: none
  }
}

@media screen and (max-width:425px) {
  .Flex--multi-item div img {
    max-width: 120px;
  }

  .Flex--multi-item div {
    padding: 0;
  }

  .Flex--modelSizes div {
    width: 50%;
  }

}



@media screen and (min-width:1008px) {
  .Flex--multi-item div {
    flex: 0 1 20%;
    width: auto;
    flex-direction: row;
    padding: 0px 1.5% 0px 1.5%;
    box-sizing: border-box;
  }

  .Flex--multi-item.two-then-three div {
    flex: 0 1 33.33%;
    padding: 0 6%;
  }

  .Rte img.desktop-hide-mobile {
    display: block
  }

  .Rte img.mobile-hide-desktop {
    display: none
  }

  .Flex--modelSizes div {
    width: 15%;
  }

}

@media screen and (min-width:1200px) {
  .Flex--modelSizes div {
    width: 10%;
  }
}


@media screen and (min-width:1500px) {
  .Flex--multi-item div {
    flex: 0 1 16.5%;
  }
}


.sustainability {
  margin: 20px auto;
  background-image: url(https://cdn.shopify.com/s/files/1/2704/5152/files/responsibly-made-icon-green-screened-01.svg?131679);
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 40%;
}

@media (min-width:1009px) {
  #bf-content p {
    padding-left: 10%
  }
}

@media (max-width:1008px) {
  #bf-content {
    background-position: 70% 100%;
  }

  .midDiv {
    flex-direction: column-reverse;
    padding-top: 30px
  }

  .midDiv div {
    width: 100%
  }
}

@media (min-width:641px) {
  .dsktp {
    display: block
  }

  .mobl {
    display: none
  }
}

@media (max-width:640px) {
  #bf-content {
    background-position: 20% 100%;
    min-height: 800px
  }

  .flexDiv {
    min-height: 800px
  }

  .flexDiv div {
    align-self: flex-end;
    width: 100%;
    padding-bottom: 40px;
    background: rgb(17, 26, 35);
    background: linear-gradient(0deg, rgba(17, 26, 35, 1) 65%, transparent 100%);
  }

  #bf-content h1,
  #bf-content h2,
  #bf-content h3,
  #bf-content p {
    color: #fff;
    text-shadow: none
  }

  .flexDiv div.blank {
    display: none
  }

  #bf-content h1,
  #bf-content h2,
  #bf-second h2,
  #bf-content h3,
  #bf-content p,
  #bf-second p {
    text-align: center
  }

  .flexDiv img {
    margin: 0 auto 30px auto
  }

  .dsktp {
    display: none
  }

  .mobl {
    display: block
  }
}


/* Pagination Settings */


.Pagination {
  margin: 60px 0;
  text-align: center;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 12px));
  line-height: 1;
}

.Pagination--tight {
  margin: 60px 0 !important;
}

.Pagination__Nav {
  display: inline-block;
  list-style: none;
}

.Pagination__NavItem {
  display: inline-block;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.Pagination__NavItem svg {
  width: 6px;
  height: 10px;
  vertical-align: -1px;
}

.Pagination__NavItem.is-active {
  color: var(--text-color);
  border-bottom-color: var(--text-color);
  box-shadow: 0 -2px var(--text-color) inset;
}

@media screen and (min-width: 641px) {
  .Pagination {
    margin: 80px 0;
  }

  .Pagination__NavItem {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media screen and (min-width: 1140px) {
  .Pagination {
    margin: 120px 0;
  }
}

.Panel {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 60px 24px;
}

.Panel--withArrows {
  margin: 0 15px;
}

.Panel--flush {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.Panel__Title {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  padding: 0 14px 0 18px;
  transform: translate(-50%, -50%);
  background: var(--background);
  white-space: nowrap;
}

.Panel .flickity-prev-next-button {
  top: calc(50% - (45px / 2));
}

.Panel .flickity-prev-next-button.next {
  right: calc(-45px / 2);
}

.Panel .flickity-prev-next-button.previous {
  left: calc(-45px / 2);
}

@media screen and (min-width: 641px) {
  .Panel {
    padding-left: 50px;
    padding-right: 50px;
  }

  .Panel--withArrows {
    margin-left: 0;
    margin-right: 0;
  }
}

.Popover {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background: var(--light-background);
  z-index: 10;
  box-shadow: 0 -2px 10px rgba(54, 54, 54, 0.2);
  touch-action: manipulation;
  transform: translateY(100%);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.Popover--secondary {
  background: var(--background);
}

.Popover[aria-hidden=false] {
  transform: translateY(0);
  visibility: visible;
}

.Popover__Header {
  position: relative;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(var(--border-color-rgb), 0.4);
  text-align: center;
}

.Popover__Close {
  position: absolute;
  left: 20px;
  top: calc(50% - 7px);
  line-height: 0;
}

.Popover__Close svg {
  stroke-width: 1.1px;
}

.Popover__ValueList {
  list-style: none;
  max-height: 385px;
  padding: 18px 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.Popover__Value {
  display: block;
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--text-color-light);
  text-align: center;
  transition: color 0.2s ease-in-out;
}

.Popover__Value:focus {
  background: var(--background);
}

.Popover__Value.is-selected {
  color: var(--text-color);
}

.Popover__Value::before {
  content: '';
  display: inline-block;
  height: 15px;
  width: 20px;
  background-size: 200px 15px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 5px;
  vertical-align: text-bottom;
}

.Popover__Value[value=CAD]::before,
.Popover__Value.is-selected[value=CAD]::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/cad.svg?v=1644507912);
}

.Popover__Value[value=GBP]::before,
.Popover__Value.is-selected[value=GBP]::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/gbp.svg?v=1644507912);
}

.Popover__Value[value=USD]::before,
.Popover__Value.is-selected[value=USD]::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/usd.svg?v=1644507912);
}

.Popover__Value[value=EUR]::before,
.Popover__Value.is-selected[value=USD]::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/eu.svg?v=1645552002);
}

.Popover__Value[value=AUD]::before,
.Popover__Value.is-selected[value=USD]::before {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/au.svg?v=1645552002);
}


.Popover__FooterHelp {
  width: 100%;
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(var(--border-color-rgb), 0.4);
}

@supports (padding: max(0px)) {
  .Popover__ValueList {
    max-height: calc(385px + env(safe-area-inset-bottom, 0px));
    padding-bottom: max(18px, env(safe-area-inset-bottom, 0px) + 18px);
  }
}

@media screen and (min-width: 1008px) {
  .Popover {
    transform: none;
    width: auto;
    bottom: auto;
    left: auto;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }

  .Popover::before {
    content: "";
    position: absolute;
    right: 40px;
    width: 10px;
    height: 10px;
    border-style: solid;
  }

  .Popover--noWrap {
    white-space: nowrap;
  }

  .Popover--withMinWidth {
    min-width: 375px;
  }

  .Popover--positionBottom::before {
    bottom: 100%;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--light-background) transparent;
    filter: drop-shadow(0 -2px 2px rgba(54, 54, 54, 0.2));
  }

  .Popover--positionTop::before {
    top: 100%;
    border-width: 10px 10px 0 10px;
    border-color: var(--light-background) transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(54, 54, 54, 0.2));
  }

  .Popover--positionLeft::before {
    left: 100%;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--light-background);
    filter: drop-shadow(2px 0 2px rgba(54, 54, 54, 0.2));
  }

  .Popover--positionTop.Popover--alignCenter::before,
  .Popover--positionBottom.Popover--alignCenter::before {
    left: calc(50% - 10px);
  }

  .Popover--positionLeft.Popover--alignCenter::before {
    top: calc(50% - 10px);
  }

  .Popover--positionLeft.Popover--alignBottom::before {
    top: 15px;
  }

  .Popover--positionLeft.Popover--alignTop::before {
    bottom: 10px;
  }

  .Popover[aria-hidden=false] {
    opacity: 1;
    transform: none;
  }

  .Popover__Header {
    display: none;
  }

  .Popover__Value {
    padding-left: 50px;
    padding-right: 50px;
    text-align: right;
  }

  .Popover--withMinWidth .Popover__Value,
  .Popover__ValueList--center .Popover__Value {
    text-align: center;
  }

  .Popover--small.Popover--positionTop::before {
    border-width: 8px 8px 0 8px;
  }

  .Popover--small.Popover--positionBottom::before {
    border-width: 0 8px 8px 8px;
  }

  .Popover--small .Popover__Value {
    padding: 5px 20px;
  }

  .features--heading-small .Popover--small .Popover__Value {
    font-size: 10px;
  }

  .features--heading-normal .Popover--small .Popover__Value {
    font-size: 12px;
  }

  .features--heading-large .Popover--small .Popover__Value {
    font-size: 13px;
  }
}

.Rte {
  word-break: break-word;
  /* Prevent long words to go outside the container */
  /* Simple, minimum clearfix added to every RTE text to avoid issue with float */
}

.Rte::after {
  content: "";
  display: block;
  clear: both;
}

.Rte iframe {
  max-width: 100%;
}

.Rte img {
  display: block;
  margin: 0 auto;
}

.Rte a:not(.Button) {
  color: var(--link-color);
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(var(--link-color-rgb), 0.6);
  text-decoration-color: rgba(var(--link-color-rgb), 0.6);
  text-underline-position: under;
  transition: color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}

.brand--ma .Footer__Content.Rte a,
.brand--mo .Footer__Content.Rte a,
.brand--mondetta .Footer__Content.Rte a,
.brand--warehouse .Footer__Content.Rte a {
  color: #fff;
}

.brand--ma .Footer__Content.Rte a:hover,
.brand--mo .Footer__Content.Rte a:hover,
.brand--mondetta .Footer__Content.Rte a:hover,
.brand--warehouse .Footer__Content.Rte a:hover {
  color: var(--link-color);
}

.Rte a:not(.Button) .Link--noUline {
  text-decoration: none;
}

.Rte a:not(.Button):hover {
  color: var(--text-color);
  -webkit-text-decoration-color: rgba(var(--text-color-rgb), 0.6);
  text-decoration-color: rgba(var(--text-color-rgb), 0.6);
}

.Rte p:not(:last-child),
.Rte ul:not(:last-child),
.Rte ol:not(:last-child) {
  margin-bottom: 1.6em;
}

.Rte blockquote,
.Rte .VideoWrapper,
.Rte .Form {
  margin-top: 2.4em;
  margin-bottom: 2.4em;
}

.Rte ul,
.Rte ol {
  margin-left: 20px;
  padding-left: 0;
  list-style-position: outside;
  position: relative;
  left: 18px;
}

.Rte li {
  padding: 5px 0;
}

.Rte h1,
.Rte h2,
.Rte h3,
.Rte h4,
.Rte h5,
.Rte h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  color: var(--heading-color);
  transition: color 0.2s ease-in-out;
}

.features--heading-uppercase .Rte h1,
.features--heading-uppercase .Rte h2,
.features--heading-uppercase .Rte h3,
.features--heading-uppercase .Rte h4,
.features--heading-uppercase .Rte h5,
.features--heading-uppercase .Rte h6 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.Rte h1 {
  margin: 2.2em 0 0.8em;
}

.Rte h2 {
  margin: 2.2em 0 0.9em;
}

.Rte h3 {
  margin: 2.2em 0 1.2em;
}

.Rte h4 {
  margin: 2.2em 0 1.4em;
}

.Rte h5 {
  margin: 2.2em 0 1.6em;
}

.Rte h6 {
  margin: 2.2em 0 1.8em;
}

.Rte blockquote {
  margin-left: 0;
  padding: 6px 0 6px 40px;
  font-size: 1.15em;
  line-height: 1.75;
  border-left: 3px solid rgba(var(--border-color-rgb), 0.6);
}

.Rte p:last-child,
.Rte blockquote:last-child,
.Rte ul:last-child,
.Rte ol:last-child,
.Rte h1:last-child,
.Rte h2:last-child,
.Rte h3:last-child,
.Rte h4:last-child,
.Rte h5:last-child,
.Rte h6:last-child {
  margin-bottom: 0;
}


.Rte blockquote.quotations {
  border: 0;
  padding: 0;
  line-height: 1.5;
  margin: 0 0 3em 0;
  text-indent: -7px;
}

.Rte blockquote.quotations span {
  font-style: italic;
}

.Rte blockquote.quotations span::before,
.Rte blockquote.quotations span::after {
  font-size: 1.5em;
  opacity: 0.25;
  font-weight: bold;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.Rte blockquote.quotations span::before {
  content: open-quote;
  margin-left: -5px;
  padding-right: 5px;
}

.Rte blockquote.quotations span::after {
  content: close-quote;
  margin-left: 10px;
}

/*#region POLICY PAGES*/

.shopify-policy__container {
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 680px;
}

@media screen and (min-width: 1008px) {

  .Rte .VideoWrapper,
  .Rte .Form {
    margin-top: 3em;
    margin-bottom: 3em;
  }

  .Rte blockquote {
    margin-left: 40px;
  }
}

.shopify-section {
  position: relative;
}

.shopify-section--hidden {
  display: none;
}

.shopify-section--bordered + .shopify-section--bordered {
  border-top: 1px solid var(--border-color);
}


.shopify-section--padded + .shopify-section--padded {
  padding: 3em 26px;
}

/* When a spacing is applied to a bordered section, as it is isolated, we use padding, otherwise margin */
.Section--spacingNormal {
  margin: 50px 0;
}

.shopify-section > .Section--spacingTight {
  padding: 20px 0;
  margin: 0 auto;
}

.Section--noSpace {
  margin: 0;
}

.Section--contained {
  max-width: 1420px;
}

.Section--padding {
  padding: 20px 0 80px 0;
}

.shopify-section--fullscreen {
  margin: 0;
  padding: 0;
}

.shopify-section--fullscreen > .Section--noSpacing {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;

}

.Section--spacingLarge,
.Section--spacingExtraLarge {
  margin: 90px 0;
}

.shopify-section--bordered > .Section--spacingTight,
.shopify-section--padded > .Section--spacingTight {
  padding: 20px 0;
  margin-top: 10px;
  margin-bottom: 40px;
}

.shopify-section--bordered > .Section--spacingNormal,
.shopify-section--padded > .Section--spacingNormal {
  padding: 50px 0;
  margin-top: 0;
  margin-bottom: 0;
}

.shopify-section--bordered > .Section--spacingLarge,
.shopify-section--padded > .Section--spacingLarge,
.shopify-section--bordered > .Section--spacingExtraLarge,
.shopify-section--padded > .Section--spacingExtraLarge {
  padding: 90px 0;
  margin-top: 0;
  margin-bottom: 0;
}

.SectionHeader:not(:only-child) {
  margin-bottom: 40px;
}

.SectionHeader--center {
  text-align: center;
  margin: 0 auto;
}

.SectionHeader--left,
.SectionHeader--right,
.SectionHeader--bg {
  padding: 0;
  /*2rem 5rem;*/
  width: auto;
}

.SectionHeader--left {
  text-align: left;
  margin: 0 !important;

}

.SectionHeader--right {
  text-align: right;
  margin: 0 !important;
}

@media screen and (max-width:640px) {
  .SectionHeader--left {
    text-align: center
  }

  .Section--noSpace {
    padding: 10px 0;
  }

  .shopify-section > .Section--spacingTight {
    margin: 0 auto -30px auto;
    padding-top: 60px;
  }

}


/*
  This is just a hack to slightly increase the selector specificity. What this does is actually taking into account the line height (1.65)
  and removing the remaining amount in both direction (0.65 / 2 => 0.325) to have more easier and consistent alignments
*/
.SectionHeader__Heading.SectionHeader__Heading,
.SectionHeader__SubHeading.SectionHeader__SubHeading {
  margin-top: -0.325em;
}

.SectionHeader__SubHeading + .SectionHeader__Heading,
.SectionHeader__SubHeading + .SectionHeader__TabList,
.SectionHeader__Description {
  margin-top: 16px;
}

.SectionHeader__Description {
  max-width: 999px;
}

.SectionHeader__Description a {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
  text-underline-position: under;
}

.SectionHeader--center .SectionHeader__Description {
  margin-left: auto;
  margin-right: auto;
}

.SectionHeader__ButtonWrapper {
  margin-top: 20px;
}

.SectionHeader__IconHolder {
  margin-top: 30px;
}

/* The SectionFooter is usually use at the end of a given section to redirect somewhere else */
.SectionFooter {
  margin-top: 50px;
  text-align: center;
}

@media screen and (min-width: 641px) {
  .SectionHeader__Heading--emphasize {
    font-size: calc(var(--base-text-font-size) - (var(--default-text-font-size) - 22px)) !important;
  }
}

@media screen and (min-width: 1008px) {
  .Section--spacingNormal {
    margin: 80px 0;
  }

  .Section--spacingTight {
    margin: 20px 0;
  }

  .Section--spacingLarge {
    margin: 120px 0;
  }

  .Section--spacingExtraLarge {
    margin: 145px 0;
  }

  .shopify-section--bordered > .Section--spacingNormal,
  .shopify-section--padded > .Section--spacingNormal {
    padding: 80px 0;
  }

  .shopify-section--bordered > .Section--spacingTight,
  .shopify-section--padded > .Section--spacingTight {
    padding: 20px 0;
  }

  .shopify-section--bordered > .Section--spacingLarge,
  . .shopify-section--padded > .Section--spacingLarge {
    padding: 120px 0;
  }

  .shopify-section--bordered > .Section--spacingExtraLarge,
  .shopify-section--padded > .Section--spacingExtraLarge {
    padding: 145px 0;
  }

  .SectionHeader:not(:only-child) {
    margin-bottom: 70px;
  }

  .SectionHeader__Description {
    margin-top: 24px;
  }

  .SectionHeader__Heading--narrow {
    max-width: 999px;
    margin: 0 auto;
  }

  .SectionHeader__ButtonWrapper {
    margin-top: 30px;
  }

  .SectionFooter {
    margin-top: 80px;
  }
}



/*#region Article inner*/


.article__wrapper p.credit {
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1.5em;
}




@media screen and (max-width:1007px) {
  .fade-mobile {
    opacity: 0.5;
  }

  .humans-being-logo {
    max-width: 300px
  }
}

@media screen and (max-width:640px) {
  .fade-mobile {
    padding: 80px 0 40px 20px !important;
  }
}


/**	
 * ----------------------------------------------------------------------------	
 * Patch Filter (Part of Collection filters)	
 * ----------------------------------------------------------------------------	*/
.patchesAlphContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 12px auto;
  width: 100%;
}

.patchesAlphItem {
  flex: 1 0 48%;
  margin: 0px 3px 8px 3px;
}

.patchesAlphButton {
  background: var(--button-background);
  text-align: center;
  width: 100%;
  height: 100%;
  padding: .4em .6em;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--border-color);
  color: var(--button-text-color);
}

.patchesAlphButton:hover {
  background: var(--collection-filter-background-rgb);
}

@media (min-width:610px) {
  .patchesAlphItem {
    flex: 1 0 33%;
    margin: 0px 3px 8px 3px;
  }
}

@media (min-width:980px) {
  .patchesAlphItem {
    flex: 0 0 250px;
    margin: 0px 3px 8px 3px;
  }
}



/*#region Product shop now*/

@media screen and (max-width: 640px) {
  .ShopNowGrid .FeaturedQuote {
    margin: 50px -24px -90px -24px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1007px) {
  .ShopNowGrid .FeaturedQuote {
    margin: 60px -50px -90px -50px;
  }
}


@media screen and (min-width: 1008px) {


  .ShopNowGrid {
    display: flex;
  }

  .ShopNowGrid .FeaturedQuote {
    height: 100%;
  }
}

.Faq__Section {
  margin-bottom: 20px;
}

.Faq__Section ~ .Faq__Section {
  margin-top: 34px;
}

.Faq__Item {
  position: relative;
  margin: 14px 0;
}

.Faq__Icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--text-color-light);
  transition: all 0.3s ease-in-out;
}

.Faq__Icon svg {
  width: 8px;
  height: 10px;
  vertical-align: baseline;
}

.Faq__Item[aria-expanded=true] .Faq__Icon {
  transform: rotateZ(90deg);
  color: var(--heading-color);
}

.Faq__ItemWrapper {
  padding-left: 26px;
}

.Faq__Question {
  display: block;
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}

.Faq__AnswerWrapper {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.25s ease-in-out, visibility 0s ease-in-out 0.25s;
}

.Faq__Item[aria-expanded=true] .Faq__AnswerWrapper {
  visibility: visible;
  transition: height 0.25s ease-in-out;
}

.Faq__Answer {
  padding: 16px 0 22px 0;
}

.Faq__Item--lastOfSection .Faq__Answer {
  padding-bottom: 0;
}

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

.FaqSummary__Item {
  margin-bottom: 12px;
}

.FaqSummary__Item.is-active::after {
  width: 100%;
}

.FaqSummary__Link {
  display: block;
}

.FaqSummary__LinkLabel {
  position: relative;
  display: inline-block;
}

.FaqSummary__LinkLabel::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left center;
  background: currentColor;
  transition: transform 0.2s linear;
}

.FaqSummary__Item.is-active .FaqSummary__LinkLabel::after {
  transform: scale(1, 1);
}

@media screen and (min-width: 641px) {
  .Faq__Section {
    margin-bottom: 34px;
  }

  .Faq__Section ~ .Faq__Section {
    margin-top: 60px;
  }
}

#faq-menu {
  max-width: 1035px;
  padding: 0 24px;
  margin: 0 auto;
}

#faq-menu a {
  display: block;
  text-decoration: none;
  margin: 5px 0;
}


/*#region Text With Image*/

.bg-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.FeatureText {
  text-align: center;
  margin: 0 auto;
  padding: 0 30px;
}

.FeatureText__ContentWrapper {
  padding-left: 24px;
  padding-right: 24px;
  margin-top: 0;
}

.FeatureText__ImageWrapper {
  overflow: hidden;
  margin-bottom: 30px;
}

.FeatureText__ImageWrapper--noSpace {
  margin-bottom: 0;
}



.FeatureText--withImage .FeatureText__ContentWrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

.FeatureText .SectionHeader__Description {
  margin-top: 25px;
  margin-bottom: 40px;
}

.FeatureText .SectionHeader__Description span {
  line-height: 100%;
}

.quotes {
  line-height: 2.25rem;
  font-style: italic
}

.quotes::before,
.quotes::after {
  opacity: 0.3;
  font-size: 2.5em;
  font-weight: bold;
  position: relative;
  top: 15px;
}


.quotes::before {
  content: '\201C';
  left: -5px;

}

.quotes::after {
  content: '\201D';
  right: -5px;
}

.StarRating {
  display: inline-block;
  height: 40px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 30px;
}

.StarRating--five {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/five-stars.svg?v=1647271549);
}

.StarRating--four {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/four-stars.svg?v=1647271549);
}

.StarRating--three {
  background-image: url(//cdn.shopify.com/s/files/1/2704/5152/files/three-stars.svg?v=1647271548);
}



@media screen and (max-width: 640px) {

  .FeatureText--imageLeft {
    display: flex;
    flex-direction: column;
  }

  .FeatureText--withImage .FeatureText__ContentWrapper {
    padding-top: 60px;
  }

  .FeatureText__ContentWrapper {
    margin-bottom: 60px;
  }

  .FeatureText__ImageWrapper--noSpace {
    margin: 30px 0;
  }

  .StarRating {
    background-position: center center;
  }

}

@media screen and (min-width: 641px) {
  .FeatureText__Content {
    max-width: 999px;
    margin: 0 auto;
  }

  .FeatureText__Content--sustainability {
    max-width: 1399px;
  }

  .FeatureText--withImage {
    display: flex;
    margin: 0 auto;
    flex-wrap: nowrap;
    max-width: 999px;
    text-align: left;
    align-items: center;
  }

  .FeatureText--withImage.wide {
    max-width: 1399px;
  }

  .FeatureText--withImage.FeatureText--alignTop {
    align-items: flex-start;
  }

  .FeatureText--withImage.FeatureText--alignCenter {
    align-items: center;
  }

  .FeatureText--withImage .FeatureText__ContentWrapper,
  .FeatureText--withImage .FeatureText__ImageWrapper {
    width: 100%;
    vertical-align: middle;
  }

  .FeatureText--imageBottom,
  .FeatureText--imageTop {
    flex-direction: column;
    text-align: center;
  }

  .FeatureText--imageRight .FeatureText__ContentWrapper {
    padding-right: 40px;
  }

  .FeatureText--imageRight .FeatureText__Content,
  .FeatureText--imageRight .AspectRatio {
    margin-right: 0;
  }

  .FeatureText--imageRight .AspectRatio {
    text-align: right;
  }

  .FeatureText--imageLeft .FeatureText__ContentWrapper,
  .FeatureText--imageRight .FeatureText__ContentWrapper {
    padding: 0 60px;
    margin-top: 0;
  }

  .FeatureText--imageLeft .FeatureText__Content,
  .FeatureText--imageLeft .AspectRatio {
    margin-left: auto;
  }

  .FeatureText--imageLeft .AspectRatio {
    text-align: left;
  }
}

@media screen and (min-width: 1140px) {
  .FeatureText--imageRight .FeatureText__ContentWrapper {
    padding-right: 100px;
  }

  .FeatureText--imageLeft .FeatureText__ContentWrapper {
    padding-left: 100px;
  }
}

.shopify-section--bordered + .shopify-section--footer {
  border-top: 1px solid var(--footer-border-color);
}


.footerStripe {
  background: url(/cdn/shop/files/mondetta-stripe-1500.png?v=1609948585) no-repeat top center;
  width: 100%;
  max-height: 20px;
  margin-top: -75px;
  padding-bottom: 75px;
  background-size: 100% 20px;
}

@media (max-width:640px) {
  .footerStripe {
    margin-top: -35px;
    padding-bottom: 75px;
    background-size: auto;
  }
}


.headerStripe {
  /*background: url(//cdn.shopify.com/s/files/1/2704/5152/files/ma-signature-stripe.png?127971) repeat-x top center;*/
  background: url(//cdn.shopify.com/s/files/1/2704/5152/files/pride-stripe.jpg?v=1654011526) repeat-x top center;
  width: 100%;
  height: 5px;
}


/*#region Image with text overlay section*/


/*#region ----------------------------------------------------------------------------------------------
 * Story Carousel
 * ----------------------------------------------------------------------------------------------*/



.story-slideshow .story-slideshow__title,
.story-slideshow .story-slideshow__subtitle {
  color: var(--heading-color);
}

.story-slideshow .story-slideshow__image-container {
  position: relative;
}

.story-slideshow .story-slideshow__image {
  object-position: top;
}

.story-slideshow .story-slideshow__slide-subtitle {
  max-width: 100%;
}

@media screen and (max-width: 1007px) {
  .story-slideshow .story-slideshow__slide-subtitle {
    margin: 0 auto;
  }
}

.story-slideshow .story-slideshow__banner {
  color: var(--secondary-elements-text-color);
  border-top: var(--secondary-elements-border-color);
  position: absolute;
  bottom: 50px;
  padding: 14px 28px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  letter-spacing: 0.2em;
}


@media screen and (min-width: 1008px) {
  .story-slideshow .story-slideshow__banner {
    bottom: 80px;
  }
}


/*#region ----------------------------------------------------------------------------------------------
 * MO Story Carousel Popup
 * ----------------------------------------------------------------------------------------------*/

.story-slideshow-popup-overlay {
  background-color: rgba(var(--heading-color), 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s var(--drawer-transition-timing);
  transition: all 0.5s var(--drawer-transition-timing);
}


.story-slideshow-popup-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.story-slideshow-popup-overlay.is-open .story-slideshow-popup {
  visibility: visible;
  opacity: 1;
}



.story-slideshow-popup {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  max-width: 750px;
  width: 80%;
  max-height: 90%;
  height: 100%;
  overflow-y: scroll;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s var(--drawer-transition-timing);
  transition: all 0.5s var(--drawer-transition-timing);
}


.story-slideshow__image {
  max-width: 100%;
  width: 100%;
}

.story-slideshow-popup__close {
  background: var(--story-popup-border-background);
  width: 54px;
  height: 54px;
  position: absolute;
  border-radius: 100%;
  top: 20px;
  right: 20px;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(#363636, 0.15);
}


.story-slideshow-popup__close:hover::before,
.story-slideshow-popup__close:hover::after {
  transform: translate(-50%, -50%);
}

.story-slideshow-popup__close::before,
.story-slideshow-popup__close::after {
  background: var(--story-popup-background);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 25px;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

.story-slideshow-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.story-slideshow__slide-title {
  background: transparent;
  color: var(--story-popup-text-color);
  border-color: var(--story-popup-border-color);
  position: absolute;
  border-width: 1px;
  border-type: solid;
  box-shadow: 0 1px 5px rgba(#363636, 0.15);
  margin-bottom: 20px
}


@media screen and (max-width:640px) {
  .story-slideshow-popup {
    max-height: 80%;
  }

  .story-slideshow-popup__close {
    z-index: 6;
    width: 30px;
    height: 30px;
    top: 15px;
  }

  .story-slideshow-popup__close::before,
  .story-slideshow-popup__close::after {
    width: 15px
  }

  .story-slideshow__slide-title {
    position: relative;
    top: 7px;
    left: 0px;
    text-align: center;
  }
}


.story-popup-block {
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.story-popup-block div {
  align-items: center;
  margin: 20px auto;
}

/*Product Note & Product Highlite */

.product-info .product-note {
  padding: 1em;
  background-color: rgba(237, 73, 46, .15);
  color: #ed492e;
  margin-bottom: 20px;
  text-align: center;
}

.product-info .model-info {
  margin: 20px 0;
  font-weight: bold;
  font-size: 1em;
}

.product-info__block-item:has(> .accordion):has(+ .product-info__block-item > .accordion) {
  margin-block-end: 0;
}

.product-info__block-item:has(> .accordion) + .product-info__block-item:has(> .accordion) {
  margin-block-start: 0;
}

.product-info__block-item:has(> .accordion) + .product-info__block-item > .accordion {
  border-block-start-width: 0;
}

#promo-alert {
  margin: 0 0 30px 0;
  display: block;
  background-color: inherit;
  color: #fff;
  padding: 20px
}

#promo-alert.exclusion-message {
  color: rgb(var(--on-sale-text));
  font-weight: 600;
  padding: 0;
  margin: 0;
}

#promo-alert p {
  line-height: 120%
}

.brand--mpg div.limited-edition {
  background: #3ca4b5;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 300px;
  display: inline-block;
  padding: 10px 15px;
  margin: 0 0 20px 0
}


#modal-size-chart header.Modal__Header {
  display: none
}

.brand--mpg .Modal--small,
.brand--warehouse .Modal--small,
.brand--mondetta .Modal--small,
.brand--ma .Modal--small,
.brand--mo .Modal--small {
  max-width: 400px;
  margin: 10% auto;
  max-height: 500px;
  z-index: 7;
}

.brand--mpg .Modal__Content,
.brand--mondetta .Modal__Content,
.brand--warehouse .Modal__Content,
.brand--ma .Modal__Content,
.brand--mo .Modal__Content {
  flex: 0
}

.FinalSaleAlert {
  width: auto;
  height: 40px;
  text-align: left;
  display: inline-block;
  font-weight: 700
}


.brand--mpg h2.Modal__Title.Heading.u-h1,
.brand--warehouse h2.Modal__Title.Heading.u-h1 {
  display: none
}

.brand--mpg .RoundButton,
.brand--mpg .flickity-prev-next-button {
  color: currentColor;
  background: transparent;
}


/* Leggings Filter */

.leggings-filter {
  margin: 2.5em auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px !important
}

.leggings-filter div {
  flex-basis: 33.33%;
  padding: 0 20px
}

.leggings-filter div img {
  margin: 15px auto !important;
  opacity: 1;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

.leggings-filter div img:hover {
  cursor: pointer;
  opacity: 0.5
}

.leggings-filter div p {
  text-align: left;
  font-size: 1.2em
}

.leggings-filter h3 {
  font-size: 1.75em;
  text-align: center;
  align-self: center
}

a.link-arrow {
  margin: 25px 0 0 0;
  color: var(--text-color-light);
  font-size: 16px;
  font-weight: bold;
}

a.link-arrow:hover {
  color: var(--text-color);
}

p.mobile-msg {
  display: none;
  font-size: 1.3em;
  font-weight: bold;
  color: #ccc;
  text-align: center
}

.leggings-filter div.filter-buttons {
  flex-basis: 33.33%;
  padding: 0 20px
}

.leggings-filter div.filter-buttons a {
  text-decoration: none !important;
  text-transform: uppercase;
  line-height: 100%;
  display: inline-block;
  min-width: 90%;
  font-size: 1em;
  background: none;
  color: #000 !important;
  border: 1px solid #000;
  padding: 10px 0;
  text-align: center;
  margin: 15px
}

.leggings-filter div.filter-buttons a:hover {
  background: #ddd;
  transition: background .25s ease-in-out;
  -moz-transition: background .25s ease-in-out;
  -webkit-transition: background .25s ease-in-out;
}


@media screen and (max-width:749px) {
  .leggings-filter {
    display: block;
    width: 100%
  }

  .leggings-filter div {
    display: flex;
    flex: 0 0 45%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    padding: 0 0 0 20px;
    margin-bottom: 30px;
  }

  .leggings-filter div div {
    align-items: center
  }

  .leggings-filter div img {
    max-width: 200px
  }

}

@media screen and (max-width:499px) {
  .leggings-filter {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .leggings-filter div {
    padding: 0;
    justify-content: center;
    flex: 1 0 0
  }

  .leggings-filter div img {
    max-width: 100%;
    padding: 10px
  }

  .leggings-filter div div:last-child {
    display: none
  }

  p.mobile-msg {
    display: block;
  }

}


/* Collection Page Custom Filter Buttons - Sports Bras, Jackets, MA Shirts, MA Pants */

.header-icons,
.header-icons-meta {
  margin: 1.5em auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px !important
}

.header-icons div,
.header-icons-meta div {
  flex-basis: 33.33%
}

.header-icons.warehs div {
  flex-basis: 0
}

.header-icons.warehs div.mpg-filter {
  min-width: 100px !important
}

.header-icons div.mpg-filter a,
.header-icons-meta div.mpg-filter a {
  text-decoration: none !important;
  text-transform: uppercase;
  line-height: 100%;
  display: inline-block;
  min-width: 90%;
  font-size: 1.3em;
  background: #3a3b3d;
  color: #fff !important;
  border: 1px solid #000;
  padding: 15px 0;
  text-align: center;
  margin: 15px
}

.header-icons div.mpg-filter a:hover,
.header-icons-meta div.mpg-filter a:hover {
  background: #fff;
  color: #3a3b3d !important
}

.header-icons div.ma-filter a,
.header-icons-meta div.ma-filter a {
  text-decoration: none;
  line-height: 75%;
  display: inline-block;
  min-width: 90%;
  font-size: 1.3em;
  background: #faf8f7;
  color: #1e2228;
  border: 1px solid #1e2228;
  padding: 15px 10px;
  text-align: center;
  margin: 15px
}

.header-icons div.ma-filter a:hover,
.header-icons-meta div.ma-filter a:hover {
  background: #1e2228;
  color: #faf8f7 !important
}

.header-icons div.ma-filter a span,
.header-icons-meta div.ma-filter a span {
  font-size: 0.6em;
  text-transform: uppercase
}

.header-icons div img,
.header-icons-meta div img {
  padding: 10px;
  margin: 0 !important
}

.header-icons div img:hover,
.header-icons-meta div img:hover {
  filter: contrast(2)
}


/* Price List Wrapper */
.price-list-wrapper {
  display: flex;
  align-items: baseline;
  column-gap: 1rem;
  flex-wrap: wrap;
}

.price-list-wrapper__discount {
  color: rgb(var(--discount-text));
  font-weight: 500;
}



/* Notifications */
.notification-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  position: fixed;
  inset-inline: 0;
  inset-block-end: 1rem;
  pointer-events: none;
  z-index: 100000;
}

.notification-container .banner {
  animation: notification-fade 0.2s ease-out forwards;
}

.notification-container:empty {
  display: none;
}

.notification-container > * {
  pointer-events: initial;
}

.buy-buttons__preorder-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.buy-buttons__preorder-date--hidden,
.preorder-variant-lists {
  display: none;
}

.line-item-info__properties {
  list-style-type: none;
  /* text-indent: -17px; */
  font-size: 12px;
  font-weight: 500;
  margin-left: 0;
}

.line-item-info__properties li {
  padding-left: 0;
}

.product-info__block-list .variant-picker__option[data-option="size"] .block-swatch.is-preorder {
  overflow: visible;
}

.preorder-icon {
  position: absolute;
  width: 12px;
  top: -5px;
  right: -5px;
}

.buy-buttons .preorder-icon {
  position: initial;
  margin-right: -10px;
  width: 20px;
}

.preorder-tag {
  position: absolute;
  right: 0px;
  padding: 5px 10px;
  border: 1px solid rgb(var(--button-background));
  text-transform: uppercase;
}

.line-item-info__properties .preorder-tag {
  position: inherit;
  display: flex;
  border: 1px solid rgb(var(--button-background));
  text-indent: 0px;
  text-align: center;
  justify-content: center;
  margin: 5px 0;
}

@media screen and (max-width: 699.9px) {
  .preorder-tag {
    font-size: 9px;
    padding: 4px;
  }
}




/*#region Important Overrides
 * - These need to be last so that they will override any previous styles.*/

html {
  overflow-y: scroll;
  /* Adds vertical scrollbar */
}

/*#endregion