.ls-ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.03);
    padding: 15px;
    border-radius: 5px;
    position: relative;
}
.ls-ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation-name: ls-ticker-anim;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}
@keyframes ls-ticker-anim {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}