/* ==========================================================================
   3.0 News Ticker
   ========================================================================== */
.news-ticker-wrap{
    background-color: #f8f9fa;
    border: 1px dotted #ccc;

    position: relative;
    height: 40px;
    margin: 10px 0;
}
.news-ticker-wrap .ticker-title{

    display: block;
    text-align: center;
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    /*font-family: 'Montserrat', sans-serif;*/
    position: absolute;
    left: 0;
    top: 0;
}
.news-ticker{
    display: block;
    margin: 12px 0;
    width: 100%;
    height: auto;
    line-height: 19px;
    padding-left: 195px;
    padding-right: 90px;
    position: absolute;
    left: 0;
    top: 0;

}
.news-ticker li {
    padding-top: 2px;
    list-style: none;
}
.news-ticker li a{
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400
}
.news-ticker li a:hover{
    color: #009688;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400
}
.ticker-control{
    width: 61px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.ticker-control i {
    background-color: #546e7a;
    display: block;
    width: 30px;
    height: 40px;
    margin-top: -1px;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    float: left;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.ticker-control i:hover{
    opacity: 0.9;
    transition: all 0.3s ease 0s;
}
.ticker-control i#prev-ticker{
    margin-right: 1px;
}

