/* hide the original widget - that there were no two labels on the screen*/
#jivo_chat_widget{
	display: none;
}

/* the default style - for offline messages if no one is online */
#jivo_custom_widget {
    position: fixed;
    left: -3px;
    bottom: 5%;
    width: 35px;
    z-index: 30000;
    cursor: pointer;
    background-image: url(images/chat-bubbles-with-ellipsis.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    background-color: #e65c00;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: none;
}

/* when you hover the label should be shifted to the right by 3px */
#jivo_custom_widget:hover{
	left:0;
}

/* if there are operators online - show other label*/
    #jivo_custom_widget.jivo_online {
        background-image: url(images/chat-bubbles-with-ellipsis.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 20px 20px;
        background-color: #29a329;
        height: 30px;
        width: 30px;
        border-radius: 50%;
        display: none;
    }