@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1023px) {
    .table,
    .table thead,
    .table tbody,
    .table th,
    .table td,
    .table tr {
        display: block
    }
    .table thead > tr:not([data-ignore]) {
        position: absolute;
        top: -9999px;
        left: -9999px
    }
    .table tr {
        border: 1px solid #ccc
    }
    .table td[data-title] {
        border: 0;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50% !important
    }
    .table td[data-title]:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold
    }
    .table td:before {
        content: attr(data-title)
    }
}
