@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");

@-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-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    padding-left: 100%;
    box-sizing: content-box;

    z-index: 500;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 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: 20s;
    animation-duration: 20s;
}

.ticker__item {
    font-family: "Open Sans", sans-serif;
    display: inline-block;
    padding: 0;
    font-size: x-large;
    color: white; 
    margin-top: 0.25em;
    margin-bottom: 0.25em;  
}

.blink {
    color: red;
    background-color: black;
    border-radius: 4px;
    padding: 4px 6px;
    animation: blinkAnim 1s infinite;
    /*animation: blinkAnim 0.25s ease-in-out 0 infinite forwards normal;*/
}

@keyframes blinkAnim {
    0% {
        color: red;
    }
    25% {
        color: black;
    }
    35% {
        color: yellow;
    }
    65% {
        color: yellow;
    }
    75% {
        color: black;
    }
    80% {
        color: red;
    }
    100% {
        color: red;
    }
}