.table-responsive {
    background-color: #f4f4f4
}

table.table-responsive__table {
    border-collapse: collapse
}

table.table-responsive__table.unstriped tbody {
    background-color: transparent
}

table.table-responsive__table th {
    background-color: #f4f4f4
}

table.table-responsive__table td,
table.table-responsive__table th,
table.table-responsive__table tr {
    border: 1px solid #0c0c0c
}

@media screen and (max-width: 640px) {
    table.table-responsive__table thead tr {
        position: absolute;
        top: -9999em;
        left: -9999em;
    }

    table.table-responsive__table,
    table.table-responsive__table tbody,
    table.table-responsive__table tr {
        display: block;
        width: 100%;
    }

    table.table-responsive__table tr {
        border: 1px solid #0c0c0c;
        margin-top: 0;
    }

    table.table-responsive__table tr + tr {
        margin-top: 1.5rem;
    }

    table.table-responsive__table td {
        border: none;
        border-bottom: 1px solid #0c0c0c;
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        align-items: start;
        column-gap: 12px;
        padding: 12px 14px;
        position: relative;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    table.table-responsive__table td:last-child {
        border-bottom: none;
    }

    table.table-responsive__table td:before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        line-height: 1.5;
        margin: 0;
        width: auto;
        position: static;
        z-index: auto;
    }

    table.table-responsive__table td:after {
        display: none;
        content: none;
    }
}