body,
html {
	height: 100%;
	margin: 0;
	background: rgb(255, 255, 255);
	font-family: 'Heebo', sans-serif;
}

#question {
	border-radius: 25px;
	padding-right: 10px;
	line-height: 1.2;
	padding: 8px;
}

#send .fas.fa-location-arrow {
	font-size: 19px;
}

#send {
	margin-left: 5px;
	margin-right: -10px;

}

.chat {
	display: none;
	position: fixed;
	right: 70px;
	bottom: 105px;
	width: 410px;
	/* width: 374px; */
	height: 575px;
	z-index: 1000;
	
}

.animatie_typing .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: 0 1px;
	background-color: rgb(119, 119, 119);
	opacity: 0;
	animation: animatie_typing 1s infinite;
}

.animatie_typing .dot:nth-child(2) {
	animation-delay: 250ms;
}

.animatie_typing .dot:nth-child(3) {
	animation-delay: 500ms;
}

@keyframes animatie_typing {
	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.autoExpand {
	display: block;
	overflow-y: auto;
	resize: none;
	max-height: 200px;
}

.card {
	height: 580px;
	border-radius: 15px !important;
	background-color: rgb(255, 255, 255) !important;
	box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
	border: none;
	
}

.msg_card_body {
	overflow-y: auto;
}


.msg_card_body::-webkit-scrollbar {
	width: 6px;
}

.msg_card_body::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	border-radius: 6px;
}

.msg_card_body::-webkit-scrollbar-track {
	background: rgb(223, 223, 223);
}


.card-header {
	height: 75px;
	border-top: 0;
	border-radius: 15px 15px 0 0 !important;
	border-bottom: 0 !important;
	/* background: linear-gradient(to right, rgb(5, 117, 230), rgb(2, 27, 121)); */
	background: #04528b;
}

.card-footer {
	
	border-radius: 0 0 15px 15px !important;
	border-top: 0 !important;
	/* background: linear-gradient(to right, rgb(5, 117, 230), rgb(2, 27, 121)); */
	background: #04528b;
}

.container {
	align-content: center;
}

.type_msg {
	background-color: rgb(255, 255, 255) !important;
	border: 0 !important;
	color: rgb(0, 0, 0) !important;
	height: 40px !important;
	overflow-y: auto;
	font-size: 15.5px;
	margin-left: -5px;
}

.type_msg:focus {
	box-shadow: none !important;
	outline: 0 !important;
}

.type_msg::-webkit-scrollbar {
	width: 3px;
	opacity: 0;
}

.type_msg::-webkit-scrollbar-thumb {
	background-color: transparent;
}

.type_msg::-webkit-scrollbar-track {
	background: transparent;
}

.user_img {
	height: 55px;
	width: 55px;
	border: 1.5px solid transparent;
}

.user_img_msg {
	height: 40px;
	width: 40px;
	border: 1.5px solid rgb(27, 79, 155);
}

.img_cont {
	position: relative;
	height: 70px;
	width: 70px;


}

.img_cont_msg {
	height: 40px;
	width: 40px;
}

.indicator_online {
	position: absolute;
	height: 12px;
	width: 12px;
	background-color: rgb(76, 209, 55);
	border-radius: 50%;
	bottom: 1.1em;
	right: 1.1em;
	border: 1.5px solid #04528b;
}

.info-chatbot {
	margin-top: 5px;
	margin-bottom: 0;
	margin-left: 6px;
}

.info-chatbot span {
	font-size: 18px;
	margin-bottom: 0;
	color: white;
}

.info-chatbot p {
	margin-top: -5px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

.bot_message_container,
.user_message_container {
	text-align: left;
	text-justify: inter-word;
	letter-spacing: 0;
	word-spacing: 0;
}

.bot_message_container {
	word-break: break-word;
	overflow-wrap: anywhere;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: rgb(217, 222, 231);
	padding: 5px;
	position: relative;
}

.user_message_container {
	color: white;
	word-break: break-word;
	overflow-wrap: anywhere;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 10px;
	margin-left: auto;
	max-width: 90%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border-top-right-radius: 10px;
	background: #04528b;
	padding: 5px;
	position: relative;
}

.msg_time,
.msg_time_send {
	color: grey;
	white-space: nowrap;

}

.msg_time {
	position: absolute;
	left: 0;
	bottom: -15px;
	color: grey;
	font-size: 10px;
}

.msg_time_send {
	position: absolute;
	right: 0;
	bottom: -15px;
	color: grey;
	font-size: 10px;
}

.msg_head {
	position: relative;
}