::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar
{
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

.chatbox{
	height: 100%;
	background: #95a5a6;
	box-shadow: 0px 0px 2px 2px #848484d9;
    border-radius: 4px;
	display:none;
	
}

.chat-box{
	position: fixed;
	right: 20px;
	bottom: 0px;
	background: white;
	width: 300px;
	z-index:11111;
	border-radius: 8px 8px 0px 0px;
	border: 1px solid #00b690;
	box-shadow: 0px 0px 2px 2px #848484d9;
 
}
.chat-head{
	width: inherit;
	height: 30px;
	background: #00b690;
	border-radius: 5px 5px 0px 0px;
}
.chat-head h2{
	color: white;
	padding: 4px;
	display: inline-block;
	font-size: 18px;
    padding: 4px 12px;
    margin: 0px;
}
.chat-head img{
	cursor: pointer;
	float: right;
	width: 25px;
	padding: 0px;
    margin: 0px 10px;
    color: #fff;
}
.chat-body{
	height: 350px;
	width: inherit;
	overflow: auto;
	margin-bottom: 45px;
	overflow-x: hidden;
}
.chat-text{
	position: fixed;
	bottom: 0px;
	height: 45px;
	width: inherit;
}
.chat-text textarea{
	width:85%;
	height: inherit; 
	box-sizing: border-box;
	border: 1px solid #bdc3c7;
	padding: 8px;
	resize: none;

}
.chat_send{
	float: right;
    background: #068bca;
    padding: 9px;
    margin-right: 2px;
    font-size: 25px;
    color: #fff;
    border-radius: 0px;
	cursor: pointer;
	padding: 8px;
    margin: 0px;
}
.chat_send:hover {
    float: right;
    background: #044665;
    padding: 9px;
    margin-right: 2px;
    font-size: 25px;
    color: #fff;
    border-radius: 0px;
    cursor: pointer;
	padding: 8px;
    margin: 0px;
}
.chat-text textarea:active, .chat-text textarea:focus, .chat-text textarea:hover{
	border-color: royalblue;
}
.msg-send{
	background: #e5ffc3;
}
.msg-receive{
	background: #fff9cf;
}
.msg-send, .msg-receive{
	width: 250px;
    padding: 1px 6px 1px 3px;
    margin: 3px auto;
    border-radius: 3px;
    line-height: 17px;
    position: relative;
    color: #000;
	border:1px solid #ddd;
}
.msg-receive:before{
	content: '';
	width: 0px;
	height: 0px;
	position: absolute;
	border: 15px solid;
	border-color: transparent #fff9cf transparent transparent;
	left: -29px;
	top: 1px;
}
.msg-send:after{
	content: '';
	width: 0px;
	height: 0px;
	position: absolute;
	border: 15px solid;
	border-color: transparent transparent transparent #e5ffc3;
	right: -29px;
	top: 1px;
}
.msg-receive:hover, .msg-send:hover{
	opacity: .9;
}
.small{
	font-size: 11px;
}
.msg-send > p{
	padding:0px;
	margin:0px;
}
.msg-receive > p{
	padding:0px;
	margin:0px;
}

.chat_login{
	margin: 48% auto;
    text-align: center;
    font-size: 24px;
}
.login_bg{
	background: #dadada;
}

.newchat {
    position: absolute;
    z-index: 111;
    margin-top: -20px;
    background: #ff010c;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #fff;
}


.list-inline>li {
    display: inline-block;
    padding-right: 3px;
    padding-left: 3px;
}









