/* Fix for marquee animation - ensure it moves */
.futura-marquee-content {
  animation: futura-marquee-scroll 20s linear infinite !important;
  animation-play-state: running !important;
  -webkit-animation: futura-marquee-scroll 20s linear infinite !important;
  -moz-animation: futura-marquee-scroll 20s linear infinite !important;
  -o-animation: futura-marquee-scroll 20s linear infinite !important;
}

@keyframes futura-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
  }
  100% {
    transform: translate3d(-50%, 0, 0) !important;
    -webkit-transform: translate3d(-50%, 0, 0) !important;
  }
}

@-webkit-keyframes futura-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
  }
  100% {
    transform: translate3d(-50%, 0, 0) !important;
    -webkit-transform: translate3d(-50%, 0, 0) !important;
  }
}
