table.tables {
    outline: 0;
    margin-bottom: 2rem;
}

table.dataTable.display tbody tr.odd, table.dataTable.display tbody tr.even {
    background-color: var(--bg-neutral-primary);
}

table.dataTable.display tbody tr.odd:hover, table.dataTable.display tbody tr.even:hover {
    background-color: var(--bg-neutral-secondary);
}

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1, table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
    background-color: var(--bg-neutral-secondary);
}

table.dataTable.no-footer {
    border-bottom: 1px solid var(--border-neutral-primary);
}

.dataTables_wrapper .dataTables_filter {
    text-align: left;
    margin: 0;
}

.dataTables_wrapper .dataTables_filter label {
    display: block;
    margin: 1rem 0 10px 0;
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--text-neutral-primary);
    margin-bottom: 25px;
}

.dataTables_wrapper .dataTables_filter label input {
    display: block;
    width: 100%;
    margin: 10px 0 1rem 0;
    padding: 10px 12px;
    border: 1px solid var(--border-neutral-inverse-tertiary);
    border-radius: var(--radius-base-4);
    background-color: var(--bg-neutral-primary);
    min-height: 45px;
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    color: var(--text-neutral-secondary);
}

table.dataTable tr.footable-row-detail {
    background: var(--bg-neutral-secondary);;
}

table.dataTable tr.footable-row-detail .footable-row-detail-inner div {
    padding-bottom: 0.3em;
}

table.dataTable tr.footable-row-detail .footable-row-detail-inner div:last-child {
    padding-bottom: 0;
}

@media screen and (min-width: 0px) {
    table th:first-of-type {
        border-radius: var(--radius-base-8);
    }

    table td {
        border-right: 0;
    }

    .dataTables_wrapper .dataTables_filter {
        padding-right: 20px;
    }
}

@media screen and (min-width: 600px) {
    table th:first-of-type {
        border-radius: var(--radius-base-8) 0 0 var(--radius-base-8);
    }

    table td {
        border-right: 1px solid var(--border-neutral-primary);;
    }

    .dataTables_wrapper .dataTables_filter {
        padding-right: 0;
    }
}
