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

#container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
}

#panorama-container {
  width: 100%;
  height: 100%;
}

/* #scene-title {
  position: absolute;
  bottom: 20px;
  left: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 7px 7px;
  border-radius: 10px;
  z-index: 1000;
  font-size: 10px;
  width: 100px;
} */

.hotspot-text {
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  display: none;
  z-index: 1000;
}

.hotspot-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 48%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

/* Loader */
#loading-screen{
  position: fixed;
  bottom: 50px;
  left: 10px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
#img-loading{
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

#toggleButton{
  top: 100px;
  left: 100px;
  z-index: 1000;
  color: white;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  border: none;
}

#ocultarPanelConfig{
  position: fixed;
  z-index: 1000;
  bottom: 100px;
  right: 10px;
  font-size: 20px;
  height: 20px;
  width: 100px;
}






@media (max-width: 480px) {

  .hotspot-text{
    display: block !important;
    background-color: red;
  }
}