table.ta-table {
    border-spacing: 0;
    border-collapse: unset;
}
@media screen and (max-width: 1024px) {
    .table-container {
        overflow-x: auto !important;
    }
    table.ta-table {
        width: 991px;
    }
}
@media screen and (max-width: 767px) {
    table.ta-table {
        border: 0;
        width: 100%;
    }
    table.ta-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table.ta-table tr {
        display: block;
    }
    table.ta-table td:not(:first-child) {
        display: flex;
        justify-content: space-between;
        border: 0 !important;
    }
    table.ta-table td:first-child {
        display: block;
        border: 0 !important;
    }

    table.ta-table td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
    }

    .table2 .ta-table-body tr {
        display: flex;
        flex-wrap: wrap;
    }
    .table2 .ta-table-body td:nth-child(1),
    .table2 .ta-table-body td:nth-child(3) {
        width: calc(100% - 100px);
        justify-content: flex-start;
    }
    .table2 .ta-table-body td:nth-child(2),
    .table2 .ta-table-body td:nth-child(4) {
        width: 100px;
    }
}