/*
*
*	CSS / jQuery animated Ticker
*
*	author	Dinko Skopljak
*	web     https://futura-web.de
*	email	ds@futura-web.de
*
*	CSS
*
*/

.ticker{
    display: flex;
    padding-left: 100%;
    overflow: hidden;
}

.ticker ul{
    display: flex;
    list-style: none;
}

.ticker li{
    padding-left: 1rem;
    white-space: nowrap;
}

.ticker li:first-child{
    padding-left: 0;
}

.ticker li::before{
    content: "";
    display: inline-block;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    height: 1px;
    border-radius: 12.5px;
    background-color: #fafcfc;
    width: 10px;
    height: 10px;
    margin-right: 10px;
}

.ticker li:last-child::after{
    content: "";
    display: inline;
    padding-left: 1rem;
}
