.overview {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.uiElement, .info, .arrow {
  --element-zoom: 1;
  --defaultZoom: 1.5;
  height: 22px;
  width: 22px;
  box-sizing: content-box;
  background-image: url("https://360Grad.frobeen.com/grootmoor/src/css/img/sprites.svg");
  z-index: 2;
  position: absolute;
  transform: translateX(-50%) translateY(-50%) scale(calc(var(--defaultZoom) * var(--element-zoom)));
  transform-origin: center center;
  border: 1px solid black;
  border-radius: 100%;
}

.arrow {
  background-position: -2px -132px;
  cursor: pointer;
}

.info {
  background-position: -2px -106px;
  cursor: default;
}

.arrow:hover .dotDown, .info:hover .dotDown {
  visibility: visible;
}

.dotDown[rotated=top]::after {
  content: "";
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  border-width: 10px;
  border-style: solid;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
}

.dotDown[rotated=top] {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  position: relative;
  transform: translate(calc(-50% + 11px), -150%);
  width: -moz-max-content;
  width: max-content;
  display: block;
  z-index: 1;
  cursor: default;
}

.dotDown[rotated=right]::after {
  content: "";
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  border-width: 10.3px;
  border-style: solid;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateX(calc(-50% - 10px)) translateY(-50%) rotateZ(90deg);
  z-index: 1;
  cursor: pointer;
}

.dotDown[rotated=right] {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  transform: translateX(20%) translateY(-10%);
  position: relative;
  width: -moz-max-content;
  width: max-content;
  display: block;
  z-index: 1;
  cursor: default;
}

.dotDown[rotated=bottom]::after {
  content: "";
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  border-width: 10.3px;
  border-style: solid;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%) translateY(-100%) rotateZ(180deg);
  z-index: 1;
  cursor: pointer;
}

.dotDown[rotated=bottom] {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  transform: translate(calc(-50% + 11px), 120%);
  position: relative;
  width: -moz-max-content;
  width: max-content;
  display: block;
  z-index: 1;
  cursor: default;
}/*# sourceMappingURL=main.css.map */