.map-view {
  position: relative;
  user-select: none;
}
.map-view .global-alert {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s;
}
.map-view .global-alert.visible {
  opacity: 1;
}
.map-view .controls {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.map-view button {
  border: none;
}
.map-view .button {
  position: absolute;
  border: none;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  background-color: #eee;
  color: #666;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}
.map-view .button .content {
  width: 28px;
  height: 28px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  transition-duration: 0.3s;
}
.map-view .button .content.active {
  filter: brightness(90%);
}
.map-view .zoom-home {
  right: 108px;
  top: 20px;
  z-index: 10;
}
.map-view .zoom-home .content {
  background-image: url("./Icons/home-solid.svg");
}
.map-view .zoom-in {
  right: 20px;
  top: 20px;
  z-index: 10;
}
.map-view .zoom-in .content {
  background-image: url("./Icons/search-plus-solid.svg");
}
.map-view .zoom-out {
  right: 64px;
  top: 20px;
  z-index: 10;
}
.map-view .zoom-out .content {
  background-image: url("./Icons/search-minus-solid.svg");
}
.map-view .pan-button {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  user-select: none;
}
.map-view .pan-button .content {
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.5);
  transition-duration: 0.3s;
}
.map-view .pan-button .content.active {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .map-view .pan-button .content:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.map-view .pan-right {
  height: 100%;
  width: 0px;
  right: 0;
  top: 0;
  align-items: end;
}
.map-view .pan-right .content {
  background-image: url("./Icons/chevron-right-solid.svg");
}
.map-view .pan-left {
  height: 100%;
  width: 0px;
  align-items: start;
  left: 0;
  top: 0;
}
.map-view .pan-left .content {
  background-image: url("./Icons/chevron-left-solid.svg");
}
.map-view .pan-top {
  height: 0px;
  width: 100%;
  left: 0;
  top: 0;
  justify-content: start;
}
.map-view .pan-top .content {
  background-image: url("./Icons/chevron-up-solid.svg");
}
.map-view .pan-bottom {
  height: 0;
  width: 100%;
  left: 0;
  bottom: 0;
  justify-content: end;
}
.map-view .pan-bottom .content {
  background-image: url("./Icons/chevron-down-solid.svg");
}
.map-view .exit-single-block {
  left: 20px;
  top: 20px;
  display: none;
  z-index: 10;
}
.map-view .exit-single-block .content {
  background-image: url("./Icons/arrow-left-solid.svg");
}
.map-view.single-block .exit-single-block {
  display: flex;
}

.popup {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  background-color: #FFF;
  padding: 8px;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0);
  transition-duration: 0.3s;
}
.popup.visible {
  transform: scale(1);
  opacity: 1;
}