/************************** GENERAL *************************/
body, html, ul {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
li {
    list-style: none;
}
label, input[type=checkbox], input[type=radio], input[type=date], input[type=color] {
    cursor: pointer;
}
/****************************** ELEMENTS PRINCIPAUX *******************************/
#map {
    width: 50%;
    z-index: 0;
    background-color: white;
}
body {
    display: flex;
    height: 100vh;
}
/****************************************** SECTION LEGENDE *********************************************/
#info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2em;
    max-width: 655px; /* empêche le redimentionnement de la carte en fonction de la taille de la section */
}
.etiquette {
    text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 10px #FFF;
    background: transparent;
    font-size: 10px;
    padding: 0;
    border: 0px solid black;
    box-shadow: none;
    font-weight: bold;
}

/**************** SECTION INFO **************/
h4 {
    text-decoration: underline;
    font-weight: 100;
}
ul {
    margin-left: 30px;
    margin-bottom: 1em;
}