/* Bandeau */
.bandeau-info-custom {
    overflow: hidden;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99999;
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    background: #27ae60;
    color: #fff;
    white-space: nowrap;
}

/* Texte défilant */
.bandeau-info-custom .bandeau-texte {
    display: inline-block;
    white-space: nowrap;
    /* pas besoin du padding-left ici */
    animation: defilement-bandeau 20s linear infinite;
    will-change: transform;
	animation-delay: -8s;
}

/* Animation */
@keyframes defilement-bandeau {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Couleurs */
.bandeau-info-custom.bleu  { background:#004080; color:#fff; }
.bandeau-info-custom.rouge { background:#c0392b; color:#fff; }
.bandeau-info-custom.jaune { background:#f1c40f; color:#000; }
.bandeau-info-custom.vert  { background:#27ae60; color:#fff; }
.bandeau-info-custom.gris  { background:#7f8c8d; color:#fff; }

/* Responsive */
@media (max-width: 768px) {
  .bandeau-info-custom { font-size:12px; padding:5px 15px; line-height: 1.2;
	}
}