.msg_box{
    position:fixed;
    bottom:-5px;
    width:250px;
    background:white;
    border-radius:5px 5px 0px 0px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.04);
    z-index: 999
}

.msg_head{ 
    color: #fff;
    padding:8px;
    font-weight:bold;
    cursor:pointer;
    border-radius:5px 5px 0px 0px;
    background: #007bff;
}

.msg_head .username {
    width: calc(100% - 90px);
    float: left;
    overflow: hidden;
}

.msg_head .options {
    width: 90px;
    float: left
}

.msg_head .username i{
    font-size: 9px;
}
.msg_head .username h6{
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
}

.msg_head .options i{
    font-weight: normal;
    opacity: 0.7;
    margin-left: 3px;
}

.msg_head .options .live-video{
    font-size: 6px;
}

.msg_body{
    background: #fff;
    height:200px;
    font-size:12px;
    padding:15px;
    overflow:auto;
    overflow-x: hidden;
}

.msg_input{
    width:100%;
    height: 55px;
    border: 1px solid white;
    border-top:1px solid #eaeaea;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;   
    box-sizing: border-box;
    font-size: 13px;
    padding: 6px;
    resize: none;
}

.msg_input:focus {
    outline: 0;
}

.minimize{
 float:right;
 cursor:pointer;
 padding-right:5px;
 
}

.msg-left{
    position:relative;
    background:#e2e2e2;
    padding:5px;
    min-height:10px;
    margin-bottom:5px;
    margin-right:10px;
    border-radius:5px;
    word-break: break-all;
}

.msg-right{
    background:#d4e7fa;
    padding:5px;
    min-height:15px;
    margin-bottom:5px;
    position:relative;
    margin-left:10px;
    border-radius:5px;
    word-break: break-all;
}
/**** Slider Layout Popup *********/

#chat-sidebar {
    width: 200px;
    position: fixed;
    height: 100%;
    right: 0px;
    top: 0px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.04);
    background-color: #fff;
    margin-top: 57px;
    z-index: 999
}

#chat-sidebar.full {
    top: unset;
    bottom: 0;
    height: auto;
}

#chat-sidebar .online-toggle {
    width: 100%;
    padding: 10px 15px;
    font-weight: 700;
    position: relative;
    z-index: 9;
    color: #fff;
    background: #0159ab;
    font-size: 14px;
}

 #sidebar-user-box {
     padding: 4px;
     margin-bottom: 4px;
     font-size: 13px;
     cursor:pointer;
}
 #sidebar-user-box:hover {
    background-color: #e7ecf0;
    color: #369ef4;
}
 #sidebar-user-box:after {
     content: ".";
     display: block;
     height: 0;
     clear: both;
     visibility: hidden;
}
#sidebar-user-box img{
     width:35px;
     height:35px;
     border-radius:50%;
     float:left;
}
#slider-username{
     float:left;
     line-height:30px;
     margin-left:5px;
}