@media (max-width: 767px) {
    table thead {
        display: none;
    }

    table,
    tbody,
    tr,
    td {
        display: block;
        width: 100%;
    }

    tbody td {
        display: flex;
        justify-content: space-between;
        border-bottom: 0;
    }

    tbody td::before {
        content: attr(data-label);
        font-weight: 600;
    }

    tbody tr {
        margin-bottom: 1rem;
    }
}