@charset "utf-8";
/* CSS News Ticker Scroll & Stop */

.wrapper{position: relative; height: 30px; display: block; overflow: hidden; width: 100%; background:#f1f1f1;}
.slide {position: absolute; top: 0; left: 0; height: 30px; width: 100%;animation: slider 20s cubic-bezier(0.5, 1, 0.5, 1) infinite;color:#000000;font-size:20px;line-height: 30px;text-align:center;}
.slide:first-of-type {animation-delay: -20s; background: #c0ff00;}
.slide:nth-of-type(2) {animation-delay: -15s; background: #c0ff00;}
.slide:nth-of-type(3) {animation-delay: -10s; background: #c0ff00;}
.slide:last-of-type {animation-delay: -5s; background: #c0ff00;}
@keyframes slider {0% {transform: translateX(-100%);}8% {transform: translateX(0);} 33.33% {transform: translateX(0);} 41.33% {transform: translateX(100%);} 100% {transform: translateX(100%);}}
    