.abs-middle {
  top: 50%;
  transform: translateY(-50%);
}

.w-40px {
  width: 40px;
}

.abs, .absolute {
  position: absolute;
}

.marquee-wrapper {
  display: flex;
  width: 100000px;
  transform: translateX(0px);
  animation: 30s linear 0s infinite normal none running marqueeAnimation;
  gap: 290px;
  align-items: center;
}

.js-marquee {
  float: left;
  margin-right: 0;
  white-space: nowrap;
}
.js-marquee img {
  position: relative;
  top: 10px;
}

.rt-marquee-list {
  display: flex;
  align-items: top;
  animation: loop 40s infinite linear;
}

@keyframes marqueeAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2516.38px);
  }
}/*# sourceMappingURL=marquee.css.map */