/* Laufband */

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}


#laufband-sticky-container {
    display: none;
}


#sticky-navigation #laufband-sticky-container {
    display: block;
}

#laufband,
#laufband-sticky { 
    width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}

#laufband .news,
#laufband-sticky .news {
    display: inline-flex;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;


    -webkit-animation-iteration-count: infinite; 
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
   -webkit-animation-name: ticker;
           animation-name: ticker;
    -webkit-animation-duration: 150s;
            animation-duration: 150s;
}

.ll-laufband-inhaltscontainer {
    margin-right: 25vw;
}

#laufband p {
	margin-bottom : 0;
}

#laufband:hover .news {
	animation-play-state: paused;
}

@media screen and (max-width: 769px) {
    #laufband .news,
    #laufband-sticky .news {
            -webkit-animation-duration: 70s;
            animation-duration: 70s;
    }
}