.runningtext {
    position: relative;
    max-width: 1200px;
    margin: 0px auto;
    z-index: 1;
}

.simple-marquee-container {
	width: 100%;
	background: linear-gradient(180deg, #a00000 ,#550404);
	float: left;
	display: inline-block;
	overflow: hidden;
	box-sizing: border-box;
	height: 45px;
	position: relative;
	cursor: pointer;
}


.simple-marquee-container .marquee-sibling {
    padding: 0;
    background:linear-gradient(180deg, #a00000 ,#550404);
    width: 20%;
    line-height: 42px;
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    float: left;
    left: 0;
    z-index: 2000;
}


.simple-marquee-container .marquee, .simple-marquee-container *[class^="marquee"] {
	display: inline-block;
	white-space: nowrap;
	position:absolute;
}

.marquee-after {
	position: absolute;
	width: 20px;
	height: 100%;
	right: 0;
	z-index: 3000;
	background: linear-gradient(180deg, #a00000 ,#550404);
}

.simple-marquee-container .marquee{
  padding-left: 25%;
}

.simple-marquee-container .marquee-content-items{
  display: inline-block;
  padding: 5px;
  margin: 0;
  height: 45px;
  position: relative;
}

.simple-marquee-container .marquee-content-items li{
  display: inline-block;
  line-height: 35px;
  color: #fff;
}

.simple-marquee-container .marquee-sibling {
    width: 50px;
}

.simple-marquee-container .marquee-sibling img {
    max-width: 20px;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeAnimation 15s linear infinite;
}

@keyframes marqueeAnimation {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}