body, html {
  margin: 0;
  padding: 0;
}

.map-view {
  position: relative;
}
.map-view .controls {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.map-view .button {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  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 {
  background-color: #eee;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  width: 28px;
  height: 28px;
}
.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;
}
.map-view .pan-button .content {
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .map-view .pan-button .content:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #0094ff;
  }
}
.map-view .pan-right {
  height: 100%;
  width: 20px;
  right: 0;
  top: 0;
}
.map-view .pan-right .content {
  background-image: url("./Icons/chevron-right-solid.svg");
  padding-top: 16px;
  padding-bottom: 16px;
}
.map-view .pan-left {
  height: 100%;
  width: 20px;
  left: 0;
  top: 0;
}
.map-view .pan-left .content {
  background-image: url("./Icons/chevron-left-solid.svg");
  padding-top: 16px;
  padding-bottom: 16px;
}
.map-view .pan-top {
  height: 20px;
  width: 100%;
  left: 0;
  top: 0;
}
.map-view .pan-top .content {
  background-image: url("./Icons/chevron-up-solid.svg");
  padding-left: 16px;
  padding-right: 16px;
}
.map-view .pan-bottom {
  height: 20px;
  width: 100%;
  left: 0;
  bottom: 0;
}
.map-view .pan-bottom .content {
  background-image: url("./Icons/chevron-down-solid.svg");
  padding-left: 16px;
  padding-right: 16px;
}
.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;
}