/* 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: 23px;
	bottom: 10px;
	width: 94px;
	z-index: 300000;
	cursor: pointer;
	background-image: url(images/logo_chat.png);
	background-repeat: no-repeat;
}

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

/* if there are operators online - show other label*/
#jivo_custom_widget.jivo_online{
	height: 104px;
	background: url("images/logo_chat.png");
	background-repeat: no-repeat;
	/*opacity: 0.6;*/
}

#jivo_custom_widget.jivo_online:hover{
	opacity: 1;
	transition: 0.5s ease-in;
}