.contain{
    width: 800px;
    height: 500px;
    border: 1px solid #7a7a7a;
    position: relative;
}
.top{
    height: 70%;
    display: flex;
    flex-direction: column;
}
.top-box{
    display: flex;
    flex-wrap: wrap;
    overflow-y: scroll;
}
 
.chat-lst-1{
    min-width: 400px;
    display: flex;
    padding: 20px;
}
.chat-lst-1 img{
    width: 40px;
    border-radius: 50%;
}
.chat-content-1{
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    padding: 10px 20px;
    background-color: rgb(4, 255, 45);
}
 
.chat-lst-2{
    min-width: 400px;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    margin-left: auto;
}
.chat-lst-2 img{
    width: 40px;
    border-radius: 50%;
}
.chat-content-2{
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding: 10px 20px;
    background-color: rgb(46, 208, 236);
    word-break: break-word;
}
.bottom{
    height: 30%;
    border-top: 1px solid #7a7a7a;
}
.input textarea{
    width: 99%;
    margin: auto;
    resize: none;
    border: 0;
}
.input textarea:focus{
    outline: none;
}
.send{
    position: absolute;
    right: 20px;
    bottom: 20px;
}


.timeDesc{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}