.live-indicator {
    width: 12px;
    height: 12px;
    background-color: #01b127;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: blink 2s infinite;

}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.oc-status-open {
    color: #01b127;
    font-weight: bold;
}

.oc-status-closed {
    color: #929292;
    font-weight: bold;
}

#btnActiveOnly.active{
    border: 1px solid;
    background-color: #e54b61;
    color: #fff;
    outline: none;
    box-shadow: none;
}