#chat-area{
	width: auto;
	position: fixed;
	bottom: 0px;
	right: 70px;
	z-index: 100;
}

.chat-new-message{
	margin-left: 10px;
	display: inline-block;
	font-weight: 500;
    font-size: 13px;
    color: #fff;
    background-color: #06d755;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    text-align: center;
}

.chat-list{
	display: block;
	width: 270px;
	margin-left: 20px;
}

.chat-list-header{
	padding: 8px 15px;
	font-weight: 500;
    color: #8b8b8b;
	background-color: #f7f7f7;
	border-radius: 10px 10px 0px 0px;
	box-shadow: 0 3px 3px rgba(0,0,0,.3);
	border: 1px solid #e0e0e0;
}.chat-list-header:hover #chat-action{color: #353535;}
.chat-list-body{
	position: relative;
	height: 300px;
	background-color: #fff;
	box-shadow: 0 3px 3px rgba(0,0,0,.3);
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
	transition: max-height 2000ms ease-in-out;
}.chat-list-body-users{
	position: relative;
	height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
}
.chat-list-body-user{
	display: block;
    background-color: #fcfcfc;
    border-bottom: 1px solid #ebebeb;
	padding: 7px 10px;
}.chat-list-body-user:hover{
	background-color: #fbfbfb;
	text-decoration: none;
}

.chat-list-body-user .img{
	height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 3px solid #bcbcbc;
}
.chat-list-body-user .img.online{
	border-color: #37a000;
}
.chat-list-body-user .img.idle{
	border-color: #ffc757;
}

.chat-list-body-user .user-info{
	font-weight: 500;
}
.chat-list-body-user .user-info-status{
	font-weight: 400;
	font-size: 12px;
}


.chat{
	display: block;
	width: 290px;
	margin-left: 20px;
}

.chat-header{
	font-weight: 500;
    color: #8b8b8b;
	padding: 7px 15px;
	background-color: #f7f7f7;
	border-radius: 10px 10px 0px 0px;
	box-shadow: 0 3px 3px rgba(0,0,0,.3);
	border: 1px solid #e0e0e0;
}.chat-header:hover #chat-action{color: #353535;}
.chat-header .img{
	height: 26px;
    width: 26px;
    border-radius: 50%;
	border: 2px solid #bcbcbc;
}
.chat-header .img.online{
	border-color: #37a000;
}
.chat-header .img.idle{
	border-color: #ffc757;
}

.chat-body{
	position: relative;
	height: 300px;
	background-color: #fff;
	box-shadow: 0 3px 3px rgba(0,0,0,.3);
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
	transition: max-height 2000ms ease-in-out;
}.chat-body-messages{
	position: relative;
	height: 255px;
	padding: 10px 15px;
	overflow-y: auto;
}
/* width */
.chat-body-messages::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.chat-body-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.chat-body-messages::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 2px;
}

/* Handle on hover */
.chat-body-messages::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}
.chat-message{
	max-width: 170px;
	display: inline-block;
	background-color: #dceefc;
	padding: 4px 8px;
	font-size: 13px;
	font-weight: 500;
	color: #676767;
	border-radius: 5px;
	border: 1px solid #b7d9f3;
}.chat-message.my{
	background-color: #f3f3f3;
	color: #585858;
	border-color: #cecece;
}.chat-time{
	font-weight: 500;
	font-size: 11px;
	color: #737373;
}

.chat-body-chat{
	width: 100%;
	height: 44px;
	position: absolute;
	bottom: 0px;
}
.chat-btn{
	position: absolute;
    top: 0px;
    right: 0px;
	width: 44px;
	height: 44px;
	font-size: 18px;
    color: #fff;
    background-color: #06d755;
}.chat-btn:hover{
	background-color: #07bb4b;
}