.messanger__header{
    height: 70px;
    display: flex;
    align-items: center;
    padding: 10px 15px 10px 20px;
    background: #F1F2F5;
    border-radius: 20px;
    justify-content: space-between;
}

.messanger__header-title {
    color:#202335;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    padding: 15px 0;
}

.messanger__header_selected-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
}

.messanger__header_selected-message-count {
    font-size: 20px;
    line-height: 23px;
    color: #202335;
}

.messanger__header_selected-message-button {
    padding: 10px 15px;
    color: #E92452;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    border-radius: 10px;
}

.messanger__header_selected-message-button:hover {
    background-color: #D8D9DC;
}

.messanger__header_action-button {
    display: flex;
    align-items: center;
    border-radius: 15px;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.messanger__header_action-button:hover {
    background-color: #D8D9DC;
}


.messanger__header_user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.messanger__header_avatar-wrap {
    display: flex;
    align-items: center;
}

.messanger__header_user-avatar-support  {
    height: 37px;
    width: 38px;
    object-fit: cover;
}

.messanger__header_user-avatar-ok  {
    height: 20px;
    width: 33px;
    object-fit: contain;
}

.messanger__header_user-avatar-balls  {
    height: 27px;
    width: 37px;
    object-fit: contain;
}

.messanger__header_icon-back {
    width: 30px;  
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-left: 17px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 767px) {
    .messanger__header_icon-back {
        display: flex;
    }
}

@media screen and (max-width: 1299px) {
    .messanger__header_user-info-name {
        font-size: 18px!important;
        line-height: 19px!important;
    }
}

.messanger__header_user-info-avatar {
    height: 50px;
    width: 50px;
    border-radius: 25px;
    object-fit: cover;
}
.messanger__header_user-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.messanger__header_user-info-name {
    font-size: 20px;
    line-height: 23px;
    color: #202335;
}
.messanger__header_user-info-status {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #7C4894;
}

.messanger__header_icon-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.messanger__header_icon-group-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: all linear 0.2s
}

.messanger__header_icon-picked {
    background-color: #D8D9DC;
}

.messanger__header_icon-group-search:hover {
   background-color: #D8D9DC;
   transition: all linear 0.2s
}

.messanger__header_icon-group-info {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: all linear 0.2s
}



.messanger__header_icon-group-info:hover{
   background-color: #D8D9DC;
   transition: all linear 0.2s
}

@media (max-width: 767px) {
    .messanger__header{
        border-radius:0 ;
    }
    .messanger__header-icon-back{
        display: flex;
     }
}
