/* ------------------------------------------- */
/* ------------------------------------------- */
:root {
  font-size: 62.5%;
}

/* ------------------------------------------- */
/* ------------------------------------------- */
.block-map.backend {
  text-align: center;
  background-color: #e8e8e8;
  padding: 4rem 0;
}
.block-map.backend a {
  pointer-events: none !important;
}
.block-map.backend #map {
  display: none;
}

.block-map {
  position: relative;
  margin-bottom: clamp(2rem, 0.062745098 * (100vmin + 100vmax) / 2, 6.4rem);
}
.block-map #map {
  width: 100% !important;
  max-width: 100% !important;
  height: 60vh;
}
.block-map #map .marker {
  display: block;
  width: 2rem;
  height: 2rem;
  border: 0.3rem solid #183762;
  border-radius: 50%;
  padding: 0.3rem;
  background-clip: content-box;
  background-color: transparent;
  transition: border-color 0.3s ease-in-out;
  text-align: center;
}
.block-map #map .marker .name-map {
  position: absolute;
  z-index: -1;
  opacity: 0;
  bottom: 2rem;
  left: 0;
  transform: translateX(calc(-50% + 1.25rem));
  transition: opacity 0.3s ease-in-out;
  width: max-content;
}
.block-map #map .marker:hover {
  border: 0.3rem solid #7FC6D8;
}
.block-map #map .marker:hover .name-map {
  opacity: 1;
  z-index: 3;
}
.block-map .mapboxgl-ctrl-bottom-left,
.block-map .mapboxgl-ctrl-bottom-right {
  display: none !important;
}
