canvas{
  cursor: grab;
}canvas:active{
  cursor: grabbing;
}
#button-hotspot{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 50px;
}
#button-switch{
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 50px;
}

#buttons-container{
  position: absolute;
  top: 0;
  left: 0;
}
#buttons-container button{
  margin: .3vw;
}

.hotspot-label{
  position: absolute;
  z-index: 999;
/*  display: inline-block;*/
  top: 0;
  left: 0;
  font-family: sans-serif;
  font-size: 2.5vh;
  font-weight: bold;
  color: white;
  transform: translate(-50%,-100%) scale(0.1);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  display: none;
/*
  -webkit-text-fill-color: white; 
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.5);
*/
}
.hotspot-label.is-visible{
  transform: translate(-50%,-200%) scale(1);
  opacity: 1;
  pointer-events: none;
}
#debugpoi{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  background: black;
  z-index: 9999;
}
