/** Shopify CDN: Minification failed

Line 40:14 Expected identifier but found whitespace
Line 40:16 Unexpected "{"
Line 40:28 Expected ":"
Line 40:33 Expected ":"
Line 153:0 Unexpected "{"
Line 153:1 Expected identifier but found "%"
Line 169:0 Unexpected "{"
Line 169:1 Expected identifier but found "%"
Line 171:0 Unexpected "{"
Line 171:1 Expected identifier but found "%"
... and 2 more hidden warnings

**/
.header {
    padding: 20px 3rem;
    text-align: center;
    position: relative;
}

.section-header {
    position: sticky;
    z-index: 1000;
}

.header__heading {
    margin: 0;
}

.header__heading-link {
    text-decoration: none;
}

.header__heading-logo-wrapper {
    display: inline-block;
}

.header__heading-logo {
    max-width: {{ logo_width }}px;
}

.exit-button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    padding: 10px 20px;
    background: none;
    text-decoration: underline;
    text-underline-offset: 25%;
    text-decoration-thickness: 8.5%;
    font-family: GTWalsheimBody;
    font-size: 18px;
    line-height: 23px;
    cursor: pointer;
    transition: opacity;
    transition-duration: 300ms;
}

.exit-button:hover {
    opacity: 0.6;
    transition: opacity;
    transition-duration: 300ms;
}

.bundle-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
}

.bundle-modal-wrapper .modal {
    display: flex;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.bundle-modal-wrapper .modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: auto;
}

.bundle-modal-wrapper .modal-header {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 16px;
    color: #144431;
}

.bundle-modal-wrapper .modal-description {
    display: inline-block;
    margin-bottom: 30px;
    color: #144431;
    font-size: 20px;
    line-height: 30px;
}

.bundle-modal-wrapper .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bundle-modal-wrapper .modal-button {
    padding: 12px 20px;
    min-width: 161px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: GTWalsheimBody;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: none;
    overflow: hidden;
    text-wrap: nowrap;
}

.bundle-modal-wrapper .modal-active {
    visibility: visible;
    opacity: 1;
}

.modal-open {
    overflow: hidden;
}

.modal-open body {
    filter: blur(5px);
}

{% if section.settings.sticky_header_type == 'on-scroll-up' %}
.section-header.scrolled-past-header .header-wrapper.gradient:not(:focus-within) {
    animation: headerReveal 0.4s ease;
}
@keyframes headerReveal {
    0% {
        background-color: transparent;
        transform: translateY(-2em);
    }
    50% {
        transform: translateY(0em);
    }
    100% {
        background-color: var(--gradient-background);
    }
}
{% endif %}

{% if section.settings.sticky_header_type == 'reduce-logo-size' %}
.scrolled-past-header .header__heading-logo-wrapper {
    width: 75%;
}
{% endif %}

@media (min-width: 744px) {
    .exit-button {
        right: 60px;
    }
}