
.marquee {
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-top:16px;
  overflow:hidden;
  background:#000;
  color:#ffffff !important;
  padding:10px 0;
  border-top:3px solid #111;
  border-bottom:3px solid #111;
  white-space:nowrap;
  font-weight:900;
  font-size:22px;
}

.marquee-content {
  display:inline-flex;
  min-width:max-content;
  animation:scrollTaxi 8s linear infinite;
  color:#ffffff !important;
}

.marquee-content span {
  padding-right:30px;
  color:#ffffff !important;
}

@keyframes scrollTaxi {
  from {
    transform:translateX(0);
  }

  to {
    transform:translateX(-50%);
  }
}
