:root{
    --height-indicator: 15px;
}
.container_msg_with_clients{
    flex: 1 1 auto;
    margin-bottom: 20px;
}
.info_sender img{
    height: 100px;
    width: auto;
    object-fit: cover;
    clip-path: circle(35% at 50% 50%);
}
.container_all_messages{
    background-color: #e7e7e7;
    border-radius: 8px;
    padding: 5px 15px;
    margin-top: 20px;
}
.filter_msg_logist{
    display: flex;
    margin-top: 15px;
    align-items: center;
}
.filter_msg_logist > span > select#fltr_for_msg_logist{
    background-color:white;
    padding: 7px 30px 7px 15px;
}
.filter_msg_logist > span{
    position:relative;
    width: fit-content;
}
.filter_msg_logist > span:after{
    content: "";
    display: inline-block;
    position: absolute;
    top: calc(50% - 8px);
    right: calc(0% + 5px);
    width: 8px;
    height:  8px;
    pointer-events:none;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    transform: rotate(45deg);
}

.lbl_fltr_msg_logist{
    display: inline-block;
    margin-bottom: 0;
    margin-right:  10px;
}
select#fltr_for_msg_logist{
    width: 100%;
}
.count_msg_head{
    margin: 20px 0;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.info_msg_logist{
    position: relative;
    background-color: white;
    padding: 10px 15px;
    filter: drop-shadow(0 0 10px #cdcdcd);
}
.info_msg_logist:after{
    content: "";
    display:block;
    position: absolute;
    left: 59.5px;
    bottom: calc(-1 * (var(--height-indicator) - 1px));
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-color:white;
    height: var(--height-indicator);
    width: 30px;
}
.title_msg_logist{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.date_msg_logist{
    margin-left: 10px;
    font-weight: bold;
}
.info_sender{
    margin-top: 15px;
}
.name_sender_msg{
    font-weight: bold;
}
@media(max-width: 1600px){
    .title_msg_logist,
    .name_sender_msg{
        font-size: calc(15px + (16 - 15)*(100vw - 320px) / (1600 - 320));
    }
    .text_msg_logist{
        font-size: calc(13px + (16 - 13)*(100vw - 320px) / (1600 - 320));
    }
}
@media (max-width: 768px){
    .title_msg_logist{
        flex-direction: column;
    }
}