<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.geopopup-modal {
    font-family: inherit;
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 999;
}

.geopopup-modal.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.geopopup-modal .modal-bg {
    position: absolute;
    background: black;
    opacity: 0.75;
    width: 100%;
    height: 100%;
}

.geopopup-modal .modal-container {
    background: #fff;
    position: relative;
    padding: 30px;
    padding-top: 7px;
}

.geopopup-modal .modal-container h3 {
    text-transform: uppercase;
}

.geopopup-modal .modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    outline: none;
    appearance: none;
    color: #80807f;
    background: none;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
}

.geopopup-modal .modal-container .geo-choices {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    margin-top: 30px;
}

.geopopup-modal .modal-container .geo-choices .geo-choice img {
    width: 180px;
    height: 120px;
}

.geopopup-modal .modal-container a {
    color: black;
}

@media (min-width: 768px) {
    .geopopup-modal .modal-container .geo-choices {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .geopopup-modal .modal-container {
        margin: 0 5%;
    }

    .geopopup-modal .modal-container h3, .geopopup-modal .modal-container .geo-description, .geopopup-modal .modal-container .geo-choices .geo-choice {
        margin-bottom: 30px;
    }
}</pre></body></html>