div.chatIcon{
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 64px;
	height: 64px;
	max-width: 300px;
	max-height: 100%;
}

.btn.closeChat{
	float: left;
	font-size: 80%;
	margin-left: -10px;
}

img.chatIcon{ width: 100%; cursor: pointer; }

div.chatConversation img.chatLogo{ width: 40px; margin-top: -12px;}
div.chatConversation{ display: none; height: 100%; }
div.chatConversation div.chatBox{ height: 100%; }
div.chatConversation div.chatBody{ height: 75%; overflow: auto;}

div.chatConversation div.userChatMsg{ width: 100%; }
div.chatConversation div.userChatMsg>p{ 
	text-align: right;
	background: beige;
	width: 90%;
	padding: 8px 10px;
	border-radius: 15px 0px 15px 15px;
	margin-right: 10%;
	direction: rtl;
}

div.chatConversation div.botChatMsg{ width: 100%; }
div.chatConversation div.botChatMsg>p{ 
	text-align: right;
	background: aliceblue;
	width: 90%;
	padding: 8px 10px;
	border-radius: 0px 15px 15px 15px;
	margin-left: 10%;
	direction: rtl;
}
