
.ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  direction: rtl;
  font-family: Tahoma, sans-serif;
  font-size: 16px;
  padding: 8px 0;
}

.ticker {
  display: inline-block;
  padding-right: 100%;
  animation: ticker-move 20s linear infinite;
  font-weight: 600;
}

@keyframes ticker-move {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
