.document__item.active {
    box-shadow: 0 1px 3px 0 #0000000D;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
}

.document-item__name {
    display: flex;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    justify-content: space-between;
    padding: 16px;
    background-color: var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
}

.document-item__name .minus,
.document-item__name.active .plus {
    display: none;
}

.document-item__name .plus,
.document-item__name.active .minus {
    display: flex;
    height: 56px;
    width: 56px;
    align-items: center;
    justify-content: center;
}

.document-item__name.active {
    background-color: transparent;
    padding: 16px 16px 0px;
}

.document-item__info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 16px;
}

.document-item__info.active {
    padding: 8px 16px 24px;
}

.document-item__info p {
    font-size: 16px;
    line-height: 24px;
}

.document-item__info table {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    width: 100%;
}

.document-item__info table th {
    color: var(--lucky-gray);
    background-color: var(--light-gray);
    text-align: left;

}

.document-item__info table th,
.document-item__info table td {
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    height: 64px;
    vertical-align: middle;
}

.document-item__info table tr:not(:last-child) td {
    border-bottom: 1px solid var(--light-gray);
}

.document-item__info table td span {
    font-size: 12px;
    line-height: 14px;
}

.document-item__files {
    margin-top: 8px;
}

.document-item__file {
    display: flex;
}

.document-item__file:not(:last-child) {
    margin-bottom: 24px;
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 16px;
}

.document-item__file-icon {
    margin-right: 16px;
    display: none;
}

.document-item__file-time {
    color: var(--lucky-gray);
    margin-bottom: 16px;
}

.document-item__file-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.document-item__file-download {
    display: flex;
    align-items: center;
}

.document-item__file-download a,
.document-item__file-size {
    color: var(--footer-background);
    font-size: 14px;
    line-height: 18px;
}

.document-item__file-download a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.document-item__file-size {
    color: var(--lucky-gray);
    margin-left: 24px;
}

.document-item__description p b {
    margin-bottom: 8px;
    display: block;
}

.document-item__description a {
    color: var(--footer-background);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.document-item__description>p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.document-item__description table {
    width: 100%;
    margin-bottom: 32px;
}

.document-item__description table td {
    font-size: 16px;
    line-height: 24px;
    width: 50%;
}

.document-item__description table td p {
    color: var(--lucky-gray);
    margin: 8px 0 0 0;
    font-size: 14px;
    line-height: 18px;
}

.document-item__file.one-block {
    border: none;
    padding: 0;
    margin-bottom: 6px;
}

@media (max-width:1020px) {
    .document-item__description>br:last-child {
        display: none;
    }

    .document-item__files {
        margin-top: 0;
    }
}

@media (max-width:800px) {
    .document-item__description table {
        margin-bottom: 24px;
    }

    .document-item__description table tr td {
        display: block;
        width: 100%;
    }

    .document-item__description table tr td br{
        display: none;
    }

    .document-item__description table tr td+td {
        margin-top: 16px;
    }

    .document-item__info table {
        display: block;
        overflow-x: scroll;
        border-radius: 8px 0 0 8px;
    }

    .document-item__info tbody {
        display: block;
        width: 680px;
    }
}