*{
	box-sizing:border-box;
}

body{
	background-color:#abd9e9;
	font-family: Arial, sans-serif;
	font-size: 15px;
}

#container{
	width:50vmin;
	background:#eff3f7;
	margin:0 auto;
	padding: 10px 0;
	border-radius:5px;
	overflow:hidden;
	flex-direction: column;
}

#chat-circle, #container{
	transition: 0.5s ease-in-out;
	scale:0;
	position: fixed;
	bottom: 15px;
	right: 15px;
}



#container[scale], #chat-circle[scale] {
	scale:1;
}

#chat-box-toggle {
  float:left;
  cursor:pointer;
}

h2{
	margin-left: 10px;
}

.status{
	width:8px;
	height:8px;
	border-radius:50%;
	display:inline-block;
	margin-right:7px;
}
.green{
	background-color:#58b666;
}
.orange{
	background-color:#ff725d;
}
.blue{
	background-color:#6fbced;
	margin-right:0;
	margin-left:7px;
}

#container-head div {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

#container-head  img {
	padding: 0 5px;
}

#chat{
	padding-left:0;
	margin:0;
	height: 30vh;
	list-style-type:none;
	overflow-x: hidden;
	overflow-y:scroll;
	min-height:100px;
	border-top:2px solid #fff;
	border-bottom:2px solid #fff;
}
#chat li{
	padding:10px 30px;
}
#chat h2,#chat h3{
	display:inline-block;
	font-size:13px;
	font-weight:normal;
}
#chat h3{
	color:#bbb;
}
#chat .entete{
	margin-bottom:5px;
}
#chat .message{
	padding:20px;
	color:#fff;
	line-height:25px;
	max-width:90%;
	display:inline-block;
	text-align:left;
	border-radius:5px;
}
#chat .user{
	text-align:right;
}
#chat .llama3 .message{
	background-color:#58b666;
}
#chat .user .message{
	background-color:#6fbced;
}
#chat .triangle{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 10px 10px;
}
#chat .llama3 .triangle{
		border-color: transparent transparent #58b666 transparent;
		margin-left:15px;
}
#chat .user .triangle{
		border-color: transparent transparent #6fbced transparent;
		margin-left:375px;
}

#container #container-foot{
	padding:20px 30px 10px 20px;
}

#container #container-foot textarea{
	resize:none;
	border:none;
	display:block;
	width:100%;
	border-radius:3px;
	padding:20px;
	font-size:13px;
	margin-bottom:13px;
}

#container #container-foot textarea::placeholder{
	color:#ddd;
}

