/* 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: 5px;
	bottom: 20px;
	width: 50px!important;
	z-index: 300000;
	cursor: pointer;
	line-height: 50px!important;
	height: 50px!important;
    -moz-border-radius: 50%; /* or 50% */
    border-radius: 50%; /* or 50% */
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: red;
    font-size: 40px;
    float: none;
    margin: auto;
	/** background-image: url(../img/jivo_widget_offline.png); **/ 
}

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

#jivo_custom_widget.jivo_online i{
    color: #00D500!important;
}