/*---------------------------- Chat Section --------------------*/
.scrollToTop{
	width:50px;
	height:50px;
	text-align:center;
	border-radius:50%;
	color:#fff;	
	position:fixed;
	bottom:20px;
	right:50px;
	background:#f15b26;
	font-size: 27px;
	z-index:999;
	display:none;
	line-height: 44px;
}
.live-chat{
	width:380px;
	position:fixed;
	right:50px;
	bottom:85px;
	border-radius:5px;
	background:#eae8e8;
	overflow:hidden;
	z-index:999;	
	font-family: 'Raleway', sans-serif;
	display:none;
}
.live-chat h2{
	background:#f15b26;
	font-size:16px;
	color:#fff;
	padding:5px 10px;
	width:100%;
	float:left;	
	margin:0;
	font-weight:400;
	font-family: 'Raleway', sans-serif;
}
.live-content{
	width:100%;
	float:left;
	padding:10px;	
	min-height:100px;
	font-size:12px;
	line-height:20px;
}
.live-content ul{
	margin:0;
	padding:0;
	line-height:none;	
}
.live-content ul li{
position: relative;
    margin-bottom: 10px;
    width: 100%;
    display: inline-block;
}
.user{
	width:50px;
	float:left;	
}
.chat{
	width:300px;
	float:left;	
}
.comp-chat span, .user-chat span{
    background: #efc3c3;
    display: inline-block;
    padding: 7px 10px;
    border-radius: 2px;
	position:relative;
	font-weight: 500;
}
.comp-chat span:after{
    content: ' ';
    position: absolute;
    left: -7px;
    top: 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid #efc3c3;	
}
.user-chat span:after{
    content: ' ';
    position: absolute;
    right: -7px;
    top: 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #efc3c3;
}
.live-content .form-control {
    background: #efc3c3;
    border: 0;
    box-shadow: none;
    font-size: 12px;
    padding: 0 12px;
	margin-bottom: 0;
}
.user-chat .input-group .form-control{
	width:200px;
	padding:10px;
	border:1px solid #a98080;
	min-height: 36px;
	margin-bottom: 0;
}
.user-chat .input-group .btn {
    width: 70px;
    border-radius: 0;
    padding: 10px 0;
    height: initial;
    font-weight: normal;
    background: #a98080;
    opacity: 1;
}
.live-chat .chat-close {
    padding-top: 13px;
}
.received-msg {
    width: 100%;
    float: left;
    padding: 15px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
}
.received-msg p{
	margin:0;	
}
.msg_container .user-chat .form-control {
    width: 230px;
}
/*----------------------------Close Chat Section --------------------*/