/* Design TCHAT LIVE */

.msg-send-conversation-btn
{
	width: 19%;
	float: right;
	height: 36px;
}

.msg-post-blacklist
{
	float: right;
	margin-right: 10px;
	cursor: pointer;
}

.messagelive
{
	width: 77%;
	height: 30px;
}

.msg-conversation
{
	overflow: hidden;
	flex-direction: column;
	position: relative;
	display: flex;
	height: 244px;
	overflow-y: scroll;
}

.msg-post
{
	position: relative;
	bottom: 0;
	width: 260px;
	height: 310px;
	background-color: #ffffff;
	right: 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	display: flex;
	float: left;
	margin-right: 5px;
	border: 1px solid #7b7b7b;
	overflow: hidden;
	flex-direction: column;
	z-index: 10000;
}

.msg-post-message
{
	float: left;
	margin-left: 5px;
	margin-top: 7px;
	font-size: 13px;
	width: 84%;
}

.msg-post-user-vignette
{
	float: left;
	width: 30px;
	border-radius: 30px;
	overflow: hidden;
	height: 30px;
}

.msg-post-user
{
	float:right;
}

.msg-post-user-vignette img
{
	width:30px;
	height:30px;
}

.msg-post-conversation
{
	padding:6px;
}

.msg-post-close
{
	float: right;
	margin-right: 20px;
	cursor: pointer;
}

.msg-post-title
{
	width: 100%;
	padding-top: 7px;
	padding-bottom: 5px;
	background-color: #e74c3c;
	height: 19px;
	color: #fff;
	font-size: 13px;
	padding-left: 10px;
}

#msg-instant
{
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 10000;
}