/* ===============================
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;

}

}
.wf-role-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.wf-role-box{
background:#fff;
padding:40px;
border-radius:12px;
text-align:center;
max-width:400px;
}

.wf-role-btn{
display:block;
margin:10px 0;
padding:14px;
background:#1dbf73;
color:#fff;
text-decoration:none;
border-radius:6px;
}