<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*transition for 2 bots*/
iframe.efo_bot_box,
.wc-webchat-ctn
{
	transition: all .4s ease-in-out;
}
/*fix backdrop element in mobile*/
.wc-webchat-backdrop {
	z-index: -1 !important;
	background-color: #fff !important;
}
/*custom iframe EFO*/
iframe.efo_bot_box {
	width: 450px;
	height: 700px;
	max-width: 100%;
	max-height: 100%;
	right: 10px;
	z-index: 9999;
	position: fixed;
	background-color: transparent;
	border:none;
	box-shadow: 0 0 29px 2px rgb(0 0 0 / 10%);
	bottom: 0;
}
iframe.efo_bot_box.is_mobile {
	width: 100%;
	display: block;
	bottom: 0px;
	right: 0px;
	height: 100%;
}

/*bot hide*/
iframe.efo_bot_box.hide,
.wc-webchat-ctn.hide,
.wc-static-ctn.hide
{
	opacity: 0;
	bottom: -1000px !important;
	top: unset !important;
}</pre></body></html>