#new-top-bar {
    display:flex;
    flex-wrap: nowrap;
    justify-content:space-between;
}

#new-top-bar button, #new-top-bar a {
    background: none;
    border: none;
    color: #d1d1f0;
    cursor: pointer;
}

#new-top-bar button:hover {
    background-color: rgba(209,209,240,0.2);
    border-radius: 3px;
}

#new-top-bar .col {
/*    border: solid 1px red;*/
    line-height: 30px;
}

#recherche-top {
    display: inline;
    margin-right: 30px;
}

#recherche-top input, #recherche-top select {
    position: relative;
    top: -5px;
    background-color: #ffffff;
    color: black;
}

.blink_me {
    animation-name: flash;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes flash {  
    0% { opacity: 1.0; }
    50% { opacity: 0; }
    100% { opacity: 1.0; }
}

div.etat {
    background: #303f9f;
    border-bottom: 1px solid #e5e5e5;
    border: solid #000000 0px;
    position: relative;
    width: 100%;
    height: auto;
    top: 0px;
    left: 0px;
    text-align: left;
    font-size: 1em;
    color: #EEEEEE;
    font-weight: bold;
    
    padding: 5px;
    box-sizing: border-box;
}

div.ligne_etat {
/*    vertical-align: middle;
    display: inline-flex;*/
    font-size: 1.3em;
    top: 0px;
}

.ligne_etat >  i {
    position: relative;
    bottom: -6px;
}

.align-right {
    text-align: right;
}

