.ce-live-player{

position:fixed;
right:24px;
bottom:24px;

background:#111;
color:#fff;

border-radius:40px;

padding:12px 22px;

display:flex;
align-items:center;
gap:10px;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

font-weight:700;

}

.ce-live-dot{

width:10px;
height:10px;
background:#C1272D;
border-radius:50%;

animation:livePulse 1.3s infinite;

}

@keyframes livePulse{

0%{opacity:1;}

50%{opacity:.2;}

100%{opacity:1;}

}

.ce-live-player:hover{

background:#18345E;

}
