#scroll-container {
  overflow: hidden;
  position: relative;
  min-height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
}

#scroll-text {
  position: absolute;
  /*top: 0px;*/
  left: 100%;
  white-space: nowrap;
  overflow: hidden;
  -moz-animation: my-animation 20s linear infinite;
  -webkit-animation: my-animation 20s linear infinite;
  animation: my-animation 20s linear infinite;
  font-weight: 600;
  font-size: 16px;
}

@keyframes my-animation {

  to {
    left: 0%;
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

} 