.live-support{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:99999;
    font-family:inherit;
}

.live-toggle{
    width:64px;
    height:64px;
    border-radius:50%;
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 35px rgba(0,0,0,.2);
    transition:.3s;
}

.live-toggle:hover{
    transform:translateY(-4px);
}

.live-toggle::after{
    content:'';
    position:absolute;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#22c55e;
    opacity:.35;
    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:.4;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }

}

.live-box{

    position:absolute;
    bottom:85px;
    right:0;
    width:320px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    display:none;

}

.live-box.show{

    display:block;
    animation:fadeUp .25s;

}

.live-header{

    background:#0f172a;
    color:#fff;
    padding:18px;

}

.live-header h5{

    margin:0;
    font-size:18px;

}

.live-header p{

    margin:6px 0 0;
    opacity:.8;
    font-size:14px;

}

.live-content{

    padding:18px;

}

.live-btn{

    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    background:#f5f7fb;
    color:#111827;
    margin-bottom:12px;
    transition:.3s;

}

.live-btn:hover{

    background:#eef4ff;
    transform:translateX(4px);

}

.live-online{

    width:10px;
    height:10px;
    background:#22c55e;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:none;

    }

}