
.dataTable tr:nth-child(even) {
    background-color: #e7e7e7;
}

/* Datatables en responsive */
table.dataTable.is-mobile {
    border: none;
    table-layout: fixed;
    display: block;
}

table.dataTable.is-mobile thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

table.dataTable.is-mobile tr {
    border-bottom: none;
    display: block;
    margin-bottom: 1em;
    border-bottom: 2px solid #535353 !important;
}

table.dataTable.is-mobile tr:first-child td:not(:first-child) {
    border-top: 1px solid #a9a9a9;
}
table.dataTable.is-mobile td {
    border: 1px solid #a9a9a9;
    border-bottom: none;
    border-left: 2px solid #535353;
    border-right: 2px solid #535353;
    display: block;
    font-size: 1.2em;
    text-align: right;
    min-height: 30px;
    height: unset;
}
table.dataTable.is-mobile td > * {
    float: none;
    margin: 0;
    margin-left: auto;
}

table.dataTable.is-mobile td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
}

table.dataTable.is-mobile td:first-child {
    border-top: 2px solid #535353;
}