
.carousel-row {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  margin-bottom: 1px;
  height: 40px;
}

.carousel-text {
  display: inline-block;
  padding: 0 20px;
  animation: scroll-left 20s linear infinite;
  cursor: pointer;
}

.carousel-row.even .carousel-text {
  animation-name: scroll-left;
}
.carousel-row.odd .carousel-text {
  animation-name: scroll-right;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.carousel-text:hover {
  animation-play-state: paused;
}
