.simple-marquee-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    color: white;
}

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

.marquee-sibling > h4 {
    padding: 5px;
}


.simple-marquee-container .marquee-sibling {
    padding: 0;
    background-color: #fd0000;
    width: 20%;
    height: inherit;
    line-height: 42px;
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    float: right;
    right: 0;
    z-index: 2000;
}

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

.simple-marquee-container .marquee {
    margin-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-content-items li:after {
    content: "|";
    margin: 0 1em;
    color: #fd0000;
}



