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

/* custom widget button */
#jivo_custom_widget{
	position: fixed;
	right: 24px;
	bottom: 24px;
	top: auto;

	width: 64px;
	height: 64px;

	border-radius: 50%;
	overflow: hidden;

	z-index: 300000;
	cursor: pointer;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* hover */
#jivo_custom_widget:hover{
	right: 24px;
}

/* offline */
#jivo_custom_widget{
	background-image: url(images/jivo_widget_offline.png);
}

/* online */
#jivo_custom_widget.jivo_online{
	background-image: url(images/jivo_widget_online.png);
}