.container-fenetre,
.container-fenetre-contact,
.container-image,
.container-cookies {
    background-color: rgba(204, 204, 204, 0.719);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 600ms, visibility 600ms;
    transition: opacity 600ms, visibility 600ms;
    display: flex;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.fenetre {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0px 0px 2px 0px lightslategray;
    width: 60%;
    max-width: 540px;
    min-width: 340px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding-top: 8px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 15px;
    border-radius: 3px;
    box-shadow: 1px 1px 10px 1px rgba(167, 167, 167, 0.932);
    z-index: 99;
}

.fenetre div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

span.bouton {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-bottom: 1px;
}

#fermer {
    font-size: 19px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    margin-left: auto;
    background-color: rgb(238, 238, 238);
    color: rgb(211, 211, 211);
}

#fermer:hover {
    background-color: rgb(225, 225, 225);
    color: rgb(245, 245, 245);
    transition: 0.3s;
    cursor: pointer;
}


/* FENETRE DE RESERVATION CIRCUIT */

.fenetre h3 {
    width: 90%;
    height: 20%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    border-bottom: teal 2px solid;
    color: teal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fenetre form.reservation {
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container-fenetre-contact .fenetre form.reservation {
    height: 60%;
    justify-content: center;
}

form.reservation label.reservation {
    position: relative;
    top: 20px;
    width: 75%;
    text-align: center;
    font-size: 16px;
    color: rgb(48, 48, 48);
}

u {
    font-size: 15px;
    font-weight: 600;
    margin-right: 5px;
    padding-bottom: 3px;
    color: rgb(32, 32, 32);
    text-decoration: none;
}

label.contact {
    width: 75%;
    margin-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 15px;
    color: rgb(48, 48, 48);
}

form.reservation input[type="date"] {
    width: 60%;
    height: 35px;
    font-size: 16px;
    color: rgb(48, 48, 48);
    border: 1px solid rgb(194, 194, 194);
    box-shadow: 0px 0px 3px 0px rgb(211, 211, 211);
    border-radius: 6px;
    text-align: center;
}

form.reservation input[type="submit"] {
    height: 35px;
    padding: 6px 12px;
    border: none;
    background-color: rgb(41, 41, 41);
    color: whitesmoke;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

form.reservation input[type="submit"]:hover {
    transition: 0.3s;
    cursor: pointer;
}


/* APERCU IMAGE GALERIE */

.apercu-image {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 2px;
    box-shadow: 0px 0px 3px 0px rgba(167, 167, 167, 0.932);
    z-index: 99;
}