@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.simple-news-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #006699;
  padding-left: 100%;
}

.news-ticker-headline {
  position: absolute;
  left: 0;
  padding: 10px;
  background: #cc0000;
  z-index: 99;
  color: white;
  font-size: 18px;
  height: 100%;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  animation: ticker 40s linear infinite;
}

@media (max-width: 768px) {
  .ticker {
    animation-duration: 120s;
  }
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding: 10px;
  font-size: 18px;
}

.ticker-item a {
  color: white !important;
}

.ticker-separator {
  display: inline-block;
  padding: 10px;

  color: #ccc;
}
