/** Shopify CDN: Minification failed

Line 534:25 Expected identifier but found whitespace
Line 534:26 Unexpected "rgba("
Line 553:33 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:full-ingredient-list (INDEX:15) */
.no-vertical-spacing {
    margin-top: 0;
    margin-bottom: 0;
}

.no-horizontal-spacing {
    margin-left: 0;
    margin-right: 0;
}

.ingredient-list-section-divider {
    border-top: 1px solid #ccc;
    margin-top: 1em;
    margin-bottom: 1em;
}

.ingredient-list-section-title {
    text-align: center;
    text-transform: uppercase;
}

.ingredient-list-section-subhead {
    text-align: center;
    text-transform: uppercase;
}
  
.see-more-container {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.title-container {
  position: relative;
}

.see-more {
  position: relative;
  z-index: 3;
  cursor: pointer; /* Add this */
  font-size: 14px;
  text-align: center;
  margin-block-start: 0 !important;
  padding: 10px 20px; /* Add padding to make the button temporarily bigger */
}

.see-more-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0 10px;
  position: relative;
  margin-block-start: 0;
}

.text {
  margin-right: 5px;
  text-transform: uppercase;
}

.arrow {
  margin-left: 5px;
}

.accordion-divider {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 !important;
  transform: translateY(-50%);
  border-top: 0.75px solid var(--main-black);
  z-index: -1;
}

.additional {
  border: 3px solid #000;
  width: 80%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: #000;
  table-layout: fixed;
  background-color: transparent;
  font-family: "Helvetica", sans-serif;
}

.additional td,
.additional th {
  padding: 5px 10px;
  text-align: left;
  vertical-align: bottom;
  position: relative;
  background-color: transparent;
  border: none;
  font-family: "Helvetica", sans-serif;
}

.additional th {
  font-weight: 900;
  font-size: 24px;
  color: black;
  opacity: 1;
  font-family: "Helvetica", sans-serif;
  text-transform: capitalize;
}

.additional th:first-child {
  padding-left: 20px; /* added more padding to the left of the first column */
}

.additional th::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  border-bottom: 10px solid #000;
}

.additional th:first-child::before {
  left: 10px;
}

.additional th:last-child::before {
  right: 10px;
}

.additional td::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  border-bottom: 1px solid #000;
}

.additional td:first-child {
  padding-left: 20px; /* added more padding to the left of the first column */
}

.additional td:first-child::before {
  left: 10px;
}

.additional td:last-child::before {
  right: 10px;
}

.additional tr:last-child td::before {
  border-bottom: none;
}

.additional td a {
  font-size: 10px; /* Reduce the font size of hyperlinks */
  text-transform: uppercase; /* Make the text all uppercase */
  color: grey; /* Set the font color to grey */
  text-decoration: none !important; /* Remove underline */
  font-weight: bold;
}

.additional td:nth-child(2),
.additional td:nth-child(3),
.additional th:nth-child(2),
.additional th:nth-child(3) {
  text-align: right;
  padding-right: 20px;
}

.hidden {
    display: none;
}
/* END_SECTION:full-ingredient-list */

/* START_SECTION:hair-type-best-for (INDEX:16) */
.hair-types-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hair-types-title {
  margin-bottom: 15px; /* Margin-bottom */
  font-size: 20px;
}

.hair-types-list {
  list-style: none;
  padding: 0;
  display: flex;
}

.hair-types-list li {
  margin-right: 10px; /* Spacing between the images */
}

.hair-types-list li:last-child {
  margin-right: 0; /* No margin for the last image */
}

.hair-types-list img {
  max-width: 100px;
  width: 100%;
  height: auto;
}
/* END_SECTION:hair-type-best-for */

