/** Shopify CDN: Minification failed

Line 16:0 Comments in CSS use "/* ... */" instead of "//"
Line 40:3 Cannot use type selector "__message" directly after nesting selector "&"
Line 42:4 Comments in CSS use "/* ... */" instead of "//"
Line 59:0 Comments in CSS use "/* ... */" instead of "//"
Line 87:0 Comments in CSS use "/* ... */" instead of "//"
Line 112:0 Comments in CSS use "/* ... */" instead of "//"
Line 123:0 Comments in CSS use "/* ... */" instead of "//"
Line 132:0 Comments in CSS use "/* ... */" instead of "//"
Line 157:0 Comments in CSS use "/* ... */" instead of "//"
Line 165:0 Comments in CSS use "/* ... */" instead of "//"
... and 14 more hidden warnings

**/
//mixins
@mixin fill-parent {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
}

::selection { 
  background: $yellow; 
  color: $dark; 
}

.btn-outline-white {
  @include button-outline-variant($white);
}

.banner--promo {
  visibility: hidden;
  p:last-child {
    margin-bottom: 0;
  }
  &__message {
    opacity: 0;
    //transform: translateX(100%);
  }
}

#pageWrap, body {
  overflow-x: hidden;
}

#pageWrap.home {
  overflow-x: hidden;
}

h1 {
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 500;
}
// Adjust tracking for italic headings
h1.fst-italic {
  letter-spacing: -.02em;
}

h2 {
  font-weight: 700;
}

h2.fst-italic {
  letter-spacing: -.01em;
}

.font-swish {
  font-feature-settings: "swsh" 1;
}
p {
  letter-spacing: 0.5px;
}

.ff-serif {
  font-family: $headings-font-family;
}

.ff-sans-serif {
  font-family: $font-family-sans-serif;
}

//Narrow container
.container-narrow {
  @include make-container();
  max-width: 1200px;
}

.container-narrower {
  @include make-container();
  max-width: 800px;
}

.container-xxxl {
  @include make-container();
  max-width: 1440px;
}

.alert-success {
  color: $green;
  background-color: $white;
  border-color: $green;
}

@mixin meati-shadow($color: $orange, $size: 5px) {
  box-shadow: $size $size 0 0 $color;
}
//Drop shadows
.meati-shadow-orange {
  @include meati-shadow;
}
.meati-shadow-dark {
  @include meati-shadow($dark, 4px);
}
.meati-shadow-green {
  @include meati-shadow($green, 4px);
}

//Stacked elements
.stack-parent {
  display: grid;
}
.stack-child {
  grid-area: 1 / 1;
  position: relative;
  display: grid;
}
//styled lists
@mixin numbered-list-styled($color: $primary) {
  list-style: none;
  counter-reset: meati-counter;
  margin: 0;
  padding: 0;

  li {
    counter-increment: meati-counter;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;

    &:before {
      content: counter(meati-counter) ".";
      font-weight: 800;
      font-size: 2rem;
      margin-right: 1rem;
      font-family: $headings-font-family;
      line-height: 1;
      color: $color;
    }
  }
}

//Locator module

#locatorLogos {
  > div {
    flex: 50% 0 1;
  }
}

//Feature list
.good-energy-thats-it {
  em {
    font-size: 4rem;
    text-shadow: 3px 3px 0 $dark;
    -webkit-text-stroke-color: $tan;
    -webkit-text-stroke-width: 0.9px;
    line-height: 0.9;
  }
  sup {
    text-shadow: none;
    font-style: normal;
    font-size: 2rem;
    -webkit-text-stroke-width: 0;
  }
  span {
    font-size: 1.3rem;
  }
}
.icon-list {
  li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  h3 {
    font-family: $font-family-sans-serif;
  }
}

//News
.news-card {
  flex-direction: row;
  box-shadow: $box-shadow-sm;
  transition: 0.2s ease all;
  &:hover {
    box-shadow: $box-shadow;
    transform: translateY(-3px);
  }
}
.article-img {
  flex-basis: 140px;
  flex-shrink: 0;
  border-radius: $border-radius 0 0 $border-radius;
  background-size: cover;
  background-position: center;
  .gatsby-image-wrapper {
    width: 110px;
  }
}

