/* **********************
   FULLSCREEN OVERLAY
   ********************** */

#fullscreen-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.72);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    z-index: 999999;
}

/* Affichage avec animation */
#fullscreen-search-overlay.show {
    display: flex;
    animation: fsoFadeIn .25s ease-out;
}

@keyframes fsoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* **********************
   CONTAINER
   ********************** */

.fso-container {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}

/* **********************
   FORMULAIRE
   ********************** */

.fso-search-form {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 50px;
}

.fso-search-form input[type="search"] {
    flex: 1;
    padding: 20px;
    border-radius: 0px;
    font-size: 1.5rem;
    border: none;
    outline: none;
    background: #fff;
}

.fso-search-form .fso-submit {
    padding: 20px 32px;
    font-size: 1.3rem;
    border: none;
    border-radius: 0px;
    background: var( --e-global-color-primary );
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-family: "report", Sans-serif;
    text-transform: uppercase;
}
.fso-search-form .fso-submit:hover, .fso-search-form .fso-submit:active {
    background: var( --e-global-color-accent );
}

/* **********************
   BOUTON FERMETURE (X)
   ********************** */

.fso-close {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    color: white;
    cursor: pointer;
    user-select: none;
}

/* **********************
   NO SCROLL WHEN OPEN
   ********************** */

body.fso-no-scroll {
    overflow: hidden;
}
