@charset "UTF-8";

.marquee {
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.marquee p:after {
    content: "";
    white-space: nowrap;
    display: inline-block;
}

.marquee p {
    margin: 0;
    padding-left: 100%;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 8s linear infinite;
}

@keyframes marquee {
    from   { transform: translate(0%);}
    99%,to { transform: translate(-100%);}
}