.fc-widget-114 {
	position: fixed;
	bottom: 20px;
	z-index: 999999;
	font-family: sans-serif;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.fc-widget-114[style*="left: 20px;"] {
	align-items: flex-start;
}

.fc-toggle-btn-114 {
	background-color: var(--fc-primary-114);
	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;
}

.fc-toggle-btn-114:hover {
	transform: scale(1.05);
}

.fc-window-114 {
	background: #fff;
	width: 320px;
	height: 450px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform-origin: bottom right;
}

.fc-widget-114[style*="left: 20px;"] .fc-window-114 {
	transform-origin: bottom left;
}

.fc-hidden-114 {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.9);
	position: absolute;
	bottom: 80px;
}

.fc-header-114 {
	background-color: var(--fc-primary-114);
	color: #fff;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fc-header-114 h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.fc-close-btn-114 {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}

.fc-body-114 {
	flex: 1;
	padding: 16px;
	overflow-y: auto;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fc-message-114 {
	max-width: 85%;
	padding: 12px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.4;
	word-wrap: break-word;
	animation: fadeIn 0.3s ease;
}

.fc-bot-114 {
	background: #fff;
	color: #333;
	align-self: flex-start;
	border-bottom-left-radius: 4px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.fc-user-114 {
	background: var(--fc-primary-114);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
}

.fc-faq-list-114 {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
	padding-bottom: 8px;
}

.fc-faq-btn-114 {
	background: transparent;
	border: 1px solid var(--fc-primary-114);
	color: var(--fc-primary-114);
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	text-align: left;
}

.fc-faq-btn-114:hover {
	background: var(--fc-primary-114);
	color: #fff;
}

.fc-typing-114 {
	display: flex;
	gap: 4px;
	padding: 12px 16px;
	background: #fff;
	border-radius: 12px;
	border-bottom-left-radius: 4px;
	align-self: flex-start;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.fc-dot-114 {
	width: 6px;
	height: 6px;
	background: #ccc;
	border-radius: 50%;
	animation: typing 1.4s infinite ease-in-out both;
}

.fc-dot-114:nth-child(1) { animation-delay: -0.32s; }
.fc-dot-114:nth-child(2) { animation-delay: -0.16s; }

.fc-footer-114 {
	padding: 12px;
	background: #fff;
	border-top: 1px solid #eee;
}

#fc-form-114 {
	display: flex;
	gap: 8px;
	align-items: center;
}

#fc-input-114 {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 10px 16px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

#fc-input-114:focus {
	border-color: var(--fc-primary-114);
}

#fc-send-btn-114 {
	background: var(--fc-primary-114);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
}

#fc-send-btn-114:hover {
	filter: brightness(1.1);
}

#fc-send-btn-114:active {
	transform: scale(0.95);
}

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

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