/* 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{
	cursor: pointer;
	z-index: 999;
	position: fixed;
	right: 24px;
	bottom: 24px;
	border-radius: 50%;
	width: 64px;
	height: 64px;
	transition: all .3s ease;
	background: url('./jivo.svg') 0 0/cover no-repeat;
	/*background: url('./logo_avatar_for_jivo.svg') 0 0/cover no-repeat;*/
}
@media (max-width: 1100px) {
	#jivo_custom_widget {
		bottom: calc(var(--app-layout-bottom-px) + 12px);
	}
}
/* when you hover the label should be shifted to the right by 3px */
#jivo_custom_widget:hover{
	opacity: .8;
}

/* if there are operators online - show other label*/
#jivo_custom_widget.jivo_online{

}