@media only screen and (max-width: 800px) {

    /* Force table to not be like tables anymore */
    .responsive-tables table,
    .responsive-tables thead,
    .responsive-tables tbody,
    .responsive-tables tfoot,
    .responsive-tables th,
    .responsive-tables td,
    .responsive-tables tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .responsive-tables thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .responsive-tables tr { border: 1px solid #ccc; }

    .responsive-tables td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        border-top: none !important;
        position: relative;
        padding-left: 26% !important;
        white-space: normal;
        text-align:left;
    }

    .responsive-tables td:before {
        position: absolute;
        top: 29px;
        left: 8px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-size: 13px;
        font-weight: bold;
    }

    /*
    Label the data
    */
    .responsive-tables td:before { content: attr(data-label); }

    .responsive-tables tfoot tr{
        border-top: none;
    }

    .hide-on-small{
        display: none !important;
    }

    .responsive-tables td.no-padding{
        padding-left: 0 !important;
    }
}