@font-face {
    font-family: Bebas;
    src: url(../fonts/bebas.ttf);
}

.userList{
	width: 100%;
}

.userName{
	margin-bottom: 10px;
	border-bottom: 1px solid #dedede;
	height: 70px;
}

.messageBox{
	width: 100%;
	height: 500px;
	border: 1px solid #dedede;
	overflow-y: auto;
}

.profilePhoto{
	margin-top: 10px;
}

.messageReply{
	margin-top: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #dedede;
	padding-bottom: 10px;
}

.personuserName{
	color: blue;
}

.messageTime{
	color: #dedede;
}

.txtBoxChat{
	width: 100%;
	padding: 20px;
	border: 1px solid #dedede;
	margin-top: 10px;
}

.txtMsg{
	height: 70px;
	width: 100%;
	resize: none;
	outline: none;
}

.btnSendMsg{
	font-weight: bold;
    padding: 7px 9px;
    background-color: #5fcf80;
    color: #fff !important;
    font-size: 12px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 1px 0px rgba(0,0,0,0.15);
    border-width: 1px 1px 3px !important;
    border-style: solid;
    border-color: #3ac162;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
    -moz-box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
    box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
	outline: none;
	width: 100px;
}

.onlineStatus{
	margin-bottom: 10px;
}

.offline{
    height: 14px;
    padding-left: 13px;
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    background: url('../images/walliconss.png?v=1') no-repeat -4px -345px;
    height: 14px;
}

.online{
    height: 14px;
    padding-left: 13px;
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    background: url('../images/walliconss.png?v=1') no-repeat -4px -329px;
    height: 14px;
}

/*new chat box*/
.chatBox{
	width: 320px;
	height: 400px;
	position: fixed;
	bottom: 0px;
	right: 0px;
	background: #ffffff;
	border: 1px solid #dedede;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.chatHeader{
	height: 40px;
	background: #b50005;
	color: #ffffff;
	padding-top: 8px;
	padding-left: 20px;
	font-weight: bold;
	font-size: 15px;
	cursor: pointer;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.chatCloseBtn{
	position: absolute;
	right: 10px;
	color: #ffffff;
	top: 5px;
	font-size: 20px;
}

.chatArea{
	height: 275px;
	border: 1px solid #dedede;
	overflow-y: auto;
}

.chatArea::-webkit-scrollbar {
    width: 12px;
}
 
.chatArea::-webkit-scrollbar-track {
    background: #efefef;
}
 
.chatArea::-webkit-scrollbar-thumb {
    background: #999999;
}

.chatMsgArea{
	height: 50px;
	border: 2px solid #e9c276;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	width: 95%;
	outline: none;
	resize: none;
	text-indent: 5px;
}

.pleaseLogin{
	text-align: center;
	margin-top: 20%;
	color: #d2d2d2;
	font-size: 20px;
	font-family: Bebas;
}

.pleaseLogin a{
	color: #ea444d;
}

.chatBack{
	background: #efefef;
}