/* Styles Entête */
header.flex-header{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
/**/
@media (min-device-width : 481px) and (max-width: 750px) {
    header.flex-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    header .header.logo{
        width: 60%;
        height: 60%;
        order: 1;
    }
    header .header.user-box{
        width: 100%;
        align-items: stretch;
        padding-top: 1em;
        order: 3;
    }
    header .header.flex-menu-icon{
        width: 20%;
        height: 60%;
        order: 2;
    }
    header .header.title{
        width: 100%;
        align-items: stretch;
        padding-top: 1em;
        order: 4;
    }
}/**/
@media only screen and (max-device-width : 480px) {
    /* Styles pour cette Media Queries */
    header.flex-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    header .header.logo{
        width: 60%;
        height: 60%;
        order: 1;
    }
    header .header.user-box{
        width: 100%;
        align-items: stretch;
        padding-top: 1em;
        order: 3;
    }
    header .header.flex-menu-icon{
        width: 20%;
        height: 60%;
        order: 2;
    }
    header .header.title{
        width: 100%;
        align-items: stretch;
        padding-top: 1em;
        order: 4;
    }
}

header .header.title{
    color: #840415;
    font-weight: normal;
    font-size: 2em;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    order: 2;
}

header .header.logo_grp1 {
    order: 1;
    min-width: 25%;
}

header .header.logo_grp2 {
    order: 3;
    min-width: 25%;
}

header .header.logo_grp1 img{
    height: 100px;
}
header .header.logo_grp2 img{
    height: 50px;
}

header .header .info-category-span{
    color: #7F80A1;
    font-weight: normal;
}

header .header .info-span{
    color: #840415;
    font-weight: normal;
}

header .header.user-box{
    min-width: 25%;
    order: 3;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

header .header.flex-menu-icon{
    flex: 0 0 auto;
    order: 4;
}

header .header .div-logout{
    margin-top: 1em;
}

@media (max-width: 600px) {
    .flex-container-no-wrap-row {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
}

.header-flex-container-column{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.header-flex-container-column div{
    align-self: flex-end;
}

#header-infos{
    font-style: italic;
    color: #565656;
    text-align: right;
    padding-right: 2%;
    padding-bottom: 1em;
    border-bottom: 1px solid #840415;
    margin-bottom: 30px;
}

/* Fin Styles Entête */