.hidden {
    display: none !important;
}

.dataTables_filter {
    display: none;
}

.listing-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.listing-filter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-date-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.filter-date-wrapper > svg {
    position: absolute;
    margin-right: 0.25rem;
    cursor: pointer;
    stroke-width: 0.5px;
    width: 20px;
}

.dt-bootstrap5 .table-action {
    cursor: pointer;
    color: #6571ff;
    width: 16px;
    height: 16px;
}

.dt-bootstrap5 td {
    vertical-align: middle;
}

.multiselect-action .btn-icon {
    width: 32px;
    height: 32px;
}
/* table.dataTable>tbody>tr.selected>td.select-checkbox:before {
    border: 1px solid black;
} */
/* table.dataTable>tbody>tr>td.select-checkbox:before {
    margin-top: 0px;
} */
table.dataTable>tbody>tr.selected>* {
    /* box-shadow: inset 0 0 0 9999px rgb(12 20 39 / 60%); */
    box-shadow: unset;
    color: black;
}
/* table.dataTable>tbody>tr.selected svg {
    color: white;
} */
table.dataTable.table-striped>tbody>tr.odd.selected>* {
    /* box-shadow: inset 0 0 0 9999px rgb(12 20 39 / 60%); */
    box-shadow: inset 0 0 0 9999px rgb(0 0 0 / 5%);
}

@media only screen and (max-width: 600px) {
    .listing-filter {
        grid-template-columns: 1fr;
    }
    .footer > .text-muted:nth-child(2) {
        display: none;
    }

    .offcanvas-right {
        width: 100%;
        border-left: unset;
    }

    .offcanvas-image-preview {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (min-width: 1366px) {
    .offcanvas-right {
        width: 25%;
    }
}

/* Loading */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999 !important;
    background: rgba(0,0,0,0.3);
    display: none;


}
.loading-page-box
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.loading-page img {
    width: 3rem;
    height: auto;
}
.loading-page .loading-txt
{
    font-size: 0.813rem;
    color: #fff;
    font-size: bold;
}