.chat_info_popup{
    position:fixed;
    height:100vh;
    width:100%;
    left:0;
    top:0;
    background:rgba(0,0,0,0.4);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99;
    font-size:18px;
    display:none;
}
.chat_info_popup__block{
    background:white;
    width:305px;
    padding:15px;
    border-radius:7px;
    box-shadow:5px 5px 5px rgb(0,0,0,0.3);
}
.chat_info_popup__title{
    border-bottom:1px solid black;
    padding-bottom:5px;
    font-size:20px;
}
.chat_info_popup__message{
    margin:15px 0;
    display:flex;
    align-items:center;
}
.chat_info_popup__message_date{
    font-size:14px;
    flex-shrink:0;
    width:90px;
    line-height:1.3;
    
    text-align:center;
    margin-right:10px;
}
.chat_info_popup__message_text{
    background:#128ad6;
    color:white;
    border-radius:0px 7px 7px 7px;
    padding:10px;
    flex-grow:1;
}
.chat_info_popup__message_container{
    
}
.chat_info_popup__goto_chat{
    margin-top:20px;
    width:150px;
    display:block;
    margin-left:auto;   
}