html{
    overflow: hidden;
    overflow-y: scroll;
    font-family: Arial, Regular;
}
body{
    height : 100vh;
    width: 100%;
}
#Logo{
    margin-left: 20px;
    margin-top: 19px;
    width: 136px;
    height: 42px;
}
    #logo_client{
        position: absolute;
        background: url('../assets/valloires.svg') no-repeat center;
        right: 60px;
        top: 71px;
        width : 177px;
        height : 76px;
    }
h1{
    text-align: center;
    margin:0;
}
ul{
    margin:0;
    padding:0;
    left:0;
}
li{
    list-style-type: none;
    padding: 5px;
    text-align: right;
    padding-right: 20%;
}
.messages{
    border-radius: 5px;
    text-align: center;
    font-size:13px;
    padding:35px;
    color: white;
    opacity: 0.6;
    animation: message_disappear 3s;
    animation-delay : 2s;
    box-shadow: 12px 12px 2px 1px #A8A9AD;
}
.success{
    background-color: green;
}

.error{
    background-color: red;
}

#cadreMessage{
    position: absolute;
    width:100%;
    text-align:center;
    top:45%;
}
.bg{
    position: absolute;
    background: transparent url('../assets/bg.jpg') 0% 0% no-repeat padding-box;
    mix-blend-mode: luminosity;
    opacity: 1;
    top: 0px;
    left: 0px;
    width: 1920px;
    height: 1080px;
    z-index: -1;
}

.mainBoard{
    position: absolute;
    margin:0px;
    right:75px;
    left:75px;
    bottom:75px;
    top:76px;
    text-align: center;
    background-color: white;
    z-index: 1;
    box-shadow: 0px 3px 6px #00000029;
    opacity: 1;
    border-radius: 5px;
    display: flex;
    min-width:822px;
    height:928px;
    min-height:500px;
}
    .bandeau{
        position: absolute;
        z-index: 0;
        background-color: #1C83DB;
        opacity: 1;
        width:100%;
        text-align: center;
        height: 61px;
        color: white;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        display:flex;
    }
        #retourBouton{
            position: absolute;
            display: inline-flex;
            align-items: center;
            float: left;
            cursor: pointer;
        }
            #retourImg{
                width:16px;
                height:16px;
                margin:25px;
                margin-right:15px;
            }
            #retourBouton>a{
                    font-size: 11px;
                    font-style: italic;
                    margin:auto;
            }
        #bandeauTitre{
            position: relative;
                margin: auto;
        }
            #bandeauTitre>a{
                font-size: 42px;
                margin: 0px;
                color: #5CB4FF;
            }
        #bandeauUsername{
            float: right;
            display: inline-flex;
            align-items: center;
            position: absolute;
            margin: 10px;
            right:10px;
        }
            #bandeauLoggedIn{
                display: inline-flex;
                align-items: center;
            }
                #bandeauLoggedIn>img{
                    width: 20px;
                    height: 20px;
                    margin-right:20px;
                }
                #bandeauLoggedIn>a{
                    font-size: 11px;
                    font-style: italic;
                    margin:auto;
                    margin-right:20px;
                }

            #bandeauBouton{
                border-radius: 3px;
                cursor: pointer;
                text-decoration: none;
                text-align: center;
                width: 105px;
                height: 25px;
                border: solid 1px white;
                padding:6px;
                position: relative;
                /*right:140px;*/
                margin: auto;
                display: inline-flex;
                align-items: center;
                float: right;
            }
                #bandeauBouton>a{
                    margin: auto;
                    font-size: 11px;
                    font-style: italic;
                }
                
    .pagination{
        position:absolute;
        display: inline-flex;
        align-items: center;
        /*align-self: flex-end;*/
        /*top: 20px;
        left: 45%;*/
        top: 50%;
        transform: perspective(1px) translateY(-50%);
        left: 50%;
        transform: perspective(1px) translateX(-50%);
        margin-top:50px;
    }
        .bwd{
            background: url('../assets/Bwd_.png') no-repeat center;
            width: 10px;
            height: 12px;
            border-image: none;
            margin-right: 10px;
            text-decoration: none;
        }
        .fwd{
            background: url('../assets/Fwd_.png') no-repeat;
            width: 10px;
            height: 12px;
            border-image: none;
            margin-left: 10px;
        }
            .fwd:hover, .bwd:hover{
                cursor:pointer;
            }
        #ffalse, #bfalse{
            opacity:0.5;
        }
            #ffalse:hover, #bfalse:hover{
                cursor:not-allowed;
            }