
.scrollTextContainer {
	max-width: 100vw; /* iOS braucht das */
	white-space: nowrap;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	display: inline-table;
	width:100%;
}
.scrollText{
	white-space: nowrap;
	margin: 0px;
	padding: 0px;
	display: table-cell;

}

.scrollText2{

  -moz-animation: marquee 15s linear infinite;
  -webkit-animation: marquee 15s linear infinite;
  animation: marquee 15s linear infinite;
}


@keyframes scrollTextAnimation {
  from {
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);

  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }


@keyframes scrollTextAnimation2 {
  from {
    -moz-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  to {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
