* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
}

main {
    display: flex;
}

body {
    font-family: 'Nunito Sans', sans-serif;
}

#map {
    width: 75%;
    height: 100vh;
}

.liste {
    width: 25%;
    height: 100vh;
    overflow: auto;
    background: #e7e7e7;
}

.liste .heading {
    background: #8cb110;
    color: #ffffff;
    font-size: 75%;
}

.liste .heading h2 {
    padding: 4%;
}

::-webkit-scrollbar {
    width: 4px;
    height: 14px;
    border-left: 0;
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #8cb110;
    border-radius: 0;
} 

.liste ul.stationList {
    padding: 0 3%;
    list-style-type: none;
}

.liste .station-item {
    margin: 2% 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 3%;
    padding-top: 1%;
}

.liste li:last-child .station-item {
    border: none;
}

.liste .station-item a {
    text-decoration: none;
    font-size: 100%;
    color: #8cb110;
    font-weight: 550;
}

.liste .station-item p {
    font-size: 93%;
    color: #333435;
}

.leaflet-popup-content-wrapper {
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content-wrapper .leaflet-popup-content {
    margin: 0;
    overflow: hidden;
}

.leaflet-popup-content-wrapper h3 {
    padding-left: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    background: #919191;
    color:#ffffff;
    font-size: 14.5px;
}

.leaflet-popup-content-wrapper h4 {
    color: #333435;
    padding-top: 10px;
    padding-bottom: 2px;
    padding-left: 12px;
    font-size: 13px;
}

.leaflet-popup-content-wrapper p {
    padding-left: 12px;
    padding-right: 2px;
    font-size: 13px;
    color: #333435;
    margin-bottom: 14px;
}

.leaflet-popup-content-wrapper .leaflet-popup-content .link {
    padding-left: 12px;
    padding-bottom: 15px;
    padding-top: 0;
}

.leaflet-popup-content-wrapper .leaflet-popup-content .link a {
    color: #8cb110;
    font-size: 13px;
}

.search-tip b {
	color: #919191;
}


