.faq-chat-container-53ee3c74 {
	position: fixed;
	bottom: 20px;
	z-index: 999999;
	font-family: sans-serif;
}

.faq-chat-trigger-53ee3c74 {
	background-color: var(--faq-chat-color-53ee3c74);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}
.faq-chat-trigger-53ee3c74:hover {
	transform: scale(1.05);
}

.faq-chat-window-53ee3c74 {
	width: 320px;
	height: 450px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 15px;
	transition: opacity 0.3s ease;
}

.faq-chat-header-53ee3c74 {
	background-color: var(--faq-chat-color-53ee3c74);
	color: #fff;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-chat-header-53ee3c74 h4 {
	margin: 0;
	font-size: 16px;
	color: #fff;
}
.faq-chat-close-53ee3c74 {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
}

.faq-chat-body-53ee3c74 {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-msg-53ee3c74 {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.4;
	word-wrap: break-word;
	animation: fadeIn53ee3c74 0.3s ease;
}

.bot-msg-53ee3c74 {
	background: #e5e5ea;
	color: #333;
	align-self: flex-start;
	border-bottom-left-radius: 2px;
}

.user-msg-53ee3c74 {
	background: var(--faq-chat-color-53ee3c74);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 2px;
}

.faq-chat-footer-53ee3c74 {
	padding: 15px;
	background: #fff;
	border-top: 1px solid #eee;
}

.faq-options-53ee3c74 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq-btn-53ee3c74 {
	background: #fff;
	border: 1px solid var(--faq-chat-color-53ee3c74);
	color: var(--faq-chat-color-53ee3c74);
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 13px;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s ease;
}

/* HIGHLY CUSTOMIZABLE HOVER STATE */
.faq-btn-53ee3c74:hover {
	background: var(--faq-chat-hover-color-53ee3c74);
	border-color: var(--faq-chat-hover-color-53ee3c74);
	color: #fff;
}

.faq-back-container-53ee3c74 {
	display: flex;
	justify-content: center;
	padding-top: 5px;
}

.faq-back-btn-53ee3c74 {
	background: none;
	border: none;
	color: var(--faq-chat-color-53ee3c74);
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 5px 10px;
	transition: color 0.2s ease;
}
.faq-back-btn-53ee3c74:hover {
	color: var(--faq-chat-hover-color-53ee3c74);
	text-decoration: underline;
}

.typing-indicator-53ee3c74 {
	display: flex;
	gap: 4px;
	padding: 12px 14px;
	background: #e5e5ea;
	border-radius: 12px;
	align-self: flex-start;
	border-bottom-left-radius: 2px;
	width: fit-content;
}
.typing-dot-53ee3c74 {
	width: 6px;
	height: 6px;
	background: #999;
	border-radius: 50%;
	animation: bounce53ee3c74 1.4s infinite ease-in-out both;
}
.typing-dot-53ee3c74:nth-child(1) { animation-delay: -0.32s; }
.typing-dot-53ee3c74:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce53ee3c74 {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1); }
}

@keyframes fadeIn53ee3c74 {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
