/* Overlay plein écran */
#mgl_popup {
    position: fixed;
    inset: 0; /* top right bottom left = 0 */
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
	padding: 1rem;
}

/* Caché par défaut */
#mgl_popup.masque {
    display: none;
}

/* Conteneur popup */
#mgl_popup .contenu {
    background: #fff;
    width: 100%;
    max-width: 720px; /* à ajuster */
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    border-radius: 1.4rem;
    position: relative;
	overflow: auto; 
}

#mgl_popup .contenu h2 {
	margin-top: 1rem;
}

/* Bouton fermer */
#mgl_popup .btn_fermer {
    position: absolute;
    top: -.5rem;
    right: .7rem;
    background-color: #222;
	border-radius: 49%;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}