//Contact 
.klaviyo-form {
  * {
    font-family: $font-family-sans-serif;
  }
  h2, h2 span {
    font-family: $headings-font-family;
  }
  p {
    font-size: 1rem;
    line-height: 1.3;
  }
  label {
    font-weight: 400;
  }
  button {
    font-family: $headings-font-family!important;
    //padding-left: 1.5rem!important;
    //padding-right: 1.5rem!important;
  }
  input, input::placeholder {
    font-family: $font-family-sans-serif!important;
  }
  .ql-snow span {
    font-size: 10pt !important;
    font-family: $font-family-sans-serif;
  }
}
//Klaviyo iframes
.klaviyo-iframe {
  width: 100%;
  overflow: auto;
  min-height: 300px;
}
.contact-iframe {
  height: 550px;
}

.offcanvas-end {
  width: 450px;
}//Numbered lists
ol.fancy-numbers {
  counter-reset: fancy-counter;
  list-style: none;
  //padding-left: 45px;
  li {
    margin: 0 0 0.5rem 0;
    counter-increment: fancy-counter;
    position: relative;
    &:before {
      content: counter(fancy-counter);
      color: $white;
      font-size: 1.5rem;
      font-family: $headings-font-family;
      font-weight: bold;
      width: 32px;
      height: 32px;
      background: $orange;
      border-radius: 50%;
      text-align: center;
      flex-shrink: 0;
      display: block;
    }
  }
}

// Before steps
#beforeSteps {
  li::marker {
    color: $orange;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro"; font-weight: 900; content: "\f069";
  }
}

.gallery-sticky {
  position: sticky;
  top: 100px;
}

.star-rating {
  color: #F24500;
}

.image-full-with-wave {
  position: relative;
  .dark-wave-top {
    @include fill-parent;
    background-image: url('../images/learn/dark-wave.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    width: 102%;
    left: -1%;
    top: -1%;
  }
}

.mb-n15 {
  margin-bottom: -15rem;
}

//hover tiles
#packagingThumbs, #WhereIsCTA {
  a {
    transition: 0.3s all ease;
    &:hover {
      transform: translateY(-5px);
    }
  }
}

.social-share-buttons {
  a {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    background: $dark;
  }
  svg {
    width: 100%;
    path {
      fill: $white;
    }
  }
  .share-icon-Facebook{
    svg {
      width: 76%;
    }
  }
}

// Swag container
.swag-container {
  background-color: $gray-500;
  
  > .container {
    position: relative;
    &:before {
      height: 6px;
      width: 100%;
      content: "";
      background: $dark;
      position: absolute;
      top: -3px;
      left: 0;
      border-radius: 2px;
    }
  }
}

// Cooking Tips
.cooking-tip-label {
  top: 1rem;
  left: 1rem;
}

// Culinary Collective collaborators
.culinary-collective {
  header {
    p {
      margin-bottom: 0;
      font-size: 1.1rem;
    }
  }
  &__recipes h2 {
    font-size: calc(1.65rem + 0.9vw);
  }
}

@include media-breakpoint-up(md) {

  //Locator module
  
  #locatorLogos {
    > div {
      flex-basis: 25%;
    }
  }
  

  .good-energy-thats-it {
    em {
      font-size: 6rem;
      text-shadow: 4px 4px 0 $dark;
      -webkit-text-stroke-width: 1.25px;
    }
    sup {
      font-size: 3rem;
    }
    span {
      font-size: 1.75rem;
    }
  }

  .cooking-tip-label {
    top: 0;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  .culinary-collective {
    &__recipes h2 {
      font-size: 3rem;
    }
  }

}

@include media-breakpoint-up(lg) {
  .culinary-collective {
    header {
      p {
        margin-bottom: 0;
        font-size: 1.3rem;
      }
    }
    &__recipes h2 {
      font-size: 3.6rem;
    }
  }
  
}

@include media-breakpoint-up(xl) {
  .tip-tile {
    padding: 1.5rem!important;
  } 
  .contact-form {
    max-width: 800px;
  }
  .culinary-collective {
    header {
      p {
        margin-bottom: 0;
        font-size: 1.5rem;
      }
    }
    &__video {
      p {
        font-size: 1.2rem;
      }
    }
  }
}

@include media-breakpoint-up(xl) {
  .good-energy-thats-it {
      em {
        font-size: 8rem;
        text-shadow: 6px 6px 0 $dark;
        -webkit-text-stroke-width: 1.75px;
      }
      sup {
        font-size: 4rem;
      }
      span {
        font-size: 2rem;
      }
    }
}


@media (min-width: 1600px) {
}

.fc-feedback {
  font-size: 0.75rem;
}

.child-anchors * {
  pointer-events: none;
}
.child-anchors a {
  pointer-events: auto;
}

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

.enable-pointers {
  pointer-events: auto;
}