/** Shopify CDN: Minification failed

Line 2443:0 Expected "}" to go with "{"

**/
.video-wrapper {
  position: relative;
  margin-bottom: 0.3rem;
  display: flex;
}
.video-wrapper.desktop {
  display: none;
}
.video-wrapper.mobile {
  display: flex;
}
.video-container {
  display: none;
}
@media screen and (min-width: 990px) {
  .video-container {
    display: flex;
    gap: 3px;
  }
  .video-wrapper.desktop {
    display: flex;
  }
  .video-wrapper.mobile {
    display: none;
  }
}
.video-wrapper video {
  border-radius: var(--media-radius);
  flex: 1;
  width: 100%;
}
.video-wrapper .mute-icon {
  margin: auto;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 12rem;
  align-items: center;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.5s;
  border: 1.5px solid #000;
  align-items: center;
  bottom: 3rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  display: inline-flex;
  right: 3rem;
  overflow: hidden;
  position: absolute;
  top: initial;
}

.mobile.video-wrapper .mute-icon {
  top: 3rem;
  bottom: unset;
}

.video-wrapper .mute-icon span {
  margin: auto;
  display: flex;
  align-items: center;
}
.video-wrapper .mute-icon svg {
  width: 25px;
}
.image-modal {
  position: fixed !important;
  border-radius: 0 !important;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.image-modal .modal-body {
  position: absolute;
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.image-modal .modal-content {
  position: relative;
  pointer-events: all;
}
.image-modal .modal-button {
  color: rgb(var(--primary-color-white));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-modal .modal-button button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--primary-color-white), 1);
  border: 2px solid rgba(var(--primary-color-black), 1);
  line-height: 60px;
  text-align: center;
  margin: 0 1rem;
  cursor: pointer;
  pointer-events: all;
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: center;
}
/* on mobile hide modal-buttons */
@media screen and (max-width: 749px) {
  .image-modal .modal-button {
    display: none;
  }
}
.image-modal .modal-content .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--media-radius);
  border: 1px solid #000;
  margin: 1rem;
}
.image-modal .modal-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.image-modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  float: right;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 32px;
  color: #000;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
}

.image-modal .close:hover,
.image-modal .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.image-modal .modal-image {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
.image-modal .zoom-wrapper {
  margin: 3rem 0 0 0;
}
.image-modal input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 50px;
  width: 100%;
  height: 25px;
  margin: 0;
}
.image-modal input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid #000;
}

.image-modal input[type="range"]::-moz-range-track {
  width: 100%;
  height: 25px;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid #000;
}
/* Style the thumb */
.image-modal input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 45px;
  height: 45px;
  background-color: rgba(var(--primary-color-black), 1);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -12px;
}

