/* 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;
	z-index: 300000;
	cursor: pointer;
	width: 215px;	
	height: 35px;
	right: -92px;
    top: 70%;
	padding: 5px 10px;
	color:white;
	text-align:center;
	font-size: 15px;
    font-family: Arial, Arial;
    font-style: normal;	
    transform: rotate(-90deg) translate(20px, 0px);
    background: linear-gradient(95deg, rgb(6, 129, 29) 20%, rgb(79, 203, 12) 80%);
	border-radius: 10px;
}

/* 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{
	/*height: 215px;*/
	background: linear-gradient(95deg, rgb(6, 129, 29) 20%, rgb(79, 203, 12) 80%);
	/*background-image: url(images/jivo_widget_online.png);*/
}