
* {
    box-sizing: border-box;
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.ticker-desc {
    bottom: 0;
    position: fixed;
    width: 75px;
    z-index: 99;
    right: 0px;
    overflow: hidden;
    height: 3.2rem;
    background:#1c2633;
    color:white;
    font-size:11px;
    font-weight:bold;
    text-align:center;
    padding-top:1px;
}

.ticker-wrap {
    bottom: 0;
    position: fixed;
    width: calc(100% - 75px) !important;
    overflow: hidden;
    height: 3.2rem;
    background-color: #304258;
    padding-right: 50%;
    margin-top: 50px;
    z-index: 99;
    right: 75px;
}

    .ticker-wrap .ticker {
        display: inline-block;
        height: 4rem;
        line-height: 4rem;
        white-space: nowrap;
        padding-left: 100%;
        box-sizing: content-box;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-name: ticker;
        animation-name: ticker;
        -webkit-animation-duration: 70;
        animation-duration: 70s;
    }

    .ticker-wrap .ticker__item {
        display: inline-block;
        padding: 0 2rem;
        /*font-size: 2rem;*/
        font-size: 1.5rem;
        color: white;
        margin-top: -2px;
    }



/*.ticker:hover, .ticker:focus {
    -webkit-animation-play-state: paused;
	animation-play-state: paused;
}*/

body {
    padding-bottom: 5rem;
}
