body {
  --zoom: 1;
  --zoom-value: max(min(var(--zoom), 10), 1) ;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
}

#overviewWrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.pnlm-panorama-info {
  display: none !important;
}

#panorama {
  width: 100%;
  height: 100%;
  display: none;
}

#overview {
  height: 100%;
  width: auto;
  display: block;
  background-size: cover;
  background-position-x: 0px;
  background-position-y: 0px;
  transform: scale(var(--zoom-value));
}

#overview .arrow, #overview .info {
  transition: transform 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
  --element-zoom: calc(1 / var(--zoom-value));
}

#overview, #overviewWrapper {
  transition: transform 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform-origin: top left;
}

#overviewWrapper #overview {
  background-position-y: 60%;
}

#overviewWrapper:not([smallSize]) {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 10;
}

#overviewWrapper[smallSize] {
  width: 30%;
  height: 30%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 10;
  border-radius: 10px;
  margin: 10px;
  overflow: hidden;
}
#overviewWrapper[smallSize] * {
  --defaultZoom: 0.9;
}

#fullscreenMap {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 10px;
  left: 10px;
}

.selected::after {
  content: "";
  background-image: url("../src/css/img/pointer.svg");
  width: 22px;
  height: 40px;
  display: block;
  background-size: contain;
  transform: translate(0%, -180%);
  scale: 0.7;
  animation: hop 1s ease-in-out 0ms infinite forwards;
}

@keyframes hop {
  0% {
    transform: translate(0%, -180%) rotateY(0deg);
  }
  50% {
    transform: translate(0%, -210%) rotateY(180deg);
  }
  100% {
    transform: translate(0%, -180%) rotateY(359deg);
  }
}/*# sourceMappingURL=main.css.map */