.motoverse-marquee-strip {
  background: rgba(40, 40, 40, 0.7);
  overflow: hidden;
  white-space: nowrap;
  height: 56px;
  position: absolute;
  top: 74px;
  display: flex;
  align-items: center;
  z-index: 9;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .motoverse-marquee-strip {
    top: 50px;
  }
}

.motoverse-marquee-strip ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: marquee 80s linear infinite;
  animation-play-state: running;
}

@media only screen and (min-width: 1199px) {
  .motoverse-marquee-strip:hover ul {
    animation-play-state: paused;
  }
}

.motoverse-marquee-strip li {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.8px;
  margin-inline: 10px !important;
  position: relative;
  font-weight: 500;
  font-family: GuardianSansXCond Semibold;
}

.motoverse-marquee-strip li::after {
  content: "•";
  position: absolute;
  right: -14px;
  color: #fff;
}

.motoverse-marquee-strip li:last-child::after {
  content: "";
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* For Motoverse App Marquee Strip top space none */
.re-app-cmp .motoverse-marquee-strip {
  top: 0;
}
