/*
    For overwriting and custom css
*/

/* Disable horizontal scrollbar in content area */
.content-inner {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Tables default row height and padding */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 6px !important;
}

.table-bordered {
    border: 1px solid #EBEBEB;
}

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 1px;
    }

    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border: 1px solid #e7e7e7;
    }

/* Edit, Details, Delete cells in action tables*/
.table > tbody > tr > .action-column {
    width: 30px;
    text-align: center;
}

/* DATATABLES */

.datatable-containter { /* For horizontal scroll of index tables if responsive is turned off */
    overflow: auto;
}

/* Fix for Datatables extending over the card body */
.table {
    width: 100% !important;
}

.datatable-basic > thead > tr > th,
.datatable-basic > tbody > tr > th,
.datatable-basic > tfoot > tr > th,
.datatable-basic > thead > tr > td,
.datatable-basic > tbody > tr > td,
.datatable-basic > tfoot > tr > td {
    white-space: nowrap;
}
/* Datatables dom alignment */
.dataTables_info {
    margin-left: 25px !important;
}

.dataTables_left {
    float: left !important;
}

.dataTables_right {
    float: right !important;
}

.dataTables_clear {
    clear: both;
}

/* Remove left margin of filter/search box */
div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0 !important;
}

/* Tables select and hover colors */
table.dataTable.table-hover > tbody > tr:hover > * {
    box-shadow: inset 0 0 0 9999px rgba(4,154,173); /* 12,131,255 - - 36,114,151*/
    color: white;
}

table.dataTable.table > tbody > tr.odd.selected > * {
    box-shadow: inset 0 0 0 9999px rgba(4,154,173);
    color: white;
}

table.dataTable.table > tbody > tr.even.selected > * {
    box-shadow: inset 0 0 0 9999px rgba(4,154,173);
    color: white;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
    padding-left: 40px !important;
}

    /* Datatables responsive plus button */
    table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
        top: 17px;
        left: 4px;
        height: 14px;
        width: 14px;
        border: 2px solid white;
        border-radius: 14px;
        box-shadow: 0 0 3px #444;
        line-height: 14px;
        /* background-color: #337ab7; */
    }
