@media 
only screen and (max-width: 760px) {
    /* Force table to not be like tables anymore */
    table.table-rwd, table.table-rwd thead, table.table-rwd tbody, 
    table.table-rwd th, table.table-rwd td, table.table-rwd tr { 
        display: block; 
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    table.table-rwd thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    table.table-rwd tr { border: 1px solid #ccc; }

    table.table-rwd td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 30% !important;
    }

    table.table-rwd td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
        content: attr(data-th) ':'
    }

}