/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 03 2026 | 17:20:35 */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;

  /* ключевой момент */
  animation: scroll-text 80s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}