.container {
    max-width: 100% !important;
    display: grid;
    grid-template-columns: 25% 1fr;
    grid-template-rows: auto 1fr;
    height: 100%;
    width: 100%;
    gap: 20px;
    margin: 0px;
    padding: 0px;
}

.title {
    grid-column: 1;
}

.btn_settings {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.ffffff {
    height: 47.5px;
}

.my_info_block {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 20px;
    grid-row: 1;
    min-height: 295px;
}

.selected_panel {
    grid-row: 1 / span 2;
    grid-column: 2;
    min-height: 200px;
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 47.5px 1fr;
    row-gap: 20px;
}

.ava {
    background-color: lightgray;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: cover;
    align-self: center;
}

.title_subinfo {
    color: lightgray;
    font-size: 0.8rem;
}

.subinfo {
    margin-bottom: 10px;
}

.hx-button {
    border-radius: 15px;
}

.desktop-tab-title {
    border-radius: 20px !important;
    text-align: center;
}

.desktop-tabs {
    gap: 10px;
    background-color: #eee;
    border-radius: 20px;
    padding: 3px;
    font-weight: 600;
    width: fit-content;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    grid-row: 1;
    grid-column: 1 / span 2;
}

.bio_bloc {
    display: flex;
    flex-direction: column;
}


@media (max-width: 1000px) {
    .container {
        grid-template-rows: auto 1fr;
        grid-template-columns: 1fr;
    }

    .my_info_block {
        grid-row: 1 / span 1;
        grid-column: 1;
        margin-top: 5px;
    }

    .selected_panel {
        grid-row: 2;
        grid-column: 1;
    }

    .ava {
        width: 65px;
        height: 65px;
        margin: 0px;
    }

    .title {
        grid-row: 1;
    }

    .bio_bloc {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: left;
        height: 60px;
        column-gap: 10px;
    }

    .desktop-tabs {
        justify-self: center;
    }
}
