.wrapper-chat{
    display: flex;
    flex-direction: row;
    max-width: 1170px;
    width: 100vw;
    height: 100%;
    background: #444753;
    margin: auto;
    border-radius: 25px;

}

.people-list{
    flex: 1;

}

.people-list .search{
    padding: 20px;
    border-bottom: 1px solid #eaedf2;


}

.people-list .search input{
    border-radius: 3px;
    border: none;
    padding: 14px;
    color: white;
    background: #6A6C75;
    width: 90%;
    font-size: 14px;
}

.wrapper-chat-body{
    width: 528px;
    flex: 2.4;
}

.chat-header{
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #eaedf2;;
    padding: 16px;
}

.chat-header .chat-about{
    margin-left: 20px;
}

.chat-about .chat-with{
    font-weight: bold;
    font-size: 16px;
}

.chat-about .chat-num-messages{
    color: #92959E;
}

.chat-history{
    padding: 18px 21px 18px 27px;
    max-height: calc(100vh - 317px);
    overflow-y: auto;
}

.list-chat-user{
    margin-top: 0;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}

.people-list ul li{
    position: relative;
    cursor: pointer;
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #595c62;
    padding: 40px 10px;
}

.people-list ul li .about{
    padding: 15px;
}

.chat-message{
    padding: 30px;
}
.chat-message textarea {
    width: 100%;
    border: none;
    padding: 10px 20px;
    font: 14px/22px "Lato", Arial, sans-serif;
    margin-bottom: 10px;
    border-radius: 5px;
    resize: none;
}

.textarea-btn-footer{
    display: flex;
    justify-content: space-between;
}

.align-right {
    text-align: right;
}

.wrapper-chat-body .chat-history .other-message {
    background: #94C2ED;
}

.wrapper-chat-body{
    float: left;
    background: #F2F5F8;
    color: #434651;
}
.wrapper-chat-body .chat-history .message {
    color: white;
    padding: 18px 20px;
    line-height: 26px;
    font-size: 16px;
    border-radius: 7px;
    margin-bottom: 30px;
    width: 90%;
    position: relative;
}

.float-right {
    float: right;
}

.wrapper-chat-body .chat-history .message-data {
    margin-bottom: 15px;
}

.wrapper-chat-body .chat-history .my-message {
    background: #86BB71;
}
 .wrapper-chat-body .chat-history .message {
     color: white;
     padding: 18px 20px;
     line-height: 26px;
     font-size: 16px;
     border-radius: 7px;
     margin-bottom: 30px;
     width: 90%;
     position: relative;
 }

 .wrapper-chat-right-box{
     width: 250px;
 }
.nav-list li .li-inside[data-v-53d3e0ae] {
    height: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 15px;
    margin-right: 10px;
}

/* Users List CSS Start */
.users{
    padding: 25px 30px;
}
.users header,
.users-list a{
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    justify-content: space-between;
}
.chat-wrapper img{
    object-fit: cover;
    border-radius: 50%;
}
.users header img{
    height: 50px;
    width: 50px;
}
:is(.users, .users-list) .content{
    display: flex;
    align-items: center;
}
:is(.users, .users-list) .content .details{
    color: #000;
    margin-left: 20px;
}
:is(.users, .users-list) .details span{
    font-size: 18px;
    font-weight: 500;
}
.users header .logout{
    display: block;
    background: #333;
    color: #fff;
    outline: none;
    border: none;
    padding: 7px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
}
.users .search{
    margin: 20px 0;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
.users .search .text{
    font-size: 18px;
}
.users .search input{
    position: absolute;
    height: 42px;
    width: calc(100% - 50px);
    font-size: 16px;
    padding: 0 13px;
    border: 1px solid #e6e6e6;
    outline: none;
    border-radius: 5px 0 0 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}
.users .search input.show{
    opacity: 1;
    pointer-events: auto;
}
.users .search button{
    position: relative;
    z-index: 1;
    width: 47px;
    height: 42px;
    font-size: 17px;
    cursor: pointer;
    border: none;
    background: #fff;
    color: #333;
    outline: none;
    border-radius: 0 5px 5px 0;
    transition: all 0.2s ease;
}
.users .search button.active{
    background: #333;
    color: #fff;
}
.search button.active i::before{
    content: '\f00d';
}
.users-list{
    max-height: 350px;
    overflow-y: auto;
}
:is(.users-list, .chat-box)::-webkit-scrollbar{
    width: 0px;
}
.users-list a{
    padding-bottom: 10px;
    margin-bottom: 15px;
    padding-right: 15px;
    border-bottom-color: #f1f1f1;
}
.users-list a:last-child{
    margin-bottom: 0px;
    border-bottom: none;
}
.users-list a img{
    height: 40px;
    width: 40px;
}
.users-list a .details p{
    color: #67676a;
}
.users-list a .status-dot{
    font-size: 12px;
    color: #468669;
    padding-left: 10px;
}
.users-list a .status-dot.offline{
    color: #ccc;
}

.chat-message .typing-area .input-field{
    width: 95%;
    border: none;
    padding: 10px 20px;
    font: 14px/22px "Lato", Arial, sans-serif;
    margin-bottom: 10px;
    border-radius: 5px;
    resize: none;
}

.wrapper-chat-right-box ul li{
    padding: 20px;
    border-bottom: 1px solid #595c62;
}

.text-no-chatuser{
padding: 25px;
}