.mapContainer {
  display: flex;
  position: relative;
}
.mapContainer > *:first-child {
  width: 100%;
  height: 100%;
}
.mapContainer:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  background-color: #000;
  opacity: 0.8;
}
.mapContainer.active:after {
  pointer-events: none;
  opacity: 0;
}
/*подсказка карты*/
.mapHelp {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  box-shadow: rgb(255 255 255) 0px 0px 10px;
  opacity: 0;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  transition: opacity 0.3s;
  text-align: center;
  width: 14em;
  font-size: 14px;
  line-height: 1.4;
  color: #303030;
}
.mouseIn > .mapHelp {
  opacity: 1;
}
.active > .mapHelp {
  opacity: 0;
}
