/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 201:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
    .slider-inner {
        height: 250px;
    }

    .slider-inner .swiper {
        height: 250px;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      flex-direction: column;
      padding: 20px;
    }

    .product-ingredients {
        position: relative;
        width: 100%;
    }

    .product-media {
        position: sticky;
        top: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        transform: translateY(50px);
        transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
        will-change: opacity, visibility;
    }

    .product-video {
        width: 100%;
        height: auto;
        max-height: 700px;
        z-index: -1;
    }

    .product-image {
        height: 750px;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    @media only screen and (width < 750px) {
        .slider-inner {
            /* padding-top: 100px; */
            padding-top: 50px;
        }
    }

    @media only screen and (width > 1200px) {
        .product-image {
            transform: translateY(-50px);
        }
    }

    @media only screen and (width < 749px) {
        .product-image {
            height: 50vh;
        }
    }

    @media only screen and (width < 500px) {
        .product-image {
            margin: 0 10px;
        }
    }

    .ingredients-wrapper {
        padding: 86px 40px 40px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: var(--content-max);
        margin: 0 auto;
        padding-left: var(--outer);
        padding-right: var(--outer);
    }

    @media only screen and (width > 1200px) {
        .ingredients-container .ingredient-details:first-child {
            margin-top: 180px;
        }

        .ingredients-container {
            position: relative;
            height: 100%;
        }

        .ingredient-details--desktop .ingredient-name {
            display: flex;
            align-items: center;
            position: relative;
        }

        .ingredient-details--desktop:nth-of-type(2n) .ingredient-name{
            flex-direction: row-reverse;
        }

        .ingredients-container .ingredient-details--desktop:nth-of-type(odd) {
            width: 46%;
            text-align: left;
        }

        .ingredients-container .ingredient-details--desktop:nth-of-type(2n) {
            width: 46%;
            margin-left: auto;
            text-align: right;
        }

        .ingredient-description {
            width: 310px;
        }

        .ingredients-container .ingredient-details--desktop:nth-of-type(2n) .ingredient-description {
            margin-left: auto;
        }

        .ingredient-details--desktop .ingredient-name::after {
            content: "";
            height: 2px;
            min-width: 100px;
            background-color: #000;
            display: block;
            flex-grow: 1;
        }

        .ingredient-details--desktop .ingredient-name::before {
            position: absolute;
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #000;
            left: 0;
        }

        .ingredient-details--desktop:nth-of-type(odd) .ingredient-name::before {
            left: 100%;
        }
    }

    @media only screen and (width < 1200px) {
        .product-ingredients {
            min-height: auto!important;
            margin-bottom: 30px;
        }

        .product-video {
            position: static;
            max-height: none;
        }

        .product-media {
            position: static;
            margin-top: -50px;
        }

        .ingredients-wrapper {
            display: none;
        }
    }

    @media only screen and (width > 1200px) {
        .slider-inner {
            display: none;
        }
    }

    .product-ingredients {
        min-height: 100vh;
        margin-bottom: 30px;
    }

    .swiper-autoheight, .swiper-autoheight .swiper-slide {
        height: auto !important;
        min-height: 170px;

    }
</style>