@charset "utf-8";
/* CSS Document */

.scroll {
    position: relative;
    width: 100vw;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
    background-image: url(../../_media/img/documentation/voie.gif);
    background-repeat: repeat-x;
    background-position: bottom;
}
.m-scroll {
    overflow: hidden;
    height: 100%;
    white-space: nowrap;
    animation: scrollText 10s infinite linear;
    margin: 0;
    font-size: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
}
span {
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-bottom: 8px;
}
 @keyframes scrollText {
     from {
        transform: translateX(100%);
    }
     to {
        transform: translateX(-100%);
    }
}    