
/* Conteneur du ticker : taille fixe et débordement caché */
.ticker-wrapper {
    width: 100%;
    /* width: 600px; */
    background-color: #f61f1f !important;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border: 2px solid #444;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    position: absolute;
  } 
  /* Espacement entre les messages */
  .ticker span {
    margin-right: 50px;
  } 
  .ticker {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 15s linear infinite;
  } 

  @keyframes ticker-scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }