#dgel-popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
#dgel-popup-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
#dgel-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f00;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/*Redes*/
.dgel-redes-sociales {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.dgel-redes-sociales li {
    display: inline-block;
}

.dgel-redes-sociales a {
    text-decoration: none;
    font-size: 16px;
    color: #555;
    transition: color 0.3s ease;
}

.dgel-redes-sociales a:hover {
    color: #0073aa; /* Cambia el color al pasar el cursor */
}
