/* ===== Map ===== */
#map {
	position: relative;
	height: 600px;
	overflow: hidden;

	@media (max-width: 1200px) {
		height: 360px;
	}

	@media (max-width: 767px) {
		height: auto;
	}
}
#map .container {
	height: 100%;
}

.map__iframe {
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
  @media (max-width: 767px) {
    height: 360px;
  }
}

.map__actions {
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100%;

	.container {
		display: flex;
		gap: 12px;
	}

	@media (max-width: 1200px) {
		left: 24px;
		bottom: 20px;
	}

	@media (max-width: 767px) {
		flex-direction: column;
    position: relative;
    bottom: auto;
    left: auto;
    margin: 20px 0;
	}
}

.map__actions .container {
	padding: 0 10px;
	@media (max-width: 767px) {
		flex-direction: column;
    padding: 0;
	}
}
