.cssmarquee {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    background: rgba(255, 255, 255, .6);
    overflow: hidden;
}
.cssmarquee .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    animation: cssmarqueeWrapper 20s linear infinite;
}
.cssmarquee .marqueeWords {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
    margin: 0;
    text-align: left;
    white-space: nowrap; /* no wrap */
    transform:translateX(0);
    animation: cssmarquee 20s linear infinite;
}
@keyframes cssmarqueeWrapper {
    0% {
        transform: translateX(100%); /* parent 100% */
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes cssmarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* words -100% */
    }
}