@media (max-width: 767px)  {

    /* Force table to not be like tables anymore */
    .table-resize table, .table-resize thead, .table-resize tbody, .table-resize th, .table-resize td, .table-resize tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */

    .table-resize thead tr:first-child {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-resize tr {
        /*
        border: 1px solid #ccc;
        border-left: none;
        border-right: none;
        border-bottom: 10px solid #ccc;
        */

        border-top: 3px solid #000;
        border-left: none;
        border-right: none;
        margin-bottom: 22px;

    }

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

    .table-resize td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 55%;
        padding-right: 10px !important;
        font-weight: 600;
        /*white-space: nowrap;*/
    }

    .table-resize td {
        min-height: 34px;
    }

    /*
    Label the data
    td:nth-of-type(1):before { content: "First Name"; }
    td:nth-of-type(2):before { content: "Last Name"; }
    td:nth-of-type(3):before { content: "Job Title"; }
    td:nth-of-type(4):before { content: "Favorite Color"; }
    td:nth-of-type(5):before { content: "Wars of Trek?"; }
    td:nth-of-type(6):before { content: "Porn Name"; }
    td:nth-of-type(7):before { content: "Date of Birth"; }
    td:nth-of-type(8):before { content: "Dream Vacation City"; }
    */

    table{
        padding: 0px 1px;
    }
    tbody td{
        overflow-wrap: break-word;
    }

    .table-bordered {
        border: none;
    }


}

@media (max-width: 480px){
    
    .table-resize td:before {
        width: 65%;
    }
    .table-resize td {
        padding-left: 60% !important;
    }
}