/* 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;
    bottom: 0px;
    z-index: 300000;
    cursor: pointer;
    background: var(--onyx);
    color: #fff;
    height: 64px;
    transition: all .2s linear;
    width: 100%;
    right: 0;
    padding: 20px 30px;
}
#jivo_custom_widget a{
	color: #fff;
}
#chat_overlay p.subtext {
    font-family: 'English1766';
    font-size: 18px;
    margin-bottom: 0px;
}
p.subtext svg line {
    stroke: #fff;
}
span.custom_chat_close svg path {
    fill: #fff;
}
.custom_chat_close svg {
    margin-left: 50px;
    float: right;
}

div#chat_buttons {
    display: flex;
    gap: 35px;
    justify-content: center;
}
.footer_tag-contact path {
    stroke: #fff;
    transition: all .2s linear;
}
.footer_tag-contact:hover path {
    stroke: var(--citrine);
}


.footer_tag-contact {
    text-align: center;
}


@media (min-width:992px){
	#jivo_custom_widget{
		right: 70px;
		padding: 20px 20px;
		width: 304px;
	}
	.custom_chat_close svg{
		float: none;
	}
}


/* 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-image: url(images/jivo_widget_online.png);
}*/