
/*
VanderTable Responsive CSS
*/
 
.VanderTable {
    margin: 1em 0;
    width: 100%;
    overflow: hidden;
    background: #FFF;
    color: #024457;
    border-radius: 10px;
    border: 1px solid #167F92;
}
.VanderTable tr {
    border: 1px solid #D9E4E6;
}
.VanderTable tr:nth-child(odd) {
    background-color: #EAF3F3;
}
.VanderTable th {
    display: none;
    border: 1px solid #FFF;
    background-color: #167F92;
    color: #FFF;
    padding: 1em;
}
.VanderTableSorter button {
    border: 0px solid transparent;
    background-color: inherit;
    color: white;
    font-weight: bold;
}
.VanderTable th > .VanderTableSorter {
    float: right;
}
.VanderTable th:first-child {
    display: table-cell;
    text-align: center;
}
.VanderTable th:nth-child(2) {
    display: table-cell;
}
.VanderTable th:nth-child(2):after {
    content: attr(data-th);
}
.VanderTable @media (min-width: 480px) {
    .VanderTable th:nth-child(2) span {
        display: block;
    }
    .VanderTable th:nth-child(2):after {
        display: none;
    }
}
.VanderTable td {
    display: block;
    word-wrap: break-word;
    max-width: 7em;
}
.VanderTable td:first-child {
    display: table-cell;
    text-align: center;
    border-right: 1px solid #D9E4E6;
}
@media (min-width: 480px) {
    .VanderTable td {
        border: 1px solid #D9E4E6;
    }
}
.VanderTable th,
.VanderTable td {
    text-align: left;
    margin: .5em 1em;
}
@media (min-width: 480px) {
    .VanderTable th,
    .VanderTable td {
        display: table-cell;
        padding: 1em;
    }
}
.ui-sortable tr {
    cursor: pointer;
}
.ui-sortable tr:hover {
    background: rgba(244, 251, 17, 0.45);
}