* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  background-color: #16c8e7;
  color: #fff;
}

.pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.minimap {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 300px;
  height: 200px;
  border: 2px solid #442929;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.link-hotspot-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.link-hotspot {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}



.circle-button {
  position:absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #333333; /* Color de fondo */
  color: white; /* Color del icono */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  transition: background-color 0.3s, transform 0.2s;
}

.circle-button:hover {
  background-color: #000000; /* Color al pasar el mouse */
  transform: scale(1.1); /* Efecto de agrandamiento */
}

.circle-button:active {
  transform: scale(0.95); /* Efecto al hacer clic */
}


.checkbox {
  display: none;
}

.checkbox-label {
  position:absolute;
  top: 10px;
  left: 10px;
  width: 120px;
  height: 50px;
  background-color: #333333; 
  color: white; 
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px; 
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.checkbox-label:hover {
  background-color: #000000;
  transform: scale(1.02);
}

.checkbox-label:active {
  transform: scale(0.95);
}

.checkbox:checked + .checkbox-label {
  background-color: #4CAF50; 
}

.checkbox-label:before {
  /* content: '✓'; */
  font-size: 20px;
  transition: opacity 0.3s;
}

.checkbox:checked + .checkbox-label:before {
  content: '✔';
}

.boton{
  /* width: 200px; */
  height: 50px;
  background-color: #333333; 
  color: white; 
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px; 
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.boton:hover {
  background-color: #000000;
  transform: scale(1.02);
}

.input-text{
  height: 40px;
  font-size: 16px;
  text-align: center;
}

.referencia-container{
  position: absolute; left: 50%; transform: translate(-50%, 10px);
  left: 50%;
  transform: translate(-50%, 10px);
  background: #8d7099;
  padding: 10px;
  border-radius: 5px;
}


select {
  background-color: #4C4C4C; 
  color: white;
  border: none; 
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer; 
  outline: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}

select:focus {
  box-shadow: 0 0 5px #219653;
}

select::after {
  content: '▼';
  position: absolute;
  right: 10px;
  pointer-events: none;
}