/*-----------HEADER-----------*/
.notification-messages{
display:none;
}
.region-header {
    padding: 0.357em 0 0 15px!important;
}
/*HEADER - MENU UTILISATEURS*/
#block-stidoc-bartik-account-menu{
display:flex;
border:none;
}
/*HEADER - LOGO*/
.site-branding__name a{
font-size:1.1rem;
}
.site-branding__name {
line-height:1.5!important;
}
@media (min-width: 901px){
.site-branding__text {
    padding: 0!important;
}}

/* ------BLOCK NOUVELLE DU HEADER--------- */
/* --- IMAGE  En savoir + */
#info-link img{
position:absolute;
cursor:help;
}
/*-----MESSAGE DEFILANT----*/
  .message:hover  {
    animation-play-state: paused; /* met en pause le défilement */
  }
.message {
    display: inline-block;  
    position:relative;      /* pour servir de référent à :after */
    min-width:100%;
    white-space: pre;         
    font-size: 1rem;
    margin-top: 45px;
    text-align: center;
    animation: defilement 10s infinite linear;
}
.message:after {
    content: attr(data-text);
    position: absolute;
    left:100%;              
    white-space: nowrap;
}
/*Animation CSS*/
@keyframes defilement {
    0% {
        margin-left:90%;
    }
    100% {
        margin-left:-100%;
    }
}