.image-modal input[type="range"]::-moz-range-thumb {
  width: 45px;
  height: 45px;
  margin-top: -12px;
  background-color: rgba(var(--primary-color-black), 1);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.product {
  margin: 0 3px;
}
@media screen and (min-width: 990px) {
  .product {
    margin-left: 0px;
  }
}
.product.grid {
  gap: 0;
}
.product--no-media {
  max-width: 57rem;
  margin: 0 auto;
}
.product__media-wrapper {
  padding-left: 0;
}
.product__info-wrapper {
  display: none;
}
.product__info-container--mobile {
  margin-bottom: var(--grid-desktop-horizontal-spacing);
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 750px) {
  .product__info-container--mobile {
    display: none;
  }

  .product__info-wrapper--tablet-up {
    display: block;
  }

  .product--thumbnail .product__media-gallery,
  .product--thumbnail_slider .product__media-gallery,
  .product--stacked .product__info-container--sticky,
  .product--columns .product__info-container--sticky {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    transition: top 150ms linear;
    z-index: 2;
    margin-bottom: var(--grid-desktop-horizontal-spacing);
    min-height: 100vh;
  }

  .product--columns .product__info-container--sticky.scrolling {
    top: 68px;
  }

  @media screen and (min-width: 990px) {
    .product--columns .product__info-container--sticky.scrolling {
      top: 0;
    }
  }

  .product--thumbnail .thumbnail-list {
    padding-right: var(--media-shadow-horizontal-offset);
  }

  .grid--2-col-tablet .grid__item.product__media-wrapper {
    padding-left: 0;
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--2-col-tablet .grid__item.product__info-wrapper {
    padding: 0 0 0 0.3rem;
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product__info-wrapper--extra-padding {
    padding: 0 0 0 8rem;
  }

  .product--right .product__info-wrapper {
    padding: 0 5rem 0 0;
  }

  .product--right .product__info-wrapper--extra-padding {
    padding: 0 8rem 0 0;
  }

  .product--right .product__media-list {
    margin-bottom: 2rem;
  }

  .product__media-container .slider-buttons {
    display: none;
  }
}
@media screen and (min-width: 990px) {
  .product--large:not(.product--no-media) .product__media-wrapper {
    flex: 1 1 auto;
    max-width: 100%;
    /* width: auto; */
  }

  .product--large:not(.product--no-media) .product__info-wrapper {
    flex: 0 1 auto;
    max-width: 100%;
    padding: 0 0 0 0.3rem;
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .product--large:not(.product--no-media).product--right .product__info-wrapper {
    padding: 0;
  }

  .product--medium:not(.product--no-media) .product__media-wrapper,
  .product--small:not(.product--no-media) .product__info-wrapper {
    max-width: 55%;
    width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--medium:not(.product--no-media) .product__info-wrapper,
  .product--small:not(.product--no-media) .product__media-wrapper {
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}
/* Dynamic checkout */
.shopify-payment-button__button {
  font-family: inherit;
  min-height: 4.6rem;
}
.shopify-payment-button__button [role="button"].focused,
.no-js .shopify-payment-button__button [role="button"]:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
}
.shopify-payment-button__button [role="button"].focused,
.no-js .shopify-payment-button__button [role="button"]:focus {
  outline-offset: 0.3rem;
}
.shopify-payment-button__button [role="button"]:focus:not(.focus-visible) {
  box-shadow: none !important;
}
.shopify-payment-button__button [role="button"]:focus:not(.focus-visible) {
  outline: 0;
}
.shopify-payment-button__button [role="button"]:focus:not(:focus-visible) {
  box-shadow: none !important;
}
.shopify-payment-button__button [role="button"]:focus:not(:focus-visible) {
  outline: 0;
}
.shopify-payment-button__button [role="button"].focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
}
.shopify-payment-button__button [role="button"]:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
}
.shopify-payment-button__button--unbranded {
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  color: rgb(var(--color-button-text));
  font-size: 1.4rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  letter-spacing: 0.07rem;
}
.shopify-payment-button__button--unbranded::-moz-selection {
  background-color: rgba(var(--color-button-text), 0.3);
}
.shopify-payment-button__button--unbranded::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}
.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: rgba(var(--color-button), var(--alpha-button-background));
}
.shopify-payment-button__more-options {
  margin: 1.6rem 0 1rem;
  font-size: 1.2rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.05rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.shopify-payment-button__button + .shopify-payment-button__button--hidden {
  display: none;
}
/* Product form */
.product-form {
  display: block;
}
.product-form__error-message-wrapper:not([hidden]) {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.product-form__error-message-wrapper svg {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.7rem;
  margin-top: 0.5rem;
}
/* Form Elements */
.product-form__input {
  flex: 0 0 100%;
  padding: 0;
  margin: 0 0 2rem 0;
  /* max-width: 37rem; */
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: none;
}
.product-form__quantity {
  border-radius: 0px;
  /* box-shadow: 0 0 0 0.1rem rgb(var(--primary-color-black)); */
}
.product-form__quantity .quantity {
  width: 100%;
}
variant-radios,
variant-selects {
  display: block;
}
.product-form__input--dropdown {
  margin-bottom: 1.6rem;
}
.product-form__input .form__label {
  padding-left: 0;
}
fieldset.product-form__input .form__label {
  margin-bottom: 0.2rem;
}
.product-form__input input[type="radio"] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}
.product-form__input input[type="radio"] + label {
  border: var(--variant-pills-border-width) solid
    rgba(var(--color-foreground), var(--variant-pills-border-opacity));
  background-color: rgb(var(--color-background));
  color: rgba(var(--color-foreground));
  border-radius: var(--variant-pills-radius);
  color: rgb(var(--color-foreground));
  display: inline-block;
  margin: 0.7rem 0.5rem 0.2rem 0;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}
.product-form__input input[type="radio"] + label:before {
  content: "";
  position: absolute;
  top: calc(var(--variant-pills-border-width) * -1);
  right: calc(var(--variant-pills-border-width) * -1);
  bottom: calc(var(--variant-pills-border-width) * -1);
  left: calc(var(--variant-pills-border-width) * -1);
  z-index: -1;
  border-radius: var(--variant-pills-radius);
  box-shadow: var(--variant-pills-shadow-horizontal-offset)
    var(--variant-pills-shadow-vertical-offset) var(--variant-pills-shadow-blur-radius)
    rgba(var(--color-shadow), var(--variant-pills-shadow-opacity));
}
.product-form__input input[type="radio"] + label:hover {
  border-color: rgb(var(--color-foreground));
}
.product-form__input input[type="radio"]:checked + label {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}
@media screen and (forced-colors: active) {
  .product-form__input input[type="radio"]:checked + label {
    text-decoration: underline;
  }
}
.product-form__input input[type="radio"]:checked + label::-moz-selection {
  background-color: rgba(var(--color-background), 0.3);
}
.product-form__input input[type="radio"]:checked + label::selection {
  background-color: rgba(var(--color-background), 0.3);
}
.product-form__input input[type="radio"]:disabled + label {
  border-color: rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.4);
  text-decoration: line-through;
}
.product-form__input input[type="radio"].focus-visible + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}
.product-form__input input[type="radio"]:focus-visible + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}
/* Fallback */
.product-form__input input[type="radio"].focused + label,
.no-js .shopify-payment-button__button [role="button"]:focus + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}
/* No outline when focus-visible is available in the browser */
.no-js .product-form__input input[type="radio"]:focus:not(.focus-visible) + label {
  box-shadow: none;
}
.no-js .product-form__input input[type="radio"]:focus:not(:focus-visible) + label {
  box-shadow: none;
}
.product-form__input .select {
  max-width: 25rem;
}
/* .product-form__submit.button--primary { */
/*   background-color: rgba(var(--primary-color-white), 1); */
/*   border-radius: var(--media-radius); */
/*   box-shadow: 0 0 0 0.1rem rgba(var(--primary-color-black), 1); */
/*   filter: drop-shadow(5px 5px 0px rgba(var(--primary-color-black), 1)); */
/*   font-family: var(--font-body-bold-family); */
/*   margin-bottom: 1rem; */
/*   overflow: visible; */
/*   text-transform: lowercase; */
/*   &::before, */
/*   &::after { */
/*    content: ''; */
/*   } */
/*   &:hover { */
/*     color: rgb(var(--primary-color-white)); */
/*     background-color: rgba(var(--primary-color-black), 1); */
/*     box-shadow: 0 0 0 0.1rem rgba(var(--primary-color-white), 1); */
/*     filter: drop-shadow(5px 5px 0px rgba(var(--primary-color-white), 1)); */
/*   } */
/* } */
/* .no-js .product-form__submit.button--secondary { */
/*   --color-button: var(--color-base-accent-1); */
/*   --color-button-text: var(--color-base-solid-button-labels); */
/*   --alpha-button-background: 1; */
/* } */
/* .product-form__submit[aria-disabled="true"] + .shopify-payment-button .shopify-payment-button__button[disabled], */
/* .product-form__submit[disabled] + .shopify-payment-button .shopify-payment-button__button[disabled] { */
/*   cursor: not-allowed; */
/*   opacity: 0.5; */
/* } */
@media screen and (forced-colors: active) {
  .product-form__submit[aria-disabled="true"] {
    color: Window;
  }
}
/* Overrides */
.shopify-payment-button__more-options {
  color: rgb(var(--color-foreground));
}
.shopify-payment-button__button {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
/* Product info */
.product__info-container iframe {
  max-width: 100%;
}
.product__text {
  margin-bottom: 0;
}
a.product__text {
  display: block;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
}
.product__text.caption-with-letter-spacing {
  text-transform: lowercase;
}
.product__title {
  margin-bottom: 1.5rem;
  word-break: break-word;
  display: flex;
  flex-direction: column;
}
.product__title h1 {
  text-decoration: underline;
}
.product__title > * {
  margin: 0;
  font-size: max(3.6rem, min(calc(4vw + 1rem), 4.6rem));
  line-height: max(3.8rem, min(calc(4vw + 1rem), 4.8rem));
}
.product__title > a {
  display: none;
}
.product__title + .product__text.caption-with-letter-spacing {
  margin-top: -1.5rem;
}
.product__volume {
  font-family: var(--font-body-bold-family);
  font-size: 1.3rem;
  margin-top: -1.5rem;
}
.product__text.caption-with-letter-spacing + .product__title {
  margin-top: 0;
}
.product__accordion .accordion__content {
  padding: 0 1rem;
}
.product .price .badge {
  margin-bottom: 0.5rem;
}
.product .price__container {
  /* margin-bottom: 0.5rem; */
}
.product .price dl {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.product .price--sold-out .price__badge-sold-out {
  background: transparent;
  color: rgb(var(--color-base-text));
  border-color: transparent;
}
.product .price--sold-out .price__badge-sale {
  display: none;
}
.product__info-container {
  /* max-width: 60rem; */
  border-radius: var(--media-radius);
  padding: 3rem;
}
.product__variant {
  margin-top: 4rem;
}
.product__variant .select {
  max-width: none !important;
}
.product__variant select {
  border-radius: 10rem !important;
}
.product__variant select {
  border: 1px solid black;
}
.product__price {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 750px) {
  .product__info-container {
    border-radius: var(--media-radius);
    padding: 3rem;
  }

  .product__info-container .price--on-sale .price-item--regular {
    font-size: 1.6rem;
  }

  .product__info-container > *:first-child {
    margin-top: 0;
  }
}
.product__description-title {
  font-weight: 600;
}
.product__short-description {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin-bottom: 1rem;
}
.product__short-description p {
  margin: 0;
}
@media screen and (min-width: 990px) {
  .product__info-container .product__short-description {
    margin-bottom: auto;
  }
}
.product--no-media .product__title,
.product--no-media .product__text,
.product--no-media noscript .product-form__input,
.product--no-media .product__tax,
.product--no-media shopify-payment-terms {
  text-align: center;
}
.product--no-media .product__media-wrapper,
.product--no-media .product__info-wrapper {
  padding: 0;
}
.product__tax {
  margin-top: -1.4rem;
}
.product--no-media noscript .product-form__input,
.product--no-media .share-button {
  max-width: 100%;
}
.product--no-media fieldset.product-form__input,
.product--no-media .product-form__quantity,
.product--no-media .product-form__input--dropdown,
.product--no-media .share-button,
.product--no-media .product__view-details,
.product--no-media .product__pickup-availabilities,
.product--no-media .product-form {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product--no-media .product-form {
  flex-direction: column;
}
.product--no-media .product-form > .form {
  max-width: 30rem;
  width: 100%;
}
.product--no-media .product-form__quantity,
.product--no-media .product-form__input--dropdown {
  flex-direction: column;
  max-width: 100%;
}
.product-form__quantity .form__label {
  margin-bottom: 0.6rem;
}
.product-form__quantity-top .form__label {
  margin-bottom: 1.2rem;
}
.product--no-media fieldset.product-form__input {
  flex-wrap: wrap;
  margin: 0 auto 1.2rem auto;
}
/* .product-form__buttons { */
/*   max-width: 44rem; */
/* } */
.product--no-media .product__info-container > modal-opener {
  display: block;
  text-align: center;
}
.product--no-media .product-popup-modal__button {
  padding-right: 0;
}
.product--no-media .price {
  text-align: center;
}
/* Product media */
.product__media-list video {
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}
.product__media-list .product__media-item,
.product__media-list .product__social-media-item,
.product__media-list .product__lifestyle-media-item {
  border-radius: var(--media-radius);
  overflow: hidden;
}
.product__media-ratio {
  background-color: transparent !important;
}
.product__media-ratio {
  aspect-ratio: 4 / 5;
}
.aspect-4 .product__media-ratio {
  aspect-ratio: 4 / 5;
}
.product__lifestyle-carousel .aspect-4 {
  background-color: transparent !important;
}
.product__lifestyle-carousel .aspect-4 {
  aspect-ratio: 4 / 5;
}
.product__media video {
  -o-object-fit: fill;
  object-fit: fill;
}
@media screen and (max-width: 749px) {
  .product__ingredient-spotlight .product__ingredient-background-image {
    display: none;
  }

  .product__media-list {
    margin-bottom: 3rem;
    width: calc(100% + 4rem);
  }

  .product__media-wrapper slider-component:not(.thumbnail-slider--no-slide) {
    margin-right: 0;
  }

  .slider.product__media-list::-webkit-scrollbar {
    height: 0.2rem;
    width: 0.2rem;
  }

  .product__media-list::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-foreground));
  }

  .product__media-list::-webkit-scrollbar-track {
    background-color: rgba(var(--color-foreground), 0.2);
  }

  .product__media-list .product__media-item,
  .product__media-list .product__social-media-item,
  .product__media-list .product__lifestyle-media-item {
    width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
  }

  .product--mobile-columns .product__media-item,
  .product--mobile-columns .product__social-media-item,
  .product--mobile-columns .product__lifestyle-media-item {
    width: calc(40% - 1.5rem - var(--grid-mobile-horizontal-spacing));
  }
}
@media screen and (min-width: 750px) {
  .product--thumbnail .product__media-list,
  .product--thumbnail_slider .product__media-list {
    padding-bottom: calc(
      var(--media-shadow-vertical-offset) * var(--media-shadow-visible)
    );
  }

  .product__media-list {
    padding-right: calc(
      var(--media-shadow-horizontal-offset) * var(--media-shadow-visible)
    );
  }

  .product--thumbnail .product__media-item:not(.is-active),
  .product--thumbnail_slider .product__media-item:not(.is-active) {
    display: none;
  }

  .product-media-modal__content
    > .product__media-item--variant.product__media-item--variant {
    display: none;
  }

  .product-media-modal__content > .product__media-item--variant:first-child {
    display: block;
  }

  .product__media-list .product__social-media-item,
  .product__media-list .product__lifestyle-media-item {
    width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
  }
}
@media screen and (min-width: 990px) {
  .product__media-list .product__social-media-item,
  .product__media-list .product__lifestyle-media-item {
    width: calc(40% - 3rem - var(--grid-mobile-horizontal-spacing));
  }
}
.product__media-item.product__media-item--variant {
  display: none;
}
.product__media-item--variant:first-child {
  display: block;
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .product__media-list .product__media-item:first-child {
    padding-left: 0;
  }

  .product--thumbnail_slider .product__media-list {
    margin-left: 0;
  }

  .product__media-list .product__media-item {
    width: 100%;
  }
}
.product__media-icon .icon {
  width: 1.2rem;
  height: 1.4rem;
}
.product__media-icon,
.thumbnail__badge {
  background-color: rgb(var(--color-background));
  border-radius: 50%;
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  position: absolute;
  left: calc(1.2rem + var(--media-border-width));
  top: calc(1.2rem + var(--media-border-width));
  z-index: 1;
  transition: color var(--duration-short) ease, opacity var(--duration-short) ease;
}
.product__media-video .product__media-icon {
  opacity: 1;
}
.product__modal-opener--image .product__media-toggle:hover {
  cursor: zoom-in;
}
.product__modal-opener:hover .product__media-icon {
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
}
@media screen and (min-width: 750px) {
  .grid__item.product__media-item--full {
    width: 100%;
  }
}
@media screen and (min-width: 990px) {
  .product--columns
    .product__media-item:not(.product__media-item--single):not(:only-child) {
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product--large.product--columns
    .product__media-item--full
    .deferred-media__poster-button {
    height: 5rem;
    width: 5rem;
  }

  .product--medium.product--columns
    .product__media-item--full
    .deferred-media__poster-button {
    height: 4.2rem;
    width: 4.2rem;
  }

  .product--medium.product--columns
    .product__media-item--full
    .deferred-media__poster-button
    .icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .product--small.product--columns
    .product__media-item--full
    .deferred-media__poster-button {
    height: 3.6rem;
    width: 3.6rem;
  }

  .product--small.product--columns
    .product__media-item--full
    .deferred-media__poster-button
    .icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .product--stacked .product__media-item {
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .product:not(.product--columns) .product__media-list .product__media-item:first-child,
  .product:not(.product--columns) .product__media-list .product__media-item--full {
    width: 100%;
    max-width: 100%;
  }

  .product__modal-opener .product__media-icon {
    opacity: 0;
  }

  .product__modal-opener:hover .product__media-icon,
  .product__modal-opener:focus .product__media-icon {
    opacity: 1;
  }
}
.product__media-item > * {
  border-radius: 2.5rem;
  display: block;
  position: relative;
}
.product__media-toggle {
  display: flex;
  border: none;
  background-color: transparent;
  color: currentColor;
  padding: 0;
}
.product__media-toggle::after {
  content: "";
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
}
.product__media-toggle.focus-visible {
  outline: 0;
  box-shadow: none;
}
.product__media-toggle:focus-visible {
  outline: 0;
  box-shadow: none;
}
.product__social-media-item > *,
.product__lifestyle-media-item > * {
  display: block;
  position: relative;
  border-radius: 2.5rem;
}
.product__social-media-item > * video,
.product__lifestyle-media-item > * video {
  height: 100% !important;
}
/* outline styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .product__media-toggle.focus-visible,
  .product__media-toggle.focus-visible:after,
  .product-form__input input[type="radio"].focus-visible + label {
    outline: transparent solid 1px;
    outline-offset: 2px;
  }
  .product__media-toggle:focus-visible,
  .product__media-toggle:focus-visible:after,
  .product-form__input input[type="radio"]:focus-visible + label {
    outline: transparent solid 1px;
    outline-offset: 2px;
  }
}
.product__media-toggle.focused {
  outline: 0;
  box-shadow: none;
}
.product__media-toggle.focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
  border-radius: var(--media-radius);
}
.product__media-toggle:focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
  border-radius: var(--media-radius);
}
.product__media-toggle.focused:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
  border-radius: var(--media-radius);
}
.product-media-modal {
  background-color: rgb(var(--color-background));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.product-media-modal[open] {
  visibility: visible;
  opacity: 1;
  z-index: 101;
}
.product-media-modal__dialog {
  display: flex;
  align-items: center;
  height: 100vh;
}
.product-media-modal__content {
  max-height: 100vh;
  width: 100%;
  overflow: auto;
}
.product-media-modal__content > *:not(.active),
.product__media-list .deferred-media {
  display: none;
}
@media screen and (min-width: 750px) {
  .product-media-modal__content {
    padding-bottom: 2rem;
  }

  .product-media-modal__content > *:not(.active) {
    display: block;
  }

  .product__modal-opener:not(.product__modal-opener--image) {
    display: none;
  }

  .product__media-list .deferred-media {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .product--thumbnail
    .is-active
    > .product__modal-opener:not(.product__modal-opener--image),
  .product--thumbnail_slider
    .is-active
    > .product__modal-opener:not(.product__modal-opener--image) {
    display: none;
  }

  .product--thumbnail .is-active .deferred-media,
  .product--thumbnail_slider .is-active .deferred-media {
    display: block;
    width: 100%;
  }
}
.product-media-modal__content > * {
  display: block;
  height: auto;
  margin: auto;
}
.product-media-modal__content .media {
  background: none;
}
.product-media-modal__model {
  width: 100%;
}
.product-media-modal__toggle {
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  color: rgba(var(--color-foreground), 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  right: 2rem;
  padding: 1.2rem;
  position: fixed;
  z-index: 2;
  top: 2rem;
  width: 4rem;
}
.product-media-modal__content .deferred-media {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .product-media-modal__content {
    padding: 2rem 11rem;
  }

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

  .product-media-modal__content > * + * {
    margin-top: 2rem;
  }

  .product-media-modal__toggle {
    right: 5rem;
    top: 2.2rem;
  }
}
@media screen and (min-width: 990px) {
  .product-media-modal__content {
    padding: 2rem 11rem;
  }

  .product-media-modal__content > * + * {
    margin-top: 1.5rem;
  }

  .product-media-modal__content {
    padding-bottom: 1.5rem;
  }

  .product-media-modal__toggle {
    right: 5rem;
  }
}
.product-media-modal__toggle:hover {
  color: rgba(var(--color-foreground), 0.75);
}
.product-media-modal__toggle .icon {
  height: auto;
  margin: 0;
  width: 2.2rem;
}
/* Product popup */
.product-popup-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  background: rgba(var(--color-foreground), 0.2);
  height: 100%;
}
.product-popup-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}
.product-popup-modal__content {
  border-radius: var(--popup-corner-radius);
  background-color: rgb(var(--color-background));
  overflow: auto;
  height: 80%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5rem;
  width: 92%;
  position: absolute;
  top: 0;
  padding: 0 1.5rem 0 3rem;
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-style: solid;
  border-width: var(--popup-border-width);
  box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset)
    var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
}
.product-popup-modal__content.focused {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3),
    var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset)
      var(--popup-shadow-blur-radius)
      rgba(var(--color-shadow), var(--popup-shadow-opacity));
}
.product-popup-modal__content.focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3),
    var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset)
      var(--popup-shadow-blur-radius)
      rgba(var(--color-shadow), var(--popup-shadow-opacity));
}
.product-popup-modal__content:focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3),
    var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset)
      var(--popup-shadow-blur-radius)
      rgba(var(--color-shadow), var(--popup-shadow-opacity));
}
@media screen and (min-width: 750px) {
  .product-popup-modal__content {
    padding-right: 1.5rem;
    margin-top: 10rem;
    width: 70%;
    padding: 0 3rem;
  }

  .product-media-modal__dialog .global-media-settings--no-shadow {
    overflow: visible !important;
  }
}
.product-popup-modal__content img {
  max-width: 100%;
}
@media screen and (max-width: 749px) {
  .product-popup-modal__content table {
    display: block;
    max-width: -moz-fit-content;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0;
  }

  .product-media-modal__dialog .global-media-settings,
  .product-media-modal__dialog .global-media-settings video,
  .product-media-modal__dialog .global-media-settings model-viewer,
  .product-media-modal__dialog .global-media-settings iframe,
  .product-media-modal__dialog .global-media-settings img {
    border: none;
    border-radius: 0;
  }
}
.product-popup-modal__opener {
  display: inline-block;
}
.product-popup-modal__button {
  font-size: 1.6rem;
  padding-right: 1.3rem;
  padding-left: 0;
  height: 4.4rem;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}
