<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.detail-map {
    position: relative;
    width: 100%;
    height: 33.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--greyColor50);
}

.detail-map__title {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.maplibregl-canvas {
    cursor: default;
}

.detail-map.detail-map--visible {
    background: var(--detailMapBackground) no-repeat center;
    background-size: cover;
}

@media(min-width: 813px) {
    .detail-map.detail-map--visible {
        background: var(--detailMapBackgroundLarge) no-repeat center;
        background-size: cover;
    }
}
</pre></body></html>