html{
    box-sizing: border-box;
    font-size: 62.5%; /* 1rem = 10px, 10px/16px = 62.5% */
}

.header{
    width: calc(100% - 22rem);
    margin-left: 22rem;
    height: 12rem;
    position: fixed;
    z-index: 999;
    top: 0;
}

.header__banniere{
    width: 100%;
    height: 12rem;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;

    text-align: right;

    font-size:0;
}
.header__banniere > *{
    font-size: 1.6rem
}

.header__actions{
    display: flex;
    float: right;
    height: 100%;
    width: 25rem;
    margin-right: 5px;
    /*background: green;*/
    justify-content: flex-end;
    align-items:flex-end;
}

.header__action{
    display: inline-block;
    /*background: red;*/
}

.header__title{
    font-size: 1.8rem;
    color: #ffffff;
}

.fullbandeau_filtre{
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    padding-left: .5rem;
    padding-right: .5rem;
}

button.multiselect{
    color: #fff;
}

.langue {
    list-style-type: none;
    vertical-align: middle;
    display: inline-block;
    margin: 0;
    background-color: #ffffff;
    font-size: 0;
    padding: 10px;
    cursor: default !important;
}

.langue_flag_img {
    height: 3.3rem;
}

.check_langue {
    cursor: pointer;
    opacity: 0.6;
}

li :has(.check_langue) {
    margin-top: 5px;
}

.check_langue:hover, .check_langue.active {
    opacity: 1;
}

.check_langue_renewpassword {
    cursor: pointer;
    opacity: 0.6;
}

li :has(.check_langue_renewpassword) {
    margin-top: 5px;
}

.check_langue_renewpassword:hover, .check_langue_renewpassword.active {
    opacity: 1;
}

.dropdown-menu > li:hover, .dropdown-menu > li > a:hover {
    background: #dddddd !important;
    color: #303030 !important;
}

.langue li.dropdown ul.dropdown-menu {
    min-width: 50px !important;
    text-align: center;
}

/* LOADER */

.loading-overlay {
    z-index: 888;
    overflow: hidden;
}

.loading-overlay.fail-overlay {
    background: rgb(105, 105, 105);
    background-image: none;
    cursor: pointer;
}

.loading-overlay.fail-overlay:hover {
    opacity: 0.7;
}

.loading-overlay > div {
    text-align: center;
    font-size: 14px;
    color: white;
}

.loading-overlay > div.loading-icon {
    display: inline-block;
    background-size: 115px;
    background-repeat: no-repeat;
    background-position: center;
    width: 53px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading-overlay.fail-overlay > p {
    color: rgb(161, 45, 37);
}

.loading-overlay.fail-overlay > p > span.glyphicon {
    font-size: 20px;
}

#loader {

}

#loader ul {
    margin: 0;
    list-style: none;
    position: relative;
    padding: 0;
    height: 100%;
    width: 100%;
    display: inline-block;
}

#loader ul li {
    position: absolute;
    width: 8px;
    height: 0;
    bottom: 0;
}

@keyframes sequence1 {
    0% {
        height: 5px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 5px;
    }
}

@keyframes sequence2 {
    0% {
        height: 10px;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 10px;
    }
}

#loader li:nth-child(1) {
    left: 0;
    animation: sequence1 1s ease infinite 0.5s;
}

#loader li:nth-child(2) {
    left: 15px;
    animation: sequence2 1s ease infinite 0.1s;
}

#loader li:nth-child(3) {
    left: 30px;
    animation: sequence1 1s ease-in-out infinite 0.2s;
}

#loader li:nth-child(4) {
    left: 45px;
    animation: sequence2 1s ease-in infinite 0.3s;
}

#loader li:nth-child(5) {
    left: 60px;
    animation: sequence1 1s ease-in-out infinite 0.4s;
}

#loader li:nth-child(6) {
    left: 75px;
    animation: sequence2 1s ease infinite 0.5s;
}
