/* Estilos del popup */
.popup {
	height:40%;
  width: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
background-color:#000; 
 border-radius: 25px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none; /* ocultar el popup por defecto */
}


/* Estilos para el fondo oscuro */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none; /* ocultar el fondo oscuro por defecto */
}

/* Estilos para cerrar el popup */
.close {
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
  font-size:26px;
  color:#FFF;
  font-weight:bold;
}

/* Estilos adicionales para hacer el popup responsive */
@media only screen and (max-width: 500px) {
  .popup {
    width: 65%;
    padding: 5px;
	  top: 50%;
  left: 40%;
  }
}
