::-webkit-scrollbar {
    width: 7px;
    border-radius:10px
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f194;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #42424273; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #55555548; 
  }

#logo {
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 200px;
}



#mapToggle {
    position: absolute;
    top: 13px;
    left: 70px;
    width: 40px;
    height: 40px;
    padding: 22px;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.425);
  }
  
  .mobile #mapToggle {
    width: 50px;
    height: 50px;
  }
  
  #mapToggle .text {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 100%;
    line-height: 30px;
  }
  
  #mapToggle .icon {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 30px;
    height: 30px;
  }
  
  .mobile #mapToggle .icon {
    top: 10px;
    right: 10px;
  }
  
  #mapToggle .icon.on {
    display: none;
  }
  
  #mapToggle .icon.off {
    display: block;
  }
  
  #mapToggle.enabled .icon.on {
    display: block;
  }
  
  #mapToggle.enabled .icon.off {
    display: none;
  }

  #overlayMap {
    position: absolute;
    left: 10px;
    top: 60px;
    height: 100vh;
    /* padding: 10px; */
    /* background-color: white; */
    z-index: 999;
    display: none;
    /* justify-content: center; */
    /* align-items: center; */
    flex-direction: column;
    
}
  
  #mapContainer {
    position: relative;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .imagen-centrada {
    max-height: 100vh;
    max-width: 94%;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}
  
  
    #overlayMap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .logo {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    padding: 10px 20px;
    border-radius: 0px;
    background-color: white;
  }
  .logo img {
    width: 150px;
    height: auto;
  }
  
  .title {
    position: absolute;
    top: 10px; /* Ajusta la posición vertical */
    right: 10px;
    font-size: 1.5rem; /* Ajusta el tamaño de fuente a tu gusto */
    color: #5a090d; /* Ajusta el color de texto */
    padding: 10px 20px;
    border-radius: 8px; /* Bordes redondeados suaves */
    z-index: 1000; /* Asegura que esté por encima */
    font-weight: bold; /* Opcional: para que resalte */
    text-align: center; /* Alineación de texto */
  }
  
  
    .hotspot-c {
     position: absolute;
    width: 15px;
    height: 15px;
    background-color: #79151a;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    cursor: pointer;
    pointer-events: auto;
    transition-duration:0.5s
    }
  
    .hotspot-c::after {
      content: attr(data-label);
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 24, 55, 0.98);
    padding: 11px 16px;
    font-size: 17px;
    color: #b38e00;
    white-space: nowrap;
    border-radius: 4px;
    pointer-events: none;
    font-weight: bold;
    display: none;
    }
  
  .hotspot-c:hover{
  width: 19px;
    height: 19px;
  transition-duration:0.5s
  }
  
  .hotspot-c:hover::after {
    display: block;
      z-index:999999
  }
    #showOverlayButton {
      position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #460303;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 21px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition-duration:0.5s;
    }
  #showOverlayButton:hover{
      transition-duration:0.5s;
      background-color: #0e1533;
  }