<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.simple-popup {
    position: fixed;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #ffffffb3;
}

.simple-popup.show {
    visibility: visible;
    opacity: 1;
}

.simple-popup .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: none;
}

.simple-popup .close-button:before,
.simple-popup .close-button:after {
    content: '';
    width: 2px;
    height: 100%;
    display: block;
    background: #000;
    position: absolute;
    top: 0px;
    left: 9px;
}

.simple-popup .close-button:before {
    transform: rotate(135deg);
}

.simple-popup .close-button:after {
    transform: rotate(-135deg);
}

.close-button--mobile {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #F7F7F1;
    border: none;
    height: 40px;
    font-size: 14px;
    padding: 0px;
    text-transform: uppercase;
}

.simple-popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 717px;
    padding: 60px 18px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    background: #e5e4c9e6;
    border-radius: 4px;
    overflow: scroll;
}

.simple-popup h1,
.simple-popup h2,
.simple-popup h3,
.simple-popup p {
    color: #002216;
}

.simple-popup p {
    font-size: 16px;
}

.simple-popup .hdln-4 {
    font-size: 14px;
}

.simple-popup-heading {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}

.simple-popup--layout-two {
    max-width: 600px;
    margin: 0px auto;
}

@media (min-width: 768px) {
    .simple-popup-heading {
        text-align: center;
        font-size: 38px;
        margin-top: 32px;
        margin-bottom: 48px;
    }
    .simple-popup-content {
        padding: 33px;
        max-height: 90%;
    }
    .simple-popup .close-button {
        display: block;
    }
    .close-button--mobile {
        display: none;
    }
    .simple-popup-content--body {
        max-width: 600px;
        margin: 0px auto 32px auto;
    }
}

@media (max-width: 767px) {
    .simple-popup-content {
        transform: none;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        transform: translate(0px, 0px);
        margin-top: 0px;
    }
    .simple-popup-content img {
        margin-bottom: 20px;
        max-width: 500px;
        width: 100%;
    }
}

.simple-popup--layout-one {
    text-align: center;
}

.simple-popup--layout-one .simple-popup-heading {
    margin-top: 0px;
}

.simple-popup-heading--spacing {
    margin: 24px 0px;
}

@media (min-width: 768px) {
    .simple-popup--layout-one {
        min-height: 360px;
    }
    .simple-popup--layout-one,
    .simple-popup--layout-one .simple-popup-heading {
        text-align: left;
    }
    .simple-popup--layout-one .simple-popup-heading {
        margin-bottom: auto;
    }
    .simple-popup--layout-one img {
        width: 50%;
        padding-right: 22px;
        object-fit: cover;
    }
    .simple-popup-heading--spacing {
        margin: 62px 0px;
    }
}

.simple-popup--layout-two {
    text-align: center;
}

.simple-popup--layout-two .simple-popup-heading {
    /* margin: 62px 0px; */
}


/* DARK
=========================================================*/

.simple-popup--dark {
    background: #00221699;
}

.simple-popup--dark .simple-popup-content {
    background: #f7f7f1e6;
}
</pre></body></html>