#show_private_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
}

#online_users_box{
    margin-top:15px;
    padding:10px 18px;

    background:#050b1a;

    border:2px solid #003399;
    border-radius:12px;

    color:#66ccff;
    font-size:15px;
    font-weight:bold;

    display:inline-block;

    box-shadow:
        0 0 8px #0099ff,
        0 0 16px #0066cc,
        0 0 25px rgba(0,153,255,0.5),
        inset 0 0 10px rgba(0,153,255,0.2);

    text-shadow:
        0 0 5px #0099ff,
        0 0 10px #0066cc;
}

.online_dot{
    width:10px;
    height:10px;

    background:#00ff88;
    border-radius:50%;

    display:inline-block;
    margin-right:8px;

    box-shadow:
        0 0 5px #00ff88,
        0 0 10px #00ff88,
        0 0 20px #00ff88;

    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.3);
        opacity:0.6;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }
}