@import url('../vars.css');

.struct-caption{
    font-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
    color: #667085;
}
.struct-table tbody tr td.struct-fio{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
}

.struct-link{
    display: flex;
    align-items: center;
    font-family: var(--desktop-body-font);
    font-size: var(--desktop-body-size);
    font-weight: var(--desktop-body-weight);
    color: var(--primary-brand-2);
    gap: 4px;
    height: 100%;
}
.struct-table-cont{
    margin-top: 40px;
    margin-bottom: 200px;
}
.struct-table{
    margin-top: 0 !important;
    width: 100%;
    border: 1px solid #E9EAEB;
    border-radius: 16px;
    word-break: inherit;
    overflow: hidden;
}
.struct-table .fileLink img{
    width: 14px;
}
.struct-table .fileLink {
    align-items: center;
}
.struct-table thead tr{
    width: 100%;
    border-radius: 16px 16px 0 0;
    background: #E4E7EC;
}
.struct-table thead th{
    background: none;
    text-align: center;
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: #667085;
    word-break: keep-all;
}
.struct-table tbody tr td{
    vertical-align: middle !important;
    padding: 8px 16px !important;
    font-family: var(--desktop-body-font);
    font-size: var(--desktop-body-size);
    font-weight: var(--desktop-body-weight);
    color: var(--text);
}

@media screen and (max-width: 1750px) {
    .struct-table-cont{
        border-radius: 16px;
        overflow-x: scroll;
        box-shadow: inset -5px 0 15px rgb(0, 0, 0, .2);
    }
    .struct-table{
        width: 1720px;
    }
}
@media screen and (max-width: 768px) {
    .struct-table-cont{
        margin-bottom: 64px;
        margin-top: 20px;
        box-shadow: none;
        overflow: auto;
    }
    .struct-table{
        width: 100%;
    }
    .struct-table thead {
        display: none;
    }
    .struct-table tbody tr{
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #D0D5DD;
    }
    .struct-table tbody tr td{
        border: none;
    }
}