* {
  box-sizing: border-box;
}

/*html {
	height: 100%;

}*/

/*body {
  font-family: 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	background-color: rgba(223, 242, 247, .5);
	height: 100%;
	margin: 0;
}*/

span {
	padding-right: 15px;
	/*padding-left: 15px;*/
}
/*a::after {
	content: '';
	flex: 1;
	margin-left: 1rem;
	height: 1px;
	background-color: #000;
}*/

/*.container {
	display: flex;
  justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.chat {
	height: 300px;
	width: 50vw;
	display: flex;
	flex-direction: column;
  justify-content: center;
	align-items: center;
} */

::-webkit-input-placeholder { 
	color: .711 
}

input {
	width: 100%;
	border: 0;
	padding: 15px;
	margin-left: auto;
	border-radius: 10px;
}
#chat input#input {
	border: #6b6b6b solid 1px;
}

.messages {
	display: block;
	flex-direction: column;
	overflow: auto;
	height: 80%;
	width: 100%;
	background-color: white;
	padding: 15px;
	margin-bottom: 15px;
	margin-top: 15px;
	border-radius: 10px;
}

#bot {
	margin-left: auto;
	text-align: left;
}

.bot {
	font-family: Consolas, 'Courier New', Menlo, source-code-pro, Monaco,  
	monospace;
}

.avatar {
	height: 25px;
}



.response {
	display: block;
	text-align: right;
	margin: 0%;
}
#spanmess > img {
	background: red;
	flex-shrink: 1;
	flex-basis: auto;
	width: 150px !important;
	height: 100px !important;
}

.chatBoxWrap {
	max-width: 500px;
	margin: auto;
	padding: 15px;
}

	.chatBoxWrap h2 {
		margin: 0 0 10px;
		text-align: center;
		font-size: 18px;
		font-weight: 600;
	}

	.chatBoxWrap .message {
		margin-bottom: 15px;
	}

		.chatBoxWrap .message p {
			margin: 0 0 5px;
		}

	.chatBoxWrap .inputWrap {
		margin-bottom: 10px;
	}

		.chatBoxWrap .inputWrap label {
			display: block;
			margin-bottom: 5px;
			font-size: 13px;
		}

		.chatBoxWrap .inputWrap input {
			width: 100%;
			padding: 8px 10px;
			font-size: 14px;
			border-radius: 5px;
			border: #ccc solid 1px;
		}

	.chatBoxWrap .errorinp {
		margin: 5px 0 10px;
		font-size: 12px;
		color: red;
	}

	.chatBoxWrap button#btnsend {
		font-size: 14px;
		padding: 8px 20px;
		border-radius: 6px;
		border: none;
		background-color: #000;
		color: #fff;
	}
 

/* Mobile */

@media only screen and (max-width: 980px) {
  .container {
		flex-direction: column; 
		justify-content: flex-start;
	}
}
@media only screen and (max-width: 767px) {
	.cpmessages {
		height: 64% !important;
	}
}