.users {

}
.users-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 25px;
    /*cursor: pointer;*/
}
.users-detail.active {
    background: #EDE7FE;
}
.users-detail .flex {
    align-items: center;
}
.users-detail .flex:last-child {
    min-width: 115px;
    justify-content: flex-end;
}

.users-detail_avatar {
    width: 32px;
    height: 32px;
    margin-right: 20px;
}
.users-detail_avatar img {
    min-width: 32px;
    min-height: 32px;
   width: 100%;
    height: 100%;
    border-radius: 50%;
}
.users-detail_name {
    margin-right: 20px;
    font-size: 18px;
    font-weight: 700;
}
.users-detail_phone {
    font-size: 18px;
    font-weight: 400;
}
.users-detail_date {
    color: #707D95;
    font-size: 16px;
    text-align: right;
}
.users-detail_close {
    height: 16px;
    width: 16px;
    margin-left: 25px;
    cursor: pointer;
    opacity: 0;
}
.users-detail:hover .users-detail_close {
    opacity: 1;
}
@media screen and (max-width: 700px) {
    .users-detail .users-detail_close {
        opacity: 1;
    }
}
@media screen and (max-width: 460px) {
    .users-detail .flex:first-child {
        flex-direction: column;
        align-items: flex-start;
    }
    .users-detail_name, .users-detail_phone {
        margin-top: 10px;
    }
}
