/*!
 * jQuery Conveyor Ticker (jConveyorTicker)
 * Description: jQuery plugin to create simple horizontal conveyor belt animated tickers.
 *
 * Copyright (c) 2017 Luis Luz - UXD Lda
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Project home:
 *   https://github.com/lluz/jquery-conveyor-ticker
 *
 * Version:  1.0.2
 *
 */

.jctkr-wrapper,
.jctkr-wrapper * {
    box-sizing: border-box;
}

.jctkr-wrapper {
    display: inline-block;
    position: relative;
    font-family: Arial;
    width: 100%;
    height: 35px;
    vertical-align: top;
    overflow: hidden;
}

.jctkr-wrapper ul {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.jctkr-wrapper.jctkr-initialized ul {
    opacity: 1;
}

.jctkr-wrapper ul li {
    display: inline-block;
}

.jctkr-label {
    display: inline-block;
}

.jconveyor-wrap {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.jctkr-label {
    height: 35px;
    padding: 0px 15px;
    line-height: 35px;
    background: #035388;/*dc2430;*/
    color: #fff;
    cursor: default;
}

    .jctkr-label:hover {
        background: #f44336;
    }

.jconveyor-ticker ul {
    display: inline-block;
    opacity: 0.5;
}

    .jconveyor-ticker ul li {
        padding: 0 15px;
        line-height: 35px;
        font-size: 16px;
    }

        .jconveyor-ticker ul li:before {
            content: "\f111";
            font-family: 'FontAwesome';
            font-size: 14px;
            padding-right: 5px;
            color: #fff;
        }

        .jconveyor-ticker ul li a {
            color: #333;
        }
