/* Minification failed. Returning unminified contents.
(3262,1): run-time error CSS1019: Unexpected token, found '}'
 */
html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    background-color: #fff;
}

body {
    font-size: 1.4em;
    margin: 0;
    padding: 63px 0 0px 0;
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: 'Roboto', sans-serif;
    color: #676767;
}


* {
    box-sizing: border-box;
    background-repeat: no-repeat;
}
/*#region header */
header .nav-toggle {
    display: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    transition: all ease 0.3s;
    z-index: 10;
    background-color: #fff;
}

    header.scrolled {
        background-color: #fff;
        box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.09);
    }

.header-row {
    display: flex;
    max-width: 960px;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    margin: auto;
}

    .header-row .menu-item {
        display: block;
        position: relative;
        width: 20%;
    }

        .header-row .menu-item .submenu {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 220px;
            left: 50%;
            padding-top: 12px;
            transform: translateX(-50%);
        }

        .header-row .menu-item:hover .submenu {
            display: block;
            box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.09);
        }

        .header-row .menu-item .submenu a {
            padding: 0;
        }

            .header-row .menu-item .submenu a span {
                background-color: #fff;
                padding: 25px 10px;
            }

        .header-row .menu-item:hover .submenu a span {
            display: block;
        }



        .header-row .menu-item:hover .submenu a:hover span {
            background-color: transparent;
        }

    .header-row a {
        display: block;
        padding: 10px;
        color: #676767;
        text-decoration: none;
        text-align: center;
        position: relative;
        letter-spacing: 0.2em;
        font-weight: 400;
    }

        .header-row a:hover {
            font-weight: 700;
        }


    .header-row .logo img {
        display: block;
        margin: auto;
        width: 150px;
    }

.mini-cart {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
}


.mini-cart-toggle {
    padding: 10px 10px;
    min-width: 94px;
    min-height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #000;
    color: #fff;
    user-select: none;
}

    .mini-cart-toggle.no-items {
        background-color: transparent;
        color: #333333;
    }

    .mini-cart-toggle i {
        width: 22px;
        height: 22px;
        background-image: url(/Images/Assets/icon-cart-white.svg);
        background-size: 22px auto;
    }

    .mini-cart-toggle.no-items i {
        background-image: url(/Images/Assets/icon-cart-black.svg);
    }


.mini-cart:hover
.mini-cart-toggle {
    background-color: #000;
    color: #fff;
}


    .mini-cart:hover
    .mini-cart-toggle i {
        background-image: url(/Images/Assets/icon-cart-white.svg);
    }

.mini-cart .popout {
    position: absolute;
    top: 63px;
    width: 420px;
    right: 0;
    background-color: #fff;
    box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.09);
    display: none;
}

    .mini-cart .popout.popout-no-items {
        background-color: #FFFAF2;
    }

.mini-cart:hover .popout {
    display: block;
}

.mini-cart .popout .link-checkout {
    color: #fff;
    background-color: #0FAF91;
    border-radius: 15px;
    display: block;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    margin: 15px;
    padding: 8px 15px;
    letter-spacing: 0.2em;
}

.mini-cart .popout-no-items .cart-empty-image {
    margin: 20px 20px 0 20px;
    border-bottom: 1px solid #EEC130;
}

    .mini-cart .popout-no-items .cart-empty-image
    img {
        display: block;
        margin: auto;
        max-width: 110px;
    }

.mini-cart .popout-no-items .cart-empty-message {
    color: #5B5B5A;
    margin: 20px 20px;
    text-align: center;
}

.mini-cart-items-wrapper {
    max-height: 80vh;
    overflow: auto;
}

.mini-cart-items {
    display: table;
}

    .mini-cart-items .mini-cart-item {
        display: table-row;
    }

        .mini-cart-items .mini-cart-item .td {
            display: table-cell;
            width: 50%;
            vertical-align: middle;
            padding: 20px;
            border-bottom: 2px solid #F5F1EE;
        }

            .mini-cart-items .mini-cart-item .td:first-child {
                width: 40%;
                padding: 0;
            }

            .mini-cart-items .mini-cart-item .td:nth-child(2) {
                width: 60%;
            }

        .mini-cart-items .mini-cart-item img {
            max-width: 100%;
            margin: auto;
        }

    .mini-cart-items .variation {
        margin-bottom: 20px;
    }

    .mini-cart-items .product-title {
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 0.2em;
        margin: 0 0 8px 0;
    }

    .mini-cart-items .variation .variation-title {
        margin: 0 0 6px 0;
    }

    .mini-cart-items .variation .control button {
        border-width: 2px;
        border-style: solid;
        border-color: currentColor;
        width: 25px;
        height: 25px;
        outline: none;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        background-color: transparent;
        padding: 0;
        margin: 0;
    }

        .mini-cart-items .variation .control button:hover {
            background-color: rgba(255,255,255,0.5);
        }

        .mini-cart-items .variation .control button:active {
            background-color: rgba(255,255,255,1);
        }

    .mini-cart-items .variation .control .variation-input {
        background-color: transparent;
        border: none;
        width: 25px;
        text-align: center;
        -moz-appearance: textfield;
        height: 25px;
    }

        .mini-cart-items .variation .control .variation-input::-webkit-outer-spin-button,
        .mini-cart-items .variation .control .variation-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .mini-cart-items .variation .price {
        margin-left: 10px;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: #333333;
    }

.mini-cart .mini-cart-add-to-cart-form {
    position: relative;
}

    .mini-cart .mini-cart-add-to-cart-form .overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: rgba(255,255,255, 0.5);
        display: none;
        cursor: wait;
    }

    .mini-cart .mini-cart-add-to-cart-form.processing .overlay {
        display: block;
    }
/*#endregion header */
/*#region layout */
.body-wrapper {
    max-width: 1280px;
    margin: auto;
}

