/* Pop-up d'information : incident de cybersécurité */
#lg-secu-alert-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99998;
}

#lg-secu-alert-overlay.is-visible {
    display: block;
}

#lg-secu-alert-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    background-color: #181818;
    color: #eceff1;
    border-radius: 15px;
    padding: 30px 25px;
    z-index: 99999;
    box-shadow: 5px 8.66px 21.25px 3.75px rgba(63, 63, 63, 0.2);
    font-family: 'InriaSans', Arial, sans-serif;
}

#lg-secu-alert-modal.is-visible {
    display: block;
}

#lg-secu-alert-modal .lg-secu-alert-close {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 0;
    color: #eceff1;
    transition: transform 0.6s ease;
}

#lg-secu-alert-modal .lg-secu-alert-close svg path {
    fill: #eceff1;
    transition: fill 0.6s ease;
}

#lg-secu-alert-modal .lg-secu-alert-close:hover {
    transform: rotate(90deg);
}

#lg-secu-alert-modal .lg-secu-alert-close:hover svg path {
    fill: #960909;
}

#lg-secu-alert-modal p {
    font-family: 'InriaSansI', Arial, sans-serif;
    font-style: italic;
    margin: 0 0 14px;
    line-height: 1.5;
    font-size: 14px;
    color: #eceff1;
}

#lg-secu-alert-modal p strong {
    font-family: 'InriaSansBoldI', Arial, sans-serif;
    font-style: italic;
    font-weight: normal;
}

#lg-secu-alert-modal p.lg-secu-alert-red {
    color: #f92231;
}

#lg-secu-alert-modal p.lg-secu-alert-signature {
    margin-bottom: 4px;
}

#lg-secu-alert-modal a {
    color: #f92231;
    transition: color 0.6s ease;
}

#lg-secu-alert-modal a:hover {
    color: #fff;
}

@media only screen and (min-width: 768px) {
    #lg-secu-alert-modal {
        padding: 35px 40px;
    }

    #lg-secu-alert-modal p {
        font-size: 15px;
    }
}