.product-popup-modal__button:hover {
  text-decoration-thickness: 0.2rem;
}
.product-popup-modal__content-info {
  padding-right: 4.4rem;
}
.product-popup-modal__content-info > * {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .product-popup-modal__content-info > * {
    max-height: 100%;
  }
}
.product-popup-modal__toggle {
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  color: rgba(var(--color-foreground), 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: sticky;
  padding: 1.2rem;
  z-index: 2;
  top: 1.5rem;
  width: 4rem;
  margin: 0 0 0 auto;
}
.product-popup-modal__toggle:hover {
  color: rgba(var(--color-foreground), 0.75);
}
.product-popup-modal__toggle .icon {
  height: auto;
  margin: 0;
  width: 2.2rem;
}
.product__media-list .media > * {
  overflow: hidden;
}
.thumbnail-list {
  flex-wrap: wrap;
  grid-gap: 1rem;
}
/* Fix to show some space at the end of our sliders in all browsers to be applied on thumbnails */
.slider--mobile.thumbnail-list:after {
  content: none;
}
@media screen and (min-width: 750px) {
  .product--stacked .thumbnail-list {
    display: none;
  }

  .thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.thumbnail-list_item--variant:not(:first-child) {
  display: none;
}
@media screen and (min-width: 990px) {
  .thumbnail-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .product--medium .thumbnail-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .product--large .thumbnail-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 749px) {
  .product__media-item {
    display: flex;
    align-items: center;
  }

  .product__modal-opener {
    width: 100%;
  }

  .thumbnail-slider {
    display: flex;
    align-items: center;
  }

  .thumbnail-slider .thumbnail-list.slider {
    display: flex;
    padding: 0.5rem;
    flex: 1;
    scroll-padding-left: 0.5rem;
  }

  .thumbnail-list__item.slider__slide {
    width: calc(33% - 0.6rem);
  }
}
@media screen and (min-width: 750px) {
  .product--thumbnail_slider .thumbnail-slider {
    display: flex;
    align-items: center;
  }

  .thumbnail-slider .thumbnail-list.slider--tablet-up {
    display: flex;
    padding: 0.5rem;
    flex: 1;
    scroll-padding-left: 0.5rem;
  }

  .product__media-wrapper .slider-mobile-gutter .slider-button {
    display: none;
  }

  .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
    width: calc(25% - 0.8rem);
  }

  .product--thumbnail_slider .slider-mobile-gutter .slider-button {
    display: flex;
  }
}
@media screen and (min-width: 900px) {
  .product--small
    .thumbnail-list.slider--tablet-up
    .thumbnail-list__item.slider__slide {
    width: calc(25% - 0.8rem);
  }

  .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
    width: calc(20% - 0.8rem);
  }
}
.thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  color: rgb(var(--color-base-text));
  cursor: pointer;
  background-color: transparent;
}
.thumbnail:hover {
  opacity: 0.7;
}
.thumbnail.global-media-settings img {
  border-radius: 0;
}
.thumbnail[aria-current] {
  box-shadow: 0 0 0rem 0.1rem rgb(var(--color-foreground));
  border-color: rgb(var(--color-foreground));
}
.thumbnail[aria-current].focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
}
.thumbnail[aria-current]:focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
}
.thumbnail[aria-current]:focus,
.thumbnail.focused {
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
}
/* outline styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .thumbnail[aria-current]:focus,
  .thumbnail.focused {
    outline: transparent solid 1px;
  }
}
.thumbnail[aria-current]:focus:not(.focus-visible) {
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground));
}
.thumbnail[aria-current]:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground));
}
.thumbnail img {
  pointer-events: none;
}
.thumbnail--narrow img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.thumbnail--wide img {
  height: auto;
  width: 100%;
}
.thumbnail__badge .icon {
  width: 1rem;
  height: 1rem;
}
.thumbnail__badge .icon-3d-model {
  width: 1.2rem;
  height: 1.2rem;
}
.thumbnail__badge {
  color: rgb(var(--color-foreground), 0.6);
  height: 2rem;
  width: 2rem;
  left: auto;
  right: calc(0.4rem + var(--media-border-width));
  top: calc(0.4rem + var(--media-border-width));
}
@media screen and (min-width: 750px) {
  .product:not(.product--small) .thumbnail__badge {
    height: 3rem;
    width: 3rem;
  }

  .product:not(.product--small) .thumbnail__badge .icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .product:not(.product--small) .thumbnail__badge .icon-3d-model {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.thumbnail-list__item {
  position: relative;
}
.thumbnail-list__item::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product:not(.featured-product) .product__view-details {
  display: none;
}
.product__view-details {
  display: block;
  text-decoration: none;
}
.product__view-details:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.product__view-details .icon {
  width: 1.2rem;
  margin-left: 1.2rem;
  flex-shrink: 0;
}
/* Marquee */
.marquee {
  background-color: rgba(var(--primary-color-yellow), 1);
  border-radius: var(--media-radius);
  color: rgba(var(--primary-color-black), 1);
  /* display: none; */
  margin-bottom: 0.3rem;
}
.marquee .marquee__track {
  align-items: center;
  display: flex;
  height: 5.5rem;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}