.content-wrapper {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.page .page-title {
    padding: 20px 0;
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.2em;
    color: #333333;
    font-weight: 400;
}
/*#endregion layout*/
/*#region hero */
.hero {
    display: block;
    position: relative;
    border-left: 20px solid #fff;
    border-right: 20px solid #fff;
}

    .hero img {
        display: block;
        margin: auto;
        max-width: 100%;
    }

    .hero .content {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

        .hero .content p {
            margin: 0;
            text-align: center;
            color: #fff;
            font-size: 30px;
            font-weight: 500;
            letter-spacing: 0.2em;
        }

            .hero .content p .underline {
                width: 56px;
                height: 3px;
                background-color: #fff;
                display: block;
                margin: 10px auto;
            }

        .hero .content .secondary-text {
            margin: auto;
            max-width: 400px;
            text-align: center;
            display: block;
            color: #fff;
            font-size: 22px;
        }

            .hero .content .secondary-text b {
                font-weight: 500;
            }

            .hero .content .secondary-text i {
                display: inline-block;
                position: relative;
            }

                .hero .content .secondary-text i:after {
                    content: '';
                    display: block;
                    position: absolute;
                    top: 50%;
                    height: 3px;
                    background-color: #CC6B6B;
                    width: 110%;
                    left: -5%;
                    transform: rotate(-10deg);
                    transform-origin: center center;
                }
/*#endregion hero */
/*#region home gallery */

.home-gallery {
    position: relative;
    height: 100vh;
    height: calc(100vh - 63px);
    overflow: hidden;
    background-color: #000;
}

    .home-gallery .slides {
        position: relative;
        height: 100vh;
        width: 100%;
    }

        .home-gallery .slides .slide .image {
            position: relative;
            z-index: 0;
            width: 100%;
            height: 100%;
            background-position: center center;
            background-size: cover;
        }

        .home-gallery .slides .slide {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 1;
            opacity: 0;
        }

            .home-gallery .slides .slide.active {
                z-index: 3;
                animation: SlideActiveIn ease 0.8s forwards;
            }

@keyframes SlideActiveIn {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

@keyframes SlideActiveLineTransformIn {
    from {
        transform: translateY(-1em);
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes SlideActiveImageIn {
    from {
        transform: scale(1.1);
    }
}

.home-gallery .slides .slide img.bg {
    display: none;
}

.home-gallery .slide .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50%;
    transform: translateY(50%);
}

    .home-gallery .slide .content .box {
        text-align: center;
        position: relative;
        color: #fff;
        margin: auto;
        max-width: 740px;
    }

        .home-gallery .slide .content .box.colored {
            color: #CC6B6B;
        }


        .home-gallery .slide .content .box .line-zero {
            font-weight: 300;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .home-gallery .slide .content .box .line-one {
            font-weight: 500;
            font-size: 28px;
            letter-spacing: 0.2em;
        }

        .home-gallery .slide .content .box .line-two {
            font-weight: 300;
            font-size: 18px;
            opacity: 0;
        }

        .home-gallery .slide .content .box hr {
            margin: 10px auto;
            width: 56px;
            height: 3px;
            background-color: #fff;
            outline: none;
            border: none;
        }

        .home-gallery .slide .content .box.colored hr {
            background-color: #CC6B6B;
        }


.home-gallery .slide.active .image {
    animation: SlideActiveImageIn ease 2s forwards;
}

.home-gallery .slide.active .content .box .line-two {
    animation: SlideActiveLineTransformIn ease 0.6s forwards;
    animation-delay: 0.8s;
}

.home-gallery .slide.active .content .box .line-three {
    animation: SlideActiveLineTransformIn ease 0.8s forwards;
    animation-delay: 0.8s;
}


.home-gallery .control {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    background-position: center center;
    background-size: 40px auto;
    z-index: 4;
    opacity: 0.5;
}

    .home-gallery .control.prev {
        background-image: url(/Images/Assets/gallery-icon-prev.svg);
        left: 0;
    }

    .home-gallery .control.next {
        background-image: url(/Images/Assets/gallery-icon-next.svg);
        right: 0;
    }

    .home-gallery .control:hover {
        opacity: 0.6;
    }

    .home-gallery .control:active {
        opacity: 1;
    }

.home-gallery .icon-down {
    background-image: url(/Images/Assets/icon-scroll-down.svg);
    width: 74px;
    height: 74px;
    background-size: 74px auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    bottom: 30px;
}
/*#endregion home gallery*/
/*#region featured products */
.featured-products {
    background-image: url(/Images/background-featured-products.jpg);
    min-height: 500px;
    background-color: #fff;
    padding: 50px 0;
    background-size: cover;
    background-position: right top;
}

    .featured-products h1 {
        text-align: center;
        margin: 0;
        letter-spacing: 0.3em;
        font-size: 22px;
    }

    .featured-products .row {
        display: flex;
        padding: 10px 10px;
    }

    .featured-products article {
        width: 33.33%;
    }

        .featured-products article .content {
            margin: 10px 10px 10px 10px;
            position: relative;
            background-color: #fff;
            text-align: center;
            box-shadow: 0 0 40px 0 rgba(103, 103, 103, 0.2);
            padding-bottom: 60px;
        }

        .featured-products article .title {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 30px 0 0 0;
            color: #444;
        }

            .featured-products article .title h2 {
                margin: 0 0 0.5em 0;
                font-size: 28px;
                letter-spacing: 8px;
                line-height: 1.2em;
                font-weight: 600;
            }

            .featured-products article .title h3 {
                margin: 0;
                letter-spacing: 0.4em;
                font-weight: 600;
                font-size: 14px;
            }

        .featured-products article a.image-link {
            display: block;
            margin: 0;
        }

        .featured-products article img {
            display: block;
            margin: 20px auto;
            max-width: 280px;
        }

        .featured-products article .ingredients {
            font-weight: 400;
            line-height: 1.6em;
            letter-spacing: normal;
            margin: 20px 0;
        }

        .featured-products article .price {
            letter-spacing: 3px;
            font-size: 16px;
            margin: 20px 0 10px 0;
        }

        .featured-products article .quantity {
            font-size: 13px;
        }

        .featured-products article .purchase-link {
            display: block;
            text-align: center;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .featured-products article a.purchase {
            display: inline-block;
            color: #444;
            text-decoration: none;
            font-size: 14px;
            margin: 0;
            letter-spacing: 4px;
            background-image: url(/Images/Assets/icon-arrow-gray-right.svg);
            padding: 20px 40px;
            background-size: 30px auto;
            background-position: 98% center;
            transition: all linear 0.18s;
        }

            .featured-products article a.purchase:hover {
                background-position: 100% center;
            }

        .featured-products article .bottom-fill {
            height: 4px;
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            display: block;
            transition: width cubic-bezier(.53,.96,.54,.96) 0.4s;
        }

        .featured-products article:hover .bottom-fill {
            width: 100%;
        }
/*#endregion featured products */
/*#region brews-snippet */
.brews-snippet {
    background-image: url(/Images/background-mountains.jpg);
    padding: 100px 0 200px 0;
    text-align: center;
    color: #fff;
    background-position: center bottom;
    position: relative;
}

    .brews-snippet:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        display: block;
        z-index: 1;
        background-image: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0));
    }

    .brews-snippet .text {
        padding: 40px;
        margin: auto;
        position: relative;
        z-index: 2;
        max-width: 768px;
        border-radius: 16px;
    }

    .brews-snippet h1 {
        font-size: 28px;
        letter-spacing: 0.2em;
        margin: 0 0 20px 0;
    }

        .brews-snippet h1 small {
            font-size: 14px;
            letter-spacing: 5px;
        }

    .brews-snippet p {
        line-height: 1.6em;
        letter-spacing: normal;
        font-size: 16px;
    }

        .brews-snippet p a {
            display: inline-block;
            padding: 8px 40px;
            color: #fff;
            background-color: transparent;
            letter-spacing: 0.2em;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 20px;
            border: 2px solid #fff;
        }

            .brews-snippet p a:hover {
                border-color: #fff;
                background-color: #0FAF91;
            }

    .brews-snippet hr {
        margin: 10px auto 20px auto;
        width: 56px;
        height: 3px;
        background-color: #fff;
        outline: none;
        border: none;
    }
/*#endregion brews-snippet*/
/*#region page-contact */
.page-contact {
}

    .page-contact .page-body {
    }

    .page-contact h1 {
        text-align: center;
        color: #333333;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 0.2em;
        margin: 40px 0;
    }

.contact-page-row {
    display: flex;
}

    .contact-page-row .col {
        width: 50%;
        padding: 10px;
    }

.contact-form-wrapper {
    background: #F5F1EE;
    padding: 20px;
}

.contact-form {
    max-width: 490px;
    margin: auto;
    padding: 20px 0;
}

    .contact-form p {
        margin: 30px 0;
        font-size: 20px;
    }

    .contact-form .editor-row {
        display: flex;
        margin: 10px -10px 40px -10px;
    }

        .contact-form .editor-row .editor-group {
            padding: 0 10px;
            flex-grow: 1;
        }

    .contact-form .field {
        border: none;
        border-bottom: 2px solid #333333;
        padding: 4px 0;
        width: 100%;
        display: block;
        background-color: transparent;
    }

    .contact-form textarea.field {
        font: inherit;
        border: 2px solid #333333;
        padding: 10px;
        resize: vertical;
    }

    .contact-form .btn-submit {
        width: 220px;
        text-align: center;
        border: none;
        background-color: #0FAF91;
        color: #fff;
        display: block;
        border-radius: 15px;
        padding: 6px 0;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.2em;
    }

        .contact-form .btn-submit:focus {
            outline: none;
        }

        .contact-form .btn-submit:hover {
            filter: contrast(50%);
        }

    .contact-form .checkbox-list {
    }

        .contact-form .checkbox-list label {
            display: block;
            margin: 5px 0;
        }

            .contact-form .checkbox-list label input {
                display: none;
            }

            .contact-form .checkbox-list label span {
                position: relative;
                border: 1px solid #fff;
                outline: 1px solid #707070;
                height: 11px;
                width: 11px;
                display: inline-block;
                margin-right: 10px;
            }

            .contact-form .checkbox-list label input:checked + span {
                background-color: #707070;
            }

    .contact-form .form-status {
        margin: 0 0 20px 0;
        display: none;
    }

.address {
    padding: 20px 0px;
    margin: 20px;
    border-width: 1px 0;
    border-style: solid;
    border-color: #E0E0E0;
}

    .address h2 {
        margin: 0 0 1em 0;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.2em;
    }

    .address a.mail-link {
        font-weight: 300;
        text-decoration: none;
        color: inherit;
    }

    .address .social {
        margin-top: 30px;
    }

        .address .social a {
            display: inline-block;
            margin-right: 18px;
            text-align: center;
            text-decoration: none;
        }

            .address .social a img {
                width: 36px;
                margin: auto;
                display: block;
            }

                .address .social a img:hover {
                    opacity: 0.8;
                }

            .address .social a span {
                color: #333;
                font-weight: bold;
                text-align: center;
                display: block;
                font-size: 14px;
                margin-top: 10px;
            }
/*#endregion page-contact*/
/*#region footer */
footer {
    padding: 20px 0 80px 0;
    background-color: #333333;
    color: #fff;
}

.footer-logo {
    display: block;
    max-width: 100%;
    width: 140px;
    margin-bottom: 30px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

    .footer-row .col {
        width: 25%;
        padding: 10px;
    }

    .footer-row h4 span {
        border-bottom: 1px solid #333333;
    }

    .footer-row a {
        color: #fff;
        text-decoration: none;
        display: block;
        margin: 10px 0;
    }

        .footer-row a.spaced {
            font-weight: bold;
            letter-spacing: 0.2em;
        }

    .footer-row .footer-social a {
        display: block;
        color: #fff;
        margin: 10px 0;
        padding: 0;
    }


        .footer-row .footer-social a img {
            width: 36px;
            margin: auto;
            display: inline-block;
            vertical-align: middle;
            margin-right: 10px;
        }

.footer-contact-links {
    margin-top: -5px;
}

    .footer-contact-links a {
        margin: 0 0 5px 0;
    }

.newsletter-form {
}

    .newsletter-form input {
        width: 100%;
        padding: 8px 0;
        background-color: transparent;
        color: #fff;
        border: none;
        max-width: 200px;
        border-bottom: 2px solid #fff;
    }

    .newsletter-form button {
        border: none;
        outline: none;
        color: #fff;
        background-color: #0FAF91;
        border-radius: 15px;
        padding: 8px 30px;
        letter-spacing: 0.2em;
        font-weight: bold;
        width: 200px;
    }

    .newsletter-form .form-status {
        margin: 10px 0;
    }

.join-network {
    position: fixed;
    z-index: 9;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 0;
    transition: all ease 0.18s;
    transform: translateY(100%);
}

    .join-network.in {
        transform: translateY(0);
    }

    .join-network.open {
        padding: 20px 0;
        background-color: #F5F1EE;
        border-top: 1px solid #fff;
        transform: translateY(0);
    }

    .join-network h2 {
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.2em;
        margin: 0;
    }

        .join-network h2 span {
            padding: 8px 30px;
            border-radius: 30px;
            background-color: #8c8c8c;
            color: #fff;
            cursor: pointer;
        }

    .join-network:not(.open) h2 span:hover {
        background-color: #0FAF91;
    }

    .join-network.open h2 span {
        background-color: transparent;
        color: inherit;
        background-image: url(/Images/Assets/times-circle.svg);
        background-size: 20px auto;
        background-position: right center;
    }

    .join-network p {
        text-align: center;
        line-height: 1.6em;
    }

    .join-network .content {
        max-width: 640px;
        margin: auto;
    }

    .join-network .content-body {
        display: none;
    }

    .join-network .editor-row {
        display: flex;
    }

        .join-network .editor-row .editor-group {
            flex-grow: 1;
            margin: 10px;
        }

    .join-network .field {
        width: 100%;
        border: none;
        border-bottom: 2px solid #676767;
        background-color: transparent;
        padding: 4px 0;
        font-size: 14px;
        font-family: inherit;
        letter-spacing: 0.2em;
    }

        .join-network .field:focus {
            outline: none;
        }

    .join-network .editor-controls {
        padding: 20px 0;
    }

    .join-network .btn-submit {
        width: 220px;
        text-align: center;
        border: none;
        background-color: #0FAF91;
        color: #fff;
        display: block;
        margin: auto;
        border-radius: 15px;
        padding: 6px 0;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.2em;
    }

        .join-network .btn-submit:hover {
            filter: contrast(50%);
        }

    .join-network .form-status {
        text-align: center;
        margin: 10px 0;
    }
/*#endregion footer*/
/*#region page about */


.about {
    padding: 40px 0;
}

.about-intro {
    margin: -20px auto 30px auto;
    max-width: 525px;
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 30px;
    font-weight: 300;
    line-height: 1.6em;
}

.about h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #676767;
}

.about .hoverer {
    text-align: center;
    font-style: italic;
    font-weight: 300;
}

.about .circles {
    position: relative;
    height: 530px;
    width: 520px;
    margin: 80px auto;
}

.circle {
    width: 296px;
    height: 296px;
    left: 50%;
    top: 50%;
    border: 4px solid #CCCCCC;
    border-radius: 50%;
    position: absolute;
    transform-origin: center center;
}

.circle-one {
    transform: translate(-50%, calc(-50% - 104px));
}

.circle-two {
    transform: translate(calc(-50% - 108px), calc(-50% + 54px))
}

.circle-three {
    transform: translate(calc(-50% + 108px), calc(-50% + 54px));
}

.circles .circle-center {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.circle img.icon {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 55px;
}

.circle .title {
    position: absolute;
    text-align: center;
    width: 100%;
    color: #333333;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-style: normal;
}

.circle-one .title {
    top: -40px;
}

.circle-two .title,
.circle-three .title {
    bottom: -50px;
}

.circles:hover .circle {
    opacity: 0.5;
}

.circles .circle:hover {
    background-color: rgba(245, 241, 238, 0.5);
    border-color: rgba(51,51,51,1);
    z-index: 1;
    opacity: 1;
}

.circle .content {
    position: absolute;
    display: none;
    width: 300px;
    text-align: left;
    font-style: normal;
    line-height: 1.6em;
}

.circle:hover .content {
    display: block;
}

.circle-one:hover .content {
    left: 0;
    top: 50%;
    transform: translate(calc( 110%), -50%);
}

.circle-two:hover .content {
    bottom: 0;
    top: 45%;
    transform: translate(calc( -110%), -50%);
}

.circle-three:hover .content {
    left: 0;
    top: 50%;
    transform: translate(calc( 110%), -50%);
}

.partnership-program {
    background-color: #F5F1EE;
    min-height: 400px;
}

    .partnership-program .title-row {
        background-color: #fff;
    }

        .partnership-program .title-row h2 {
            width: calc( 50% - 20px);
            margin-left: auto;
            font-weight: 500;
            letter-spacing: 0.2em;
            padding: 30px 0;
            border-top: 2px solid #F5F1EE;
        }

    .partnership-program .content-row {
        display: flex;
    }

        .partnership-program .content-row .col {
            width: 50%;
            padding: 0 20px;
        }

        .partnership-program .content-row .image img {
            display: block;
            max-width: 100%;
            margin-top: -140px;
        }

        .partnership-program .content-row .content {
            padding-bottom: 20px;
        }

    .partnership-program p.tagline {
        font-size: 20px;
        margin: 10px 0;
    }

    .partnership-program .statastics {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        border-top: 1px solid #E0E0E0;
        margin-top: 20px;
    }

        .partnership-program .statastics .stat {
            width: 33.33%;
            padding: 20px 10px;
            text-align: center;
        }

            .partnership-program .statastics .stat em {
                font-size: 50px;
                font-weight: 300;
                display: block;
                font-style: normal;
                color: #917E7E;
            }

            .partnership-program .statastics .stat b {
                font-weight: 500;
                letter-spacing: 0.1em;
                font-style: normal;
            }

            .partnership-program .statastics .stat i {
                font-style: italic;
            }

.team {
    padding: 40px 0;
}

    .team h1 {
        text-align: center;
        font-weight: 500;
        letter-spacing: 0.2em;
    }

    .team .say-hi {
        text-align: center;
        margin: 30px 0 0 0;
    }

        .team .say-hi a {
            border: 2px solid #0FAF91;
            color: #0FAF91;
            background-color: transparent;
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            letter-spacing: 0.2em;
            font-weight: bold;
        }

            .team .say-hi a:hover {
                background-color: #0FAF91;
                color: #fff;
            }

    .team ul {
        margin: 30px auto;
        padding: 0;
        text-align: center;
        width: 900px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .team ul li {
            display: block;
            width: 33.33%;
            padding: 10px;
            margin: 20px 0;
            padding: 20px;
        }

            .team ul li img {
                width: 178px;
                height: 178px;
                display: block;
                margin: auto;
                background-color: #F5F1EE;
                border-radius: 100%;
                margin-bottom: 20px;
            }

            .team ul li h2 {
                margin: 0;
                letter-spacing: 0.2em;
                color: #333333;
                font-size: 14px;
            }

            .team ul li h5 {
                margin: 0;
                font-weight: 300;
                letter-spacing: 0.2em;
            }

            .team ul li p {
                line-height: 1.5em;
            }
/*#endregion page about*/
/*#region shop */
.product-category {
    padding: 20px 0;
    margin: auto;
    max-width: 900px;
}

    .product-category h1 {
        text-align: center;
        letter-spacing: 0.2em;
        font-size: 22px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .product-category .product-list {
        display: flex;
        flex-wrap: wrap;
        margin: auto;
        justify-content: center;
    }

        .product-category .product-list .product {
            width: 33.33%;
            padding: 15px;
            text-align: center;
        }

            .product-category .product-list .product .image-link {
                display: block;
                position: relative;
                margin: 10px 10px;
            }

                .product-category .product-list .product .image-link svg {
                    position: absolute;
                    stroke: #F5F1EE;
                    stroke-width: 10;
                    stroke-dasharray: 300%;
                    stroke-dashoffset: 300%;
                    z-index: 1;
                    width: 100%;
                    height: 100%;
                    transform: rotate(-90deg);
                    top: -2px;
                }

                    .product-category .product-list .product .image-link svg circle {
                        fill: transparent;
                    }

            .product-category .product-list .product:hover .image-link svg {
                stroke-dashoffset: 0 !important;
                transition: stroke-dashoffset ease .6s;
            }

            .product-category .product-list .product .image-link img {
                position: relative;
                z-index: 1;
                border-radius: 50%;
                max-width: 100%;
                height: auto;
                padding: 5px;
            }

            .product-category .product-list .product h2 {
                font-size: 22px;
                letter-spacing: 0.2em;
                font-weight: bold;
                margin: 0;
            }

            .product-category .product-list .product h3 {
                font-size: 14px;
                letter-spacing: 0.2em;
                font-weight: 300;
                margin: 0 0 10px 0;
            }

            .product-category .product-list .product .btn {
                border: none;
                background: none;
                letter-spacing: 0.2em;
                margin: 30px 0 0 0;
                cursor: pointer;
                color: #626262;
                padding: 10px 40px;
                display: inline-block;
                background-image: url(/Images/Assets/icon-arrow-gray-right.svg);
                background-size: 30px;
                background-position: 98% center;
                transition: all linear 0.18s;
                background-repeat: no-repeat;
                text-decoration: none;
            }

                .product-category .product-list .product .btn:hover {
                    background-position: 100% center;
                }

            .product-category .product-list .product .variation {
                margin-bottom: 0.2em;
            }

.quick-view-lightbox {
    display: none;
    position: fixed;
    z-index: 15;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(23, 23, 23, 0.5);
}

.quick-view-container {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    width: 820px;
    transform: translate(-50%,-50%);
    min-height: 200px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}


    .quick-view-container .quick-view-close {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 28px;
        height: 28px;
        border: none;
        outline: none;
        background-color: transparent;
        background-image: url(/Images/Assets/icon-quick-view-close.svg);
        z-index: 1;
        background-size: 28px auto;
    }

        .quick-view-container .quick-view-close:hover {
            opacity: 0.8;
        }

    .quick-view-container .product-row {
    }

    .quick-view-container .product-row {
    }

    .quick-view-container .product-row {
    }

    .quick-view-container .product-row {
    }

    .quick-view-container .product-row {
    }




.page-shop-product {
    padding: 40px 0;
    background-image: linear-gradient(to right, #fff 50%, transparent 50%, transparent 100%);
}

.product-row {
    display: flex;
    align-items: flex-start;
}

.quick-view-content .product-row {
    align-items: center;
}

.product-row .image-gallery {
    display: flex;
    width: 50%;
    position: relative;
}

    .product-row .image-gallery .images {
        display: block;
        overflow: hidden;
        align-items: center;
        position: relative;
        margin: auto;
        width: 100%;
    }

        .product-row .image-gallery .images .image {
            display: flex;
            align-items: center;
            margin: auto;
            position: absolute;
            left: 100%;
            top: 0;
            width: 100%;
            height: 100%;
        }

            .product-row .image-gallery .images .image:first-child {
                position: relative;
                left: 0;
            }

            .product-row .image-gallery .images .image img {
                display: block;
                margin: auto;
                max-width: 100%;
            }

    .product-row .image-gallery .control {
        position: absolute;
        height: 100%;
        top: 0;
        width: 60px;
        z-index: 3;
        background-position: center center;
        background-size: 25px auto;
    }

        .product-row .image-gallery .control.prev {
            background-image: url(/Images/Assets/gallery-icon-prev-gray.svg);
            left: 0;
        }

        .product-row .image-gallery .control.next {
            background-image: url(/Images/Assets/gallery-icon-next-gray.svg);
            right: 0;
        }

    .product-row .image-gallery .pager {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 4;
    }

        .product-row .image-gallery .pager span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #CECECE;
            display: inline-block;
            margin: 0 5px;
        }

            .product-row .image-gallery .pager span.active {
                background-color: #7E7E7E;
            }

.product-row .content {
    width: 50%;
    padding: 20px;
}

.product-row h1 {
    letter-spacing: 0.2em;
    font-size: 24px;
    font-weight: bold;
    color: #333333
}

    .product-row h1 small {
        letter-spacing: 0.2em;
        font-size: 14px;
        font-weight: 500;
        color: #5B5B5A;
    }

.quick-view-content .product-row h1 small {
    display: block;
}

.product-row .best-time {
    font-style: italic;
    margin: 10px 0 10px 0px;
}

    .product-row .best-time img {
        width: 30px;
        height: 30px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

.page-shop-product .tabs .tab-list {
    border-color: #E0E0E0;
    border-width: 1px 0;
    border-style: solid;
}

    .page-shop-product .tabs .tab-list a {
        margin-right: 40px;
        display: inline-block;
        padding: 8px 0 12px 0;
        text-decoration: none;
    }

        .page-shop-product .tabs .tab-list a span {
            font-size: 12px;
            font-weight: 400;
            text-decoration: none;
            letter-spacing: 0.2em;
            color: #989898
        }

        .page-shop-product .tabs .tab-list a.active span {
            font-weight: bold;
            border-bottom: 2px solid #333333;
            color: #333333;
            padding: 2px 0;
        }

.page-shop-product .tabs .tab-content {
    display: none;
    font-weight: 300;
    color: #5B5B5A;
    line-height: 1.6em;
}

    .page-shop-product .tabs .tab-content.show {
        animation: TabContentIn ease-out 0.8s;
        display: block;
    }

@keyframes TabContentIn {
    from {
        transform: translateX(10px);
        opacity: 0;
    }
}

.product-row .add-to-cart-form {
    margin: 30px 0;
    position: relative;
}

.quick-view-content .add-to-cart-form {
    margin-bottom: 0;
}

.product-row .add-to-cart-form .add-to-cart-button {
    width: 50%;
    border-radius: 15px;
    border: none;
    font-size: 13px;
    text-align: center;
    padding: 7px 15px;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.2em;
}

    .product-row .add-to-cart-form .add-to-cart-button:active {
        opacity: 0.8;
    }

    .product-row .add-to-cart-form .add-to-cart-button:focus {
        outline: none;
    }



.product-row .variations {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.quick-view-content .product-row .variations {
    margin: 0;
}

.product-row .variation {
    margin-bottom: 20px;
    width: 50%;
    padding: 0 20px;
    position: relative;
}

    .product-row .variation:nth-child(2n) {
        border-left: 1px solid #676767;
    }

.quick-view-content .product-row .variation {
    width: 100%;
    padding: 0;
}

    .quick-view-content .product-row .variation:nth-child(2n) {
        border-left: none;
    }

.product-row .add-to-cart-form .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: none;
    cursor: wait;
}

.product-row .add-to-cart-form.processing .overlay {
    display: block;
}


.product-row .variation .variation-name {
    margin-bottom: 8px;
    line-height: 1.6em;
}

    .product-row .variation .variation-name em {
        font-weight: 500;
        color: #333333;
        font-style: normal;
    }

.product-row .variation .control button {
    border-width: 2px;
    border-style: solid;
    border-color: currentColor;
    width: 25px;
    height: 25px;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

    .product-row .variation .control button:hover {
        background-color: rgba(255,255,255,0.5);
    }

    .product-row .variation .control button:active {
        background-color: rgba(255,255,255,1);
    }

.product-row .variation .control .variation-input {
    background-color: transparent;
    border: none;
    width: 25px;
    text-align: center;
    -moz-appearance: textfield;
    height: 25px;
}

    .product-row.variation .control .variation-input::-webkit-outer-spin-button,
    .product-row .variation .control .variation-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.product-row .variation .price {
    margin-left: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #333333;
}

.quick-view-to-know-more {
    display: inline-block;
    padding: 4px 40px 4px 0;
    background-image: url(/Images/Assets/icon-arrow-gray-right.svg);
    background-size: auto 24px;
    text-decoration: none;
    letter-spacing: 0.2em;
    color: inherit;
    background-position: calc(100% - 5px) center;
    transition: background-position linear 0.18s;
}

    .quick-view-to-know-more:hover {
        background-position: 100% center;
    }

.product-row .trust-markers {
    margin: 0 0 40px 0;
}

    .product-row .trust-markers img {
        display: block;
        max-width: 280px;
    }

.coming-soon {
    background-color: #F5F1EE;
}

    .coming-soon .row {
        display: flex;
        padding: 40px 0;
        align-items: center;
        margin-left: calc(50% - 126px);
    }

    .coming-soon .image {
        width: 252px;
        flex-shrink: 0;
    }

        .coming-soon .image img {
            display: block;
            margin: auto;
            max-width: 100%;
        }

    .coming-soon .text {
        width: 33.33%;
    }

    .coming-soon .coming-soon-tag {
        font-size: 12px;
        margin: 0;
        color: #525252;
        letter-spacing: 0.2em;
    }

    .coming-soon h2 {
        font-size: 22px;
        margin: 0;
        font-weight: 500;
        color: #333333;
        letter-spacing: 0.2em;
    }

    .coming-soon p {
        font-weight: 400;
        margin: 0;
    }

    .coming-soon .text a {
        display: inline-block;
        border-radius: 20px;
        font-size: 12px;
        border: 2px solid #707070;
        font-weight: 500;
        padding: 4px 20px;
        text-decoration: none;
        letter-spacing: 0.2em;
        margin: 20px 0;
        color: #333333;
    }

        .coming-soon .text a:hover {
            background-color: #0FAF91;
            color: #fff;
            border-color: #fff;
        }

.herbal-cooler-popup {
    background-color: rgba(0, 0, 0, 0.09);
    position: fixed;
    z-index: 12;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    align-items: center;
}

    .herbal-cooler-popup.show {
        display: flex;
    }

    .herbal-cooler-popup .close {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 28px;
        height: 28px;
        border: none;
        outline: none;
        background-color: transparent;
        background-image: url(/Images/Assets/icon-quick-view-close.svg);
        z-index: 1;
        background-size: 28px auto;
    }

    .herbal-cooler-popup form {
        background-color: #fff;
        position: relative;
        width: 420px;
        max-width: 100%;
        padding: 40px 15px;
        border-radius: 10px;
        margin: auto;
        transition: all ease 300s;
        box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.09);
    }

    .herbal-cooler-popup.show form {
        animation: HerbalFormIn ease 0.4s;
    }

@keyframes HerbalFormIn {
    from {
        transform: scale(0.95);
    }
}

.herbal-cooler-popup form input {
    text-align: center;
    width: 100%;
    padding: 8px 0;
    border: none;
    outline: none;
    text-align: center;
    background-color: #fff;
    border-bottom: 2px solid #0FAF91;
    letter-spacing: 0.2em;
    color: #333333;
}

    .herbal-cooler-popup form input:focus, .herbal-cooler-popup form button.btn-submit:focus {
        outline: none;
    }

.herbal-cooler-popup form button.btn-submit {
    padding: 8px 30px;
    text-align: center;
    color: #0FAF91;
    background-color: #fff;
    border: 2px solid #0FAF91;
    font-weight: bold;
    width: 100%;
    display: block;
    margin: 0px auto;
    max-width: 240px;
    border-radius: 30px;
}

    .herbal-cooler-popup form button.btn-submit:hover {
        background-color: #0FAF91;
        color: #fff;
    }

.herbal-cooler-popup .form-status {
    text-align: center;
    color: #0FAF91;
    margin: 20px 0;
}
/*#endregion shop*/
/*#region checkout */
.page-checkout {
    background-color: #F5F5F5;
    min-height: 100vh;
    padding: 20px 0;
}

    .page-checkout h1 {
        letter-spacing: 0.2em;
        font-size: 18px;
        text-align: center;
        font-weight: 500;
        color: #333333;
    }

.checkout-empty-cart {
    margin: 40px auto;
    max-width: 600px;
}

    .checkout-empty-cart .image {
        border-bottom: 2px solid #EEC130;
    }

        .checkout-empty-cart .image img {
            display: block;
            margin: auto;
            max-width: 100%;
            width: 300px;
        }

    .checkout-empty-cart p {
        text-align: center;
    }

.page-checkout .page-row {
    display: flex;
}

    .page-checkout .page-row .large-col {
        width: 70%;
        padding: 20px;
        flex-grow: 1;
        flex-shrink: 0;
    }

    .page-checkout .page-row .summary-col {
        width: 30%;
        padding: 20px;
        flex-grow: 1;
        flex-shrink: 0;
    }

.page-checkout .order-summary-wrapper {
    width: 100%;
    position: relative;
}

.page-checkout .order-summary {
    color: #333333;
    position: fixed;
}

    .page-checkout .order-summary h2 {
        font-size: 16px;
        letter-spacing: 0.2em;
        font-weight: bold;
        padding: 1em 0;
        border-bottom: 1px solid #666666
    }

    .page-checkout .order-summary .summary-row {
        display: flex;
        padding: 8px 0;
        font-weight: bold;
        letter-spacing: 0.2em;
    }

        .page-checkout .order-summary .summary-row i {
            letter-spacing: normal;
            font-weight: 300;
        }

        .page-checkout .order-summary .summary-row.coupon-row {
            border-top: 1px solid #666666;
            margin-top: 8px;
        }

        .page-checkout .order-summary .summary-row.total-row {
            border-top: 1px solid #666666;
            margin-top: 8px;
        }

        .page-checkout .order-summary .summary-row .text {
            flex-grow: 1;
            padding-right: 80px;
        }

.page-checkout .coupon-apply-status:empty {
    display: none;
}

.page-checkout .coupon-apply-status {
    margin: 4px 4px 4px 0;
    display: block;
}

.page-checkout .coupon-controls {
    display: block;
    margin: 4px 0;
    display: flex;
}

    .page-checkout .coupon-controls .apply-coupon {
        background-color: #0FAF91;
        color: #fff;
        padding: 4px 12px;
        margin-left: 4px;
        border: 1px solid #0FAF91;
        outline: none;
        font-weight: bold;
        font-size: 12px;
        border-radius: 1em;
    }

        .page-checkout .coupon-controls .apply-coupon:active {
            color: #0FAF91;
            background-color: #fff;
        }

.coupon-controls input {
    width: 100%;
    border: 1px solid #333333;
    position: relative;
    background-color: transparent;
    z-index: 1;
    padding: 4px 4px;
    outline: none;
    margin: 0;
}

.page-checkout .remove-coupon-controls .applied-coupon-code {
    background-color: #fff;
    padding: 4px 12px;
    border-radius: 1em;
}

.page-checkout .remove-coupon-controls {
    display: none;
}

    .page-checkout .remove-coupon-controls .remove-coupon {
        background-color: #0FAF91;
        color: #fff;
        padding: 4px 12px;
        margin-left: 4px;
        border: 1px solid #0FAF91;
        outline: none;
        font-weight: bold;
        font-size: 12px;
        border-radius: 1em;
    }

        .page-checkout .remove-coupon-controls .remove-coupon:active {
            color: #0FAF91;
            background-color: #fff;
        }

.coupon-controls input {
    width: 100%;
    border: 1px solid #333333;
    position: relative;
    background-color: transparent;
    z-index: 1;
    padding: 4px 4px;
    outline: none;
    margin: 0;
}

.page-checkout .expandable {
    margin-bottom: 20px;
}

    .page-checkout .expandable .expandable-head {
        background-image: url(/Images/Assets/icon-chevron-down-gray.svg);
        background-size: auto 10px;
        background-position: right center;
        background-origin: content-box;
        letter-spacing: 0.2em;
        font-weight: bold;
        cursor: pointer;
        padding: 8px;
    }

        .page-checkout .expandable .expandable-head:hover {
            background-color: rgba(255,255,255,0.5);
            border-radius: 12px 4px 0 0;
        }

    .page-checkout .expandable .expandable-body {
        border: 2px solid #333333;
    }

        .page-checkout .expandable .expandable-body.hidden {
            display: none;
        }

    .page-checkout .expandable .cart-items {
        display: table;
        padding: 20px;
    }

        .page-checkout .expandable .cart-items .cart-item {
            display: table-row;
        }

            .page-checkout .expandable .cart-items .cart-item .td {
                display: table-cell;
                vertical-align: middle;
                border-bottom: 1px solid #666666;
                padding: 20px;
                width: 33.33%;
            }

            .page-checkout .expandable .cart-items .cart-item img {
                display: block;
                max-width: 100%;
                margin: auto;
            }

    .page-checkout .expandable .btn-next-wrapper {
        text-align: right;
        margin: 0 20px 10px 20px;
    }

    .page-checkout .expandable .btn-next-section {
        background-color: #0FAF91;
        color: #fff;
        border-radius: 15px;
        padding: 8px 40px;
        text-align: center;
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.2em;
        border: none;
    }

.page-checkout .fields {
    max-width: 420px;
    padding: 20px;
}

    .page-checkout .fields .group {
        position: relative;
        margin-bottom: 10px;
        letter-spacing: 0.2em;
        padding-top: 14px;
    }

        .page-checkout .fields .group label {
            position: absolute;
            width: 100%;
            font-size: 10px;
            color: #9D9D9D;
            left: 0;
            top: 0;
            transition: top ease .18s;
        }

            .page-checkout .fields .group label span {
                color: #CC6B6B;
                letter-spacing: normal;
                display: none;
            }

    .page-checkout .fields input {
        width: 100%;
        border: none;
        border-bottom: 2px solid #333333;
        position: relative;
        background-color: transparent;
        z-index: 1;
        padding: 4px 0;
        outline: none;
    }

        .page-checkout .fields input:placeholder-shown + label {
            top: 18px;
        }

        .page-checkout .fields input:focus + label {
            top: 0;
        }

.page-checkout form .fields input.blurred:invalid + label span,
.page-checkout form.validation-run .fields input:invalid + label span {
    display: inline;
}

.page-checkout .payment-options {
    padding: 20px;
}

.page-checkout .btn-place-order {
    background-color: #0FAF91;
    color: #fff;
    border-radius: 15px;
    padding: 8px 40px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    border: none;
}

.page-checkout form:invalid .btn-place-order {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-checkout .payment-options .form-status {
    display: none;
    padding: 20px;
}

.go-to-validation {
    position: fixed;
    z-index: 15;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    color: #333333;
    display: none;
}

    .go-to-validation p {
        text-align: center;
        max-width: 420px;
        padding: 100px 20px 20px 20px;
        margin: auto;
        font-size: 24px;
    }

.razor-retry {
    position: fixed;
    z-index: 15;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    color: #333333;
    display: none;
}

.razor-retry-inner {
    display: flex;
    position: relative;
    height: 100%;
    align-items: center;
}

.razor-retry .text {
    position: relative;
    max-width: 420px;
    margin: auto;
    text-align: center;
}

.razor-retry .razor-retry-on-dismiss {
    background-color: #0FAF91;
    color: #fff;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    border: none;
    outline: none;
    padding: 8px 30px;
    letter-spacing: 0.2em;
    font-weight: bold;
}

.razor-retry .text a {
    color: #CC6B6B;
    text-decoration: underline;
}

.cart-items .variation {
    margin-bottom: 20px;
}

.cart-items .product-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin: 0 0 8px 0;
}

.cart-items .variation .variation-title {
    margin: 0 0 6px 0;
}

.cart-items .variation .control button {
    border-width: 2px;
    border-style: solid;
    border-color: currentColor;
    width: 25px;
    height: 25px;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

    .cart-items .variation .control button:hover {
        background-color: rgba(255,255,255,0.5);
    }

    .cart-items .variation .control button:active {
        background-color: rgba(255,255,255,1);
    }

.cart-items .variation .control .variation-input {
    background-color: transparent;
    border: none;
    width: 25px;
    text-align: center;
    -moz-appearance: textfield;
    height: 25px;
}

    .cart-items.variation .control .variation-input::-webkit-outer-spin-button,
    .cart-items .variation .control .variation-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.cart-items .variation .price {
    margin-left: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #333333;
}

.cart-items .checkout-page-add-to-cart-form {
    position: relative;
}

    .cart-items .checkout-page-add-to-cart-form .overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: rgba(255,255,255, 0.5);
        display: none;
        cursor: wait;
    }

    .cart-items .checkout-page-add-to-cart-form.processing .overlay {
        display: block;
    }


/*#endregion */
/*#region checkout results */
.page-checkout-success {
}

    .page-checkout-success p {
        text-align: center;
        margin: auto;
        max-width: 420px;
    }

    .page-checkout-success img {
        display: block;
        margin: 30px auto;
        max-width: 100%;
    }


/*#endregion checkout results*/
/*#region faqs */
.faq-list {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    max-width: 600px;
}

    .faq-list li {
        margin-bottom: 20px;
        transition: background-color linear 0.3s;
        transition-delay: 0.15s;
        color: #333333;
    }

        .faq-list li.open, .faq-list li:hover {
            background-color: #0FAF91;
            color: #fff;
            box-shadow: 0 4px 4px #ccc;
            transition-delay: 0s;
        }

        .faq-list li h2 {
            background-image: url(/Images/Assets/icon-chevron-down-gray.svg);
            background-position: calc(100% - 10px) center;
            background-size: 18px auto;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 40px 8px 10px;
            margin: 0;
        }

        .faq-list li:hover h2,
        .faq-list li.open h2 {
            background-image: url(/Images/Assets/icon-chevron-down-white.svg);
        }

        .faq-list li .text {
            padding: 10px 20px 10px 10px;
            display: none;
        }

            .faq-list li .text p {
                margin: 0 0 10px 0;
            }

            .faq-list li .text a {
                color: #fff;
                text-decoration: underline;
            }
/*#endregion faqs*/
/*#region policy */
.page-policy {
    padding-bottom: 40px;
}


/*#endregion policy*/
/*#region instagram gallery */
.instagram {
    padding: 80px 0;
    background-color: #ededed;
}

    .instagram h2 {
        font-size: 18px;
        min-height: 20px;
    }

        .instagram h2 a {
            text-decoration: none;
            background-image: url(/Images/Assets/instagram.svg);
            background-position: left center;
            background-size: 20px auto;
            padding-left: 30px;
            display: block;
            color: inherit;
            color: #333;
        }

    .instagram .list {
        margin: 0;
        padding: 0 10px;
        display: flex;
        flex-wrap: wrap;
        list-style: none;
    }

        .instagram .list li {
            width: 25%;
        }

            .instagram .list li a {
                padding: 10px;
                display: block;
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
            }

                .instagram .list li a span {
                    position: absolute;
                    left: 10px;
                    right: 10px;
                    bottom: 10px;
                    padding: 40px 10px 10px 10px;
                    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.9));
                    display: none;
                    color: #fff;
                }

                .instagram .list li a:hover span {
                    display: block;
                }
                /*.instagram .list li a:after {
                    content: '';
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    bottom: 10px;
                    left: 10px;
                    background-image: radial-gradient(circle at center, rgba(0,0,0,0) 80%, rgba(0,0,0,0.3));
                    transition: all ease 0.3s;
                }

            .instagram .list li:hover a:after {
                background-image: radial-gradient(circle at center, rgba(0,0,0,0) 0, rgba(0,0,0,0.3));
            }*/
                .instagram .list li a img {
                    display: block;
                    max-width: 100%;
                    margin: auto;
                }

/*#endregion  instagram gallery*/

/*#region why-nomad */

.why-nomad {
    padding: 80px 0;
    background-color: #fff;
}

    .why-nomad ul {
        list-style: none;
        display: flex;
        padding: 0 5px;
        flex-wrap: wrap;
    }

        .why-nomad ul li {
            width: 33.33%;
            text-align: center;
            padding: 20px;
        }

            .why-nomad ul li img {
                display: block;
                margin: auto;
                max-width: 100%;
            }

            .why-nomad ul li p.bold {
                font-size: 18px;
                letter-spacing: 0.2em;
                font-weight: bold;
            }

            .why-nomad ul li p {
                font-size: 14px;
            }
/*#endregion why-nomad*/


@media only screen and (min-width : 320px) and (max-width : 767px) {
    header {
        max-height: 100%;
        overflow: auto;
    }

    .header-row {
        flex-direction: column;
    }

        .header-row .menu-item {
            width: 100%;
        }

    header .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 60px;
        position: absolute;
        left: 0;
        top: 0;
        height: 63px;
        padding: 10px 15px;
        border: none;
        background: none;
        outline: none;
        z-index: 11;
    }

    .nav-toggle span {
        height: 2px;
        background-color: #000000;
        width: 30px;
        margin: 3px 0;
        transition: all ease 0.18s;
    }

        .nav-toggle span:nth-child(1) {
            transform-origin: center
        }

        .nav-toggle span:nth-child(3) {
            transform-origin: center
        }

    header.mobile-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    header.mobile-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.mobile-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mini-cart {
        height: auto;
    }

    .mini-cart-toggle {
        min-width: 70px;
    }

    .mini-cart .popout {
        width: 100vw;
        position: fixed;
        z-index: 12;
        bottom: 0;
        display: block;
        transform: translateX(100%);
        transition: all ease 0.4s;
    }

        .mini-cart .popout.mobile-open {
            transform: translateX(0);
        }

    .mini-cart-items-wrapper {
        height: calc(100% - 80px);
        max-height: none;
    }

    .header-row .logo-item {
        order: -1;
    }

    .header-row .menu-item:not(.logo-item) {
        display: none;
        opacity: 0;
    }

    header.mobile-open {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.21);
        padding-bottom: 10px;
    }

        header.mobile-open .header-row .menu-item:not(.logo-item) {
            animation: MobileNavItemIn ease 1s forwards;
            display: block;
        }

    @keyframes MobileNavItemIn {
        from {
            transform: translateY(-10px);
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .header-row .menu-item .submenu {
        display: block;
        position: static;
        text-align: center;
        left: 0;
        transform: none;
        padding-top: 0;
    }

    .header-row .menu-item:hover .submenu {
        box-shadow: none;
    }

    .header-row .menu-item .submenu a span {
        background-color: #fff;
        padding: 15px 10px;
        display: block;
    }

    .home-gallery .control {
        width: 30px;
        background-size: 20px auto;
    }

    .home-gallery .slides .slide .image {
        background-size: auto 100%;
    }

    .home-gallery .slide .content {
        transform: translateY(33%);
    }

        .home-gallery .slide .content .box {
            margin: auto 15px;
            padding: 15px;
        }

            .home-gallery .slide .content .box .line-one {
                font-size: 22px;
            }

            .home-gallery .slide .content .box .line-two {
                font-size: 16px;
            }

            .home-gallery .slide .content .box .line-three {
                font-size: 12px;
            }

    .home-gallery .icon-down {
        background-size: 100% auto;
        width: 50px;
    }

    .join-network h2 {
        font-size: 12px;
    }

        .join-network h2 span {
            padding-left: 15px;
            padding-right: 15px;
        }

    .join-network.open h2 span {
        display: block;
    }

    .join-network .editor-row {
        flex-wrap: wrap;
    }

        .join-network .editor-row .editor-group {
            width: 100%;
        }

    .featured-products {
        padding: 40px 0 0 0;
    }

        .featured-products .row {
            flex-wrap: wrap;
            padding-top: 10px;
        }

        .featured-products article {
            width: 100%;
            margin-bottom: 20px;
        }

        .featured-products h1 {
            font-size: 16px;
        }

        .featured-products article .title {
            padding-top: 20px;
        }

    .brews-snippet h1 {
        font-size: 16px;
        line-height: 1.6em;
    }

    .brews-snippet {
        padding: 40px 0;
    }

        .brews-snippet .text {
            padding-left: 20px;
            padding-right: 20px;
        }

    .team ul {
        width: auto;
    }

        .team ul li {
            width: 100%;
        }

    .hero {
        padding-left: 15px;
        padding-right: 15px;
        border: none;
    }

        .hero .content p {
            font-size: 16px;
        }

    .partnership-program {
    }

        .partnership-program .title-row h2 {
            width: 100%;
        }

        .partnership-program .content-row {
            flex-wrap: wrap;
        }

            .partnership-program .content-row .col {
                width: 100%;
            }

            .partnership-program .content-row .image img {
                margin-top: 0;
            }

        .partnership-program .statastics .stat {
            width: 50%;
        }

    .about {
        padding-top: 0;
    }

        .about .circles {
            height: auto;
            width: auto;
            margin-bottom: 0;
        }

    .circle {
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0;
        transform: none !important;
        margin: 20px 0;
        padding-left: 80px;
        background-color: transparent !important;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

        .circle:hover {
            box-shadow: none !important;
        }

        .circle img.icon {
            position: absolute;
            left: 0;
            top: 0;
            transform: none;
        }

    .circles .circle-center {
        display: none;
    }

    .circle .title {
        text-align: left;
        top: 0 !important;
        left: 80px !important;
        bottom: unset !important;
        width: calc(100vw - 110px);
        position: static;
    }

    .circle .content {
        position: static !important;
        display: block;
        width: auto;
        margin-top: 10px;
        text-align: left;
    }

    .circle:hover .content {
        transform: none;
    }

    .product-row {
        flex-wrap: wrap;
    }

    .page-shop-product {
        background-image: none;
    }

    .product-row .image-gallery {
        width: 100%;
        background-color: #fff;
    }

    .product-row .content {
        width: 100%;
    }

    .page-shop-product {
        padding: 0;
    }

        .page-shop-product .tabs .tab-list a {
            margin-right: 15px;
        }

            .page-shop-product .tabs .tab-list a:last-child {
                margin-right: 0;
            }

        .page-shop-product h1 small {
            display: block;
        }

    .page-checkout .page-row {
        flex-wrap: wrap;
    }

        .page-checkout .page-row .large-col {
            width: 100%;
        }

        .page-checkout .page-row .summary-col {
            width: 100%;
        }

    .page-checkout .order-summary {
        position: static;
    }

    .page-checkout .expandable .cart-items {
        display: block;
    }

        .page-checkout .expandable .cart-items .cart-item {
            display: block;
            border-bottom: 1px solid #808080;
        }

            .page-checkout .expandable .cart-items .cart-item .td {
                display: block;
                width: 100%;
                border-bottom: 0;
                padding: 20px 0;
            }

    .product-row .variation {
        width: 100%;
        border: none !important;
    }

    .product-category .product-list .product {
        width: 100%;
    }

    .quick-view-container {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: none;
        overflow:auto;
    }
        .quick-view-container .quick-view-close{
            position:fixed;
        }
        .coming-soon .row {
            margin-left: 0;
            flex-wrap: wrap;
            padding: 15px;
        }

    .coming-soon .image {
        width: 100%;
    }

    .coming-soon .text {
        width: 100%;
        text-align: center;
    }

    .contact-page-row {
        flex-wrap: wrap;
    }

        .contact-page-row .col {
            width: 100%;
        }

    .instagram .list li {
        width: 50%;
    }

    .why-nomad ul li {
        width: 100%;
    }

    .footer-row {
        margin: 0 50px;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-row .col {
        width: 100%;
        margin-bottom: 30px;
    }

    .newsletter-form {
        text-align: center;
    }

        .newsletter-form input {
            text-align: center;
        }

    .footer-row .col a {
        text-align: center;
    }
}

