@keyframes clignotement {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

.clignotant {
    animation: clignotement 1s infinite;
}

.zoom_map {
transform: scale(1.4);
}
