.map {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.map__map {
  width: 100%;
  height: 100%;
}
.map__filter-blackout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
}
.map__filter-saturation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgb(0, 0, 0);
  mix-blend-mode: saturation;
}
.map__cluster {
  left: -25px;
  top: -25px;
  height: 55px;
  width: 48px;
  position: absolute;
}
.map__cluster-number {
  left: 0;
  top: 0;
  position: absolute;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__balloon-subtitle {
  color: var(--color-grey-1);
  display: inline-block;
  margin-bottom: 3px;
  font-size: 9px;
  line-height: 11px;
}
.map__balloon-title-container {
  display: flex;
  margin-bottom: 16px;
  max-width: 220px;
}
.map__balloon-title {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  display: inline-block;
}
@media screen and (min-width: 1440px) {
  .map__balloon-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.map__controls {
  position: absolute;
  top: calc(50% - 46px);
  right: 16px;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}
.map__balloon-icon {
  width: 12px;
  height: 12px;
  margin: 2px;
  margin-right: 6px;
  object-fit: contain;
}
@media screen and (min-width: 1440px) {
  .map__balloon-icon {
    margin-top: 5px;
  }
}
.map__control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .map__control-button:hover {
    background-color: var(--color-grey-2);
    transition: all 0.2s;
  }
}
.map .ymaps-2-1-79-balloon {
  border-radius: 12px;
}
.map .ymaps-2-1-79-balloon__layout {
  border-radius: 12px;
}
