.user_profile .avatar {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 100%;
    margin-bottom: 24px;
    border-radius: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.125);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_profile h1 {
    font-size: initial;
    font-weight: 400;
}

.user_profile .block {
    position: relative;
}

.user_profile .block.block_info {
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
}

.user_profile .buttons_contact {
    display: grid;
    grid-template-columns: 1fr 70px;
    grid-gap: 8px;
    margin-bottom: 8px;
}

.user_profile .buttons_contact .button {
    min-width: initial;
}

.user_profile .post_geo {
    margin-top: 24px;
    grid-template-columns: 1fr 64%;
}

.user_profile .fast_status {
    background-color: var(--c-second-light);
    font-size: 13.6px;
    color: var(--c-text);
    font-weight: 500;
    display: flex;
    border-radius: 14px 0px 14px 0px;
    padding: 8px 12px;
    width: fit-content;
}

.user_profile .languages {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
}

.user_profile .block_info p {
    font-size: 12.8px;
    line-height: 1.18;
    display: flex;
    align-items: center;
    white-space: pre-wrap;
}

.user_profile .block_info p u {
    font-size: 13.4px;
    font-weight: 500;
    line-height: 1.18;
    margin-left: 4px;
}

.user_profile .block_info .icon_online:before {
    background-color: #65ba30;
}

.user_profile .view_phone {
    display: none;
    height: 48px;
    border: 1px solid var(--c-border);
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    border-radius: 8px;
}

.user_profile .view_phone.active {
    display: flex;
}

.user_profile .group {
    background-color: var(--c-header);
    margin-left: auto;
    font-size: 11.6px;
    border-radius: 4px;
    color: #fff;
    min-width: 20px;
    line-height: 1;
    min-height: 16px;
    padding: 0px 4px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: absolute;
    right: 24px;
    top: 24px;
}

.user_profile .posts_list .item>a {
    background-color: var(--c-bg-input);
}

@media (max-width: 1024px) {
    .user_profile {
        margin-top: 34px;
    }

    .user_profile .post_geo {
        grid-template-columns: 1fr;
    }
}