@keyframes carousel {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-100%);
  }
}
.carousel-wrapper {
  display: flex;
  background: #f3f3ff;
}

.carousel {
  display: inline-flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
}
.carousel.animated {
  animation: carousel 80s linear infinite;
}
.carousel.paused {
  animation-play-state: paused;
}

@media only screen and (hover: hover) {
  .carousel-wrapper:hover .carousel {
    animation-play-state: paused;
  }
}/*# sourceMappingURL=carousel.css.map */