/* 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;
    right: 14px;
    bottom: 3%;
    width: 70px;
    z-index: 999;
    cursor: pointer;
    background-repeat: no-repeat;
    height: 70px;
	background-image: url(images/jivo_widget_offline.png);
}


/* if there are operators online - show other label*/
#jivo_custom_widget.jivo_online{
	background-image: url(images/chat.svg);
}