
#bandeau-favo {
    background-color: #154F9E;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 1.3em;
    font-family: 'Cera Pro', Tahoma, sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    color: white;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
}

#bandeau-favo .heure {
    background-color: #5B8ED5;
    padding: 0 1.2em;
    font-weight: bold;
    font-size: 1.5em;
    height: 100%;
    display: flex;
    align-items: center;
}

#bandeau-favo .infos {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

#bandeau-favo .infos span {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
    animation-name: defilement;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes defilement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
