/* chat /conversation pop up  */

.modal-footer-new {
    padding:15px;
}

.user-thumb {
    overflow:hidden;
    border-radius: 50%;
    width:65px;
    height: 65px;
}

.user-thumb >img {
    width:100%;
    height: 100%;
    object-fit: cover;
}
.media-chat {
    padding:15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.media-chat .media-image{
    margin-right: 15px;
    margin-left: 15px;

}

.media-chat .media-body {
    background: #eee;
    padding: 15px;
    -ms-flex: 1;
    flex: 1;
}
.media-chat .media-body p:last-child {
    margin-bottom: 0px;
}
.media-chat[data-type="user"]{
    flex-direction:row-reverse;

}

.media-chat[data-type="user"] .media-body {
    text-align:right;
    border-radius: 20px 0 20px 20px;
}
.media-chat[data-type="self"] .media-body {
  
    border-radius:0 20px 20px 20px;
}

.media-chat[data-type="self"] .media-image{
    margin-left: 0;
}
.media-chat[data-type="user"] .media-image{
    margin-right: 0;
}

.chatBox {
    max-height: 55vh;
    overflow-y:auto;
}