:root {
    --grey: rgb(186, 186, 186);
    --site-color: rgb(255, 74, 24);
    --body-margin: 1em;
    --easing: cubic-bezier(0.206, 0.142, 0.153, 1.005)
}

@font-face {
    font-family: "sans-serif";
    src: url();

}


body {
    font-family: "Walbaum", sans-serif;
    margin: 0em;
    background-color: whitesmoke;

}

#map {
    height: 100dvh;
}




em {
    font-style: italic;
}

strong {
    font-family: "Walbaum", sans-serif;
    font-variant: small-caps;
}


nav .highlight {

    color: var(--site-color);



}

a {
    font-family: "FF Ultra", sans-serif;
    font-weight: 900;
    line-height: 1;
    font-variant: none;
    text-transform: lowercase;
    color: black;
    text-decoration: none;

}

details summary:hover {
    cursor: s-resize;
}

details[open] summary:hover {
    cursor: n-resize;
}

a:hover,
details summary:hover {
    color: var(--site-color) !important;
}

a:visited {

    color: var(--grey)
}

#map .highlight {
    --color: rgb(255, 212, 83);


    box-shadow: -6px 6px 12px #b1b1b1,

}


.cluster {
    opacity: 1 !important;
    /* Empêche Leaflet de modifier l'opacité */
    font-family: 'FF Ultra';
}



.cluster,
.city {
    transition: all 0.1s ease-in-out;
    --color: var(--site-color);
    fill: var(--color);
    opacity: 1;
    outline: none;
    stroke: transparent;
    fill-opacity: 1;

    background-color: var(--color);

    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 27px;
    font-size: 12px;
    font-weight: bold;
}

path.larven {
    fill: rgb(138, 129, 236);
    fill-opacity: 1;
    stroke: transparent;
    fill-opacity: 1;
    z-index: 500000000;
}

.cluster:hover,
.city:hover {

    --color: rgb(255, 212, 83);
}


.leaflet-popup {
    transition: all 0s;
}

.leaflet-popup>.leaflet-popup-content-wrapper {
    background-color: rgb(255, 255, 255);
    border-radius: 0px;
    box-shadow: none;
    text-align: center;
    transform: translate(0, 50%);
    pointer-events: none;
    transition: all 0s;
    border-radius: .2em;

}

.leaflet-popup.leaflet-zoom-animated {}

.leaflet-popup>.leaflet-popup-content-wrapper>.leaflet-popup-content {
    font-size: 14px;
    line-height: .5;

}

.leaflet-popup>.leaflet-popup-content-wrapper>.leaflet-popup-content>a {
    font-family: "Walbaum", sans-serif !important;
    color: black;
    font-variant: small-caps slashed-zero;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
    transition: all 0s !important;
    transform: scale(1.1);
}

.leaflet-popup-tip-container,
.leaflet-popup-close-button {
    display: none;
}

img.leaflet-marker-icon {
    filter: invert(1);
}

@media (width <=1250px) {}

@media (1250px >=width) {
    body {
        font-size: 1em;
    }

    .leaflet-control-attribution {
        display: none;
    }
}