.marquee .marquee__content {
  align-items: center;
  animation: scrolling 30s linear infinite;
  display: flex;
  flex: 0 0 100%;
  justify-content: space-around;
}
.marquee .marquee__content.rpt {
  animation-delay: 0.01s;
}
.marquee .marquee__text {
  font-family: var(--font-heading-family);
  font-size: 2.2rem;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
  transition: all 0.2s ease-out;
  position: relative;
}
.marquee span {
  font-size: 1.6rem;
}
.marquee-mobile {
  display: block;
}
@media screen and (min-width: 750px) {
  .marquee {
    display: block;
  }
  .marquee-mobile {
    display: none;
  }
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Product detail */
.product__detail {
  background-color: rgba(var(--primary-color-yellow), 1);
  border-radius: var(--media-radius);
  color: rgba(var(--primary-color-black), 1);
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3rem;
  padding: 3rem;
  padding-top: 5rem;
}
.product__detail .product__detail-title {
  font-family: var(--font-heading-family);
  font-size: max(2.8rem, min(calc(4vw + 1rem), 3.6rem));
  margin: 0;
}
.product__detail .product__detail-description {
  font-size: max(1.6rem, min(calc(1vw + 1rem), 1.8rem));
  line-height: max(2rem, min(calc(1vw + 1rem), 2.2rem));
}
.product__detail .product__detail-description p {
  margin-top: 1.5rem;
}
.product__detail-anchor {
  color: rgba(var(--primary-color-black), 1);
  font-family: var(--font-body-bold-family);
  font-size: 1.8rem;
  text-decoration: underline;
  text-transform: lowercase;
}
.product__detail-anchor:hover {
  cursor: pointer;
}
.quote-mobile {
  display: block;
}
.quote-desktop {
  display: none;
}
.quote-image {
  margin-top: 0 !important;
  margin-bottom: -3rem !important;
}
.quote-image img {
  width: 100%;
  display: block;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 990px) {
  .quote-mobile {
    display: none;
  }
  .quote-desktop {
    display: block;
  }
  .product__detail {
    flex-direction: row;
  }

  .product__detail .product__detail-title {
    flex: 1 0 40%;
    margin: 0;
  }
  .product__detail-description p {
    margin-bottom: 2rem !important;
  }
  .product__detail-description p {
    margin-top: 0px;
  }
  .product__detail-description .quote-image {
    margin-top: 0 !important;
    margin-bottom: -3rem !important;
  }
}

.product__detail-description img {
  border-radius: 0 !important;
}

/* Product social carousel */
.product__social-posts {
  background-color: transparent;
}
.product__social-posts .social-connect {
  -webkit-transition: max-width 0.5s;
  align-items: center;
  border-radius: 12rem;
  bottom: 3rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  display: inline-flex;
  height: 4.6rem;
  left: 3rem;
  max-width: 4.6rem;
  overflow: hidden;
  position: absolute;
  top: auto;
  top: initial;
  transition: max-width 0.5s;
  width: auto;
}
.product__social-posts .social-connect:hover {
  max-width: 50rem;
}
.product__social-posts .social-connect__icon {
  align-items: center;
  display: flex;
  margin: 0rem 0 0 1.1rem;
}
.product__social-posts .social-connect__icon .icon {
  display: block;
  height: auto;
  width: 2.5rem;
}
.product__social-posts .social-connect__handle {
  color: rgba(var(--primary-color-black), 1);
  font-family: var(--font-body-bold-family);
  padding-right: 15px;
  text-decoration: none;
  white-space: nowrap;
}
.product__social-posts .social-connect__handle a {
  color: rgba(var(--primary-color-black), 1);
}
/* Product accordians */
.product-accordian {
  border-radius: var(--media-radius);
  display: block;
  margin-bottom: 0.3rem;
  padding: 2.2rem 2.5rem;
}
.product-accordian .product-accordian__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.product-accordian .product-accordian__header .icon {
  display: block;
  position: absolute;
  max-width: 3rem;
  right: 0;
}
.product-accordian .product-accordian__header .icon-minus {
  visibility: hidden;
  opacity: 0;
}
.product-accordian .product-accordian__header:hover {
  cursor: pointer;
}
.product-accordian .product-accordian__title {
  font-family: var(--font-heading-family);
  font-size: max(2.8rem, min(calc(4vw + 1rem), 3.6rem));
  margin: 0;
}
.product-accordian .product-accordian__body {
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  font-size: max(1.6rem, min(calc(4vw + 1rem), 1.8rem));
  line-height: max(2rem, min(calc(4vw + 1rem), 2.2rem));
}
.product-accordian.active .product-accordian__header .icon-plus {
  visibility: hidden;
  opacity: 0;
}
.product-accordian.active .product-accordian__header .icon-minus {
  visibility: visible;
  opacity: 1;
}
.product-accordian.active .product-accordian__body {
  height: auto;
  max-height: 100%;
  opacity: 1;
  padding-top: 1.5rem;
}
.product-accordian.active .product-accordian__body p {
  margin: 0;
  font-size: max(1.6rem, min(calc(4vw + 1rem), 1.8rem));
  line-height: max(2rem, min(calc(4vw + 1rem), 2.2rem));
  padding-bottom: 2px;
}
.product-accordian.active .product-accordian__body ul {
  margin-top: 0;
  margin-bottom: 0;
}
/* Product ingredient spotlight */
.product__ingredient-spotlight {
  align-items: center;
  border-radius: var(--media-radius);
  display: flex;
  margin-bottom: 0.3rem;
  position: relative;
}
.product__ingredient-spotlight .product__ingredient-background-image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.product__ingredient-spotlight .product__ingredient-background-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.product__ingredient-spotlight .product__ingredient-body {
  position: relative;
  padding: 3rem;
}
.product__ingredient-spotlight
  .product__ingredient-body
  .product__ingredient-body-headline:first-child {
  margin-top: 2rem;
}
.product__ingredient-spotlight
  .product__ingredient-body
  .product__ingredient-body-headline {
  font-size: 2.8rem;
  line-height: 3rem;
  margin: 0 0 1rem 0;
  font-weight: 800;
}
.product__ingredient-spotlight .product__ingredient-body p {
  margin-top: 0;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1025px) {
  .product__ingredient-spotlight .product__ingredient-background-image {
    position: relative;
    flex: 0 1 50%;
    scale: 1.2;
  }

  .product__ingredient-spotlight .product__ingredient-body {
    flex: 0 1 50%;
  }
}
/* Product shipping */
.product__shipping {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product__shipping .product__shipping-line {
  align-items: baseline;
  box-shadow: 0 0.1rem 0 0 rgba(var(--primary-color-black), 1);
  display: grid;
  grid-gap: 2rem;
  gap: 2rem;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: auto;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  padding-bottom: 2rem;
}
.product__shipping .product__shipping-line span:nth-child(2) {
  text-align: right;
}
.product__shipping .product__shipping-line p {
  font-family: var(--font-body-bold-family);
  margin: 0;
  grid-column: 1 / 3;
}
.product__shipping .product__shipping-line:last-child {
  box-shadow: none;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .product__shipping .product__shipping-line {
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    grid-template-columns: initial;
    grid-template-rows: initial;
  }

  .product__shipping .product__shipping-line span:nth-child(2) {
    text-align: center;
  }

  .product__shipping .product__shipping-line p {
    text-align: right;
    grid-column: unset;
  }
}
/* Product how it works */
.product__how-it-works {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product__how-it-works .step {
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  display: flex;
  justify-content: space-between;
}
.product__how-it-works .step__image img {
  width: auto;
  height: auto;
  max-width: 8.5rem;
  max-height: 15rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__how-it-works .step__label {
  font-family: var(--font-heading-family);
  font-size: max(1.6rem, min(calc(1vw + 1rem), 1.8rem));
  margin: 0 0 1rem 0;
  color: #000000;
  margin-bottom: 0;
}
.product__how-it-works .step__info p {
  font-size: max(1.6rem, min(calc(1vw + 1rem), 1.8rem));
  line-height: max(1.8rem, min(calc(1vw + 1rem), 2rem));
  margin-top: 0;
}
@media screen and (min-width: 990px) {
  .product__how-it-works {
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    align-items: baseline;
  }

  .product__how-it-works .step {
    flex-direction: column;
    align-items: baseline;
  }

  .product__how-it-works .step__image {
    justify-self: center;
  }
  .product__how-it-works .step__image img {
    max-width: 10rem;
    max-height: 12rem;
  }
}
/* Product star results */
.product__star_results {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product__star_results .step {
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  display: flex;
  justify-content: space-between;
}
.product__star_results .step__image img {
  width: auto;
  height: auto;
  max-width: 8.5rem;
  max-height: 15rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__star_results .step__label {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "ABC Diatype Rounded Heavy";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%; /* 55px */
  text-transform: lowercase;
  margin: 0;
}
.product__star_results .step__info p {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "ABC Diatype Rounded Heavy";
  font-size: 17px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 110% !important;
  text-transform: lowercase;
}
.product-accordian__notice {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "GT Pressura Mono Text";
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: 110%; /* 13.2px */
  text-transform: lowercase;
  padding-top: 3rem;
}
@media screen and (min-width: 990px) {
  .product__star_results {
    grid-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    align-items: baseline;
  }

  .product__star_results .step {
    flex-direction: column;
    align-items: baseline;
  }

  .product__star_results .step__image {
    justify-self: center;
  }
  .product__star_results .step__image img {
    max-width: 10rem;
    max-height: 12rem;
  }
  .product__star_results .step__label {
    font-size: 50px;
  }
}
/* Product Do's and Don'ts */
.product__dos-and-donts .icon-shield-check,
.product__dos-and-donts .icon-shield-warning {
  display: block;
  height: auto;
  stroke: rgba(var(--primary-color-white), 1);
  width: 2.5rem;
}
.product__dos-and-donts .icon-shield-check {
  fill: rgba(var(--secondary-color-green), 1);
}
.product__dos-and-donts .icon-shield-warning {
  fill: rgba(var(--secondary-color-red), 1);
}
.product__dos-and-donts .dos,
.product__dos-and-donts .donts {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
.product__dos-and-donts .do,
.product__dos-and-donts .dont {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  flex-basis: fit-content;
}
.product__dos-and-donts .do svg,
.product__dos-and-donts .dont svg {
  flex: 0 0 auto;
}
.product__dos-and-donts .do p,
.product__dos-and-donts .dont p {
  margin-top: 0;
}
@media screen and (min-width: 1025px) {
  .product__dos-and-donts .dos,
  .product__dos-and-donts .donts {
    flex-direction: row;
  }
}
.product__dos-and-donts .extra-information h4,
.product__dos-and-donts .extra-information h5,
.product__dos-and-donts .extra-information h6 {
  color: rgba(var(--primary-color-black), 1);
  font-family: var(--font-body-bold-family);
  margin: 0 0 0.5rem 0;
}
.product__dos-and-donts .extra-information p {
  margin-top: 0;
}
.product__dos-and-donts .extra-information h4,
.product__dos-and-donts .extra-information h5,
.product__dos-and-donts .extra-information h6,
.product__dos-and-donts .extra-information p {
  font-size: max(1.6rem, min(calc(4vw + 1rem), 1.8rem));
}
.product__dos-and-donts .read-more {
  color: rgba(var(--primary-color-black), 1);
  font-size: 1.4rem;
  text-decoration: underline;
  text-transform: lowercase;
  margin-top: 2rem;
}
.product__dos-and-donts .extra-information {
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
}
.product__dos-and-donts .extra-information.expanded {
  height: auto;
  max-height: 100%;
  opacity: 1;
}
[data-smartrr-form-id] .smartrr-purchase-options {
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
  padding: 1rem 0 !important;
  border: 1px solid #000000 !important;
}
[data-smartrr-form-id] .smartrr-purchase-options {
  border-radius: 25px;
}
[data-smartrr-form-id] .smartrr-purchase-options .smartrr-otp {
  padding: 1rem 2rem;
}
[data-smartrr-form-id] .smartrr-purchase-options .smartrr-selling-plan-group-name {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: lowercase;
  margin-left: 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
[data-smartrr-form-id]
  .smartrr-purchase-options
  .smartrr-selling-plan-group-name
  .smartrr-selling-plan-price {
  font-weight: 500;
}
[data-smartrr-form-id]
  .smartrr-purchase-options
  .smartrr-selling-plan-group-name
  .discount {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}
[data-smartrr-form-id]
  .smartrr-purchase-options
  [data-smartrr-form-id]
  .smartrr-selling-plan-group-label {
  -moz-column-gap: 1.2rem !important;
  column-gap: 1.2rem !important;
}
[data-smartrr-form-id]
  .smartrr-purchase-options
  [data-smartrr-selling-plan-group-input]
  + .smartrr-selling-plan-group-input-display {
  height: 28px;
}
[data-smartrr-form-id]
  .smartrr-purchase-options
  [data-smartrr-selling-plan-group-input]
  + .smartrr-selling-plan-group-input-display:before {
  width: 28px;
  height: 28px;
  top: 1px;
  left: 0px;
}
[data-smartrr-form-id]
  .smartrr-purchase-options
  [data-smartrr-selling-plan-group-input]
  + .smartrr-selling-plan-group-input-display:after {
  width: 18px;
  height: 18px;
  top: 6px;
  left: 5px;
}
[data-smartrr-form-id] .smartrr-purchase-options .select-wrapper {
  border: 1px solid black;
  border-radius: 25px;
  margin-top: 2rem;
}
[data-smartrr-form-id] .smartrr-purchase-options .select-wrapper .smartrr-select {
  margin: 0;
  border: none;
  width: calc(100% - 2rem);
  font-weight: 700;
  font-family: var(--font-body-family);
  font-size: 16px;
  padding-left: 2rem;
  color: #000;
  overflow: hidden;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
}
.selling-plan-description {
  margin-left: 4.1rem;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
.selling-plan-description .smartrr-selling-plan-price {
  font-size: 1.6rem;
  line-height: 2rem;
}
#sticky-add-to-cart {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-column-gap: 0.7rem;
  -moz-column-gap: 0.7rem;
  column-gap: 0.7rem;
  background-color: rgba(var(--primary-color-yellow), 1);
  padding: 1rem 2rem 0px 2rem;
  margin: 0;
  transition: top 0.15s ease-out, transform 0.15s ease-out, opacity 0.15s ease-in;
  transform: translateY(-100%);
}
#sticky-add-to-cart .sticky-product__title {
  grid-column: 1 / span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.1rem;
}
#sticky-add-to-cart .sticky-product__title h1 {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
}
#sticky-add-to-cart .product-form__quantity {
  box-shadow: none;
  margin-bottom: 0rem;
}
#sticky-add-to-cart .product-form {
  margin: 0px;
}
#sticky-add-to-cart.scrolling {
  padding-top: 0px;
  top: 63px;
}
#sticky-add-to-cart.sticky-show {
  opacity: 100;
  transform: translateY(0%);
}
.product__info-container .quantity {
  min-height: 5.2rem;
}
.product__info-container .product-form__buttons {
  margin-bottom: 3rem;
}
.product__info-container .product-form__buttons.variantB-buy-now-btn-desktop,
.product__info-container .product-form__buttons.variantB-buy-now-btn-mobile {
  margin-bottom: 0;
}
.product-form__submit {
  padding: 1.2rem 2rem;
}
.product-form__submit span {
  font-size: 2.4rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 750px) {
  .product-accordian .product-accordian__header .icon {
    max-width: 1.8rem;
  }
  .quantity {
    min-height: calc((var(--inputs-border-width) * 2) + 4.5rem);
  }
  #sticky-add-to-cart .product-form__submit span {
    font-size: 1.6rem;
    line-height: 1.7rem;
  }
  #sticky-add-to-cart .quantity {
    margin-bottom: 0rem;
    min-height: calc((var(--inputs-border-width) * 2) + 3.2rem);
  }
  #sticky-add-to-cart .quantity .quantity__input {
    font-size: 1.6rem;
  }
  #sticky-add-to-cart .button {
    padding: 0.65rem 2rem;
  }
  #sticky-add-to-cart .button::after {
    left: 0.5rem;
    top: 0.5rem;
  }

  #sticky-add-to-cart .product-form__buttons {
    margin-bottom: 2rem;
  }
}
.product__recommendations-wrapper {
  padding-bottom: 0;
}
.product__recommendations-wrapper .card__content {
  margin-top: 1rem;
}
.product__recommendations-wrapper .card__heading {
  font-size: 1.8rem !important;
  line-height: 2rem !important;
}
.product__recommendations-wrapper .card--standard > .card__content .card__information {
  padding-left: 0;
}
.product__recommendations-wrapper .card__content {
  position: relative;
}
.product__recommendations-wrapper .card__content .card__badge {
  position: absolute;
  top: 4px;
}
#MediaGallery-quote .no-margin,
#MediaGallery-social-posts .no-margin {
  margin-left: 0;
}

.side-description-table p {
  font-family: var(--font-body-family);
  font-size: 1.4rem !important;
  line-height: 1.3;
}

.side-description-table strong {
  font-family: "ABC Diatype Rounded Heavy", sans-serif;
  font-size: 1.55rem !important;
  line-height: 1.3;
}

.side-description-table > div {
  padding: 2.2rem 1.6rem !important;
}

.side-description-wrapper h3 {
  margin-top: 5rem;
  margin-bottom: 1rem;
}

.side-description-wrapper {
  margin-bottom: 5rem;
}

.side-description-wrapper + .product__price {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .side-description-table p {
    font-size: 1.24rem !important;
  }

  .side-description-table strong {
    font-size: 1.42rem !important;
  }

  .side-description-table > div {
    padding: 2rem 1.4rem 2rem 1rem !important;
  }
}

.side-description-table {
  border: 1px solid black;
  border-collapse: collapse;
  border-bottom: none;
.product-accordian.faq h3 {
  margin-bottom: 0;
}

.product-accordian .product-accordian__body p {
  padding-bottom: 1rem;
}

.bottom_notice {
  color: #000;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "ABC Diatype Rounded Black";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: lowercase;
  padding-top: 5px;
}
