.ai-chat-icon {
	width: 80px;
	height: 80px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: url(aichat-icon.svg) no-repeat center;
	background-size: contain;
	z-index: 9999;
	cursor: pointer;
	font-size: 0;
}
.anothemes-chatbot {
	position: fixed;
	bottom: 110px;
	right: 20px;
	width: 100%;
	max-width: 300px;
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
	z-index: 9999;
	background: #FFF;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.5);
	transform-origin: right bottom;
	transition: all 0.3s ease 0s;
}
.anothemes-chatbot.chat-open {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.anothemes-chatbot .chat-header {
	height: 68px;
	background: #F69238;
	color: #FFF;
	padding: 13px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 60px;
	font-size: 16px;
	font-weight: 500;
}
.anothemes-chatbot .chat-header:before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url(chatbot.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 13px;
	margin-top: -20px;
}
.ai-close-chat {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 0;
	background: url(ai-close.svg) no-repeat center;
}
.ai-close-chat:hover {
	transform: scale(1.1);
}
.anothemes-chatbot #chat-log {
	height: 295px;
	overflow-y: auto;
	padding: 13px;
}
.anothemes-chatbot .chat-message {
	border-radius: 10px;
	color: #444444;
	padding: 10px;
	margin-bottom: 27px;
}
.anothemes-chatbot .user-message {
	float: right;
	background: #BAE5F0;	
	max-width: 210px;
}
.anothemes-chatbot .bot-message {
	background: #E7EFF8;
	margin-left: 30px;
	max-width: 220px;
	clear: both;
	position: relative;
}
.anothemes-chatbot .bot-message:before {
	width: 24px;
	height: 24px;
	background: url(chatbot-s.svg) no-repeat center;
	background-size: contain;
	content: "";
	position: absolute;
	display: block;
	bottom: -10px;
	left: -31px;
}
.anothemes-chatbot #chat-log ul {
	margin-bottom: 8px;
}
.anothemes-chatbot #chat-log ul li {
	margin-left: 13px;
	margin-bottom: 4px;
}
.chat-footer {
	height: 50px;
	border-top: 1px solid #D9D9D9;
	position: relative;
}
.chat-footer #chat-input {
	display: block;
	height: 50px;
	border: none;
	background: none;
	padding: 10px 40px 10px 13px;
	line-height: 30px;
	width: 100%;
	outline: none;
}
.chat-footer .chat-send {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40px;
	border: none;
	background: url(chat-send.svg) no-repeat center;
	background-size: 14px;
	font-size: 0;
	cursor: pointer;
}
.typing .dot {
  height: 6px;
  width: 6px;
  margin: 0 2px;
  background-color: #555;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.4s infinite both;
}
.typing .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% { opacity: .2; }
  20% { opacity: 1; }
  100% { opacity: .2; }
}
@media screen and (max-width: 767px) {
	.ai-chat-icon {
		width: 50px;
		height: 50px;
		right: 15px;
		bottom: 15px;
	}
	.anothemes-chatbot {
		bottom: 75px;
		right: 15px;
	}
}