.map-controls {
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	max-width: 780px;
	margin: 30px auto 30px;
}

.map-controls input,
.map-controls select {
	background: #ededed;
	border: 0;
	padding: 8px 12px;
	color: var(--color-black);
	flex: 1;
}

.map-controls select {
	color: var(--color-white);
}

.map-controls button {
	color: var(--color-white);
	padding: 0;
	width: 50px;
	height: 50px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-controls button svg {
	height: 24px;
}

.map-holder {
	margin-bottom: 50px;
}

.map-holder .map {
	height: 660px;
}

.map-inner {
	border: 1px solid #aaa;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.map-infos-content {
	position: absolute;
	inset: 0 0 0 auto;
	background: var(--color-white);
	box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
	padding: 32px 30px;
	transition: transform .25s ease-in-out;
	transform: translateX(calc(100% + 50px));
	pointer-events: none;
	width: 380px;
	font-size: 20px;
}

.map-infos-content.show {
	transform: translateX(0);
	pointer-events: all;
}

.map-infos-closer {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-100%, -50%);
	background: var(--color-white);
	color: #acacac;
	width: 40px;
	height: 80px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 10px 0 0 10px;
	cursor: pointer;
	box-shadow: -5px 3px 5px rgba(0, 0, 0, .25);
}

.map-infos-body h3 {
	color: var(--color-red);
	font: 700 25px/1.25 var(--fs-alt);
	text-transform: uppercase;
	margin: 0;
}

.map-infos-body hr {
	border: 0;
	height: 1px;
	margin: 30px 0;
	background-color: #aaa;
}

.map-infos-body :where(.phone, .email) a {
	color: inherit;
	display: flex;
	align-items: center;
	gap: 8px;
}

.map-infos-body .phone {
	margin-bottom: 1rem;
}

.search-input {
	border: none;
	padding-bottom: 16px;
	width: 100%;
	font: italic 300 14px var(--fs-common);
}

.search-input:focus {
	outline: none;
}

.search-input::-webkit-input-placeholder {
	color: var(--color-grey);
}

.search-input::-moz-placeholder {
	color: var(--color-grey);
}

.search-input:-moz-placeholder {
	color: var(--color-grey);
}

@media (width < 768px) {
	.map-infos-content {
		inset: auto 0 0 0;
		width: auto;
		transform: translateY(calc(100% + 50px));
		box-shadow: 0 -5px 10px rgba(0, 0, 0, .25);
	}

	.map-infos-content.show {
		transform: translateY(0);
	}

	.map-infos-closer {
		top: 0;
		left: 50%;
		height: 45px;
		width: 90px;
		border-radius: 5px 5px 0 0;
		transform: translate(-50%, -100%);
		box-shadow: 0 -5px 5px rgba(0, 0, 0, .25);
	}
}
