.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #4A5073;
    --bs-table-striped-bg: rgba(46, 54, 80, 0.05);
    --bs-table-active-color: #4A5073;
    --bs-table-active-bg: rgba(46, 54, 80, 0.1);
    --bs-table-hover-color: #4A5073;
    --bs-table-hover-bg: rgba(46, 54, 80, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #4A5073;
    vertical-align: top;
    border-color: #eaedf2;
}

.table> :not(caption)>*>* {
    padding: 0.75rem 0.5rem;
    background-color: var(--bs-table-bg);
    background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    border-bottom-width: 0.0625rem;
}


.caption-top {
    caption-side: top;
}

.table-sm> :not(caption)>*>* {
    padding: 0.25rem 0.25rem;
}

.table-bordered> :not(caption)>* {
    border-width: 0.0625rem 0;
}

.table-bordered> :not(caption)>*>* {
    border-width: 0 0.0625rem;
}

.table-borderless> :not(caption)>*>* {
    border-bottom-width: 0;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
}

.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.table-primary {
    --bs-table-bg: #c2c4ca;
    --bs-table-striped-bg: #babcc3;
    --bs-table-striped-color: #262B40;
    --bs-table-active-bg: #b2b5bc;
    --bs-table-active-color: #262B40;
    --bs-table-hover-bg: #b6b9c0;
    --bs-table-hover-color: #262B40;
    color: #262B40;
    border-color: #b2b5bc;
}

.table-secondary {
    --bs-table-bg: #fdedda;
    --bs-table-striped-bg: #f2e3d2;
    --bs-table-striped-color: #262B40;
    --bs-table-active-bg: #e8dacb;
    --bs-table-active-color: #262B40;
    --bs-table-hover-bg: #eddece;
    --bs-table-hover-color: #262B40;
    color: #262B40;
    border-color: #e8dacb;
}

.table-success {
    --bs-table-bg: #b9e6d9;
    --bs-table-striped-bg: #b2ddd1;
    --bs-table-striped-color: #262B40;
    --bs-table-active-bg: #aad3ca;
    --bs-table-active-color: #262B40;
    --bs-table-hover-bg: #aed8ce;
    --bs-table-hover-color: #262B40;
    color: #262B40;
    border-color: #aad3ca;
}

.table-info {
    --bs-table-bg: #baccea;
    --bs-table-striped-bg: #b3c4e2;
    --bs-table-striped-color: #262B40;
    --bs-table-active-bg: #abbcd9;
    --bs-table-active-color: #262B40;
    --bs-table-hover-bg: #afc0dd;
    --bs-table-hover-color: #262B40;
    color: #262B40;
    border-color: #abbcd9;
}

.table-warning {
    --bs-table-bg: #fcebd1;
    --bs-table-striped-bg: #f1e1ca;
    --bs-table-striped-color: #262B40;
    --bs-table-active-bg: #e7d8c3;
    --bs-table-active-color: #262B40;
    --bs-table-hover-bg: #ecddc6;
    --bs-table-hover-color: #262B40;
    color: #262B40;
    border-color: #e7d8c3;
}

.table-danger {
    --bs-table-bg: #fecfcf;
    --bs-table-striped-bg: #f3c7c8;
    --bs-table-striped-color: #262B40;
    --bs-table-active-bg: #e8bfc1;
    --bs-table-active-color: #262B40;
    --bs-table-hover-bg: #eec3c4;
    --bs-table-hover-color: #262B40;
    color: #262B40;
    border-color: #e8bfc1;
}

.table-light {
    --bs-table-bg: #eaedf2;
    --bs-table-striped-bg: #e0e3e9;
    --bs-table-striped-color: #262B40;
    --bs-table-active-bg: #d6dae0;
    --bs-table-active-color: #262B40;
    --bs-table-hover-bg: #dbdee5;
    --bs-table-hover-color: #262B40;
    color: #262B40;
    border-color: #d6dae0;
}

.table-dark {
    --bs-table-bg: #262B40;
    --bs-table-striped-bg: #31364a;
    --bs-table-striped-color: #ffffff;
    --bs-table-active-bg: #3c4053;
    --bs-table-active-color: #ffffff;
    --bs-table-hover-bg: #363b4e;
    --bs-table-hover-color: #ffffff;
    color: #ffffff;
    border-color: #3c4053;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.table thead th {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    border-top: 0.0625rem solid #eaedf2;
}

.table th {
    font-weight: 600;
    padding: 1rem;
}

.table td .progress {
    height: 3px;
    width: 120px;
    margin: 0;
}

.table td,
.table th {
    font-size: 0.875rem;
    white-space: nowrap;
}

.table.user-table thead th {
    border-top: 0;
}

.table.align-items-center td,
.table.align-items-center th {
    vertical-align: middle;
}

.table .thead-dark th {
    background-color: #262B40;
    color: #ffffff;
}

.table .thead-dark th a {
    color: #262B40;
}

.table .thead-light th {
    background-color: #2464a9;
    color: white;
}

.table .thead-light th a {
    color: #262B40;
}

.table-hover tr {
    transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .table-hover tr {
        transition: none;
    }
}

.table-flush td,
.table-flush th {
    border-left: 0;
    border-right: 0;
}

.table-flush tbody tr:first-child td,
.table-flush tbody tr:first-child th {
    border-top: 0;
}

.table-flush tbody tr:last-child td,
.table-flush tbody tr:last-child th {
    border-bottom: 0;
}

.card .table {
    margin-bottom: 0;
}

.table thead th {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    border-top: 0.0625rem solid #eaedf2;
}

.table th {
    font-weight: 600;
    padding: 1rem;
}

.table td .progress {
    height: 3px;
    width: 120px;
    margin: 0;
}

.table td,
.table th {
    font-size: 0.875rem;
    white-space: nowrap;
    cursor: DEFAULT;
}

.cursor-pointer{
    cursor: pointer !important;
}

.table.user-table thead th {
    border-top: 0;
}

.table.align-items-center td,
.table.align-items-center th {
    vertical-align: middle;
}

.table .thead-dark th {
    background-color: #262B40;
    color: #ffffff;
}

.table .thead-dark th a {
    color: #262B40;
}

.table .thead-light th {
    background-color: #2464a9;
    color: white;
}

.table .thead-light th a {
    color: #262B40;
}

.table-hover tr {
    transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .table-hover tr {
        transition: none;
    }
}

.table-flush td,
.table-flush th {
    border-left: 0;
    border-right: 0;
}

.table-flush tbody tr:first-child td,
.table-flush tbody tr:first-child th {
    border-top: 0;
}

.table-flush tbody tr:last-child td,
.table-flush tbody tr:last-child th {
    border-bottom: 0;
}

.card .table {
    margin-bottom: 0;
}


.make-left{
    text-align: right;
}