.rallyon-live-banner{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    width:100%;
    min-height:42px;

    background:linear-gradient(#b40000,#930000);

    color:#fff;

    text-decoration:none;

    font-size:16px;
    font-weight:700;

    transition:.2s;

    box-sizing:border-box;
}

.rallyon-live-banner:hover{

    background:linear-gradient(#c40000,#a00000);

    color:#fff;

}

.rallyon-live-dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#ff2d2d;

    animation:rallyonLivePulse 1.2s infinite;

    flex:none;

}

.rallyon-live-separator{

    opacity:.7;

}

.rallyon-live-title{

    font-weight:500;

}

@keyframes rallyonLivePulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.4);
        opacity:.45;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

@media(max-width:768px){

    .rallyon-live-banner{

        padding:10px;
        text-align:center;
        flex-wrap:wrap;
        font-size:14px;

    }

}