.chatbot {
	--yellow: #FEE600;
	--grey: #F2F2F2;
	--black: #2B2D33;

	color: var(--black);
}

.chatbot__toggler {
	position: fixed;
	z-index: 100;
	bottom: 30px;
	right: 35px;
	height: 40px;
	width: 40px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	background: var(--yellow);
	transition: all 0.2s ease;
}

.chatbot__toggler span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: fit-content;
}

body.show-chatbot #chatbot-toggler {
	transform: rotate(90deg);
}

#chatbot-toggler span {
	color: #fff;
	position: absolute;
}

body.show-chatbot #chatbot-toggler span:first-child,
#chatbot-toggler span:last-child {
	opacity: 0;
}

body.show-chatbot #chatbot-toggler span:last-child {
	opacity: 1;
}

.chatbot-popup {
	position: fixed;
	z-index: 101;
	right: 25px;
	bottom: 90px;
	width: 360px;
	background: #fff;
	overflow: hidden;
	border-radius: 10px;
	opacity: 0;
	transform: scale(0.2);
	transform-origin: bottom right;
	pointer-events: none;
	box-shadow: 0 0 128px rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
	transition: all 0.1s ease;
}

body.show-chatbot .chatbot-popup {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}

.chat-header {
	display: flex;
	align-items: center;
	background: #5350c4;
	padding: 15px 22px;
	justify-content: space-between;
}

.chat-header .header-info {
	display: flex;
	gap: 10px;
	align-items: center;
}

.header-info .chatbot-logo {
	height: 35px;
	width: 35px;
	padding: 6px;
	fill: #5350c4;
	flex-shrink: 0;
	background: #fff;
	border-radius: 50%;
}

.header-info .logo-text {
	color: #fff;
	font-size: 1.31rem;
	font-weight: 600;
}

.chat-header #close-chatbot {
	border: none;
	color: #fff;
	height: 40px;
	width: 40px;
	font-size: 1.9rem;
	margin-right: -10px;
	padding-top: 2px;
	cursor: pointer;
	border-radius: 50%;
	background: none;
	transition: 0.2s ease;
}

.chat-header #close-chatbot:hover {
	background: #3d39ac;
}

.chat-body {
	padding: 20px;
	display: flex;
	gap: 12px;
	height: 368px;
	margin-bottom: 82px;
	overflow-y: auto;
	flex-direction: column;
}

.chat-body__caution {
	text-align: center;
	color: #8E8E8E;
	font-size: 12px;
	line-height: 122%;
}

.chat-body__caution p:not(:last-child) {
	margin-bottom: 0.5em;
}

.chat-body::-webkit-scrollbar {
	display: none;
}

.chat-body .message {
	display: flex;
	gap: 8px;
	align-items: center;
}

.chat-body .bot-message .bot-avatar {
	height: 30px;
	width: 30px;
	padding: 6px;
	flex-shrink: 0;
	margin-bottom: 2px;
	align-self: flex-end;
	background: var(--yellow);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.chat-body .user-message {
	flex-direction: column;
	align-items: flex-end;
}

.chat-body .message .message-text {
	padding: 11px 14px;
	max-width: 85%;
	font-size: 14px;
	background: var(--grey);
}


.chat-body .bot-message.thinking .message-text {
	padding: 2px 16px;
}

.chat-body .bot-message .message-text {
	background: var(--grey);
	border-radius: 10px 10px 10px 0px;
}

.chat-body .user-message .message-text {
	background-color: var(--yellow);
	border-radius: 10px 10px 0px 10px;
	white-space: pre-wrap;
}

.chat-body .bot-message .thinking-indicator {
	display: flex;
	gap: 4px;
	padding-block: 15px;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
	animation-delay: 0.2s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
	animation-delay: 0.3s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
	animation-delay: 0.4s;
}

.chat-body .bot-message .thinking-indicator .dot {
	height: 7px;
	width: 7px;
	opacity: 0.7;
	border-radius: 50%;
	background: #D7CDF5;
	animation: dotPulse 1.8s ease-in-out infinite;
}

.chat-footer__label {
	margin-top: 6px;

	color: #8E8E8E;
	text-align: center;
	font-size: 9px;
	font-weight: 400;
	line-height: 102%;
}

@keyframes dotPulse {

	0%,
	44% {
		transform: translateY(0);
	}

	28% {
		opacity: 0.4;
		transform: translateY(-4px);
	}

	44% {
		opacity: 0.2;
	}
}

.chat-footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: white;
	padding: 15px 22px 20px;
}

.chat-footer .chat-form {
	display: flex;
	align-items: center;
	background: white;
	border-radius: 32px;
	outline: 1px solid #cccce5;
}

.chat-footer .chat-form:focus-within {
	outline: 2px solid #5350c4;
}

.chat-form .message-input {
	border: none;
	outline: none;
	height: 47px;
	width: 100%;
	resize: none;
	max-height: 180px;
	white-space: pre-line;
	font-size: 15px;
	padding: 13px;
	border-radius: inherit;
	scrollbar-width: thin;
	scrollbar-color: transparent transparent;
}

.chat-form .message-input::hover {
	scrollbar-color: #ccccf5 transparent;
}

.chat-form .chat-controls {
	display: flex;
	height: 47px;
	gap: 3px;
	align-items: center;
	align-self: flex-end;
	padding-right: 6px;
}

.chat-form .chat-controls button {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	border: none;
	font-size: 1.15rem;
	cursor: pointer;
	color: #706db0;
	background: none;
	border-radius: 50%;
	transition: 0.2s ease;
}

.send-message {
	display: flex;
	justify-content: center;
	align-items: center;
}

.chat-form .chat-controls #send-message {
	color: #fff;
	display: none;
	/* background: #5350c4; */
}

.chat-form .message-input:valid~.chat-controls #send-message {
	display: flex;
}

/* .chat-form .chat-controls #send-message:hover {
	background: #3d39ac;
} */

.chat-form .chat-controls button:hover {
	background: #f1f1f1;
}

.chat-body .user-message .attachment {
	width: 50%;
	margin-top: -7px;
	border-radius: 13px 3px 13px 3px;
}

em-emoji-picker {
	position: absolute;
	left: 50%;
	top: -337px;
	width: 100%;
	max-width: 350px;
	max-height: 330px;
	visibility: hidden;
	transform: translateX(-50%);
}

body.show-emoji-picker em-emoji-picker {
	visibility: visible;
}

/* Responsive for mobile screen */
@media screen and (max-width: 600px) {
	.chatbot-popup {
		width: 100%;
		right: 0;
		bottom: 0;
		border-radius: 0;
		height: 100%;
	}

	.chat-header .header-info .logo-text {
		font-size: 1.1rem;
	}

	.chat-body {
		height: 100%;
		margin-bottom: 0;
	}

	.chat-body .message .message-text {
		max-width: 85%;
	}

	.chat-footer .chat-form {
		border-radius: 0;
		border-radius: 25px;
	}

	.chat-footer .chat-form .message-input {
		border-radius: 0;
	}

	.chat-footer .chat-form .chat-controls {
		padding-right: 10px;
	}

	.chat-footer .chat-form .chat-controls button {
		height: 40px;
		width: 40px;
	}
}