.table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.table__top {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px white solid;
    border-color: var(--text-color);
}

.table__panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.table__top h2 {
    font-size: 20px;
}

.table__filters {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.table__filter {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
}

.table__filter span {
    white-space: nowrap;
}

.table__container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

.table__prev {
    display: flex;
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.table__prev span {
    font-size: 16px;
    color: var(--opacity-color);
    display: block;
   
    padding: 0 20px;
    text-align: right;
}

.table__item {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

.table__item-visible {
    padding: 10px 20px;
    background-color: var(--dark-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    border-left: 5px white solid;
    position: relative;
}

.table__item-visible::after {
    content: "^^^^^^^";
    letter-spacing: 10px;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translatey(18px);
    opacity: 0;
    transition: 0.3s opacity ease;
    color: var(--opacity-color);
}

.open .table__item-visible::after {
    content: "^^^^^^^";
    letter-spacing: 10px;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translatey(18px);
    opacity: 1;
    transition: 0.3s opacity ease;
    color: var(--opacity-color);
}

.table__item-procent span {
    font-size: 20px;
}

.table__item-line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.table__item-wrap
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.table__separator span {
    font-size: 20px;
}

.table__text-title {
    color: var(--opacity-color);
    font-size: 12px;
}

.table__text-value {
    font-size: 16px;
}

.table__item-procent {
    margin-right: 50px;
    min-width: 50px;
}

.table__item-more {
    margin-left: 50px;
}

.table__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;
}
.table__item-hidden
{
    width: 100%;
    max-height: 0px;
    transition: 0.5s max-height ease;
    overflow: hidden;
    position: relative;
}

.open .table__item-hidden {
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.table__item-hidden-wrap
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--dark-color);
    padding: 10px 20px;
    border-left: 5px white solid;
}

.table__item-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.table__item-main-title {
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px white solid;
    border-color: var(--opacity-color);
    margin-bottom: 5px;
}

.table__item-main-wrap {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.table__blocks {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    border: 1px white solid;
    border-color: var(--text-color);
    border-radius: 5px;
    box-sizing: border-box;
}

.table__block-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px white solid;
    width: 100%;
    border-color: var(--opacity-color);
}

.table__index-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.table__index-name {
    display: block;
    max-width: 250px;
}

.table__index {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 15px;
    background-color: var(--dark-color2);
    border-radius: 5px;
}

.table__index-value {
    font-size: 20px;
}

.table__block-name {
    font-size: 16px;
}

.table__block_procent {
    font-size: 20px;
}

.table__index.nonactive {
    opacity: 0.1;
}