.verse_marquee {
 overflow: hidden;
 display: block;
    /*border-style: ridge;*/
    background-color: transparent;
    height: 80px;
    position: absolute;
    margin-top: 10px;
    margin-right: 20px;
    margin-left: 20px;
    border-color: #327aff;
    border-width: 2px;
    text-align: left;
 /* Apply animation to this element */	
 -moz-animation: verse_marquee 9s linear infinite alternate;
 -webkit-animation: verse_marquee 9s linear infinite alternate;
 animation: verse_marquee 9s linear infinite alternate;
}

/* Move it (define the animation) */
@-moz-keyframes verse_marquee {
 0%   { -moz-transform: translateX(70%); }
 100% { -moz-transform: translateX(0%); }
}
@-webkit-keyframes verse_marquee {
 0%   { -webkit-transform: translateX(70%); }
 100% { -webkit-transform: translateX(0%); }
}
@keyframes verse_marquee {
 0%   { 
 -moz-transform: translateX(70%); /* Firefox bug fix */
 -webkit-transform: translateX(70%); /* Firefox bug fix */
 transform: translateX(70%); 		
 }
 100% { 
 -moz-transform: translateX(0%); /* Firefox bug fix */
 -webkit-transform: translateX(0%); /* Firefox bug fix */
 transform: translateX(0%); 
 }
}

.marquee-content {
  display: block;
  width: 800px;
  background: rgb(215, 215, 215);
  padding: 1em;
  overflow: hidden;
  margin: 0 auto;
}

.marquee-container {
  width: 100%;
  background: #4FC2E5;
  float: left;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
  height: 45px;
  position: relative;
  cursor: pointer;
}

.marquee-sibling {
  padding: 0;
  background: #3BB0D6;
  width: 20%;
  height: 45px;
  line-height: 42px;
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
  float: left;
  left: 0;
  z-index: 2000;
}

.marquee,
*[class^="marquee"] {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
}

.marquee { margin-left: 25%; }

.marquee-content-items {
  display: inline-block;
  padding: 5px;
  margin: 0;
  height: 45px;
  position: relative;
}

.marquee-content-items li {
  display: inline-block;
  line-height: 35px;
  color: #fff;
}

.marquee-content-items li:after {
  content: "|";
  margin: 0 1em;
}