/* Style de la pop-up */
/*
div.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9990;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
*/
div.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%; /* Limite la hauteur pour permettre le scroll */
    background-color: #00EA90;
    padding: 30px;
    color: #000;
    overflow-y: auto; /* Permet le défilement vertical */
}

div.popup .row {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
}

div.popup_more_info,
div.popup_adress,
div.popup_contact_phone,
div.popup_social_media,
div.popup_close {
    margin: 40px 0 0 0;
    text-align: left;
}

div.popup_more_info p {
    font-size: 80px;
    font-weight: bold;
    line-height: 80px;
}

div.popup_adress p {
    font-size: 35px;
    font-weight: 400;
}

div.popup_contact_phone a {
    font-size: 35px;
    font-weight: 400;
    color: #000;
    transition: all 0.4s;
}

div.popup_contact_phone a:hover {
    text-decoration: underline;
}

div.popup_social_media a {
    font-size: 35px;
    font-weight: 400;
    color: #000;
    text-decoration: underline;
    transition: all 0.4s;
}

div.popup_close p {
    font-size: 80px;
    font-weight: bold;
}

div.popup_close {
    display: flex;
    justify-content: space-between;
}

p#popupClose {
    font-size: 80px;
    font-weight: bold;
    margin-top: -60px;
    cursor: pointer;
}

@media only screen and (max-width: 468px) {
    div.popup {
        width: 100%;
        height: 100%;
    }
}

@media only screen and (max-width: 368px) {
    div.popup_more_info p {
        font-size: 70px;
        line-height: 60px;
    }

    div.popup_adress p {
        font-size: 25px;
    }

    div.popup_contact_phone a {
        font-size: 25px;
    }

    div.popup_social_media a {
        font-size: 25px;
    }

    p#popupClose {
        font-size: 70px;
    }
}