.climax-chatbot {
	border-radius: 10px;
	box-shadow: 0 0 33px -24px rgba(0, 0, 0, 0.40);
	background-color: #f8f8f8;
	overflow: hidden;
}

.climax-messages {
	position: relative;
	list-style: none !important;
	padding: 20px 10px 0 10px !important;
	margin: 0 !important;
	height: 500px;
	overflow-y: scroll;
	scrollbar-color: #a3a3a3 #F1F1F1;
	scrollbar-width: thin;
}
.climax-messages::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	border-radius: 10px;
	background-color: #eeeeee;
}

.climax-messages::-webkit-scrollbar {
	width: 5px;
	background-color: #F1F1F1;
}

.climax-messages::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	border-radius: 10px;
	background-color: #a3a3a3;
}

.climax-messages .climax-message {
	clear: both;
	overflow: hidden;
	margin-bottom: 20px;
	transition: all 0.5s linear;
	opacity: 0;
}

.climax-messages .climax-message .climax-avatar {
	height: 40px;
	width: 40px;
	background-size: 50% !important;  
	background-repeat: no-repeat !important;
	background-position: center !important;
	border-radius: 50%;
	display: inline-block;
	border: 1px dashed #a6a6a6;
  	opacity: 0.8;
}
.climax-messages .climax-message .text {
	font-size: 16px;
}
.climax-messages .climax-message .timestamp {
	font-size: 10px;
	font-weight: 300;
	text-align: right;
	margin-top: 5px;
}

.climax-messages .climax-message.appeared {
	opacity: 1;
}

.climax-messages .climax-message .text_wrapper {
	display: inline-block;
	padding: 15px;
	border-radius: 6px;
	min-width: 150px;
	position: relative;
	max-width: calc( 100% - 80px);
}

.climax-messages .climax-message .text_wrapper::after,
.climax-messages .climax-message .text_wrapper:before {
	top: 13px;
	border: solid transparent;
	content: ' ';
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.climax-messages .climax-message .text_wrapper::after {
	border-width: 7px;
	margin-top: 0px;
}

.climax-messages .climax-message .text_wrapper::before {
	border-width: 9px;
	margin-top: -2px;
}

/* bot message */

.climax-messages .climax-message.left .climax-avatar {
	float: left;
	background: url('../img/bot.png');
}

.climax-messages .climax-message.left .text_wrapper {
	background-color: #fbaf4a33;
	margin-left: 20px;
}

.climax-messages .climax-message.left .text_wrapper::after,
.climax-messages .climax-message.left .text_wrapper::before {
	right: 100%;
	border-right-color: #fbaf4a1c;
}

.climax-messages .climax-message.left .timestamp {
	color: #000000;
	text-align: left;
}

/* user message */

.climax-messages .climax-message.right .climax-avatar {
	float: right;
	background: url('../img/user.png');
}

.climax-messages .climax-message.right .text_wrapper {
	background-color: #213b7c33;
	margin-right: 20px;
	float: right;
}

.climax-messages .climax-message.right .text_wrapper::after,
.climax-messages .climax-message.right .text_wrapper::before {
	left: 100%;
	border-left-color: #213b7c1c;
}

.climax-messages .climax-message.right .timestamp {
	color: #000000;
}

/* text inpur from user */

.bottom_wrapper {
	background-color: #fff;
	padding: 20px;
	bottom: 0;
	display: flex;
}

.bottom_wrapper #msg_input {
	flex-grow: 1;
	outline-width: 0;
	padding: 12px;
	border: 1px solid #bcbdc0;
	border-radius: 50px;
	margin: 0 7px 0 0;
	font-size: 13px;
}

.bottom_wrapper .app_button_1 {
	background-color: #fbaf4a;
	border-radius: 50px;
	cursor: pointer;
	padding: 12px 27px;
	border: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}

/*////////////////// Responsive /////////////////////*/
@media (max-width: 991px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
	.climax-messages .climax-message .climax-avatar {
		display: none;
	}
	.messages .message .text_wrapper {
		max-width: 100%;
	}
	.messages .message .text {
		font-size: 15px;
	}
}