#nomZoneSurvol {
    color: var(--red);
    font-size: clamp(14px, 1.7vw, 18px);
    margin-left: 5px
}
.compo {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.graphGlobal {
    position: absolute;
    bottom: 2%;
    right: 1%;
    padding: 8px;
    background-color: var(--bg-c);
    width: 500px;
    height: 450px;
    z-index: 2000;
    transform: translateX(200%);

    transition: all .2s;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.graphGlobal h3 {
    color: var(--red)
}
.popupLink {
    font-weight: 600
}
.leaflet-popup-content p {
    margin: 1px 0;
}

.filtres-labels{
    position: absolute;
    top: calc(2% + var(--bandeau-height));
    right: 1%;
    padding: 8px;
    background-color: var(--bg-c);
    width: 300px;
    height: 200px;
    z-index: 2000;
    transform: translateX(200%);

    transition: all .2s;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.liste-labels{
    width: 98%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
}
.liste-labels-2{
    width: 98%;
    max-height: 120px;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom: 1px solid var(--red)
}
.select-label{width: 90%}
.liste-labels > div{
    height: 30px;
    font-size: 12px;
    /* color: var(--global-color-text); */
    font-weight: 600;
}
.liste-checkboxes{
    display: none
}
.checkboxes{
    height: 20px !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.reglette{
    padding: 5px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 30px;
    font-size: 12px;
    color: var(--global-color-text);
    font-weight: 600;
    gap: 10px
}
.liste-zones-labels{
    position: absolute;
    top: calc(4% + var(--bandeau-height) + 210px);
    right: 1%;
    padding: 8px;
    background-color: var(--bg-c);
    width: 300px;
    height: 50%;
    z-index: 2000;
    transform: translateX(200%);

    transition: all .2s;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;

    overflow-y: auto;
    gap: 10px
}
.liste-zones-labels h3{
    height: 30px;
    font-size: 12px;
    font-weight: 600;
}
.ligne-liste-labels{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.ligne-liste-labels p{
    font-weight: 600;
    font-size: 12px;
}
.ligne-liste-labels span{
    font-size: 10px;
    color: var(--global-color-text);
}

.download{
    cursor: pointer;
    padding: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    font-size: 12px;
    color: var(--global-color-text);
    font-weight: 600;
    gap: 10px
}
.download h3{
    font-size: 12px;
}

.download:hover{
    background-color: var(--red);
}
.download:hover h3, .download:hover i{
    color: white;
}