#jivo_chat_widget{
	display: none;
}

/* the default style - for offline messages if no one is online */
#jivo_custom_widget{
	position: fixed;
    right: calc(0vh + 5px);
	top: 3px;
	z-index: 300000;
	cursor: pointer;
	
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 0px;
    height: 0px;
    display: none;
}

/* when you hover the label should be shifted to the right by 3px */
#jivo_custom_widget:hover{
}

/* if there are operators online - show other label*/
#jivo_custom_widget.jivo_online{
	background: url('/dist/imagens/chat100.png') no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 50px;
    height: 50px;
}