th.sorting_disabled {background-color:#009999;color:#ffffff;text-align:center;}

/* DivTable.com */
.divTable{
    display: table;
    width: 100%;
}
.divTableRow {
    display: table-row;
}
.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
}
.divTableCell, .divTableHead {
    border: 0px solid #999999;
    display: table-cell;
    padding: 1px 10px;
}
.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
    font-weight: bold;
}
.divTableFoot {
    background-color: #EEE;
    display: table-footer-group;
    font-weight: bold;
}
.divTableBody {
    display: table-row-group;
}

.boxed {
    margin-top: 15px;
    margin-bottom: 15px;
    border:solid 6px #009999;
    -moz-border-radius: 10px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

/* RESPONSIVE EXAMPLE */

.stacktable.large-only { display: table; !important}
.stacktable.small-only { display: table; !important!}

@media (max-width: 775px) {
    .stacktable.large-only { display: table; !important}
    .stacktable.small-only { display: table; !important}
}

@media
only screen and (max-width: 775px),
{

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

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

    tr { border: 0px solid #ccc; }

    table.dataTable tbody td.child {background-color: #ffffff; color:#123456; text-align:left;}

    table.dataTable tbody td {text-align:right;}

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 0px solid #eee;
        position: relative;
        padding-left: 25%;
        text-align: left;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        font-weight: bold;
        text-align: center;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        padding-right: 0px;
        white-space: nowrap;
    }

    .page-item.active .page-link {
        background-color: lightgrey !important;
        border: 1px solid black;
    }
    .page-link {
        color: black !important;
    }
    /*
    Label the data
    */
    td:nth-of-type(1):before { content: "Class"; }
    td:nth-of-type(2):before { content: "Class Nbr"; }
    td:nth-of-type(3):before { content: "Seats"; }
    td:nth-of-type(4):before { content: "Room"; }
    td:nth-of-type(5):before { content: "Type"; }
    td:nth-of-type(6):before { content: "Times"; }
    td:nth-of-type(7):before { content: "Dates"; }
    td:nth-of-type(8):before { content: "Instructor"; }
    td:nth-of-type(1) {background-color:#009999; color:#fff; font-weight: bold;}
}