#kg-ticker-bar{
position:sticky;
top:0;
width:100%;
background:#6b4c2e;
color:#fff;
overflow:hidden;
z-index:99999;
}
.kg-ticker-track{
white-space:nowrap;
display:inline-block;
padding-left:100%;
animation:ticker 20s linear infinite;
}
@keyframes ticker{
0%{transform:translateX(0);}
100%{transform:translateX(-100%);}
}
