#mcu-chatbot-chat-container {
    position: fixed;
    z-index: 999998;
	right: 25px;
	bottom: 90px;
/*
	border:2px red solid;
*/
}

#mcu-chatbot-box {
	/*
	width: calc(25vw);
	min-width: 400px;
	*/
	width: calc(90vw - 25px);
	max-width: 500px;
	height: calc(80vh - 50px);
	box-shadow:5px 5px 15px -5px rgba(0,0,0,0.5);
}

#mcu-chatbot-box img{
	width: 100%;
	height: 100%;
}

#mcu-chatbot-box-head {
/*	border:1px black solid;*/
	border-radius: 10px 10px 0 0;
	background-image: url("images/head-banner.png");
/*	height: calc(10vh); */
	height: 100px;
	white-space: nowrap;
	overflow: hidden;
}

#mcu-chatbot-box-head-picture-box {
/*	border:1px red solid; */
	background-image: url("images/bot-head-picture.png");
	background-size: contain;
	background-repeat:no-repeat;
	height: 80px;
	width: 80px;
	margin: 10px;
	display: inline-block;
	vertical-align: top;
}

#mcu-chatbot-box-head-text-box {
/*	border:1px black solid; */
	height: 70px;
	width: calc(90% - 100px);
	display: inline-block;
	margin: 10px;
	min-width: 50px;
	overflow: hidden;
}

#mcu-chatbot-box-head-text {
/*	border:1px red solid;*/
	color: white;
	font-size: 20px;
	height: 90%;
	display: flex;
	align-items: flex-start;
	white-space: normal;
}
#mcu-chatbot-box-body {
/*	border:1px red solid;*/
	background-color: #efefee;
	height: calc(80vh - 200px);
	overflow: auto;
}

#mcu-chatbot-box-footer {
/*	border:1px red solid;*/
	background-color: #c9c9ca;
/*	height: calc(14vh - 50px);
	max-height: 100px;
*/
	height: 50px;
	display: flex;
	align-items: center;
	overflow:hidden;
}

#mcu-chatbot-editor {
	border: none;
	background-color: #c9c9ca;
	resize: none;
	overflow: auto;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	height: 100%;
	width: 100%;
	font-size: 20px;
}

input[id^="mcu-chatbot-editor"]::-webkit-input-placeholder { 
  color: #666;
}

#mcu-chatbot-editor-container {
/*	border:1px black solid;*/
	border: none;
	height: 60%;
	width: 78%;
	padding-left: 10px;
}

#mcu-chatbot-editor-voice-container {
/*	border:1px black solid;*/
	border: none;
	background-color: #c9c9ca;
	background-image: url("images/mic-black.png");
	background-size: contain;
	background-repeat:no-repeat;
	cursor: pointer;
	outline: none;
	height: 50%;
	width: 10%;
	float: right;
	visibility: hidden;
	opacity:0.5;
}

#mcu-chatbot-editor-send-container {
/*	border:1px black solid;*/
	border: none;
	background-color: #c9c9ca;
	background-image: url("images/send-button.png");
	background-size: contain;
	background-repeat:no-repeat;
	cursor: pointer;
	outline: none;
	height: 50%;
	width: 10%;
	float: right;
	opacity:0.5;
}

#mcu-chatbot-button {
	width: 90px;
	height: 90px;
	float: right;
	cursor: pointer;
	background-image: url("images/chatbot-button.png");
	background-size: cover;
/*
	border:2px red solid;
*/
/*
	background-color: rgba(255, 255, 255); //背景色
	border-radius: 99em; //背景圓型
*/
}

#mcu-chatbot-button img {
	width: 100%;
	height: 100%;
}

.mcu-chatbot-wrapper{
/*	border:1px red solid; */
	padding: 10px;
}

/* ul */
.mcu-chatbot-messages-container{
	list-style: none;
	font-size: 16px;
	margin: 0;
}
/* li left */
.mcu-chatbot-msg {
	clear: both;
	display: flex;
	align-items: flex-end;
	float: left;
	padding: 8px 15px;
	max-width: 80%;
	background-color: #fff;
	border-radius: 10px;
    line-height: 150%;
	box-shadow: 1px 1px 1px #77bdb7;
	margin-bottom: 10px;
	word-break: break-all;
	
}

/* li right */
.mcu-chatbot-user-msg {
	clear: both;
	display: flex;
	align-items: flex-end;
	float: right;
	flex-direction: row-reverse;
	padding: 8px 15px;
	max-width: 80%;
	background-color: #FAFEC7;
	border-radius: 10px;
    line-height: 150%;
	box-shadow: 1px 1px 1px #77bdb7;
	margin-bottom: 10px;
	word-break: break-all;
	
}
