* {
  box-sizing: border-box;
}
.mywhatsapp {
	font-size: 1.25em;
	margin-top: 14px;
	color: white;
}
.iconchat {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 0.5em;
	right: 0.5em;
	background-color: #25d366;
	color: white;
	border-radius: 50px;
	text-align: center;
	font-size: 25px;
	box-shadow: 0px 0px 8px white;
	z-index: 1000;
}
.iconfadeout {
	color: white;
	margin-left: 54px;
	font-size: 1.25em;
	float: right;
	margin-top: 20px;
	margin-right: 16px;
}
.fa-paper-plane{
	margin:18px 5px 0 0;
}
#bubble
{
	width:64px;
	vertical-align:middle;
	margin-left:0.5em;
}
h1.title{
	font-size: 1.25em;
	text-align: left;
	color: white;
	margin-left: 16px;
}
.span_response{
	font-size:14px;
	padding-right: .5em;
	padding-left: .5em;
}
.containerbot {
	display: none;
	background: linear-gradient(#128c7e,#FFFFFF);
	width: 300px;
	height: 300px;
	border-radius: 10px;
	position: fixed;
	bottom: 76px;
	right: 16px;
	z-index: 1000;
}
@media screen and (width <= 800px){
	.containerbot {
		display: none;
		background: linear-gradient(#128c7e,#FFFFFF);
		width: 300px;
		height: 300px;
		border-radius: 10px;
		position: fixed;
		bottom: 62px !important;
		right: 16px;
		z-index: 1000;
	}
}
.chat {
	height:250px;
	width: 100%;
} 
#send{
	width:16px;	
	position:absolute;
	left:270px;
	top:332px;
} 

#input {
	width: 100%;
	border: 1px solid black;
	padding: 1em;
	margin: 0 0 1em 0;
	height: 50px;
	font-size: 14px;
}
#input:focus {
	outline: none;
}
.messages {
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
	height: 100%;
	width: 300px;
	background-image: url("background.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; 
	padding:0.5em;
	border-top: 1px solid black; 
	border-left: 1px solid black; 
	border-right: 1px solid black; 

}
.messages::-webkit-scrollbar {
    display: none;
}
.messages{
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#bot {
	margin-left: auto;
}

.bot {
	font-family: Inter;
}

.avatar {
	height:20px;
	margin-top:-2px;
}
.avatar_user {
	height:20px;
	margin-top:0px;
}

.response {
	background-color:#dcf8c6;
	display: flex;
	border-radius: 10px;
	margin-block-end:1em;
	padding:0.5em;
}