body {
    margin: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

#map {
    width: 100%;
    height: 100%;
}

#panel {
    width: 500px;
    background: white;
    box-shadow: 0 0 5px black;
    z-index: 1000;
    font-size: 14px;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
}

@media (orientation:portrait) {
    body {
        flex-direction: column;
    }

    #panel {
        width: auto;
        height: 30%;
    }
}

#list {
    overflow: auto;
    flex: 1;
}

#stats {
    background: #38761d;
    border-top: 5px dashed rgba(255,255,255,.5);
    font-size: 20px;
    color: white;
    text-align: center;
    padding: 10px 0;
}

#list .line {
    border-bottom: 2px solid rgba(0,0,0,.1);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

#list .line.done {
    background-color: #38761d;
    color: white;
}

#list .line .name {
    margin-left: 5px;
}

#list .line .altitude {
    margin-right: 5px;
}


.leaflet-popup-content h1, .leaflet-popup-content h2 {
    margin: 0;
}

.massif-secteur {
    font-size: 10px;
    font-style: italic;
}

.ele {
    font-size: 12px;
}

.leaflet-popup-content h2 span {
    font-size: 11px;
    vertical-align: middle;
    padding: 5px 10px;
    text-transform: uppercase;
}

.diff {
    border: 2px solid black;
    color: black;
}

.saison {
    border-radius: 10px;
    color: white;
    font-weight: bolder;
}

h2 .done {
    background: #38761d;
    border-radius: 10px;
    color: white;
    font-weight: bolder;
}

h2 .done::after {
    content: ' \002713';
}

.leaflet-popup-content p {
    font-style: italic;
}

.circleMarker-active {
    stroke: red;
    fill: red;
}









/* Plugin MousePosition */
.leaflet-container .leaflet-control-mouseposition {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 5px #bbb;
    padding: 0 5px;
    margin:0;
    color: #333;
    font: 11px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}