.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;
}
.marquee-wrapper.left {
  animation: 30s linear 0s infinite normal none running marqueeAnimation;
}
.marquee-wrapper.right {
  animation: 30s linear 0s infinite normal none running marqueeAnimation-reverse;
}

.js-marquee {
  float: left;
  margin-right: 0;
  white-space: nowrap;
}
.js-marquee .marquee_separator {
  margin: 0 15px;
  font-size: 3.75rem;
  color: var(--e-global-color-accent);
  opacity: 0.2;
}
.js-marquee .marquee_text {
  font-size: 3.75rem;
  color: var(--e-global-color-accent);
  font-weight: 500;
  margin: 0 15px;
}

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

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