/* START_SECTION:ingredient-grid (INDEX:22) */
.no-vertical-spacing {
        margin-top: 0;
        margin-bottom: 0;
    }

    .no-horizontal-spacing {
        margin-left: 0;
        margin-right: 0;
    }

    .ingredient-section-divider {
        border-top: 1px solid #ccc;
        margin-top: 1em;
        margin-bottom: 1em;
    }

      .ingredient-section-title {
        text-align: center;
        text-transform: uppercase;
    }

      .ingredient-section-subhead {
        text-align: center;
        text-transform: uppercase;
    }

      .ingredient-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: start;
        padding: 2em;
      }

      .ingredient-card {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border: 1px solid #ccc;
        padding: 1em;
        min-height: 200px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        margin: 1em;
        position: relative;
      }

      .ingredient-card-content {
        position: relative;
        min-height: 60px;
        z-index: 1;
        margin-right: 25%; /* This keeps the text from going under the image */
      }

      .ingredient-card.section-spacing {
        margin-block-start: 30px; /* example value */
      }

      /* CSS for 3 across */
      @media screen and (min-width: 1200px) {
        .ingredient-card {
          max-width: 350px;
          width: calc((100vw - 6em) / 3);
        }
      }

      /* CSS for 2 across */
      @media screen and (min-width: 769px) and (max-width: 1199px) {
        .ingredient-card {
          max-width: 350px;
          width: calc((100vw - 4em) / 2);
        }
      }

      /* CSS for 1 across */
      @media screen and (max-width: 768px) {
        .ingredient-card {
          max-width: 75vw; /* Set the max-width to be 75% of the viewport width */
          width: calc(100vw - 4em);
        }
      }

      /* CSS for small mobiles */
      @media screen and (max-width: 480px) {
        /* For small mobile devices */
        .ingredient-card {
          min-height: 150px;
          width: calc(100vw - 4em);
        }
      }

      .ingredient-card::before {
        content: ""; /* This is necessary for the pseudo-element to work */
        position: absolute;
        top: 0;
        left: 35%;
        width: 65%;
        height: 100%;
        background: radial-gradient(circle, rgba(54, 54, 54, 0.05), transparent);
        z-index: 1;
      }

      .ingredient-card img {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 40%;
        height: auto;
        z-index: 2;
        filter: drop-shadow(-3px 5px 5px rgba(0, 0, 0, 0.5));
        margin-block-start: 0 !important;
      }

      .ingredient-card h3 {
        margin: 0;
        font-size: 1.25em;
        margin-bottom: 0.1em;
        text-transform: uppercase;
        line-height: 1.3;
      }

      .ingredient-card h5 {
        margin: 0;
        font-size: 0.8em;
        font-weight: normal;
        margin-block-start: 0 !important;
        text-transform: uppercase;
      }

      .ingredient-card h3, .ingredient-card h5 {
        word-wrap: break-word;
    }

      .ingredient-card .info-button {
        position: absolute;
        bottom: 1em;
        right: 1em;
        font-weight: bold;
        color: #fff;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
      }

      .ingredient-tag {
        background: none;
        border: none;
        font-weight: bold;
        padding: 0.2em 0.5em;
        font-size: 0.8em;
        position: absolute;
        bottom: 1em;
        left: 1em;
        text-transform: uppercase;
        z-index: 1;
      }

      .ingredient-tag.active {
        color: #246f16;
      }

    /* Add styles to modal */
    .modal {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%; /* Updated the width */
      max-width: 600px; /* You can adjust the max-width */
      overflow: hidden;
      z-index: 4;
    }

    .modal-content {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      border: 1px solid #ccc;
      padding: 1em;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
      margin: 1em;
      position: relative;
    }

      @media screen and (min-width: 1200px) {
        .modal-content {
          min-height: 300px;
        }
      }

      @media screen and (min-width: 769px) and (max-width: 1199px) {
        .modal-content {
          min-height: 300px;
        }
      }

      @media screen and (max-width: 768px) {
        .modal-content {
          min-height: 300px;
        }
      }

      /* CSS for small mobiles */
      @media screen and (max-width: 480px) {
        /* For small mobile devices */
        .modal-content {
          min-height: 325px;
        }
      }

    .modal-divider {
        border: none;
        border-top: 1px solid #fff;
        margin-top: 5px;
        margin-bottom: 20px;
        display: block;
    }

    .modal-content h3 {
        font-size: 1.25em;
        margin-bottom: 0.1em;
        text-transform: uppercase;
      }

    .modal-content p {
        font-size: 0.8em;
      }

    .how-much {
      font-size: 0.8em;
      margin-block-start: 0;
      margin-block-end: 0;
      text-transform: uppercase;
      }

    .what-it-does {
      margin-top: 20px;
      text-transform: uppercase;
    }

    .modal-bottom-container {
        position: absolute;
        bottom: 1em;
        left: 1em;
        margin-right: 1em
      }

    .modal-bottom-container .ingredient-tag {
        position: relative;
        margin-top:10px;
        bottom: 0;
        left: 0;
        padding: 0;
      }

    .close {
      position: absolute;
      top: 0;
      right: 0.5em;
      font-weight: normal;
      font-size: 24px;
      cursor: pointer;
      z-index: 5;
    }

    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
      opacity: .25;
        z-index: 3;
      }

    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        color: var(--main-black);
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        z-index: 5;
        display: inline-block;
        padding: 0;

    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }

    .prev:hover, .next:hover {
        background-color: rgba(0, 0)

    /*Default Global Colors*/


.button-container {
  display: flex !important;
  flex-direction: column !important; /* Align children vertically */
  justify-content: center  !important;
  align-items: center !important;
  text-align: center !important;
  padding: 12px;
  background-color: #FFFFFF;
  width: 10%  !important;
}
.ingredient-cta {
  margin: 10px auto; /* Add margin for spacing */
  display: block;
}
/* END_SECTION:ingredient-grid */