.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #181a20;
  border-bottom: 1px solid #333;
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  font-weight: 600;
  font-size: 18px;
  color: #0ecb81;
  padding: 8px 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.ticker span {
  margin-right: 36px;
}
