#custom-popup {
    display: none;
    position: fixed;
    top: 50% !important; /* Centra verticalmente en el medio de la pantalla */
    left: 50% !important; /* Centra horizontalmente en el medio de la pantalla */
    transform: translate(-50%, -50%); /* Centra el contenido del popup */
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
    width: 300px !important;
}

/* Estilo para el t¨ªtulo del popup */
#custom-popup h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Estilo para la imagen destacada del popup */
#custom-popup img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Estilo para los botones del popup */
#custom-popup a.custom-popup-button,
#custom-popup button {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-weight:bold;
	border-radius:3px;
}

#custom-popup a.custom-popup-button2,
#custom-popup button {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #24D366;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-weight:bold;
	border-radius:3px;
}

#custom-popup a.custom-popup-button:hover,
#custom-popup button:hover {
    background-color: #005bbd;
}

/* Estilo para el bot¨®n de cierre del popup */
#custom-popup button {
    background-color: #e53935;
}

#custom-popup button:hover {
    background-color: #c62828;
}