/** Shopify CDN: Minification failed

Line 983:0 Unexpected "<"
Line 1016:0 Unexpected "<"

**/
@media screen and (max-width: 1023px) {


/* Typography */ 

:root { 
  --fontBase: 14px;
}


.h2, h3, .h3 { 
  font-size: 30px;
  line-height: 32px;
}


.h4, h4 { 
  font-size: 23px;
  line-height: 24px;
}

.h5, .h6, h6 { 
  font-size: 18px;
  line-height: 20px;
}


/* grid */


.grid, main section, footer, .shopify-policy__container { 
  grid-template-columns: repeat(6, 1fr);
  column-gap: 12px;
  padding-inline: 12px;
}

/* Announcemnet bar */
  .announcement-bar__close-btn {
    right: 8px;
  }
  .announcement-bar__text { 
    font-size: 10px;
    line-height: 12px;
  }

/* Navigation */

header .mobile-header-logo svg { 
  fill: var(--headerColor);
}

header .mobile-hamburger .bar { 
  background-color: var(--headerColor);
}

header { 
  padding-top: 14px;
  width: 100%;
}

header.filled .mobile-header-logo svg { 
  fill: var(--headerColor);
}

header.filled .mobile-hamburger .bar { 
  background-color: var(--headerColor);
}

header.filled .mobile-cart-btn { 
  color: var(--headerColor);
}

header.open { 
  height: 56px;
  background-color: white;
}

header.open .mobile-cart-btn,
header.open .mobile-header { 
  color: white;
}

  .desktop-header { 
    display: none;
  }

  .mobile-header { 
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
    
  .mobile-navigation { 
    display: flex;
    padding-inline: 12px;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
  }

  .mobile-header-logo svg { 
    width: 104px;
    transition: fill 300ms var(--trans) 100ms;
  }

  header.open .mobile-header-logo svg { 
    fill: white;
    transition: fill 300ms var(--trans) 200ms
  }

  .mobile-header-logo { 
    height: 28px;
  }

  .mobile-header-logo a { 
    height: 100%;
    width: 100%;
    display: block
  }

  .mobile-hamburger { 
    margin-right: 12px;
    margin-bottom: 4px;
    height: 26px;
    width: 22px;
    position: relative;
  }
  .mobile-logo-container { 
    display: flex;
    align-items: center;
  }
  header.open .mobile-cart-btn { 
    transition: color 300ms var(--trans) 400ms;
  }
  .mobile-cart-btn { 
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 300ms var(--trans) 50ms;
  }
  
  header.open .mobile-navigation-body { 
    transform: translateX(0);
    transition: all 450ms ease-in-out;
  }
  
  .mobile-navigation-body { 
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(-100%);
    background-color: var(--brandColor);
    transition: transform 250ms ease-in-out;
  }

  .mobile-hamburger .bar { 
    width: 100%;
    height: 2px;
    position: absolute;
    transition: rotate 200ms var(--trans) , top 200ms var(--trans) 300ms, background-color 300ms var(--trans);
  }

  .mobile-hamburger .bar:nth-child(1) { 
 top: 8px;
  }

  .mobile-hamburger .bar:nth-child(2) { 
 top: 14px;
  }

  header.open .mobile-hamburger .bar { 
    background-color: white;
    transition: rotate 200ms var(--trans) 400ms, top 200ms var(--trans) 100ms, background-color 200ms var(--trans);
  }

  header.open .mobile-hamburger .bar:nth-child(1) { 
    rotate: 45deg;
    top: 11px;
  }

  header.open .mobile-hamburger .bar:nth-child(2) { 
    rotate: -45deg;
    top: 11px;
  }

  .mobile-navigation-inner { 
    margin-top: 120px;
    padding-inline: 12px;
    display: flex;
    flex-direction: column;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
  }

  .mobile-navigation-inner.active { 
    transform: translateX(0);
  }



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

  .mobile-navigation__link-container a { 
    width: 100%;
  }

.mobile-navigation__link-container:not(:last-of-type),
.mobile-navigation__link:not(:last-of-type) { 
  margin-bottom: 4px;
}

.mobile-navigation__child-links-container { 

  display: flex;
  flex-direction: column;
  position: absolute;
  top: 120px;
  width: 100%;
  padding-left: 12px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 300ms ease-in-out, opacity 0ms ease 300ms, visibility ease 0ms 300ms;
}

.mobile-navigation__child-links-container.active { 
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 300ms ease-in-out, opacity 0ms ease 0ms, visibility ease 0ms 0ms;
}
 
.mobile-navigation__child-links-container a:not(:last-of-type) { 
  margin-bottom: 4px;
}

.mobile-navigation__child-links-container:last-of-type { 
  margin-bottom: 8px;
}

.mobile-navigation__back-btn { 
  margin-bottom: 40px;
}

.mobile-navigation__back-btn svg { 
  rotate: 180deg;
}



/* Cart */

.cart-modal__inner { 
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  height: 100dvh;
}

.cart-modal__empty-cart { 
  grid-column: 1 / -1;
}

.cart-modal__product-container { 
  display: none;
}



/* product cards */


.pcard .card__image { 
  height: auto;
}

.pcard .card__image .aspectholder { 
  aspect-ratio: 0.85;
}

.product-card-container.desktop { 
  display: none
}

.product-card-container.mobile { 
  display: block;
}
.product-card-container  .product__image-secondary video { 
  display: none;
}
.product-card-swiper { 
  display: block;
  grid-column: 1 / -1;
  overflow: hidden;
}

.product-card-swiper .product-card-container { 
  width: 85%;
}

.collection__variant-extendo-card:first-of-type + .product-card-container.mobile  { 
  border-top: 1px solid var(--brandColor);
}
.product-card-container.mobile  { 
  border-bottom: 1px solid var(--brandColor);
  padding-bottom: 20px;
}

.card__image-atc { 
  visibility: visible  !important;
  opacity: 1 !important;
}

.product-card__mobile-title { 
  width: 50%;
}


.product-card__atc-form.active { 
  height: 360px;
}

.product-card__atc-form.active.small { 
  height: 145px;
}

.product-card__mobile-close { 
  display: flex;
  margin-bottom: 12px;
  justify-content: space-between;
}

.product-card__mobile-close  p { 
  color: white;
}

.product-card__close-btn > * { 
  width: 14px;
  height: 22px;
}

/* Collection Page */

.collection {
  margin-top: 80px;
}

.collection__description { 
grid-column: 1 / -1;
margin-top: 200px;
}

.collection__description > * {
  font-size: 16px;
  line-height: 18px;
}

.collection__variant-extendo-card  { 
  display: none;
}

.collection__hero-image.has-mobile-image { 
  display: none
}

.collection__mobile-hero-image { 
  display: block;
  grid-column: 1 / -1;
}

.collection__mobile-hero-image .aspectholder { 
  width: 100%;
}

.collection__mobile-hero-image .aspectholder > * { 
  width: 100%;
}

.collection__container { 
  margin-bottom: 40px;
}

.featured-collection__head { 
  margin-bottom: 40px;
}

.featured-collection__grid { 
  grid-template-columns: 1fr;
}

.collection__grid { 
  grid-template-columns: 1fr;
}


/* remove margin bottom on collection page sections */
body[data-template="collection"] .info-tab__container { 
  margin-bottom: 0px !important;
}

body[data-template="collection"] .two-column-image__container { 
  margin: 0px;
}

body[data-template="product"] .info-tab__container,
body[data-template="page.ingredients"] .two-column-image__container {
  margin-bottom: 0px ;
}
.info-tab__container { 
  margin-bottom: 40px;
}

/* Product Page */

.product { 
  margin-top: 116px;
}

.product__info.desktop { 
  display: none;
}

.product__info.mobile { 
  display: flex;
  margin-bottom: 8px;
}

.product__meta { 
  grid-column: 1 / -1;
  margin-top: 8px;
}

.image__container  { 
  grid-column: 1 / -1;
  grid-row: 1 / span 1;
}

.product__mobile-atc-button { 
  display: block;
  grid-row: 2 / span 1;
  margin-inline: 12px;
  margin-top: 8px;
  width: calc(100% - 24px);
  position: fixed;
  bottom: 8px;
  z-index: 10;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding-block: 10px;
  transition: opacity 300ms var(--trans), visibility 300ms var(--trans);
}

.product__mobile-atc-button.active { 
  opacity: 1;
  visibility: visible;
}

.product__mobile-atc-button:hover { 
  background-color: var(--brandColor) !important;
  color: white !important ;
  border-color: var(--brandColor) !important;

}

.product--gift-card .product__variant-info { 
  margin-top: 20px;
  margin-bottom: 60px;
}

.product__gift-card-amount { 
  position: absolute;
  font-size: 2vw;
}

.product__gift-card-amount { 
  font-size: 4vw;
  
}


.variant__image-container, .product__image-container { 
  aspect-ratio: 0.8;
}

.product__image-container .aspectholder, .variant__image-container { 
  width: 100%;
  height: 100%;
}

.product__variant-info { 
  margin-top: 60px;
  margin-bottom: 0px;
}

.jdgm-form { 
  padding: 0px !important;
}

.product__form:not(.product__form--gift-card) { 
  border-radius: 8px;
  background-color: var(--brandColor);
  color: white;
  padding: 0px;
  height: 0px;
  position: fixed;
  z-index: 20;
  left: 8px;
  bottom: 12px;
  width: calc(100% - 16px);
  transition: height 200ms var(--trans);
  overflow: hidden;
}


.product__form.active { 
  height: 490px;
  padding: 12px;
  padding-bottom: 0px
}
.product__form.single.active { 
  height: 200px;
  padding: 12px;
}
.product__form.single.active { 
  height: 200px;
  padding: 12px;
}

.product__form.active .product-mobile__variant-name { 
  margin-bottom: 16px;
  display: block;
}
.purchase-options__container.desktop { 
  display: none;
}
.purchase-options__container.mobile { 
  display: flex;
  width: 100%;
}
.purchase-options__container { 
  width: 100%;
}

.purchase-options__container.frequency::after { 
  content: url('./icon-arrow-down-white.svg')
}

.subscribe__select-container { 
  flex-direction: column; 
}


.product-purchase-option.mobile {
  display: block !important;
}

.card__image-atc#mobileProductAtcForm { 
  display: flex;
}

.product__variant-select::after { 
  content: url('./icon-arrow-down-white.svg')
}

.purchase-options__container.frequency:hover::after { 
  content: url('./icon-arrow-down-white.svg')
}

.product-card__atc-form { 
  z-index: 20;
  height: auto;
  color: white;
}

.variant-selector__input:checked + .variant-selector__btn, .variant-selector__input:hover + .variant-selector__btn { 
  border-color: white !important; 
}

.product__variant-radio-container { 
  width: 100%;
  margin-left: 0px;
  margin-top: 8px;
}
.product__variant { 
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.variant-selector__btn:not(:last-child) { 
  margin-right: 4px;
}

.variant-selector__title { 
  margin-left: 4px;
}

.product__variant:not(:first-of-type) { 
  margin-top: 12px;
}

.product__variant-select-container { 
  width: 100%;
  position: relative;
}

.product__variant > .semi { 
  margin-bottom: 4px;
}

.product__variant .product-card__option-select-container { 
  width: 100%;
}

.product__mobile-atc-title { 
  margin-bottom: 4px;
}

.product__variant-select select, .product__frequency-select,
.product__frequency-select select:hover { 
  border-color: white !important;
  color: white !important;
}

.product-card__atc-form .product-card__selects-container { 
  margin-bottom: 40px;
}

.product-card__price-container  { 
  align-items: flex-start;
}

.product__variant-radio-mobile {
  display: flex;
}

.product__variant-select { 
  position: relative;
}


  .product__variant-radio-mobile input { 
    display: none;
  }

  .product__atc-price-container { 
    align-items: flex-end;
  }

  .product__atc-price-container .product__quantity { 
    border-color: white;
  }

  .product__quantity svg path { 
    stroke: white;
  }

  .product__buttons { 
    justify-content: flex-end;
flex: unset;
  }

  .product__form--gift-card .product__buttons .button-pill.filled { 
    background-color: var(--brandColor);
    color: #fff;

  }

  .product__form--gift-card .product__atc-price-container .product__quantity { 
    border-color: var(--brandColor);
  }

  .product__form--gift-card .product__atc-price-container .product__quantity svg path { 
    stroke: var(--brandColor);
  }

  .product__buttons .button-pill.filled { 
    background-color: var(--brandYellow);
    color: var(--brandColor);
    font-weight: 600;
    margin-bottom: 2px;
    padding-top: 6px;
    padding-bottom: 6px;
    height: 40px;
  }


  .product__atc { 
    height: 100%;
    justify-content: flex-end;
    row-gap: 10px;
  }

  .product__price-container { 
    flex-direction: column;
    align-items: start;
  }

  .product__subscription-price { 
    margin-left: 0px;
  }

  .product__price-container[data-sub-active="true"] .product__regular-price  { 
    font-size: 12px;
    line-height: 14px;
  }

  .prouct-mobile-atc__close-btn { 
    width: 20px;
    position: absolute;
    right: 4px;
    top: 0px;
}


  .product-mobile__variant-name { 
    position: relative;
  }

  .product-mobile__variant-name p { 
    width: 80%;
  }


/* ingredients slider */

.product-ingredients__slide .semi { 
  margin-bottom: 4px;
}


/* Stockist Swiper */

.stockist-swiper__container { 
  margin-top: 0px;
}
/* image grid */


/* pages */


.page__hero-title { 
  grid-column: 1  / -1 !important;
  padding-left: 12px;
}
.page__hero-info-container { 
  grid-column: 1/ -1;
  padding-left: 12px;
  margin-top: 40px;
}

.page__hero-link-item { 
  font-size: 30px;
  line-height: 32px;
}
.page__hero-link-list { 
  margin-top: 120px;
}

.page__hero-info-container { 
  margin-bottom: 40px;
}

.page__content { 
  grid-column : 1 / -1;
}


/* subscriptions */
.subscription-builder__step { 
  grid-template-rows: auto 1fr;
}
.subscription-builder__steps-container { 
  grid-template-columns: repeat(6, 1fr);
}

.subscription-builder__inner { 
  width: calc(100vw - 32px);
  height: 100dvh;
}
.subscription-builder__step-info { 
  grid-column: 1 / -1;
}

.subscription-builder__step-content { 
  grid-column: 1 / -1;
  margin-top: 10px;
}

.subscription-builder__copy-container { 
  width: 100%;
}

.subscription-builder__product-container { 
  grid-template-columns: repeat(6, 1fr);
}

.subscription-builder__footer { 
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.subscription-builder__option-inner { 
  width: 60%;
  max-width: 300px;
}

.subscription-builder__option-inputs .subscription-save { 
  display: none;
}


/* Footer */

footer {
  grid-template-columns: repeat(6, 1fr);
  column-gap: 12px;
  height: auto;
  padding-bottom: 12px;
}

footer > * { 
  font-size: 14px !important;
  line-height: 16px !important;

}

.footer__contact-container { 
  grid-column: 1 / -1;
  grid-row: 1 / span 1;
  grid-template-columns: repeat(6, 1fr);
  display: grid;
  column-gap: 12px;
}

.footer__contact-item { 
  grid-column: auto / span 3;
}

.footer__menu { 
  grid-column: 1 / span 3;
}

.footer__social-container { 
  grid-column: 4 / span 3;
}

.footer__menu, .footer__social-container { 
  grid-row: 2 / span 1;
}

.footer__acknowledgement{ 
  grid-row: 6 / span 1;
  grid-column: 1 / -1;
  margin-top: 60px;
}

.footer__signup { 
  grid-column: 1/ span 5;
  margin-top: 220px;
}

.footer__form-input-container { 
  flex-direction: column;
}

.footer__form-input-container .button-pill { 
  margin-top: 4px;
}
.footer-logo__container{ 
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.footer__b-corp-logo { 
  grid-column: 6 / span 1;
  grid-row: 4 / span 1;
  position: absolute;
  bottom: -20px;
}


.footer__disclaimer { 
  grid-column: 1 / -1;
  grid-row: 5 / span 1;
}

.footer__signup { 
  grid-row: 3 / span 1;
}
.blog__hero { 
  margin-bottom: 80px;
}



/* Articles */
.blog__filters { 
  grid-column: 1 / -1;
}

.blog__articles { 
  grid-template-columns: repeat(6, 1fr);
  column-gap: 12px;
  padding-inline: 12px;
}

.blog__articles .blog-article__card.featured { 
  grid-column: 1 / -1;
}

.blog-article__card { 
  grid-column: auto / span 3;
}


/* Newsletter Signup */

.newsletter-popup { 
  width: calc(100% - 32px);
  max-width: 384px;
  bottom: 16px;
}


/* Policies */


.shopify-policy__container { 
  grid-template-columns: 1fr;
  margin: 80px 0px;
}


.shopify-policy__title { 
  margin-bottom: 40px;
}
.shopify-policy__title h1 { 
  font-size: 30px;
  line-height: 32px;
 }






 .article__meta { 
  grid-column: 1 / -1;
  margin-bottom: 32px;
 }

.article__image { 
  grid-column: 1 / -1;
}


.article__side-wrapper { 
  display: none;
}

.article__meta-description { 
  grid-column: 1 / -1;
}

.article__meta-description { 
  padding-inline: 16px;
}

<<<<<<< HEAD

=======
>>>>>>> 2ddee0718687d72bb25f4895fe753e683e1c706a
.customer__left-side,
.customer__right-side { 
  grid-column: 1 / -1;
}

.customer__left-side { 
  margin-bottom: 60px;
  position: relative;
  top: unset;
}

.customer__address-type-heading,
.customer__address-item-details{ 
  grid-column: 1 / -1;
}

.customer__address-item-details { 
  margin-top: 20px;
}

.customer__address-add { 
  margin-top: 20px ;

}

.customer__address-item:not(:first-of-type) { 
  margin-top: 60px
}

<<<<<<< HEAD

=======
>>>>>>> 2ddee0718687d72bb25f4895fe753e683e1c706a
}

