
.scroll-left {
  position: fixed;
  margin: 0;
  padding: 0;
  overflow: hidden;
  left: 0;
  bottom: 0;
  width: 100%;
  background: white;
  color: blue;
  border: 1px solid orange;
  opacity: 0.75;
  z-index: 99;
}

.scroll-left p {
  position: relative;
  width: auto;
  height: 100%;
  font-size:4em;
  line-height: 1.5em;
  margin: 0;
  text-align: center;
  white-space:nowrap;
  z-index: 100;
  /* Starting position */
  
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  /* Apply animation to this element */
  
  -moz-animation: scroll-left 15s linear infinite;
  -webkit-animation: scroll-left 15s linear infinite;
  animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */

@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
    /* Browser bug fix */
    
    -webkit-transform: translateX(100%);
    /* Browser bug fix */
    
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
    /* Browser bug fix */
    
    -webkit-transform: translateX(-100%);
    /* Browser bug fix */
    
    transform: translateX(-100%);
  }
}