/* responsive table */
@media screen and (max-width: 480px) {

    table,
    thead,
    tbody {
        display: block;
        width: 100%;
    }

    table tr,
    table th,
    table td {
        display: block;
        padding: 0;
        text-align: left;
        white-space: normal;
    }

    table tbody tr {
        border: 1px solid #ddd;
        margin-bottom: 10px;
    }

    table th[data-title]:before,
    table td[data-title]:before {
        content: attr(data-title) ":\00A0";
        font-weight: bold;
    }

    table td {
        border: none;
        color: #444;
    }

    table td:empty { display: none; }

    table > tbody > tr > td:first-child {
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        border-top: none;
    }

    table td:first-child:before { content: ''; }

    .dataTables_scrollHead:before,
    table:before {
      display: block;
      padding: 10px 8px;
      border-top: 1px solid #ddd;
      content:"Sort by:\00A0";
    }

    table.table-bordered {
      border: none;
    }

    .table-bordered thead > tr > th {
      border: none;
    }

    .table-bordered > thead:first-child > tr:first-child > th {
      border-top: 1px solid #ddd;
    }

    .table-bordered > thead > tr > th:last-child {
      border-bottom: 1px solid #ddd;
    }

    .table-bordered > tbody > tr > td {
      font-size: 12px;
      border-right: none;
      padding:10px 8px;
      text-align: left;
    }

    div.dataTables_wrapper div.dataTables_info {
      white-space: normal;
    }

}
