/* Only Live-Video menu-item */
a[href*="live-video"] .menu-item-title::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background: #d00000;
    vertical-align: middle;
}

/* Stream actief */
li.video-live a[href*="live-video"] .menu-item-title::before {
    background: #00c800;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 2px rgba(0,200,0,.4);
    }

    50% {
        opacity: .55;
        box-shadow: 0 0 8px rgba(0,255,0,.9);
    }
}

/* Only Chat menu-item */
a[href*="chat"] .menu-item-title::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background: #d00000;
    vertical-align: middle;
}

/* Chat opened */
li.chat-open a[href*="chat"] .menu-item-title::before {
    background: #00c800;
    animation: livePulse 2s ease-in-out infinite;
}