/* Table widgets layout & styling */

.dataTables_length,
.dataTables_filter,
.dataTables_info,
.dataTables_paginate,
.export {
    padding: 1rem 1rem;
    position: absolute;
}

.dataTables_length,
.dataTables_filter,
.export {
    padding: 0 1.2rem;
    background-color: white;
    border-radius: 8px;
    top: 1px;
    height: 50px;
    box-shadow: 0 0 0 1px #e5e7eb;
    transition: all 0.3s ease;
    color: #707275;
}

.dataTables_info,
.dataTables_paginate {
    bottom: 1px;
    height: 50px;
}

.dataTables_length {
    left: 1px;
}

.dataTables_wrapper .dataTables_length select {
    height: 22px;
    padding: 2px 4px;
    margin: 0 2px;
    border: none;
    background-color: #80808026;
    color: #707275;
}

.dataTables_filter {
    left: 250px;
}

.dataTables_wrapper .dataTables_filter input {
    height: 26px;
    border: none;
    background-color: #80808026;
    margin-left: 8px;
}

.dataTables_length:hover,
.dataTables_filter:hover,
.export:hover {
    box-shadow: 0 0 0 1px rgb(128, 195, 66);
    color: rgb(128, 195, 66);
}

.dataTables_length:hover select,
.dataTables_filter:hover input {
    background-color: rgba(128, 195, 66, 0.2);
    color: rgb(128, 195, 66);
}

.export {
    /*left: 505px;*/
    right: 1px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #707275;
}

.dataTables_paginate {
    right: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:not(.current):hover {
    background-color: rgba(59, 99, 173, 0.2);
}

.dataTables_wrapper {
    position: unset;
}

table.dataTable tbody {
    border-top: 0;
    border-bottom: 0;
    position: relative;
}


/* Table overflow effect */

table.dataTable:before,
table.dataTable:after {
    content: '';
    position: absolute;
    z-index: 100;
    height: 100%;
    width: 8px;
    top: 80px;
}

table.dataTable:before {
    left: 0;
    background: linear-gradient(to right, rgb(249, 250, 251) 0%, transparent 100%);
}

table.dataTable:after {
    right: 0;
    background: linear-gradient(to left, rgb(249, 250, 251) 0%, transparent 100%);
}


/* Table header */

table.dataTable thead tr th {
    white-space: nowrap;
    padding: 14px 18px;
}


/* Table lines hover */

table.dataTable tbody .odd {
    background-color: rgb(236, 236, 236);
}

table.dataTable tbody .even:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

table.dataTable tbody .odd:hover {
    background-color: rgba(0, 0, 0, 0.16);
}


/* Empty table */

.dataTables_empty {
    padding: 20px;
}


/* Table in box */

.box>div:first-child h1 {
    padding-left: 30px;
    color: white;
}

.box>div>div:last-child {
    margin-bottom: 10px;
}


/* Box overflow effect disabled */

.box .dataTable:before {
    content: '';
    display: none;
}

.box .dataTable:after {
    content: '';
    display: none;
}


/* DRAGGABLE */

table.table-draggable:after,
table.table-draggable:before {
    top: 0;
}

table .cell:not(.cell-actions)>* {
    user-select: text;
    cursor: text;
    display: inline-block;
}