/* Popup "Homologation Baccalauréat français" - affiché sur la page d'accueil */

.popup-bac {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9000;
}

.popup-bac.is-open {
    display: block;
}

.popup-bac .popup-bac-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: popupBacFade 0.35s ease both;
}

.popup-bac .popup-bac-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.popup-bac .popup-bac-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    animation: popupBacIn 0.4s ease both;
}

.popup-bac .popup-bac-link {
    display: block;
    line-height: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 46px -2px rgba(0, 0, 0, 0.5);
}

.popup-bac .popup-bac-link img {
    display: block;
    width: 100%;
    height: auto;
}

.popup-bac .popup-bac-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background-color: #ffffff;
    color: #103e78;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.popup-bac .popup-bac-close:hover,
.popup-bac .popup-bac-close:focus {
    background-color: #103e78;
    color: #ffffff;
    outline: none;
}

body.popup-bac-open {
    overflow: hidden;
}

@keyframes popupBacFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes popupBacIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media screen and (max-width: 639px) {
    .popup-bac .popup-bac-wrapper {
        padding: 24px 18px;
    }

    .popup-bac .popup-bac-box {
        max-width: 420px;
    }

    .popup-bac .popup-bac-close {
        top: -14px;
        right: -12px;
        width: 34px;
        height: 34px;
        font-size: 21px;
        line-height: 34px;
    }
}
