/*HTML ET BODY*/
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Trebuchet MS', Helvetica, "Gill Sans", sans-serif;
}

body {
    background-image: url("../../img/Fond.jpg");
    background-repeat: repeat-y;
    background-size: 150%;
    list-style-type: none;
    min-height: 320px;
    margin-bottom: -100px;
    min-width: 283px;
}

a {
    text-decoration: none;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spbtw {
    justify-content: space-between;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading img {
    width: 60%;
}

.content {
    background-color: rgba(255, 255, 255, 0.7);
    overflow-y: auto;
    margin: 20px auto;
    padding: 1em;
    text-align: center;
    border-radius: 5px;
}

.mobile {
    display: none;
}

.notMobile {
    display: block;
}

.overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
}

.overlay_content {
    background-image: url("../../img/Fond.jpg");
    border-radius: 10px;
    height: 80%;
    width: 80%;
    margin: auto;
    margin-top: 80px;
    display: flex;
}

.overlay_content form {
    width: 100%;
    margin: 20px 0px 20px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1em;
    display: flex;
    border-radius: 10px;
}

.btnClose {
    float: right;
    justify-self: flex-end;
    cursor: pointer;
    font-size: 30px;
    margin-right: 10px;
    color: white;
}

@media (max-width: 900px) {
    .mobile {
        display: block;
    }

    .notMobile {
        display: none;
    }
}