table tr > th {
    background-color: #EEEEEE;
}
.table .custom-checkbox .custom-control-label::before,
.table .custom-checkbox .custom-control-label::after {
    float: right;
    left: unset;
    right: 0;
}
@media screen {
    .table {
        width: 100%;
        border: 1px solid #ccc;
        border-collapse: separate;
        border-spacing: 0;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
        background: #fff;
        margin: 10px 0!important;
    }
}
tr:first-child > th:first-child {
    border-top-left-radius: 6px;
}
tr:first-child > th:last-child {
    border-top-right-radius: 6px;
}
tr:last-child > td:first-child {
    border-bottom-left-radius: 6px;
}
tr:last-child > td:last-child {
    border-bottom-right-radius: 6px;
}
.table th, .table td {
    padding: 0.6rem;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
    border-left: 1px solid #dee2e6;
}
.table td.no-data {
    padding: 3rem;
}
.table tbody tr:last-of-type > th, .table tr:last-of-type > td {
    border-bottom: 0 !important;
}
th:first-child,
td:first-child {
    border-left: 0 !important;
}
td:first-child {
    position: relative;
}
td:first-child > svg {
    position: absolute;
    margin-top: 4px;
    margin-left: 4px;
}
th, td{
    border-right: 0 !important;
}
th.active, td.active {
    font-weight: bold;
}
td.top {
    vertical-align: top!important;
}
tr.disabled {
    color: darkgrey;
    background-color: gainsboro;
}