.ino-chat {
	background-color: #ffffffe3;
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity 0.2s;
	z-index: 9999;
	position: fixed;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	display: none;
}
.ino-chat.visible {
	background-color: #ffffffe3;
	backdrop-filter: blur(3px);
	opacity: 1;
}
.ino-chat-container {
	opacity: 0;
	width: 800px;
	height: 80%;
	top: 10%;
	left: calc(50% - 400px);
	transform: scale(0.9);
	transition: transform 0.3s, opacity 0.3s;
	transition-delay: 0.2s;
	position: fixed;
	z-index: 999;
}
.ino-chat-container.visible {
	opacity: 1;
	transform: scale(1);
}
.ino-chat-container button {
	position: fixed;
	z-index: 99999;
	top: 18px;
	right: 18px;
}
.ino-chat-container iframe {
	box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
}
.ino-chat .chat-message-markdown ul li {
	margin-bottom: 0 !important;
}
@media (max-width: 781px) {
	.ino-chat-container {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}
}
