
.default-view, .alt-view{
    text-align: center;
    margin-top: 90px;
}

.capture-img{
    width: 100% !important;
    height: auto;
    border-radius: 8px;
}

.table .img-fluid{
    width: 100px;
    height: 50px;
    object-fit: cover;
}

table.dataTable td{
    font-size: 14px;
}

table.dataTable td,
table.dataTable th {
    text-wrap: wrap;
    vertical-align: middle;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.dataTables_length label{
    display: flex;
    align-items: center;
    gap: 7px;
}

table tr:first-child th:first-child {
    border-top-left-radius: 10px;
}
table tr:first-child th:last-child {
    border-top-right-radius: 10px;
}
    
.table{
    border-radius: 10px;
}
.bg-gradient-primary {
    background-image: linear-gradient(180deg, #73A1FF 0%, #246BFD 100%) !important;
  }
  

.bg-svg-white{
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(28%) hue-rotate(57deg) brightness(107%) contrast(107%);
}

.bg-primary-btn {
    background-color: #246BFD;
}

.btn-dark{
    background-color: #181824;
}
.btn-dark:hover{
    background-color: #181824;
}
.btn-warning{
    background-color: #FFB848;
}
.btn-warning:hover{
    background-color: #FFB848;
}
.btn-danger{
    background-color: #DA542E;
}
.btn-danger:hover{
    background-color: #DA542E;
}
.btn-log {
    background-color: #B83A16;
    color: #fff;
}

.btn-log:hover{
    background-color: #B83A16;
    border-color: #B83A16;
    color: #fff;
}

.bg-primary-btn:hover {
    background-color: #3c7af6;
}

.btn-create{
    margin: 0;
}

.navbar-vertical .navbar-nav .nav-item .nav-link .icon i {
    color: #236CFC !important;
}

.navbar-vertical .navbar-nav>.nav-item .nav-link.active .icon i{
    color: #fff !important;
}

.table_data_export, .buttons-excel{
    background-color: #383838 !important;
}

.table_data_export:hover, .buttons-excel:hover{
    color: #fff !important;
}

.sidenav-header{
    max-height: 120px;
    height: auto !important;
    margin: 10px;
}

.sidenav .navbar-brand{
    text-align: center;
}

.navbar-vertical .navbar-brand>img, .navbar-vertical .navbar-brand-img{
    max-height: 100px;
    max-width: 100% !important;
}

.sidebar li .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: .7rem;
}

.navbar-vertical .navbar-nav>.nav-item .submenu .nav-link.active {
    background-color: #dcedff;
}

.submenu .nav-link {
    font-size: 12px;
}

.submenu-custom-icon {
    width: 20px;
    height: 20px;
    background-size: contain;

    filter: brightness(0) saturate(100%) invert(47%) sepia(2%) saturate(5092%) hue-rotate(175deg) brightness(97%) contrast(72%);
}

.custom-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    display: inline-block;
}

.nav-link.active .submenu-custom-icon {
    filter: brightness(0) saturate(100%) invert(30%) sepia(72%) saturate(2762%) hue-rotate(213deg) brightness(101%) contrast(98%);
}

.icon-analytic{
    background: url('../img/icons/analytics.svg') no-repeat center center ;
}
.icon-frontliner{
    background: url('../img/icons/frontliner.svg') no-repeat center center;
}
.icon-monitoring{
    background: url('../img/icons/monitoring.svg') no-repeat center center;
}
.icon-queue{
    background: url('../img/icons/queue.svg') no-repeat center center;
}
.icon-reliability{
    background: url('../img/icons/reliability.svg') no-repeat center center;
}
.icon-timer{
    background: url('../img/icons/bxs-timer.svg') no-repeat center center;
}
.icon-clock{
    background: url('../img/icons/clock.svg') no-repeat center center;
}
.icon-download{
    background: url('../img/icons/icon-download.svg') no-repeat center center;
}
.icon-delete{
    background: url('../img/icons/icon-delete.svg') no-repeat center center;
}
.icon-edit{
    background: url('../img/icons/icon-edit.svg') no-repeat center center;
}
.icon-import{
    background: url('../img/icons/icon-import.svg') no-repeat center center;
}
.icon-send{
    background: url('../img/icons/icon-send.svg') no-repeat center center;
}


.error-image{
    object-fit: contain !important;
}


.dw-header-list{
    width: 20%;
}

.card-header{
    border-bottom: 1px solid #E2E8F0;
    padding: 10px 20px 8px !important;
}

.form-select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E") !important;
    background-size: 18px 15px !important;
}


/* CUSTOM CHECKBOX */

.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox-container input:checked+.checkmark {
    background-color: #0D6EFD;
    border: 1px solid #0D6EFD;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked+.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 768px) { 
    .dw-header-list{
        width: 50%;
    }
 }

@media (max-width: 575.98px) { 
    .filter-status{
        width: 100% !important;
        margin-top: 10px;
    }

    .filter-status .input-group-text{
        font-size: 12px;
    }

    #table-alert_filter .form-control{
        width: auto !important;  
    }

    .table-top, .table-below, .table-first-top{
        display: block !important;
    }
    .table_data_export, .buttons-excel{
        width: 100% !important;
    }

    .table-top-left{
        width: 100% !important;
    }

    .table-top-right{
        width: 100% !important;
    }

    .table-top .dataTables_filter{
         width: 100% !important;
    }

    .table-top .dataTables_filter label{
        width: 100% !important;
        display: flex;
        justify-content: center;
        flex-direction:column ;
        gap: 8px;
        margin: 0;
    }

    .table-below .dataTables_info{
        width: 100%;
        text-align: center;
    }

    .table-below .dataTables_paginate{
        width: 100%;
        justify-content: center;
        display: flex;;
    }

    .dataTables_length{
        justify-content: center;
        display: flex;
    }

    .dataTables_length label{
        width: 100%;
    }

    .dw-header-list{
        width: 100%;
    }


 }

 @media screen and (max-width: 450px) {
    li.paginate_button.previous {
        display: inline;
    }
 
    li.paginate_button.next {
        display: inline;
    }
 
    li.paginate_button {
        display: none;
    }
}

.form-group .required:after {
    content: " *";
    color: red;
    font-weight: 100;
 }

.toggle {
    background: none;
    border: none;
    color: #17a2b8;
    font-weight: 600;

    right: .75em;
    top: 2.25em;
    z-index: 9;
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -33px;
}

.logo_guest {
    height:5rem;
    max-width: 20rem; 
    max-height:200px; 
    text-align:center
}

.badge-success{
    background:  #F0FDF4;
    color: #22C55E;
    text-transform: capitalize;
    padding: 5px 10px;
}

.badge-danger{
    background:  #FEE2E2;
    color: #DC2626;
    text-transform: capitalize;
    padding: 5px 10px;
}
.badge-primary{
    background:  #EEF2FF;
    color: #6366F1;
    text-transform: capitalize;
    padding: 5px 10px;
}