/*Contrôle aire*/
.control-aire{
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: none;
    display: flex;
    flex-direction: column;
}
.leaflet-control.leaflet-control-layers ,
.control-aire.leaflet-control{
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 5px;
    width: 150px;
    display: flex;
    flex-direction: column;
    padding: 2px 4px;
    font-weight: lighter;
    font-size: 12px;
    text-transform: capitalize !important;
}

.leaflet-control.leaflet-control-layers .ctrl-item,
.control-aire.leaflet-control .ctrl-item{
    display: flex;
    align-items: center;
}

.leaflet-control.leaflet-control-layers label,
.control-aire.leaflet-control label{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 1px 0;
    height: 18px;
    padding-left: 1px;
}
.leaflet-control.leaflet-control-layers label input,
.control-aire.leaflet-control label input{
    margin-right: 1px;
}
.leaflet-control.leaflet-control-layers label span,
.control-aire.leaflet-control label span{
    font-size: 12px;
    line-height: 25px;
    letter-spacing: normal;
    font-weight: lighter;
    text-transform: capitalize !important;
}
/*orientation*/
.orientation{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    left: -5px;
    border: none;
    overflow: hidden;
}
.orientation img{
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
}
/*Legende*/
.legend {
    background: rgba(255, 255, 255, 0.95); /* fond blanc */
    border-radius: 5px;
    color: #222121; /* texte */
    display: flex;
    flex-direction: column;
    min-width: 120px;
    padding: 6px 7px;
    font: 12px / 14px Roboto, Helvetica, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);/* ombre */
}

.legend-titre{
    margin: 0;
    margin-bottom: -12px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
}
.legend-item{
    display: flex;
    flex-direction: row;
    line-height: 1.6;
}

.legend-icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2px;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border: 1px solid #333;
}
.legend-icon.icon-niveau{
    border: none;
}

.legend-icon i{
    position: absolute;
    top: 0;
    left: 0;
    /*transform: translate(-50%,-50%);*/
    width: 100%;
    height: 100%;
}
.legend-text{
    font-size: 14px;
}