<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.map img {
    width: 100%;
    height: auto;
}

.map {
    position: relative;
    max-width: 1100px;
    margin: 0;
    padding: 0;
}

.map-popup {
    background: rgba(0, 0, 0, 0.85);
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

    .map-popup:before {
        content: "Close";
        color: white;
        position: absolute;
        top: 10px;
        right: 50%;
        transform: translateX(50%);
        font-size: 36px;
        cursor: pointer;
        line-height: 1;
    }

    .map-popup .popup-content {
        color: #000;
        /* padding: 2rem; */
        background-color: #fff;
        border-radius: 4px;
        position: relative;
        opacity: 1;
        will-change: transform, opacity;
        height: calc(100vh - 4rem);
        align-self: flex-end;
        border: solid 1px #ddd;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
        width: 100%;
    }

.popup-content .close {
    position: absolute;
    top: 5px;
    right: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

.map-popup .popup-content h3 {
    margin-top: 0;
}

.map-popup.open {
    opacity: 1;
    visibility: visible;
}

.open .popup-content,
.open iframe {
    -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.context-content {
    background-color: #fff;
    opacity: 0;
    will-change: transform, opacity;
    align-self: flex-end;
    position: fixed;
    height: 100vh;
    z-index: 1;
    border: solid 1px #ddd;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}

    .context-content::before {
        content: "\00d7";
        position: absolute;
        right: 10px;
        top: 0;
        cursor: pointer;
        color: #000;
        font-size: 20px;
    }

    .context-content.right {
        bottom: 0;
        left: 0;
        top: 0;
    }

    .context-content.left {
        top: 0;
        right: 0;
    }

    .context-content.left-top {
        top: 0;
        right: 0;
    }

    .context-content.right-bottom {
        top: 16px;
        left: 16px;
    }

    .context-content .close {
        position: absolute;
        top: 5px;
        right: 12px;
        cursor: pointer;
        font-weight: bold;
        font-size: 18px;
    }

    .context-content h3 {
        margin-top: 0;
    }

    .context-content .context-title,
    .popup-content .popup-title {
        background: #fff;
        padding: 1rem 0;
        color: #000;
        border-radius: 4px 4px 0 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.19);
        margin: 0 1rem;
    }

.popup-content .video-caption {
    padding: 1rem;
}

.context-content .context-body,
.popup-content .popup-body {
    padding: 1rem;
}

.context-content.open {
    opacity: 1;
    visibility: visible;
    z-index: 999999;
}

.open .context-content {
    -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.marker {
    cursor: pointer;
    position: absolute;
    z-index: 5;
    display: inline-block;
    width: 15px;
    height: 15px;
    color: #fff;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    background-color: #1e3c72;
    border: 5px solid #fff;
    transition: all 300ms;
    animation: pulse 2s linear infinite;
    -webkit-animation: pulse 2s linear infinite;
    -moz-animation: pulse 2s linear infinite;
}

.map-item {
    position: absolute;
}

@media only screen and (min-width: 768px) {
    .map-popup .popup-content {
        margin: 0;
        width: 60vw;
        height: auto;
        align-self: center;
    }

    .map-popup:before {
        content: "\00d7";
        top: 0;
        right: 20px;
        font-size: 72px;
        transform: none;
    }

    .context-content {
        position: absolute;
        height: max-content;
        width: 300px;
        border-radius: 4px;
    }

        .context-content.right {
            bottom: -12px;
            left: 10px;
        }

        .context-content.left {
            top: 10px;
            right: -12px;
        }

        .context-content.right-bottom {
            top: 10px;
            left: 10px;
        }
}

@media only screen and (min-width: 800px) {
    .context-content {
        margin: 0;
        width: 400px;
        height: max-content;
        align-self: center;
        position: absolute;
    }

    .marker {
        height: 30px;
        width: 30px;
    }

    .context-content.right {
        bottom: -18px;
        left: 17px;
        top: auto;
    }

    .context-content.left {
        top: 18px;
        right: -18px;
    }

    .context-content.left-top {
        top: auto;
        right: -18px;
        bottom: -18px;
    }

    .context-content.right-bottom {
        top: 16px;
        left: 16px;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    8% {
        -webkit-transform: scale(1);
        opacity: 0.9;
    }

    15% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    30% {
        -webkit-transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    8% {
        -webkit-transform: scale(1);
        opacity: 0.9;
    }

    15% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    30% {
        -webkit-transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes scale {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
</pre></body></html>