.lottie-animation-container {
	width: var(--lottie-animation-container-width);
	height: var(--lottie-animation-container-height);
	background-color: var(--lottie-animation-container-background-color);
	overflow: hidden;
	margin: var(--lottie-animation-margin)
}

.lottie-animation-container svg {
	transform: scale(var(--lottie-animation-scale))
}


.navbar-brand {
	font-weight: bold;
}

.offcanvas-end {
	width: 400px;
}

.chat-container {
	height: calc(100vh - 200px);
	display: flex;
	flex-direction: column;
}

.chat-header {
/*	 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	color: #6d6d6d;
	padding: 10px;
	border-radius: 0;
	border-bottom: 1px solid #e0e0e0;
}



.chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 10px;
	background: #f8f9fa;
}

.message {
	margin-bottom: 15px;
	display: flex;

}

.message-bot-main {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-end;
}

.message-user-main {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-end;
	flex-direction: row-reverse;
	margin-right: 5px;
}

.message.user {
	justify-content: flex-end;
}

.message.bot {
	justify-content: flex-start;
}

.message-content {
	max-width: 80%;
	padding: 12px 16px;
	border-radius: 18px;
	position: relative;
	word-wrap: break-word;
/* 	white-space: pre-line; */
    white-space: pre-wrap; 
}



.message.user .message-content {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	margin-left: 5px;

}

.message.bot .message-content {
	background: white;
	color: #333;
	border: 1px solid #e0e0e0;
	margin-right: 5px;
}

.message-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
	margin-right: 5px;
}

.hub-logo-avatar {
	margin-right: 7px;    
}

.message.user .message-avatar {
	background: #28a745;
	color: white;
	order: 2;
}

.message.bot .message-avatar {
	background: #6c757d;
	color: white;
	order: 0;
}

.message-time {
	font-size: 11px;
	color: #6c757d;
	margin-top: 4px;
	text-align: center;
}

.chat-input-container {
	padding: 20px;
	background: white;
	border-top: 1px solid #e0e0e0;
}

.typing-indicator {
	display: block;
	padding: 12px 16px;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 18px;
	margin-right: 20px;
	max-width: 80px;
	
}

.typing-dots {
	display: flex;
	gap: 4px;
}

.typing-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #6c757d;
	animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
	animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes typing {

	0%,
	60%,
	100% {
		transform: translateY(0);
		opacity: 0.4;
	}

	30% {
		transform: translateY(-10px);
		opacity: 1;
	}
}

.quick-replies {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
	max-width: 70%;
}

.quick-reply {
	background: #e9ecef;
	border: 1px solid #dee2e6;
	border-radius: 20px;
	padding: 6px 12px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quick-reply:hover {
	background: #667eea;
	color: white;
	border-color: #667eea;
}

.online-status {
	width: 10px;
	height: 10px;
	background: #28a745;
	border-radius: 50%;
	display: inline-block;
	margin-left: 8px;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
	}
}

.hero-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
}

.chat-icon-btn {
	position: relative;
}

.chat-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #dc3545;
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
 
.offcanvas {
	width: 50% !important;
}