@media only screen and (max-width: 995px) {
    .hidden-tablet-table{
        display: none;
    }
    .table-responsive{
        border: none !important;
    }
    /* Force table to not be like tables anymore */
    .table-responsive table,
    .table-responsive thead,
    .table-responsive tbody,
    .table-responsive th,
    .table-responsive td,
    .table-responsive tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .table-responsive thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .table-responsive thead tr th.span1,
    .table-responsive thead tr th.span2,
    .table-responsive thead tr th.span3,
    .table-responsive thead tr th.span4,
    .table-responsive thead tr th.span5,
    .table-responsive thead tr th.span6,
    .table-responsive thead tr th.span7{
        width: auto;
    }

    .table-responsive tr {
        border: 1px solid #ccc;
        margin: 10px 0;
    }

    .table-responsive tbody tr{
        /*border-bottom: none;*/
    }

    .table-responsive td {
        /* Behave  like a "row" */
        /*border: none !important;*/
        border-bottom: 1px solid #e9e9e9;
        position: relative;
        padding-left: 35%;
        white-space: normal;
        text-align:left;
    }

    .table-responsive td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 15px;
        left: 15px;
        width: 20%;
        padding-right: 10px;
        white-space: nowrap;
        text-align:left;
        font-weight: bold;
    }

    /*
    Label the data
    */
    .table-responsive td:before { content: attr(data-title); }
}