/**
 * Présentation publique de la carte et des messages.
 */
.wcsm-map {
    position: relative;
    width: 100%;
    min-height: 240px;
    height: 480px;
    background: #f2f2f2;
}

/**
 * Beaucoup de thèmes imposent des règles globales aux images ; appliquées aux sprites
 * Google, elles rendent les marqueurs invisibles ou déformés à l'intérieur de la carte.
 */
.wcsm-map img {
    max-width: none !important;
    max-height: none !important;
    background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.wcsm-map__message {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90%, 520px);
    margin: 0;
    transform: translate(-50%, -50%);
    text-align: center;
}

.wcsm-info__address {
    margin-top: 0.35rem;
    white-space: pre-line;
}

/**
 * Panneau persistant qui reprend le magasin choisi sous la carte.
 */
.wcsm-selection {
    padding: 1.25rem 1.5rem;
    color: #222;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 0;
}

.wcsm-selection__prompt {
    margin: 0;
    color: #666;
}

.wcsm-selection__name {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.wcsm-selection__address {
    display: block;
    margin: 0;
    font-style: normal;
    white-space: pre-line;
}

.wcsm-selection__content[hidden],
.wcsm-selection__prompt[hidden] {
    display: none;
}
