/* ===============================
WORKFINDR LIVE FEED
=============================== */

.wf-live-feed{

position:fixed;
bottom:0;
left:0;

width:100%;

background:#4b4a3f;
color:#fff;

padding:8px 0;

overflow:hidden;

z-index:9999;

font-size:14px;

}

/* ticker */

.wf-live-feed-track{

display:inline-block;

white-space:nowrap;

animation:wf-feed-scroll 25s linear infinite;

padding-left:100%;

}

/* animation */

@keyframes wf-feed-scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-100%);
}

}

/* spacing */

.wf-live-feed-track span{

margin-right:40px;

}

/* desktop */

@media(min-width:768px){

.wf-live-feed{

bottom:auto;
top:70px;

}

}