@font-face {
    font-family: 'Museo';
    src: url('../fonts/museo-sans-300.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Museo';
    src: url('../fonts/museo-sans-700.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Dinpro';
    src: url('../fonts/DINPRO-300.OTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Dinpro';
    src: url('../fonts/DINPRO-700.OTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}
.commune-label {
    padding: 0;
    font-size: 9px;
    font-weight: bold;
    color: #4b4c50;
    text-align: center;
    box-shadow: none;
	background: none;
	border: none;
	text-transform: uppercase;
	white-space: inherit;
	min-width: 80px;
}
body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
body.sport {
	font-family: 'Museo', sans-serif;
}
body.sante {
	font-family: 'Dinpro', sans-serif;
}
#mainContainer {
	height: 100vh;
}
#mainContainer #flexContainer {
	height: 100%;
	display: flex;
}
#mainContainer #flexContainer #sidebar {
	width: 25%;
	min-width: 450px;
	background: #fff;
	overflow-y: auto;
}
#mainContainer #flexContainer #sidebar #logo {
	width: 240px;
    margin: 5px auto 10px auto;
    display: block;
}
#mainContainer #flexContainer #map {
	width: 75%;
	background: #ccc;
}
#mainContainer #flexContainer .banner {
	height: 200px;
    background-size: 35%;
    background-position: 100% center;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: start;
}
#mainContainer #flexContainer .banner #banner_message {
	font-weight: bold;
	width: 50%;
    padding-left: 20px;
	font-size: 20px;
}
#mainContainer #flexContainer .banner.sport {
	background-color: #F4F2FF;
	color: #333;
}
#mainContainer #flexContainer .banner.sante {
	background-color: #392678;
	color: #fff;
	text-transform: uppercase;
}
#mainContainer #flexContainer #inputSearch {
	position: absolute;
	left: 20px;
	top: 10px;
	z-index: 500;
}
#mainContainer #flexContainer #inputSearch input {
	width: 300px;
	height: 40px;
	border-radius: 15px;
	border: 1px solid #efefef;
	padding: 20px;
	background-color: #fff;
	box-sizing: border-box;
	font-family: sans-serif;
}
#mainContainer #flexContainer #inputSearch div.autocompleted_container {
	border: none;
    border-radius: 15px;
    position: relative;
    top: 6px;
}
#mainContainer #flexContainer #inputSearch div.autocompleted_container table {
	width: 100%;
}
#mainContainer #flexContainer #map .leaflet-left {
	left: 320px;
}
#mainContainer #flexContainer #map .leaflet-left .leaflet-control {
	box-shadow: none !important;
}
#mainContainer #flexContainer #map #geolocateButton {
	left: 320px;
	height: 40px;
	padding: 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #E17711;
	border-radius: 15px;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
}
#mainContainer #flexContainer #map #geolocateButton i {
	margin-left: 10px;
	font-size: 17px;
}