/*******************************/
	/******* Chat CSS *******/
	/*******************************/

	#click{
	display: none;
	}
	label{
	position: fixed;
	right: 20px;
	bottom: 90px;
	height: 55px;
	width: 55px;
	background:#008ae8;
	text-align: center;
	line-height: 55px;
	border-radius: 50px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index:9999999;
	}
	
	.badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: red;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: bold;
	}
	label i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease;
	}
	label i.fas{
	opacity: 0;
	pointer-events: none;
	}
	#click:checked ~ label i.fas{
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) rotate(180deg);
	}
	#click:checked ~ label i.fab{
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) rotate(180deg);
	}
	.wrapper{
	position: fixed;
	right: 60px;
	bottom: 0px;
	max-width: 450px;
	border-radius: 15px;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	opacity: 0;
	pointer-events: none;
	transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
	z-index:9999999;
	}
	#click:checked ~ .wrapper{
	opacity: 1;
	bottom: 155px;
	pointer-events: auto;
	}
	.wrapper .head-text{
	line-height: 60px;
	color: #fff;
	border-radius: 15px 15px 0 0;
	padding: 0 30px;
	font-weight: 500;
	font-size: 30px;
	text-align: center;
	background: #008ae8;
	}
	.wrapper .chat-box{
	padding: 20px;
	width: 100%;
	height:auto;
	color: #fff;
	background: #ffffff;
	}
	.chat-box .desc-text{
	color: #828282;
	text-align: center;
	line-height: 25px;
	font-size: 17px;
	font-weight: 500;
	}
	.chat-container {
	width: 100%;
	max-width: 450px;
	height:auto;
	background: white;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	}
	.chat-box {
	padding: 15px;
	height: 350px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
	}
	.message {
	padding: 10px;
	border-radius: 8px;
	max-width: 80%;
	animation: fadeInUp 0.25s ease;
	font-size: 18px;
	line-height: 1.4;
	}
	.bot {
	background: #202c45;
	align-self: flex-start;
	}
	.user {
	background: #3c70a2;
	color: white;
	align-self: flex-end;
	}
	#typingIndicator {
	opacity: 0.6;
	font-style: italic;
	display: none;
	}
	@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
	}
	.input-area {
	display: flex;
	border-top: 1px solid #fafafa;
	}
	.input-area input {
	flex: 1;
	padding: 12px;
	border: none;
	outline: none;
	font-size: 18px;
	}
	.input-area button {
	padding: 12px 20px;
	border: none;
	background: #008ae8;
	color: white;
	cursor: pointer;
	font-size: 14px;
	}
	#inlineForm {
	padding: 5px;
	display: none;
	background: #ffffff;
	border: 1px solid #fafafa;
	}
	#inlineForm input, #inlineForm button {
	width: 100%;
	padding: 10px;
	margin-top: 8px;
	font-size: 14px;
	box-sizing: border-box;
	border-top:none;
	border-left:none;
	border-right:none;
	border-bottom:1px solid #cccccc;
	}
	#inlineForm button {
	background: #202c45;
	color: #fff;
	border: none;
	cursor: pointer;
	}
	.error-text {
	color: #d9534f;
	font-size: 12px;
	margin-top: 4px;
	display: none;
	}