#map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 1;
}

#mapid {
    width: 100%;
    height: 100%;
}

/* Message plein écran sur la carte, façon Google Maps */
#map-instruction {
    position: absolute;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

#map-instruction.visible {
    opacity: 1;
    visibility: visible;
}

#map-instruction-text {
    max-width: 500px;

    color: #fff;

    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    #map-instruction-text {
        font-size: 19px;
    }
}