﻿/*Type like ticker*/
#news-ticker {
    font-weight: normal;
    display: block;
    font-family: monospace;
    font-size: 15px;
    padding: 0;
    margin: 0;
}

    #news-ticker .ticker-title {
        display: inline-block;
        margin-right: 12px;
    }

    #news-ticker ul {
        display: inline-block;
        position: relative;
    }

    #news-ticker li a {
        color: yellow;
        text-decoration: none;
    }

        #news-ticker li a:hover {
            text-decoration: underline;
            color: lightgreen;
        }

    #news-ticker li {
        position: absolute;
        left: 0;
        width: 0;
        overflow: hidden;
        height: 1em;
        word-wrap: break-word;
        opacity: 0
    }

        #news-ticker li.tick {
            -webkit-animation: tick 5s linear;
        }

@-webkit-keyframes tick {
    0% {
        width: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        width: 550px;
        opacity: 1;
    }

    100% {
        opacity: 0
    }
}

/*Scroll like breaking news ticker*/
@import url('https://fonts.googleapis.com/css?family=Montserrat');

.onoffswitch3 {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch3-checkbox {
    display: none;
}

.onoffswitch3-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 0px solid #999999;
    border-radius: 0px;
}

.onoffswitch3-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s;
    -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}

    .onoffswitch3-inner > span {
        display: block;
        float: left;
        position: relative;
        width: 50%;
        height: 30px;
        padding: 0;
        line-height: 30px;
        font-size: 14px;
        color: maroon;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .onoffswitch3-inner .onoffswitch3-active {
        padding-left: 10px;
        background-color: maroon;
        color: maroon;
    }

    .onoffswitch3-inner .onoffswitch3-inactive {
        width: 100px;
        padding-left: 16px;
        background-color: #EEEEEE;
        color: maroon;
        text-align: right;
    }

.onoffswitch3-switch {
    display: block;
    width: 50%;
    margin: 0px;
    text-align: center;
    border: 0px solid #999999;
    border-radius: 0px;
    position: absolute;
    top: 0;
    bottom: 0;
}

.onoffswitch3-active .onoffswitch3-switch {
    background: #f2f2f2;
    left: 0;
    width: 100px;
    color: maroon
}

.onoffswitch3-inactive {
    background: #A1A1A1;
    right: 0;
    width: 20px;
}

.onoffswitch3-checkbox:checked + .onoffswitch3-label .onoffswitch3-inner {
    margin-left: 0;
}

.glyphicon-remove {
    padding: 3px 0px 0px 0px;
    color: maroon;
    /*background-color: #000;*/
    height: 25px;
    width: 25px;
    border-radius: 0px;
    border: 0px solid #fff;
}

.scroll-text {
    color: yellow;
}