.contacts-map {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .contacts-map {
    flex-direction: column;
    gap: 40px;
  }
}
.contacts-map__subtitle {
  margin-bottom: 48px;
}
@media screen and (max-width: 900px) {
  .contacts-map__subtitle {
    margin-bottom: 24px;
  }
}
.contacts-map__details {
  flex: 0 0 33%;
  margin-bottom: 32px;
}
@media screen and (max-width: 900px) {
  .contacts-map__details {
    margin-bottom: 0;
  }
}
.contacts-map__map-container {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .contacts-map__map-container {
    height: 95vw;
  }
}
.contacts-map__map {
  width: 100%;
  height: 100%;
}
.contacts-map__controls {
  position: absolute;
  top: calc(50% - 42px);
  right: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 900px) {
  .contacts-map__controls {
    right: 12px;
  }
}
.contacts-map__control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}
.contacts-map__filter-blackout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 170, 255, 0.2);
}
.contacts-map__filter-saturation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgb(0, 80, 120);
  mix-blend-mode: hue;
}
.contacts-map__cluster {
  left: -25px;
  top: -25px;
  height: 55px;
  width: 48px;
  position: absolute;
}
.contacts-map__cluster-number {
  left: 0;
  top: 0;
  position: absolute;
  color: var(--color-white-2);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}