
.multiple_map {
	display: flex;
	height: 500px;
}

.multiple_map_liste_etablissements {
	width: 30%;
	position: relative;
	overflow-y: auto;
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
}

.multiple_map_single_etablissement_title {
	font-size: 1em;
	line-height: 1.2;
	font-weight: 600;
	font-family: 'Quicksand';
	margin-bottom: 5px;
}

#multiple_map_map {
	width: 70%;
	position: relative;
	flex:1;
}

#multiple_map_map.loading::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #EDEDEC;
}

#multiple_map_map.loading::before {
	content: '';
	height: 0;
	width: 0;
	padding: 15px;
	border: 6px solid #ccc;
	border-right-color: #888;
	border-radius: 22px;
	-webkit-animation: rotate 1s infinite linear;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.multiple_map_single_etablissement {
	padding: 20px;
	cursor: pointer;
	border-bottom: 1px solid #f2f2f2;
}

.multiple_map_single_etablissement:hover, .multiple_map_single_etablissement.active {
	background-color: #EDEDEC;
}

.multiple_map_single_etablissement_adresse {
	line-height: 1.2;
	font-size: 0.9em;
}

.multiple_map_single_etablissement_tel {
	line-height: 1.2;
	font-size: 0.9em;
	font-weight: 500;
}

.multiple_map_single_etablissement_mail {
	line-height: 1.2;
	font-size: 0.9em;
}

.gm-style-iw {
	padding: 0 !important;
}

.gm-style-iw-d {
	width: 110%;
}

.map_tooltip_header {
	background-color: #d6315f;
	padding: 15px 35px 15px 20px;
	color: white;
	font-family: 'Quicksand';
	font-size: 1.4em;
}

.map_tooltip_content {
	padding: 20px;
}

.gm-ui-hover-effect {
	display: flex !important;
	top: 5px !important;
	width: 15px !important;
	height: 15px !important;
	background-color: #ccc5 !important;
	border-radius: 50px !important;
	justify-content: center !important;
	align-items: center !important;
	right: 5px !important;
	opacity: 1 !important;
	position: relative;
}

.gm-ui-hover-effect::before {
	content: 'x';
	position: absolute;
	left: 52%;
	top: 43%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	color: white;
	line-height: 1;
}

.gm-ui-hover-effect img {
	width: 10px !important;
	height: 10px !important;
}

.map_tooltip_content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.map_tooltip_content img {
	width: 15px;
	height: 13px;
}

.map_tooltip_adresse, .map_tooltip_mail, .map_tooltip_tel {
	display: flex;
	align-items: center;
	gap: 5px;
}

@media only screen and (max-width : 767px) {
	.multiple_map_liste_etablissements {
		width: 100%;
		display: flex;
	}
	
	.multiple_map {
		flex-direction: column;
	}
	
	.multiple_map_single_etablissement {
		min-width: 52%;
	}
	
	#multiple_map_map {
		width: 100%;
		height: 350px;
	}
}

@media only screen and (max-width : 480px) {
	.multiple_map_single_etablissement {
		min-width: 70%;
	}
}
