/* News Ticker */
.newsticker-div {
    display: flex;
    align-items: stretch;
    margin: 20px 0;
    background: #9999991c;
    /* border-radius: 5px; */
    overflow: hidden;
    height: 40px;
    border: 2px solid #009687;
}

.newsticker-div > .title {
    line-height: 40px;
    font-size: 25px;
    background: #009687;
    font-family: Kiron, serif;
    padding: 0 20px 0 5px;
    color: #FFF;
}

.newsticker-div > .newsticker {
    /* margin-left: 20px; */
    flex-grow: 10;
}

.newsticker-div > .nav {
    display: block;
    width: 40px;
    text-align: center;
    font-size: 30px;
    float: right;
    opacity: 0;
    color: #009686;
}

.newsticker-div > .nav > .up {
    display: block;
    width: 40px;
    height: 20px;
    opacity: .3;
    overflow: hidden;
    cursor: pointer;
}

.newsticker-div > .nav > .up > i {
    display: block;
    height: 20px;
    position: relative;
    top: 4px;
}

.newsticker-div > .nav > .down {
    display: block;
    width: 40px;
    height: 20px;
    opacity: .3;
    overflow: hidden;
    cursor: pointer;
}

.newsticker-div > .nav > .down > i {
    display: block;
    height: 40px;
    position: relative;
    top: -14px;
}

.newsticker-div:hover > .nav {
    opacity: 1;
}

.newsticker-div > .nav > .up:hover {
    opacity: 1;
}

.newsticker-div > .nav > .down:hover {
    opacity: 1;
}


.newsticker-div > .title {
    display: inline-block;
    position: relative;
    flex-grow: 1;
    text-align: center;
}

.newsticker {
    padding: 0;
    list-style: none;
    margin: 0;
}

.newsticker > li {
    margin: 0 4px;
    height: 60px;
    overflow: hidden;
    /* border-radius: 3px; */

}

.newsticker > li > a {
    display: block;
    overflow: hidden;
    text-decoration: none;
    font-family: Kiron, serif;
    color: #333;
    font-size: 22px;
    line-height: 40px;
}

.newsticker > li > a > img {
    float: left;
    height: 40px;
    width: 50px;
}

.newsticker > li > a > span {
    margin-left: 60px;
    display: block;
}