.carte-filpack {
	position: relative;
}

#map_etablissement {
	height: calc(100vh - 403px);
	width: 100%;
	min-height: 600px;
}

.liste_etablissement {
	display: none;
}

.marker_infos {
	display: flex;
	gap: 50px;
	padding: 20px;
}

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

.marker_infos_title,
.marker_infos_right_title {
	font-size: 1.2em;
	font-weight: 700;
	color: #262626;
	margin-bottom: 15px;
	line-height: 1.2;
	height: 40px;
}

.marker_infos > div {
	width: 50%;
	max-width: 200px;
}

.marker_infos_left > div:not(.marker_infos_title),
.marker_infos_right > div:not(.marker_infos_right_title) {
	font-size: 1.1em;
	margin-bottom: 5px;
}

.gm-ui-hover-effect {
	display: flex !important;
	top: 5px !important;
	width: 15px !important;
	height: 15px !important;
	background-color: #d6315f !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;
}

.types_service {
	position: absolute;
	z-index: 10;
	background-color: #fff;
	padding: 20px;
	left: 50px;
	top: 50%;
	transform: translateY(-50%);
	max-width: 300px;
	border-radius: 10px;
}

.type_service {
	font-size: 0.8em;
	margin-bottom: 10px;
	display: flex;
	gap: 15px;
	align-items: center;
}

.types_service > div:not(.type_service) {
	font-size: 1.2em;
	font-weight: 700;
	color: #262626;
	margin-bottom: 15px;
	line-height: 1.2;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.mobile_plus {
	display: none;
	cursor: pointer;
	font-size: 1.6em;
}

.marker_infos_right > div:not(.marker_infos_right_title) {
	display: flex;
	gap: 10px;
}

@media screen and (max-width: 992px) {
	.mobile_plus {
		display: block;
	}

	.type_service {
		opacity: 0;
		transition: all 0.3s ease;
	}

	.types_service.active .type_service {
		opacity: 1;
	}

	.types_service > div:not(.type_service) {
		font-size: 1em;
		min-width: 260px;
	}

	.types_service {
		max-height: 52px;
		overflow: hidden;
		transition: all 0.3s ease;
		padding: 10px 20px;
	}

	.types_service.active {
		max-height: 560px;
		overflow: hidden;
	}
}

@media screen and (max-width: 700px) {
	.types_service {
		left: 0;
		top: 0;
		width: 100%;
		max-width: unset;
		border-radius: 0;
		transform: unset;
	}

	.marker_infos {
		flex-direction: column;
		gap: 20px;
		padding: 10px;
	}

	.marker_infos > div {
		width: 100%;
		max-width: unset;
	}

	.gm-style-iw-d {
		max-height: unset !important;
	}

	.marker_infos_title,
	.marker_infos_right_title {
		height: auto;
	}
}
