.carte-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
	align-items: center;
	justify-content: center;
	margin: 0 -15px;
}

.carte-cities {
	width: 100%;
	flex: 1 1 40%; 
	max-width: 40%;
	padding: 0 15px; 
}
.carte-map { 
	width: 100%;
	flex: 1 1 60%; 
	max-width: 60%;
	padding: 0 15px; 
}

.carte-cities-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0
}

.carte-cities-list > a {
	background: #e5e5e5;
	font-size: 13px;
	font-weight: 700;
	color: #000;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 5px;
	padding: 5px;
	transition: all ease-in-out .3s
}

.carte-cities-list > a:hover, .carte-cities-list > a.active {
	background: #e64580;
	color: #FFF;
}

#map-plancul a {
	fill: #b9b9b9;
}

#map-plancul a:hover, #map-plancul a.active {
	fill: #3366ff;
}

.status {
	position: absolute;
	right: 0;
	top: 0;
	background: rgba(0,0,0,0.5);
	padding: 3px 10px;
	font-size: 12px;
	font-weight: normal;
	z-index: 100;
	color: #fff;
}

.status strong {
	font-weight: normal
}

.status strong:before {
	content: ' ';
	width: 10px;
	height: 10px;
	background: rgba(255,255,255,.5);
	display: inline-block;
	margin-right: 5px;
	border-radius: 50%;
}

.status.online strong:before {
	background: #25bb90;
}

@media (max-width: 767px) {

.carte-cities, .carte-map {
	max-width: 100%;
	flex: 1 1 100%;
}

}

.region {fill: #000; stroke: #fff; stroke-width: 1px}
.region.active {fill: #e64580;}
.region:hover {fill: #e64580;}