/*CHAT PANEL*/
.chat-panel {
    /*height: 50vh;*/
    overflow-y: scroll;
}
.chat-panel-home {
    height: 845px;
    overflow-y: scroll;
}
.chat-box {
    margin: 0;
    /*padding: 1px;*/
    list-style: none;
    width: 100%;
    background-color: #fff;
}
.chat-box li {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #808080;
    display: block;
    width: 100%;
}
.chat-box li.left .chat-body {
    /*margin-left: 90px;*/
}
.chat-box li .chat-body p {
    margin: 0;
    color: #8d8888;
}
.chat-img>img {
    margin-left:20px;
}

.btn-chat{
    width: 100%;
}

.noti-box {
    min-height: 100px;
    padding: 10px;
    border-radius: 4px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.noti-box:hover {
    transform: scale(1.1);
}

.noti-box .icon-box {
    display: block;
    float: left;
    margin: 0 5px 5px 0;
    width: 70px;
    height: 70px;
    line-height: 70px;
    vertical-align: middle;
    text-align: center;
    font-size: 40px;
}

.set-icon {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}