.file-list.--boxed {
    border-radius: var(--b-radius--24);
    padding: 32px var(--sp-16-32);
}
.file-list .file-list__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 16px;
    background: transparent;
    border-bottom: 1px solid var(--gray-200, #E8EAEF);
    margin-bottom: 16px;
}
.file-list .file-list__nav__el {
    padding: 8px 16px;
    border-radius: 32px;
    border: 1px solid var(--gray-200, #E8EAEF);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    white-space: nowrap;
}
.file-list .file-list__nav__el.--active,
.file-list .file-list__nav__el:hover {
    background: var(--blue-700, #1D4ED8);
    border-color: var(--blue-700, #1D4ED8);
    color: #fff;
}

.file-list__groups {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.file-list__box {
    display: flex;
    flex-direction: column;
}
.file-list__box__header {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 0 20px;
    margin-bottom: 16px;
}
.file-list__box__header .file-list__box__header__icon {
    display: flex;
}
.file-list__box__header .file-list__box__header__icon__img {
    width: 18px;
    height: auto;
}

.file-list__box__table {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-100, #F3F4F6);
}
.file-list__box__table__row {
    display: flex!important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-100, #F3F4F6);
    transition: background 0.15s;
}
.file-list__box__table__row__title {
    font-size: 14px;
    color: var(--gray-700, #374151);
}
.file-list__box__table__row:hover {
    background: #EFF6FF;
}

.file-list__box__table__row__files {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.file-list__box__table__row__files__el {
    padding: 4px;
    border-radius: 4px;
    transition: .2s;
    display: flex;
}
.file-list__box__table__row__files__el span {
    display: flex;
    align-items: center;
    justify-content: center;
}
.file-list__box__table__row__files__el svg {
    height: 24px;
    width: auto;
}
.file-list__box__table__row__files__el:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.file-list__box__table__row[hidden],
.file-list__box[hidden] {
    display: none!important;
}