/* input(529,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '<'
input(535,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '='
input(541,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '>' */

@keyframes animateBar {
    0% {
        width: 0%;
    }

    10% {
        width: 10%;
    }

    20% {
        width: 20%;
    }

    30% {
        width: 30%;
    }

    40% {
        width: 40%;
    }

    50% {
        width: 50%;
    }

    60% {
        width: 60%;
    }

    70% {
        width: 70%;
    }

    80% {
        width: 80%;
    }

    90% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

body {
    font-size: 16px;
    color: #333333;
}

@font-face {
    font-family: poppins-bold;
    src: url(../fonts/Poppins/Poppins-Bold.ttf?v=NjsjBksziD8BAtTRNMLyNFH1W1Q);
}

@font-face {
    font-family: poppins-regular;
    src: url(../fonts/Poppins/Poppins-Regular.ttf?v=Vv5bNoCgdzjoUf1XcuYSZih0C_c);
}

@font-face {
    font-family: poppins-semibold;
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf?v=7oLTmuurmQg-BEoWecwPDINipwg);
}

@font-face {
    font-family: poppins-medium;
    src: url(../fonts/Poppins/Poppins-Medium.ttf?v=eKTOoLPttMmRORvbTCtiYGa1mv8);
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(51, 51, 51, 0.4);
    opacity: 1;
    font-family: poppins-regular;
    font-size: 14px;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(51, 51, 51, 0.4);
    font-family: poppins-regular;
    font-size: 14px;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(51, 51, 51, 0.4);
    font-family: poppins-regular;
    font-size: 14px;
}

.form-group.custom-select-icon:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 10%;
    top: 45px;
    font-size: 12px;
    bottom: 0;
    color: #333333;
    z-index: -1;
}

.form-group.custom-select-icon select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.login {
    background: url(../images/login-bg.png?v=dAuV9OvviWbYy5SZqm8UCaEK2IQ);
    height: 100%;
    min-height: 100vh;
    position: relative;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .login {
        justify-content: center;
    }
}

.login .login-form {
    background: #ffffff;
    width: 335px;
    margin-right: 9.75rem;
    padding: 10px 30px 25px 30px;
    position: relative;
}

@media (max-width: 1024px) {
    .login .login-form {
        margin: auto;
    }
}

.login .login-form .head {
    margin-bottom: 2px;
    align-items: baseline;
}

    .login .login-form .head .login-logo img {
        margin-bottom: 10px;
    }

.login .login-form .instruction p {
    font-size: 12px;
    color: rgba(51, 51, 51, 0.8);
    font-family: poppins-regular;
}

.login .login-form .instruction h4 {
    font-size: 25px;
    color: #333333;
    font-family: poppins-bold;
}

.login .login-form .login-heading {
    text-align: right;
    width: 100%;
}

    .login .login-form .login-heading h4 {
        font-family: poppins-bold;
        font-size: 25px;
        color: #333333;
        margin-bottom: 6px;
    }

    .login .login-form .login-heading p {
        font-family: poppins-regular;
        font-size: 12px;
        color: rgba(51, 51, 51, 0.8);
        margin: 0;
    }

.login .login-form .login-btn {
    background: #EECC11 0% 0% no-repeat padding-box; 
    color: #333333;
    padding: 10px 23px;
    font-family: poppins-semibold;
    font-size: 14px;
    border-color: snow;
}

    .login .login-form .login-btn:focus {
        outline: none;
    }

.login .login-form .forgot-link {
    text-align: right;
    color: #333333;
    font-family: poppins-regular;
    font-size: 14px;
    width: 100%;
}

.login .login-form .form-group {
    margin-bottom: 25px;
}

    .login .login-form .form-group label {
        font-family: poppins-semibold;
        font-size: 12px;
        margin-bottom: 10px;
    }

        .login .login-form .form-group label sup {
            top: -.1em;
            font-size: 14px;
        }

    .login .login-form .form-group .form-control {
        border-radius: 5px;
        border: 1px solid rgba(36, 36, 36, 0.15);
        height: 40px;
        font-family: poppins-regular;
        font-size: 14px;
        color: #333333;
    }

        .login .login-form .form-group .form-control:focus {
            box-shadow: 0px 3px 6px #00000029;
            border: 1px solid rgba(36, 36, 36, 0.32);
        }

    .login .login-form .form-group .resend-otp {
        font-size: 12px;
        font-family: poppins-regular;
        color: #66697E;
        margin-top: 5px;
    }

        .login .login-form .form-group .resend-otp a {
            font-size: 12px;
            font-family: poppins-regular;
            color: rgba(102, 105, 126, 0.5);
            margin-left: 8px;
        }

.login .login-form .login-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
}

.theme-btn {
    padding: 10px 23px;
    color: #333333;
    font-size: 14px;
    font-family: poppins-semibold;
    background: #F3F3F3;
    border-radius: var(--bs-border-radius-sm);
    transition: .3s;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    margin-right: 5px;
    border: none !important;
}

    .theme-btn:hover {
        background: #efcd11;
        text-decoration: none;
        color: #333333;
    }

    .theme-btn:focus {
        outline: none;
        background: #AC940C;
        color: #333333;
    }

.light-btn {
    padding: 10px 23px;
    color: #333333;
    font-size: 14px;
    font-family: poppins-semibold;
    background: #EAEAEA;
    border-radius: var(--bs-border-radius-sm);
    border: none;
    transition: .3s;
    border: none;
}

    .light-btn:hover {
        background: #adadad;
    }

    .light-btn:focus {
        outline: none;
    }

.secondary-btn {
    padding: 10px 23px;
    color: #333333;
    font-size: 14px;
    font-family: poppins-semibold;
    background: #ffffff;
    border-radius: 19px;
    border: 1px solid #C1C1C1;
    transition: .3s;
}

    .secondary-btn:hover {
        background: #adadad;
    }

    .secondary-btn:focus {
        outline: none;
    }

.success-btn {
    padding: 10px 38px;
    color: #ffffff;
    font-size: 16px;
    font-family: poppins-semibold;
    background: #3a6957;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: .3s;
    margin-right: 10px;
}

    .success-btn:hover {
        background: #3a6957;
    }

    .success-btn:focus {
        outline: none;
    }

input[type="text"]:focus {
    outline: none;
}

.link {
    cursor: pointer;
}

.upload-btn::-webkit-file-upload-button {
    visibility: hidden;
}

.upload-btn::before {
    content: '\f0ee';
    display: inline-block;
    padding: 5px 9px;
    outline: none;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    line-height: 1.8;
}

.upload-btn:hover::before {
    border-color: black;
}

span.upload-btn {
    position: relative;
    cursor: pointer;
}

    span.upload-btn input[type="file"] {
        position: absolute;
        left: -5px;
        opacity: 0;
        cursor: pointer;
    }

.wrapper {
    width: 100%;
}

.sidebar {
    z-index: 20;
}

#sidebar {
    min-width: 223px;
    max-width: 223px;
    min-height: 100vh;
    height: 100%;
    background: #11377d;
    /* background-image: url(../images/side-menu.png?v=Y7b-1kqFe5pX12lf338H8LirPn4);*/
    color: #ffffff;
    transition: all 0.3s;
    border-right: 1px solid #fff;
}

@media (max-width: 991px) {
    #sidebar {
        min-width: 72px;
        max-width: 72px;
        text-align: center;
        margin-left: -72px !important;
        display: none;
    }
}

#sidebar.active {
    min-width: 72px;
    max-width: 72px;
    text-align: center;
}

@media (max-width: 991px) {
    #sidebar.active {
        margin-left: 0 !important;
        display: block;
    }
}

#sidebar.active ul.components li {
    font-size: 14px;
    overflow: unset;
}

    #sidebar.active ul.components li .nav-text {
        display: none;
    }

    #sidebar.active ul.components li a {
        padding: 10px 0;
    }

        #sidebar.active ul.components li a span {
            margin-right: 0;
            display: block;
        }

@media (max-width: 991px) {
    #sidebar.active ul.components li a span {
        display: block;
    }
}

#sidebar.active ul.components li a:hover {
    background: transparent;
    color: #EFCD11;
}

#sidebar.active ul.components li.active {
    background-image: url(../images/sidenav.png?v=Dfklf-r-L8Jt9nkV0W_DZeol6wg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right 0;
    position: relative;
}

    #sidebar.active ul.components li.active:after {
        content: "";
        position: absolute;
        right: -3px;
        top: 0;
        width: 5px;
        height: 96%;
        border-radius: 100%;
        background-color: #fff;
    }

    #sidebar.active ul.components li.active a {
        background: transparent;
        color: #EFCD11;
    }

#sidebar.active ul.components li:hover {
    background-image: url(../images/sidenav.png?v=Dfklf-r-L8Jt9nkV0W_DZeol6wg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right 0;
}

#sidebar.active .logo {
    padding: 10px 0;
}

    #sidebar.active .logo .logo-collapsein {
        display: inline-block;
    }

    #sidebar.active .logo .logo-collapsed {
        display: none;
    }

#sidebar.active .footer {
    display: none;
}

#sidebar.active .dropdown-menu.show {
    position: absolute !important;
    transform: translate3d(66px, 0, 0px) !important;
    background: #333333;
    border: 0;
}

#sidebar.active ul li.dropdown {
    background-size: contain;
}

    #sidebar.active ul li.dropdown:hover {
        background-size: inherit;
    }

#sidebar .logo {
    display: block;
    color: #ffffff;
    font-weight: 900;
    padding: 10px 30px;
    transition: 0.3s;
}

    #sidebar .logo .logo-collapsein {
        display: none;
    }

#sidebar ul.components {
    padding: 0;
    <<<<<<< HEAD transition: 0.3s;
}

#sidebar ul li {
    font-size: 13px;
    padding: 0px 10px;
    ======= transition: 0.3s;
}

#sidebar ul li {
    font-size: 14px;
    padding: 0px 20px;
    >>>>>>> BOA_UAT margin-bottom: 8px;
    /* overflow: hidden;*/
}

    #sidebar ul li > ul {
        margin-left: 10px;
    }

        #sidebar ul li > ul li {
            font-size: 14px;
        }

    #sidebar ul li a {
        padding: 10px 18px;
        display: block;
        /*color: #a0a0a0;*/
        color: #ffff;
    }
        /*color: rgba(159, 159, 159, 0.5);*/
        #sidebar ul li a span:not(.nav-text) {
            margin-right: 15px;
        }

        #sidebar ul li a:hover {
            border-radius: 5px;
            /*color: #EFCD11 !important;*/
            color: #ffff00 !important;
            text-decoration: none;
        }

    #sidebar ul li.active {
        background-image: url(../images/active-li.png?v=2Drrw9Wk5CIiV-7PruQBK7MpIak);
        background-repeat: no-repeat;
        background-size: cover;
    }

        #sidebar ul li.active > a {
            border-radius: 5px;
            /* color: #EFCD11;*/
            color: #ffff00;
            text-decoration: none;
        }

    #sidebar ul li:hover {
        background-image: url(../images/active-li.png?v=2Drrw9Wk5CIiV-7PruQBK7MpIak);
        background-repeat: no-repeat;
        background-size: cover;
    }

    #sidebar ul li.dropdown {
        background-size: contain;
    }

        #sidebar ul li.dropdown:hover {
            background-size: contain;
        }

#sidebar .dropdown-menu.show {
    position: static !important;
    transform: translate3d(42px, 0, 0px) !important;
    background: transparent;
    border: 0;
    margin-bottom: 0;
    min-width: 140px;
}

    #sidebar .dropdown-menu.show a {
        padding: 6px 10px !important;
        font-size: 12px;
    }

        #sidebar .dropdown-menu.show a:hover {
            background-color: #EFCD11;
            color: #333333;
        }

a[data-bs-toggle="collapse"] {
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    #sidebar .logo {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #sidebar ul.components {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.content {
    min-height: 100vh;
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .content .top-navbar {
        box-shadow: 0px 3px 45px #00000029;
    }

        .content .top-navbar .current-page {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left: 10px;
        }

            .content .top-navbar .current-page span.fa {
                padding: 11px;
                background: #EAEAEA;
                color: #6b6b6b;
                border-radius: var(--bs-border-radius-sm);
            }

            .content .top-navbar .current-page div.title:last-child {
                padding-left: 18px;
            }

                .content .top-navbar .current-page div.title:last-child h4 {
                    font-size: 18px;
                    color: #333333;
                    margin: 0;
                }

                .content .top-navbar .current-page div.title:last-child div {
                    font-size: 12px;
                    color: #333333;
                }

                    .content .top-navbar .current-page div.title:last-child div .breadcrumb {
                        padding: 0;
                        margin: 0;
                        background: transparent;
                    }

                        .content .top-navbar .current-page div.title:last-child div .breadcrumb li {
                            color: #333333;
                        }

                            .content .top-navbar .current-page div.title:last-child div .breadcrumb li a {
                                color: #333333;
                            }

                        .content .top-navbar .current-page div.title:last-child div .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
                            content: "\f054";
                            font-family: 'Font Awesome 5 Pro';
                            font-size: 15px;
                        }

    .content .main-content {
        padding: 40px 30px;
        margin: inherit;
        /* @include breakpoint(mobile-device-min) {
         padding-bottom: 7rem;
     }*/
    }

        .content .main-content .btn-view {
            border: 1px solid #E0E0E0;
            padding: 4px 14px;
            background: #EAEAEA;
            color: #333333;
            font-size: 12px;
            font-family: poppins-semibold;
            border-radius: var(--bs-border-radius-sm);
        }

            .content .main-content .btn-view:focus {
                outline: none;
            }

        .content .main-content .checkBoxClass:focus {
            outline: 2px solid #AC940C !important;
            background: none !important;
        }

        .content .main-content .main-data-table {
            position: relative;
        }

            .content .main-content .main-data-table.one-btn .dataTables_wrapper > .row:first-child .dataTables_length label {
                padding-right: 0;
            }

            .content .main-content .main-data-table .top-btn {
                position: absolute;
                top: 0;
                right: 0;
                z-index: 800;
            }

@media (max-width: 768px) {
    .content .main-content .main-data-table .top-btn {
        position: static;
        margin-bottom: 15px;
    }
}

.content .main-content .main-data-table .top-btn .btn:not(.dropdown-toggle) {
    border: 1px solid #F3F3F3;
    padding: 0;
    color: #6b6b6b; /*rgba(0, 0, 0, 0.2);*/
    background-color: #F3F3F3;
    height: 40px;
    width: 40px;
    margin: 0 4px;
    line-height: 2.4;
}

    .content .main-content .main-data-table .top-btn .btn:not(.dropdown-toggle):focus {
        outline: none;
        background: #AC940C;
        color: #333;
    }

    .content .main-content .main-data-table .top-btn .btn:not(.dropdown-toggle) i.fas {
        line-height: 2.4;
    }

.content .main-content .main-data-table .top-btn .theme-btn {
    margin-left: 18px;
}

.content .main-content .main-data-table .dataTables_wrapper div.dataTables_filter {
    text-align: left;
    padding: 10px;
}

    .content .main-content .main-data-table .dataTables_wrapper div.dataTables_filter > label:before {
        content: "\f002";
        position: absolute;
        left: 21px;
        font-family: 'Font Awesome 5 Pro';
        font-weight: 400;
        color: #C5C5C5;
        top: 21px;
        font-size: 14px;
    }

    .content .main-content .main-data-table .dataTables_wrapper div.dataTables_filter input {
        margin-left: 0;
        font-size: 14px;
        font-family: poppins-regular;
        color: #333333;
        height: 40px;
        width: 400px;
        background-color: rgba(243, 243, 243, 0.5);
        border-color: rgba(243, 243, 243, 0.5);
        padding: .375rem 1rem .375rem 2.5rem;
    }

@media (max-width: 576px) {
    .content .main-content .main-data-table .dataTables_wrapper div.dataTables_filter input {
        width: 100%;
    }

    .content .main-content .main-data-table .dataTables_wrapper div.dataTables_filter > label:before {
        Top: 4.0rem;
    }
}

.content .main-content .main-data-table .dataTables_wrapper div.dataTables_filter input:focus {
    outline: none;
    border: 1px solid #333333;
    box-shadow: none;
}

.content .main-content .main-data-table .dataTables_wrapper > .row:first-child div:first-child {
    order: 2;
}

@media (max-width: 768px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child div:first-child {
        order: unset;
    }
}

.content .main-content .main-data-table .dataTables_wrapper > .row:first-child div:last-child {
    order: 1;
    padding: 0;
}

@media (max-width: 768px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child div:last-child {
        order: unset;
    }
}

.content .main-content .main-data-table .dataTables_wrapper > .row:first-child div.dataTables_filter {
    text-align: left;
}

    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child div.dataTables_filter label {
        width: 100%;
    }

        .content .main-content .main-data-table .dataTables_wrapper > .row:first-child div.dataTables_filter label .form-control {
            height: 38px;
            width: 63%;
            background: #F6F6F6;
            border: none;
            font-size: 13px;
            color: #333333;
            font-family: poppins-regular;
            margin: 0;
        }

@media (max-width: 768px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child div.dataTables_filter label .form-control {
        width: 100%;
    }
}

.content .main-content .main-data-table .dataTables_wrapper > .row:first-child div.dataTables_filter label .form-control:focus {
    box-shadow: none;
}

.content .main-content .main-data-table .dataTables_wrapper > .row:first-child .dataTables_length label {
    text-align: center;
    width: 100%;
    font-size: 13px;
    color: #333333;
    font-family: poppins-regular;
}

@media (max-width: 1440px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child .dataTables_length label {
        padding-right: 25%;
    }
}

@media (max-width: 1140px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child .dataTables_length label {
        padding-right: 18%;
    }
}

@media (max-width: 1024px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child .dataTables_length label {
        padding-right: unset;
        text-align: left;
    }
}

.content .main-content .main-data-table .dataTables_wrapper .dataTables_info {
    font-size: 14px;
    color: #333333;
    font-family: poppins-regular;
}

.content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_simple_numbers {
    display: inline-block;
    float: right;
}

    .content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_simple_numbers li.previous .page-link {
        background-color: #F3F3F3;
        border-radius: 19px;
        border-color: #F3F3F3;
        margin-right: 15px;
    }

        .content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_simple_numbers li.previous .page-link:focus {
            box-shadow: none;
        }

    .content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_simple_numbers li.next .page-link {
        background-color: #F3F3F3;
        border-radius: 19px;
        border-color: #F3F3F3;
        margin-left: 15px;
    }

        .content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_simple_numbers li.next .page-link:focus {
            box-shadow: none;
        }

    .content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_simple_numbers .page-link {
        font-size: 14px;
        color: #000000;
        font-family: poppins-regular;
        padding: .6rem 1rem;
        border: 0;
        border-radius: 50%;
    }

    .content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_simple_numbers .page-item.active .page-link {
        background-color: #EFCD11;
        border-color: #EFCD11;
        color: #333333;
    }

.content .main-content .main-data-table .dataTables_wrapper .dataTables_length {
    display: inline-block;
}

    .content .main-content .main-data-table .dataTables_wrapper .dataTables_length label {
        font-size: 14px;
        font-family: poppins-regular;
        color: #000000;
    }

        .content .main-content .main-data-table .dataTables_wrapper .dataTables_length label .custom-select {
            border-radius: 19px;
            background-color: rgba(243, 243, 243, 0.5);
            border-color: rgba(243, 243, 243, 0.5);
        }

.content .main-content .main-data-table .data-table {
    border-spacing: 0 6px;
    padding: 0 10px;
}

    .content .main-content .main-data-table .data-table thead tr:first-child {
        background: transparent;
    }

    .content .main-content .main-data-table .data-table tbody tr {
        box-shadow: 0px 0px 45px #0000000D;
        transition: .2s;
        overflow: hidden;
        border-radius: 6px;
    }

        .content .main-content .main-data-table .data-table tbody tr.selected {
            background: #FFFADC;
        }

        .content .main-content .main-data-table .data-table tbody tr:hover {
            background: #FFFADC;
        }

            .content .main-content .main-data-table .data-table tbody tr:hover .user-info label {
                background: #ffffff;
            }

                .content .main-content .main-data-table .data-table tbody tr:hover .user-info label i {
                    color: #EFCD11;
                }

            .content .main-content .main-data-table .data-table tbody tr:hover .action-btn span {
                background-color: #EFCD11;
            }

            .content .main-content .main-data-table .data-table tbody tr:hover .que-count {
                background-color: #EFCD11;
            }

    .content .main-content .main-data-table .data-table th {
        font-size: 14px;
        color: #333333;
        font-family: poppins-bold;
        border: none;
        text-transform: capitalize;
        vertical-align: middle;
    }

        .content .main-content .main-data-table .data-table th:after, .content .main-content .main-data-table .data-table th:before {
            color: #919191;
        }

        .content .main-content .main-data-table .data-table th.disable-sorting:after, .content .main-content .main-data-table .data-table th.disable-sorting:before {
            display: none;
        }

    .content .main-content .main-data-table .data-table td {
        font-size: 14px;
        color: #333333;
        font-family: poppins-regular;
        border-top: none;
        vertical-align: middle;
    }

        .content .main-content .main-data-table .data-table td strong {
            font-size: 14px;
            color: #333333;
            font-family: poppins-semibold;
            display: block;
            margin-bottom: 5px;
        }

        .content .main-content .main-data-table .data-table td small {
            font-size: 12px;
            color: #34597f;
            font-family: poppins-regular;
            display: block;
        }

        .content .main-content .main-data-table .data-table td span.badge {
            background: #F3F3F3;
        }

        .content .main-content .main-data-table .data-table td .user-info {
            display: flex;
            align-items: center;
        }

            .content .main-content .main-data-table .data-table td .user-info label {
                height: 41px;
                width: 41px;
                display: flex;
                margin: 0;
                align-items: center;
                justify-content: center;
                background-color: #F3F3F3;
                border-radius: var(--bs-border-radius-sm);
                margin-right: 20px;
            }

                .content .main-content .main-data-table .data-table td .user-info label img {
                    width: 21px;
                    border-radius: 0;
                    margin-right: 0;
                }

            .content .main-content .main-data-table .data-table td .user-info img {
                width: 62px;
                border-radius: var(--bs-border-radius-sm);
                height: 62px;
                margin-right: 20px;
            }

        .content .main-content .main-data-table .data-table td .action-btn span {
            height: 41px;
            width: 41px;
            text-align: center;
            background-color: #F3F3F3;
            color: #000000;
            display: inline-block;
            border-radius: var(--bs-border-radius-sm);
            padding: 10px;
            cursor: pointer;
        }

            .content .main-content .main-data-table .data-table td .action-btn span:first-child {
                margin-right: 8px;
            }

        .content .main-content .main-data-table .data-table td.details-control {
            text-align: center;
        }

            .content .main-content .main-data-table .data-table td.details-control .fas {
                color: #AC940C;
                font-size: 22px;
            }

    .content .main-content .main-data-table .data-table .table-toggle .custom-control-label:after {
        width: 15px;
        height: 14px;
        background: #CCCCCC;
    }

    .content .main-content .main-data-table .data-table .table-toggle .custom-control-label:before {
        width: 30px;
        height: 18px;
        background: #999999;
    }

    .content .main-content .main-data-table .data-table .table-toggle .custom-control-input:checked ~ .custom-control-label::before {
        border-color: #333333;
        background-color: #333333;
    }

    .content .main-content .main-data-table .data-table .table-toggle .custom-control-input:checked ~ .custom-control-label::after {
        background-color: #EFCD11;
    }

    .content .main-content .main-data-table .data-table .data-table-ellipses .btn-link {
        padding: 0;
        color: #646464;
    }

        .content .main-content .main-data-table .data-table .data-table-ellipses .btn-link:after {
            display: none;
        }

    .content .main-content .main-data-table .data-table .data-table-ellipses .dropdown-menu.show {
        padding: 0;
        min-width: 5rem;
        left: 70%;
    }

        .content .main-content .main-data-table .data-table .data-table-ellipses .dropdown-menu.show a {
            padding: 8px 10px;
            border-bottom: 1px solid #eee;
            font-size: 12px;
            color: #000;
        }

            .content .main-content .main-data-table .data-table .data-table-ellipses .dropdown-menu.show a:active {
                background-color: transparent;
            }

.content .main-content .main-data-table .custom-select {
    background: none !important;
    padding-right: 0.35rem !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.content .main-content .no-btn .dataTables_wrapper > .row:first-child .dataTables_length label {
    text-align: right;
}

.content .main-content .main-form .form-title {
    font-size: 18px;
    font-family: poppins-bold;
    color: #333333;
}

.content .main-content .main-form label.top-info {
    font-size: 12px;
    font-family: poppins-regular;
    color: #333333;
}

.content .main-content .main-form .form-group {
    margin-bottom: 27px;
}

    .content .main-content .main-form .form-group > label {
        font-size: 12px;
        font-family: poppins-semibold;
        color: #333333;
        margin-bottom: 11px;
    }

        .content .main-content .main-form .form-group > label sup {
            font-size: 16px;
            top: -.1em;
        }

    .content .main-content .main-form .form-group .form-control {
        font-size: 14px;
        font-family: poppins-regular;
        color: #333333;
        background-color: rgba(243, 243, 243, 0.5);
        border-color: rgba(243, 243, 243, 0.5);
        padding: .375rem 1rem;
        height: 40px;
    }

        .content .main-content .main-form .form-group .form-control:focus {
            outline: none;
            border: 1px solid #333333;
            box-shadow: none;
        }

    .content .main-content .main-form .form-group textarea.form-control {
        height: auto !important;
    }

    .content .main-content .main-form .form-group .field-validation-error {
        font-size: 12px;
        font-family: poppins-regular;
    }

.content .main-content .main-form .custom-control-label {
    font-size: 14px;
    font-family: poppins-regular;
    color: #333333;
}

.content .main-content .main-form .custom-control-input:checked ~ .custom-control-label::before {
    color: #ffffff;
    border-color: #333333;
    background-color: #333333;
}

.content .main-content .main-form .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(134, 134, 134, 0.25);
}

.content .main-content .main-form .add-record-card {
    flex-direction: inherit;
    padding: 14px 28px;
    align-items: center;
    background-color: rgba(243, 243, 243, 0.5);
    border: 0;
    border-radius: var(--bs-border-radius-sm);
}

@media (max-width: 768px) {
    .content .main-content .main-form .add-record-card {
        flex-direction: column;
    }
}

.content .main-content .main-form .add-record-card > div {
    width: 20%;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 1024px) {
    .content .main-content .main-form .add-record-card > div {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .content .main-content .main-form .add-record-card > div {
        width: 100%;
    }
}

.content .main-content .main-form .add-record-card > div:first-child {
    width: 60%;
}

@media (max-width: 1024px) {
    .content .main-content .main-form .add-record-card > div:first-child {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .content .main-content .main-form .add-record-card > div:first-child {
        width: 100%;
    }
}

.content .main-content .main-form .add-record-card > div:last-child {
    border-left: 1px solid #E0E0E0;
}

@media (max-width: 768px) {
    .content .main-content .main-form .add-record-card > div:last-child {
        border-left: none;
    }
}

.content .main-content .main-form .add-record-card .top-info {
    color: #4d5653;
}

.content .main-content .main-form .add-record-card .form-group {
    margin: 0;
}

    .content .main-content .main-form .add-record-card .form-group .form-control {
        border: none;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
        color: rgba(51, 51, 51, 0.65);
        height: 20px;
        background: transparent;
    }

        .content .main-content .main-form .add-record-card .form-group .form-control:focus {
            box-shadow: none;
        }

    .content .main-content .main-form .add-record-card .form-group label {
        margin-bottom: 0;
        margin-left: 4px;
    }

.content .main-content .main-form .add-record-card strong {
    font-family: poppins-semibold;
    font-size: 17px;
}

.content .main-content .main-form .add-record-card a {
    font-family: poppins-regular;
    font-size: 12px;
    color: rgba(51, 51, 51, 0.65);
}

.content .main-content .main-form .custom-tab #tabs h6.section-title {
    color: #eee;
}

.content .main-content .main-form .custom-tab #tabs .nav-tabs .nav-item.show .nav-link,
.content .main-content .main-form .nav-tabs .nav-link.active {
    color: #333333;
    background-color: transparent;
    border-bottom: 3px solid #EFCD11 !important;
    font-size: 14px;
    font-family: poppins-semibold;
}

.content .main-content .main-form .custom-tab .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: rgba(51, 51, 51, 0.75);
    font-size: 14px;
    font-family: poppins-regular;
    padding: 10px 17px;
}

.content .main-content .main-form .custom-tab thead {
    background: #f3f3f3;
    color: #333333;
}

.content .main-content .main-form .custom-tab a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
}

.content .main-content .main-form .custom-tab .tab-pane.active.show {
    padding: 30px 0;
}

.content .main-content .main-form .datepicker .input-group-text {
    background: transparent;
    border: 0;
    color: rgba(51, 51, 51, 0.75);
}

.content .main-content .main-form .datepicker .form-control {
    border-right: 0;
}

.content .main-content .main-form .datepicker .input-group-append {
    position: absolute;
    right: 0;
    top: 14%;
}

.content .main-content .main-form hr {
    margin-bottom: 1.8rem;
}

.content .main-content .main-form .fixed-form-footer {
    position: fixed;
    bottom: 0;
    text-align: right;
    right: 0;
    box-shadow: 0px -3px 6px #0000000D;
    padding: 22px 5% 22px 0;
    z-index: 10;
    background: #ffffff;
}

@media (max-width: 768px) {
    .content .main-content .main-form .fixed-form-footer {
        position: static;
        box-shadow: none;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .content .main-content .main-form .fixed-form-footer {
        padding: 22px 0 22px 0;
    }
}

@media (max-width: 480px) {
    .content .main-content .main-form .fixed-form-footer button {
        margin-bottom: 10px;
    }
}

.content .main-content .main-form .add-category {
    display: flex;
}

.content .main-content .main-form .upload-image {
    width: 200px;
    margin: auto;
    position: relative;
}

    .content .main-content .main-form .upload-image img {
        width: 122px;
    }

    .content .main-content .main-form .upload-image .upload-btn {
        position: absolute;
        bottom: 25px;
        right: 30px;
    }

        .content .main-content .main-form .upload-image .upload-btn::before {
            content: "\f093";
            display: inline-block;
            padding: 5px 9px;
            outline: none;
            font-family: 'Font Awesome 5 Pro';
            font-weight: 900;
            white-space: nowrap;
            -webkit-user-select: none;
            cursor: pointer;
            line-height: 1.8;
        }

    .content .main-content .main-form .upload-image .btn {
        border: 1px solid #F3F3F3;
        border-radius: 50%;
        padding: 0;
        color: rgba(0, 0, 0, 0.2);
        background-color: #F3F3F3;
        height: 40px;
        width: 40px;
        margin: 0 4px;
        line-height: 2.4;
    }

.content .main-content .top-0 {
    top: 0 !important;
}

.ui-widget-header {
    border: 1px solid #efcd11;
    background: #efcd11;
}

.custom-file {
    font-size: 14px;
    font-family: poppins-regular;
    color: #333333;
}

    .custom-file .custom-file-label {
        border-radius: 18px;
        background-color: rgba(243, 243, 243, 0.5);
        border-color: rgba(243, 243, 243, 0.5);
        height: 40px;
    }

        .custom-file .custom-file-label:after {
            height: 40px;
            border-radius: 18px;
            background-color: #EAEAEA;
            padding: 12px 27px;
            font-family: poppins-semibold;
            line-height: 1.1;
        }

.b-modal {
    padding: 0 !important;
}

@media (min-width: 576px) {
    .b-modal .modal-dialog {
        max-width: 408px;
    }
}

@media (min-width: 576px) {
    .b-modal .modal-dialog.small {
        max-width: 617px;
    }
}

.b-modal .modal-dialog.small .heading {
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .b-modal .modal-dialog.small .heading {
        flex-direction: column;
    }
}

.b-modal .modal-dialog.small .heading > div {
    flex-grow: 1;
}

@media (min-width: 576px) {
    .b-modal .modal-dialog.medium {
        max-width: 873px;
    }
}

.b-modal .modal-dialog.medium .heading {
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .b-modal .modal-dialog.medium .heading {
        flex-direction: column;
    }
}

.b-modal .modal-dialog.medium .heading > div {
    flex-grow: 1;
}

    .b-modal .modal-dialog.medium .heading > div h4 {
        font-size: 17px;
        font-family: poppins-semibold;
        margin: 0;
    }

    .b-modal .modal-dialog.medium .heading > div label {
        font-size: 12px;
        font-family: poppins-regular;
    }

    .b-modal .modal-dialog.medium .heading > div .form-control {
        height: 40px;
        background: #F6F6F6;
        border: none;
        font-size: 13px;
        color: #333333;
        font-family: poppins-regular;
        margin: 0;
        border-radius: 19px;
    }

.b-modal .modal-content {
    border-radius: 0;
}

.b-modal .modal-body {
    padding: 25px 40px;
}

    .b-modal .modal-body .heading {
        margin-bottom: 8px;
    }

        .b-modal .modal-body .heading h4 {
            flex-grow: 1;
        }

            .b-modal .modal-body .heading h4:first-child {
                font-family: poppins-bold;
                font-size: 18px;
            }

            .b-modal .modal-body .heading h4:nth-child(2) {
                text-align: right;
                font-family: poppins-semibold;
                font-size: 16px;
            }

        .b-modal .modal-body .heading .close {
            position: absolute;
            right: -22px;
            top: 0;
            color: #ffffff;
            opacity: 1;
            background-color: transparent;
            border: none;
        }

@media (max-width: 991px) {
    .b-modal .modal-body .heading .close {
        position: absolute;
        right: 10px;
        top: 5px;
        color: #7a7a7a;
        opacity: 1;
    }
}

.b-modal .modal-body .list-group-flush li {
    display: flex;
    padding: 13px 0;
}

@media (max-width: 480px) {
    .b-modal .modal-body .list-group-flush li {
        flex-direction: column;
    }
}

.b-modal .modal-body .list-group-flush li .col {
    padding: 0;
}

@media (max-width: 480px) {
    .b-modal .modal-body .list-group-flush li .col {
        text-align: left !important;
    }
}

.b-modal .modal-body .list-group-flush li .col:last-child {
    text-align: right;
    font-family: poppins-regular;
    font-size: 14px;
}

.b-modal .modal-body .list-group-flush li .col:first-child {
    font-family: poppins-regular;
    font-size: 12px;
}

.b-modal .modal-body .list-group-flush li.modal-list a {
    color: #333333;
    font-family: poppins-regular;
    font-size: 12px;
    text-decoration: none;
}

    .b-modal .modal-body .list-group-flush li.modal-list a:after {
        content: "\f054";
        font-family: 'Font Awesome 5 Pro';
        font-size: 10px;
        margin: 0 5px;
    }

    .b-modal .modal-body .list-group-flush li.modal-list a:last-child:after {
        display: none;
    }

.b-modal .carousel-card .carousel-list {
    margin-bottom: 10px;
}

    .b-modal .carousel-card .carousel-list > label {
        font-size: 13px;
        font-family: poppins-semibold;
    }

    .b-modal .carousel-card .carousel-list ul {
        padding: 0;
        list-style-type: none;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        margin: 0;
    }

        .b-modal .carousel-card .carousel-list ul li {
            display: inline-block;
            margin: 5px;
        }

@media (max-width: 480px) {
    .b-modal .carousel-card .carousel-list ul li {
        display: block;
        width: 100%;
        margin: 5px !important;
    }
}

.b-modal .carousel-card .carousel-list ul li:first-child {
    margin-left: 0;
}

.b-modal .carousel-card .carousel-list ul li:last-child {
    margin-right: 0;
}

.b-modal .carousel-card .carousel-list ul li input[type="radio"] {
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid rgba(112, 112, 112, 0.2);
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.b-modal .carousel-card .carousel-list ul li label {
    border: 1px solid rgba(112, 112, 112, 0.2);
    font-size: 13px;
    font-family: poppins-regular;
    padding: 10px 40px;
    margin: 0;
    border-radius: 19px;
}

@media (max-width: 480px) {
    .b-modal .carousel-card .carousel-list ul li label {
        width: 100%;
    }
}

.b-modal .carousel-card .carousel-list ul li label.active {
    background: rgba(51, 51, 51, 0.65);
    color: #ffffff;
}

.b-modal .carousel-card .carousel-list ul li label.focus {
    box-shadow: none;
}

.b-modal .carousel-card .carousel-list .btn-group {
    width: 100%;
}

.b-modal .carousel-card .carousel-list .carousel-control-prev {
    width: auto;
    left: -20px;
    color: #333333;
}

.b-modal .carousel-card .carousel-list .carousel-control-next {
    width: auto;
    right: -20px;
    color: #333333;
}

.b-modal .user-profile {
    background: #F3F3F3;
}

.toast {
    opacity: 1;
}

#data-table-filter th input[type="text"] {
    border: 0;
    background: #F6F6F6;
    width: 100%;
    height: 40px;
    padding: 0 8px;
}

.download-upload .btn {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    padding: 0;
    color: #848484;
    height: 40px;
    width: 40px;
    margin: 0 4px;
    line-height: 2.4;
}

.loader {
    text-align: center;
    vertical-align: middle;
    position: fixed;
    display: flex;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1100;
}

    .loader span {
        display: block;
        width: 20px;
        height: 20px;
        background: #EFCD11;
        border-radius: 50%;
        margin: 0 5px;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    }

        .loader span:nth-child(2) {
            background: #009ECE;
        }

        .loader span:nth-child(3) {
            background: #006666;
        }

        .loader span:nth-child(4) {
            background: #CC9900;
        }

        .loader span:not(:last-child) {
            animation: animate 1.5s linear infinite;
        }

@keyframes animate {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(30px);
    }
}

.loader span:last-child {
    animation: jump 1.5s ease-in-out infinite;
}

@keyframes jump {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(10px, -10px);
    }

    20% {
        transform: translate(20px, 10px);
    }

    30% {
        transform: translate(30px, -50px);
    }

    70% {
        transform: translate(-150px, -50px);
    }

    80% {
        transform: translate(-140px, 10px);
    }

    90% {
        transform: translate(-130px, -10px);
    }

    100% {
        transform: translate(-120px, 0);
    }
}

.btn i.fas {
    line-height: 2.4;
}

.dashboard-card {
    background-color: #ffffff;
    box-shadow: 0px 0px 45px #0000000D;
    border-radius: var(--bs-border-radius-sm);
}

    .dashboard-card .dashboard-body {
        padding: 22px;
        min-height: 145px;
        margin-bottom: 20px;
    }

        .dashboard-card .dashboard-body .heading {
            align-items: center;
            font-family: poppins-semibold;
        }

            .dashboard-card .dashboard-body .heading h4 {
                font-size: 24px;
            }

            .dashboard-card .dashboard-body .heading span {
                font-family: poppins-regular;
            }

            .dashboard-card .dashboard-body .heading h1 {
                font-size: 40px;
                vertical-align: bottom;
            }

            .dashboard-card .dashboard-body .heading h3 {
                font-size: 25px;
                vertical-align: bottom;
            }

        .dashboard-card .dashboard-body select {
            width: 88px;
            height: 38px;
            border-radius: 2px;
            background-color: #eee;
            font-size: 12px;
            font-family: poppins-regular;
            border: 0;
        }

        .dashboard-card .dashboard-body .tiles-main .tile {
            display: flex;
            padding: 24px 30px;
            align-items: center;
            box-shadow: 0px 0px 45px #0000000D;
            border-radius: 10px;
            margin-bottom: 10px;
        }

            .dashboard-card .dashboard-body .tiles-main .tile > div {
                width: 50%;
                display: flex;
            }

            .dashboard-card .dashboard-body .tiles-main .tile h4 {
                text-align: right;
                width: 50%;
                font-size: 40px;
                font-family: poppins-bold;
            }

            .dashboard-card .dashboard-body .tiles-main .tile .icon {
                display: inline-block;
                text-align: center;
                width: 35px;
                height: 35px;
                background: rgba(35, 188, 135, 0.15);
                border-radius: 50%;
            }

                .dashboard-card .dashboard-body .tiles-main .tile .icon i {
                    color: #23BC87;
                    line-height: 2.2;
                }

            .dashboard-card .dashboard-body .tiles-main .tile .description {
                font-size: 15px;
                margin-left: 20px;
                font-family: poppins-semibold;
            }

        .dashboard-card .dashboard-body .tiles-main .four-tiles {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .dashboard-card .dashboard-body .tiles-main .four-tiles .tile {
                width: 48%;
                padding: 20px 18px;
            }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile:first-child {
                    margin-right: 10px;
                }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile:last-child {
                    margin-left: 10px;
                }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile > div {
                    display: block;
                    text-align: left;
                }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .description {
                    margin-left: auto;
                    display: block;
                }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.purple {
                    background: rgba(197, 133, 216, 0.15);
                }

                    .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.purple i {
                        color: #C585D8;
                    }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.yellow {
                    background: rgba(239, 205, 17, 0.15);
                }

                    .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.yellow i {
                        color: #EFCD11;
                    }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.orange {
                    background: rgba(252, 146, 91, 0.15);
                }

                    .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.orange i {
                        color: #FC925B;
                    }

                .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.red {
                    background: rgba(255, 68, 58, 0.15);
                }

                    .dashboard-card .dashboard-body .tiles-main .four-tiles .tile .icon.red i {
                        color: #FF443A;
                    }

        .dashboard-card .dashboard-body .table-borderless th {
            font-size: 16px;
            font-family: poppins-regular;
            vertical-align: middle;
            padding: 15px 12px 15px 0;
        }

        .dashboard-card .dashboard-body .table-borderless td {
            font-size: 14px;
            font-family: poppins-regular;
            vertical-align: middle;
            padding: 15px 12px 15px 0;
        }

            .dashboard-card .dashboard-body .table-borderless td span {
                display: block;
                font-size: 12px;
                font-family: poppins-regular;
            }

.unit button {
    border-radius: 18px;
    background-color: #EEEEEE;
    color: #333333;
    font-size: 12px;
    border: none;
    padding: 10px 40px;
}

    .unit button:focus {
        outline: none;
        border: 0;
    }

.unit .top_list h5 {
    margin: 15px 0 15px 0;
    color: #31D18B;
}

.unit .bottom_list h5 {
    margin: 15px 0 15px 0;
    color: #EF6666;
}

.unit_score svg {
    top: 0;
    right: 0;
}

.unit_score .dashboard-body p {
    display: block;
    font-family: poppins-regular;
}

.unit_score .dashboard-body h4 {
    font-size: 24px;
}

.unit_score .dashboard-body h1 {
    font-size: 55px;
    font-family: poppins-semibold;
    align-self: flex-end;
}

.unit_score .dashboard-body h2 {
    font-size: 33px;
    font-family: poppins-semibold;
    align-self: flex-end;
}

    .unit_score .dashboard-body h2 span {
        font-size: 18px;
        font-family: poppins-semibold;
    }

.unit_score .sls_box {
    min-height: 330px;
}

.unit_score .rating_box p, .unit_score .unit_map p {
    font-family: poppins-semibold;
    font-size: 17px;
}

.unit_score .overdue_chart {
    min-height: 500px;
}

    .unit_score .overdue_chart p {
        font-family: poppins-semibold;
        font-size: 17px;
        margin-bottom: 20px;
    }

.unit_score .kpi_meter {
    min-height: 330px;
}

.main-content .dashboard-body h1 {
    font-size: 40px;
}

.main-content .dashboard-body span {
    font-size: 18px;
}

.main-content .unit_score {
    background-image: url(../images/background_unit.png?v=MavNq2iXnsk8t4G4C4uCe5Zwchc);
    background-repeat: no-repeat;
    background-size: 100%;
    min-height: 163px;
}

    .main-content .unit_score a {
        font-size: 20px;
        color: #333333;
        font-family: poppins-semibold;
        text-align: right;
        vertical-align: text-bottom;
    }

        .main-content .unit_score a:hover {
            text-decoration: none;
        }

.main-content .Equipment_box p {
    font-size: 16px;
    font-family: poppins-semibold;
}

.main-content .Equipment_box .cd1 {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ACDFDF;
    display: inline-block;
}

.main-content .Equipment_box .cd2 {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FFE5B2;
    display: inline-block;
}

.main-content .Equipment_box .cd1_cap {
    font-size: 13px;
    margin-left: 20px;
    display: inline-block;
}

.main-content .Equipment_box .caption p {
    font-size: 14px;
    font-family: poppins-regular !important;
}

.main-content .my_search {
    border: 0;
    border-radius: 200px;
    background-color: #F3F3F3;
}

.main-content .has-search .form-control {
    padding-left: 2.375rem;
}

.main-content .has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    opacity: 0.8;
}

.main-content .total_cost_box h3 {
    font-size: 16px;
}

#myChart2 {
    position: absolute;
    top: 70px;
    left: 16px;
}

.chartjsLegend li span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
}

.dashed-border {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.error-page {
    height: 100vh;
    background-color: #f7f7f7;
}

    .error-page .main {
        max-width: 500px;
        width: 100%;
        padding: 0 1rem;
    }

        .error-page .main p {
            color: #646464;
            font-size: 16px;
            font-family: poppins-regular;
        }

        .error-page .main h4 {
            font-size: 40px;
            font-family: poppins-bold;
        }

        .error-page .main img {
            max-width: 100%;
        }

.select-picker-control .btn-light {
    background-color: transparent; /* default: transparent */
    border-color: transparent;
    font-size: 14px;
    font-family: poppins-regular;
    color: #000 !important; /* default text color */
    padding-top: 2px;
    border-radius: 20px;
    transition: all 0.2s ease-in-out; /* smooth hover effect */
}

    .select-picker-control .btn-light:after {
        display: none;
    }

    .select-picker-control .btn-light:focus, .select-picker-control .btn-light.dropdown-toggle, .select-picker-control .btn-light:active {
        background-color: transparent !important;
        border-color: transparent !important;
        outline: none !important;
        box-shadow: none !important;
    }


.bootstrap-select .dropdown-item {
    padding: .25rem 1rem !important;
    color: #000 !important;
    font-size: 14px;
    font-family: poppins-regular;
}

    .bootstrap-select .dropdown-item.active {
        background-color: #EECC11;
    }

.bootstrap-select div.dropdown-menu.show {
    overflow: auto !important;
    max-height: 400px !important;
}

    .bootstrap-select div.dropdown-menu.show * {
        overflow: unset !important;
    }

.display-inline-block {
    display: inline-block;
}

.tile-tabs a {
    background-color: #F3F3F3;
    display: block;
    width: 105px;
    border-radius: 10px 0px 0px 10px;
    color: #333333;
}

    .tile-tabs a:focus {
        background-color: #ffffff;
    }

    .tile-tabs a:hover {
        color: #333333;
        text-decoration: none;
    }

.tile-tabs .tile {
    padding: 1rem;
}

    .tile-tabs .tile h4 {
        font-size: 40px;
        font-family: poppins-bold;
        margin-bottom: 0;
    }

    .tile-tabs .tile .icon {
        display: inline-block;
        width: 35px;
        height: 35px;
        background: rgba(35, 188, 135, 0.15);
        border-radius: 50%;
        padding: 0px 9px;
        margin-bottom: 15px;
    }

        .tile-tabs .tile .icon i {
            line-height: 2.2;
        }

        .tile-tabs .tile .icon.orange {
            background: rgba(252, 146, 91, 0.15);
        }

            .tile-tabs .tile .icon.orange i {
                color: #FC925B;
            }

        .tile-tabs .tile .icon.red {
            background: rgba(255, 68, 58, 0.15);
        }

            .tile-tabs .tile .icon.red i {
                color: #FF443A;
            }

    .tile-tabs .tile .description {
        font-size: 15px;
        font-family: poppins-semibold;
        display: table-caption;
    }

.chart-bar .table-toggle .custom-control-label:after {
    width: 15px;
    height: 14px;
    background: #CCCCCC;
}

.chart-bar .table-toggle .custom-control-label:before {
    width: 30px;
    height: 18px;
    background: #999999;
}

.chart-bar .table-toggle .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #333333;
    background-color: #333333;
}

.chart-bar .table-toggle .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #EFCD11;
}

.chart-bar .table-toggle span {
    font-size: 16px;
    font-family: poppins-semibold;
}

    .chart-bar .table-toggle span:first-child {
        padding-right: 42px;
    }

.my-task {
    margin-bottom: 30px;
}

    .my-task .nav-tabs {
        border: 0;
    }

        .my-task .nav-tabs .nav-link {
            background-color: #f3f3f3;
            color: #333333;
            font-size: 16px;
            font-family: poppins-bold;
            border-radius: 10px 10px 0px 0px;
            border: 0;
            padding: 23px 18px 18px 18px;
        }

@media (max-width: 1366px) {
    .my-task .nav-tabs .nav-link {
        font-size: 13px;
        padding: 16px !important;
    }
}

.my-task .nav-tabs .nav-link.active {
    background-color: #ffffff;
    border: none;
    box-shadow: 0px 0px 45px #0000000D;
}

.my-task .nav-tabs .nav-link:hover {
    text-decoration: none;
    border: 0;
}

.my-task select {
    height: 38px;
    border-radius: 2px;
    background-color: #eee;
    font-size: 12px;
    font-family: poppins-regular;
    border: 0;
}

.my-task .dashboard-card {
    padding: 40px 30px;
}

    .my-task .dashboard-card .ticket-approval {
        display: flex;
        align-items: center;
    }

        .my-task .dashboard-card .ticket-approval .table td {
            border-top: 0;
            padding: 0;
        }

        .my-task .dashboard-card .ticket-approval .data {
            flex-grow: 1;
            padding: 0 1rem;
        }

            .my-task .dashboard-card .ticket-approval .data > .row {
                box-shadow: 0px 0px 45px #0000000D;
                margin-bottom: .5rem;
                padding: 0.5rem;
            }

            .my-task .dashboard-card .ticket-approval .data .col label {
                color: #333333;
                font-size: 14px;
                font-family: poppins-semibold;
                display: block;
                margin-bottom: 0;
            }

            .my-task .dashboard-card .ticket-approval .data .col span {
                color: #999999;
                font-size: 12px;
                font-family: poppins-semibold;
                display: block;
            }

            .my-task .dashboard-card .ticket-approval .data .progress.step-progress {
                overflow: unset;
                height: 5px;
                background: transparent;
            }

                .my-task .dashboard-card .ticket-approval .data .progress.step-progress .progress-bar {
                    background: #f5f5f5;
                    position: relative;
                    overflow: unset;
                }

                    .my-task .dashboard-card .ticket-approval .data .progress.step-progress .progress-bar .circle {
                        width: 11px;
                        height: 11px;
                        display: inline-block;
                        background: #f5f5f5;
                        position: absolute;
                        right: 0;
                        border-radius: 50%;
                        cursor: pointer;
                    }

                    .my-task .dashboard-card .ticket-approval .data .progress.step-progress .progress-bar.active {
                        background: transparent linear-gradient(270deg, #BBA1FF 0%, #6A45C9 100%) 0% 0% no-repeat padding-box;
                        width: 50%;
                    }

                        .my-task .dashboard-card .ticket-approval .data .progress.step-progress .progress-bar.active:first-child {
                            background: transparent;
                            width: 0;
                        }

                        .my-task .dashboard-card .ticket-approval .data .progress.step-progress .progress-bar.active .circle {
                            width: 11px;
                            height: 11px;
                            display: inline-block;
                            background: #714DCE;
                            position: absolute;
                            right: -2px;
                            z-index: 9;
                            border-radius: 50%;
                        }

                        .my-task .dashboard-card .ticket-approval .data .progress.step-progress .progress-bar.active .rejectcircle {
                            width: 11px;
                            height: 11px;
                            display: inline-block;
                            background: red;
                            position: absolute;
                            right: -2px;
                            z-index: 9;
                            border-radius: 50%;
                        }

        .my-task .dashboard-card .ticket-approval .action {
            padding: 1rem;
            display: grid;
        }

.my-task #response-time .title {
    font-size: 16px;
    font-family: poppins-bold;
    color: #333333;
    margin-bottom: 35px;
}

.my-task #response-time .progress-label {
    margin-bottom: 20px;
}

    .my-task #response-time .progress-label span {
        font-size: 13px;
        font-family: poppins-semibold;
        color: #333333;
    }

    .my-task #response-time .progress-label .progress {
        height: 8px;
        background-color: #EEEEEE;
    }

        .my-task #response-time .progress-label .progress .progress-bar {
            background: transparent linear-gradient(270deg, #1EB4AA 0%, #54DEAA 100%) 0% 0% no-repeat padding-box;
            border-radius: 5px;
        }

    .my-task #response-time .progress-label .border-arrow {
        height: 1px;
        border: 1px dashed #707070;
        position: relative;
    }

        .my-task #response-time .progress-label .border-arrow .fa-caret-left {
            position: absolute;
            left: -2px;
            top: -7px;
            color: #707070;
        }

        .my-task #response-time .progress-label .border-arrow .fa-caret-right {
            position: absolute;
            right: -2px;
            top: -7px;
            color: #707070;
        }

* {
    outline: none;
}

.mb-20 {
    margin-bottom: 20px;
}

.big-text {
    font-family: poppins-semibold !important;
    font-size: 16px !important;
}

.justify-content-space-around {
    justify-content: space-around;
}

.prev-shadow {
    border-radius: 10px 0 0 10px;
    position: static;
    display: initial;
    background: #EFCD11;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
}

.next-shadow {
    border-radius: 0 10px 10px 0;
    position: static;
    display: initial;
    background: #EFCD11;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
}

.search-control {
    height: 40px;
    background: rgba(243, 243, 243, 0.5);
    border: none;
    font-size: 13px;
    color: #333333;
    font-family: poppins-regular;
    margin: 0;
    border-radius: 19px;
    margin-bottom: 20px;
}

.que-count {
    padding: 2px 8px;
    border-radius: 4px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    text-decoration: none !important;
}


    .que-count:focus {
        outline: none;
    }

.all-question {
    overflow-y: auto;
    max-height: 400px;
    margin-bottom: 20px;
}

    .all-question .question {
        margin-bottom: 12px;
    }

        .all-question .question span:first-child {
            margin-right: 10px;
        }

.enter-questions {
    position: relative;
}

    .enter-questions .que-btn {
        position: absolute;
        right: 10px;
        top: 7px;
        background: #EFCD11;
        color: #333333;
        border-radius: 100%;
        border: 0;
        width: 26px;
        height: 26px;
    }

        .enter-questions .que-btn:focus {
            outline: none;
        }

.question-list ul {
    list-style-type: none;
    padding: 0;
}

    .question-list ul li {
        margin-bottom: 18px;
        user-select: none;
    }

        .question-list ul li .d-flex {
            align-items: center;
        }

            .question-list ul li .d-flex p {
                margin: 0 10px 0 0;
            }

            .question-list ul li .d-flex i.fas {
                margin-right: 10px;
                color: #c6c5c5;
            }

                .question-list ul li .d-flex i.fas:last-child {
                    margin-right: 0;
                }

            .question-list ul li .d-flex i.fa-bars {
                cursor: move;
            }

.title-tiles {
    font-family: poppins-semibold;
    font-size: 16px;
    margin-bottom: 22px;
}

.free-tiles .tile {
    padding: 20px;
    box-shadow: 0px 0px 45px #0000000D;
    border-radius: 10px;
}

    .free-tiles .tile:hover {
        background-color: #FFFADC;
    }

    .free-tiles .tile a {
        display: flex;
        color: initial;
    }

        .free-tiles .tile a:hover {
            text-decoration: none;
        }

    .free-tiles .tile .head img {
        display: block;
    }

    .free-tiles .tile .head label {
        font-size: 15px;
        font-family: poppins-regular;
        width: 65%;
        margin-top: 11px;
        margin-bottom: 0;
    }

    .free-tiles .tile .data {
        flex-grow: 1;
        align-self: flex-end;
    }

        .free-tiles .tile .data h4 {
            text-align: right;
            font-size: 40px;
            margin: 0;
            font-family: poppins-medium;
        }

.pv-approval .tile a {
    display: block;
}

.pv-approval .tile .head {
    display: flex;
}

    .pv-approval .tile .head img {
        display: inline-block;
        margin-right: 12px;
        height: 24px;
    }

    .pv-approval .tile .head label {
        width: auto;
        margin-top: 0;
    }

.new-loader {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
}

    .new-loader .loader-new {
        margin: 55% auto;
        font-size: 25px;
        width: 1em;
        height: 1em;
        border-radius: 50%;
        position: relative;
        text-indent: -9999em;
        -webkit-animation: load5 1.1s infinite ease;
        animation: load5 1.1s infinite ease;
        -webkit-transform: translateZ(0);
        -ms-transform: translateZ(0);
        transform: translateZ(0);
    }

@-webkit-keyframes load5 {
    0%, 100% {
        box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
}

@keyframes load5 {
    0%, 100% {
        box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
}

.category-flex {
    display: flex;
}

    .category-flex .cat-col {
        max-width: 100%;
    }

        .category-flex .cat-col .category-sidebar {
            padding-left: 20px;
        }

        .category-flex .cat-col:first-child {
            flex-grow: 8;
        }

        .category-flex .cat-col:last-child {
            flex-grow: 1;
            max-width: 375px;
        }

    .category-flex .workflow_edit {
        flex-grow: 1;
        max-width: 475px;
    }

    .category-flex .cat-col:last-child.pv-approval-sidebar {
        max-width: 575px;
    }

        .category-flex .cat-col:last-child.pv-approval-sidebar .add-category h4 span {
            color: #333;
            font-family: poppins-regular;
        }

        .category-flex .cat-col:last-child.pv-approval-sidebar .add-category h4 .close-pv {
            cursor: pointer;
        }

    .category-flex .add-category,
    .category-flex .map-checklist,
    .category-flex .map-attribute,
    .category-flex .add-checklist,
    .category-flex .master-checklist,
    .category-flex .total-questions {
        box-shadow: 0px 0px 45px #0000000D;
        border-radius: 6px;
        padding: 20px 24px;
    }

        .category-flex .add-category h4,
        .category-flex .map-checklist h4,
        .category-flex .map-attribute h4,
        .category-flex .add-checklist h4,
        .category-flex .master-checklist h4,
        .category-flex .total-questions h4 {
            font-family: poppins-semibold !important;
            font-size: 16px !important;
            margin-bottom: 20px;
        }

            .category-flex .add-category h4 .custom-control,
            .category-flex .map-checklist h4 .custom-control,
            .category-flex .map-attribute h4 .custom-control,
            .category-flex .add-checklist h4 .custom-control,
            .category-flex .master-checklist h4 .custom-control,
            .category-flex .total-questions h4 .custom-control {
                line-height: 1.5;
                font-size: 14px !important;
                font-family: poppins-regular !important;
                cursor: pointer;
            }

        .category-flex .add-category .custom-control,
        .category-flex .map-checklist .custom-control,
        .category-flex .map-attribute .custom-control,
        .category-flex .add-checklist .custom-control,
        .category-flex .master-checklist .custom-control,
        .category-flex .total-questions .custom-control {
            margin-bottom: 16px;
            line-height: 1.8;
        }

            .category-flex .add-category .custom-control .custom-control-input:checked ~ .custom-control-label::before,
            .category-flex .map-checklist .custom-control .custom-control-input:checked ~ .custom-control-label::before,
            .category-flex .map-attribute .custom-control .custom-control-input:checked ~ .custom-control-label::before,
            .category-flex .add-checklist .custom-control .custom-control-input:checked ~ .custom-control-label::before,
            .category-flex .master-checklist .custom-control .custom-control-input:checked ~ .custom-control-label::before,
            .category-flex .total-questions .custom-control .custom-control-input:checked ~ .custom-control-label::before {
                border-color: #EFCD11;
                background-color: #EFCD11;
            }

        .category-flex .add-category .check-group,
        .category-flex .map-checklist .check-group,
        .category-flex .map-attribute .check-group,
        .category-flex .add-checklist .check-group,
        .category-flex .master-checklist .check-group,
        .category-flex .total-questions .check-group {
            background: rgba(243, 243, 243, 0.5);
            border-radius: 6px;
            padding: 12px;
            max-height: 270px;
            overflow-y: auto;
            margin-bottom: 1rem;
        }

            .category-flex .add-category .check-group + a,
            .category-flex .map-checklist .check-group + a,
            .category-flex .map-attribute .check-group + a,
            .category-flex .add-checklist .check-group + a,
            .category-flex .master-checklist .check-group + a,
            .category-flex .total-questions .check-group + a {
                color: #333333;
                margin: 18px 0;
                display: inline-block;
            }

                .category-flex .add-category .check-group + a i,
                .category-flex .map-checklist .check-group + a i,
                .category-flex .map-attribute .check-group + a i,
                .category-flex .add-checklist .check-group + a i,
                .category-flex .master-checklist .check-group + a i,
                .category-flex .total-questions .check-group + a i {
                    background-color: #EFCD11;
                    width: 20px;
                    height: 20px;
                    color: #333333;
                    border-radius: 100%;
                    padding: 4px;
                    font-size: 12px;
                }

.inner-table {
    background: #ffffff;
    border-radius: var(--bs-border-radius-sm);
}

    .inner-table tr th {
        font-family: poppins-semibold !important;
        font-size: 12px !important;
    }

    .inner-table tr td {
        font-size: 12px !important;
    }

.nav-user-details > a img {
    border-radius: var(--bs-border-radius-sm) !important;
    width: 35px;
    height: 35px;
    margin-right: 4px;
}

.nav-user-details .dropdown-menu {
    left: auto;
    right: 0;
}

    .nav-user-details .dropdown-menu li {
        margin-bottom: 8px;
    }

        .nav-user-details .dropdown-menu li a {
            color: #333333;
            font-size: 14px;
            font-family: poppins-regular;
            padding: 12px 8px;
        }

            .nav-user-details .dropdown-menu li a:hover {
                color: #EFCD11;
                text-decoration: none;
            }

            .nav-user-details .dropdown-menu li a i {
                margin-right: 8px;
            }

.filter-toggle {
    background: #ffffff;
    box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.05);
    padding: 18px;
    display: none;
    position: absolute;
    margin-top: 10px;
    right: 0;
    border-radius: 6px;
    width: 379px;
}

    .filter-toggle.active {
        display: block;
    }

    .filter-toggle > label {
        font-size: 16px;
        font-family: poppins-semibold;
        color: #333333;
        margin-bottom: 25px;
    }

        .filter-toggle > label .far {
            color: #EFCD11;
            margin-right: 14px;
        }

    .filter-toggle .main-form button {
        border: 0;
        box-shadow: none;
        font-size: 14px;
        font-family: poppins-semibold;
        background: transparent;
    }

        .filter-toggle .main-form button:focus {
            outline: none;
            box-shadow: none;
        }

    .filter-toggle .main-form .form-group {
        margin-bottom: 16px !important;
    }

        .filter-toggle .main-form .form-group.custom-select-icon:after {
            top: 24%;
        }

        .filter-toggle .main-form .form-group label {
            font-size: 16px !important;
        }

        .filter-toggle .main-form .form-group input[data-bs-toggle=datepicker] {
            width: 142px;
        }

.asset-images ul {
    padding-left: 10px;
    list-style-type: none;
}

    .asset-images ul li {
        display: inline-block;
        font-size: 20px;
        margin-right: 15px;
        color: #a7a7a7;
    }

.row-clickable tbody tr {
    cursor: pointer;
}

.user-profile {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.05);
}

    .user-profile .details + .details {
        padding-top: 22px;
        border-top: 2px dashed #eaeaea;
    }

    .user-profile .details h4.title {
        font-size: 16px;
        color: #333333;
        font-family: poppins-semibold;
        margin-bottom: 18px;
    }

    .user-profile .details .form-group {
        margin-bottom: 22px;
    }

        .user-profile .details .form-group span {
            display: block;
            font-size: 14px;
            font-family: poppins-regular;
        }

        .user-profile .details .form-group label {
            display: block;
            font-size: 16px;
            font-family: poppins-regular;
        }

        .user-profile .details .form-group a {
            display: block;
            font-size: 14px;
            font-family: poppins-regular;
            color: #EFCD11;
        }

.change-password {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.05);
    display: flex;
}

    .change-password .image {
        flex-grow: 1;
    }

@media (max-width: 991px) {
    .change-password .image {
        display: none;
    }
}

.change-password .image img {
    max-width: 100%;
}

.change-password .form {
    flex-grow: 1;
    padding: 30px 30px 0;
    min-width: 300px;
}

    .change-password .form .title {
        font-size: 16px;
        font-family: poppins-bold;
        margin-bottom: 22px;
    }

    .change-password .form .form-group {
        margin-bottom: 27px;
    }

        .change-password .form .form-group > label {
            font-size: 14px;
            font-family: poppins-regular;
            color: #333333;
            margin-bottom: 11px;
        }

            .change-password .form .form-group > label sup {
                font-size: 16px;
                top: -.1em;
            }

        .change-password .form .form-group .form-control {
            font-size: 14px;
            font-family: poppins-regular;
            color: #333333;
            border-radius: 18px;
            background-color: rgba(243, 243, 243, 0.5);
            border-color: rgba(243, 243, 243, 0.5);
            padding: .375rem 1rem;
            height: 40px;
        }

            .change-password .form .form-group .form-control:focus {
                outline: none;
                border: 1px solid #333333;
                box-shadow: none;
            }

        .change-password .form .form-group textarea.form-control {
            height: auto !important;
        }

#upload-template #Filelist {
    display: block;
}

#upload-template .heading {
    align-items: center;
}

    #upload-template .heading .fas {
        color: #848484;
        opacity: 0.5;
        margin-right: 25px;
        font-size: 22px;
    }

    #upload-template .heading .select-template h4 {
        font-family: poppins-bold;
        font-size: 18px;
    }

    #upload-template .heading .select-template span {
        font-family: poppins-regular;
        font-size: 12px;
    }

#upload-template .fileinput-button {
    position: relative;
    overflow: hidden;
    border-radius: 19px;
    border: solid 1px #dbdbdb;
    padding: 8px 20px;
    font-size: 14px;
    font-family: poppins-semibold;
}

    #upload-template .fileinput-button input {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        opacity: 0;
        -ms-filter: "alpha(opacity=0)";
        font-size: 200px;
        direction: ltr;
        cursor: pointer;
    }

#upload-template ul.thumb-Images {
    padding: 0;
}

    #upload-template ul.thumb-Images li {
        display: flex;
        list-style-type: none;
        position: relative;
        align-items: center;
        border-bottom: 1px solid #EFEFEF;
        padding: 14px 0;
    }

        #upload-template ul.thumb-Images li.uploading .upload-data .file-name {
            position: relative;
        }

            #upload-template ul.thumb-Images li.uploading .upload-data .file-name:after {
                background: transparent linear-gradient(90deg, #FFD800 0%, #BFA100 100%) 0% 0% no-repeat padding-box;
                border-radius: 100px;
                content: "";
                width: 100%;
                height: 2px;
                position: absolute;
                bottom: 0;
                left: 0;
                animation-name: animateBar;
                animation-iteration-count: 1;
                animation-timing-function: ease-in;
                animation-duration: 1s;
            }

        #upload-template ul.thumb-Images li.upload-complete span.tick {
            display: inline-block;
            background-color: #333333;
            border-radius: 100%;
            width: 34px;
            height: 34px;
            text-align: center;
            margin-right: 20px;
        }

            #upload-template ul.thumb-Images li.upload-complete span.tick:after {
                content: "\f00c";
                font-family: "Font Awesome 5 Pro";
                font-size: 20px;
                color: #EFCD11;
                line-height: 1.7;
            }

#upload-template .file-name {
    font-size: 14px;
    font-family: poppins-regular;
}

#upload-template .uploaded {
    display: block;
    font-size: 12px;
    font-family: poppins-regular;
    color: #999;
}

#upload-template span.tick {
    display: inline-block;
    background-color: #F3F3F3;
    border-radius: 100%;
    width: 34px;
    height: 34px;
    text-align: center;
    margin-right: 20px;
}

    #upload-template span.tick:after {
        content: "\f00c";
        font-family: "Font Awesome 5 Pro";
        font-size: 20px;
        color: rgba(51, 51, 51, 0.3);
        line-height: 1.7;
    }

#upload-template .upload-data {
    flex-grow: 1;
}

#upload-template .img-wrap .close {
    cursor: pointer;
}

.pv-editable {
    display: inline-block;
}

    .pv-editable .custom-control {
        display: inline-block;
    }

    .pv-editable .table-toggle .custom-control-label:after {
        width: 15px;
        height: 14px;
        background: #CCCCCC;
    }

    .pv-editable .table-toggle .custom-control-label:before {
        width: 30px;
        height: 18px;
        background: #999999;
    }

    .pv-editable .table-toggle .custom-control-input:checked ~ .custom-control-label::before {
        border-color: #333333;
        background-color: #333333;
    }

    .pv-editable .table-toggle .custom-control-input:checked ~ .custom-control-label::after {
        background-color: #EFCD11;
    }

.notification {
    box-shadow: 0px 0px 45px #0000000D;
    border-radius: 10px;
    padding: 25px 34px;
}

    .notification .role-ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .notification .role-ul li {
            border-bottom: 1px solid rgba(51, 51, 51, 0.15);
        }

            .notification .role-ul li:first-child, .notification .role-ul li:last-child {
                border: none;
            }

            .notification .role-ul li .role-list {
                display: flex;
                align-items: center;
                padding: 16px 0;
            }

                .notification .role-ul li .role-list .col {
                    display: flex;
                    padding: 0;
                    align-items: center;
                }

                    .notification .role-ul li .role-list .col .head {
                        font-size: 16px;
                        font-family: poppins-bold;
                    }

                    .notification .role-ul li .role-list .col p {
                        font-weight: normal;
                        font-family: poppins-regular;
                        font-size: 14px;
                        line-height: 20px;
                        margin: 0;
                    }

                    .notification .role-ul li .role-list .col:first-child {
                        flex-grow: 8;
                    }

.main-badge {
    width: 35px;
    height: 35px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0;
}

    .main-badge.b-green {
        background: rgba(35, 188, 135, 0.15);
        color: #23BC87;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .main-badge.b-green i {
            color: #23BC87;
            font-weight: 900;
            font-size: 16px;
        }

    .main-badge.b-orange {
        background: rgba(252, 146, 91, 0.15);
        color: #FC925B;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .main-badge.b-orange i {
            color: #FC925B;
            font-weight: 900;
            font-size: 16px;
        }

    .main-badge.b-yellow {
        background: rgba(239, 205, 17, 0.15);
        color: #EFCD11;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .main-badge.b-yellow i {
            color: #EFCD11;
            font-weight: 900;
            font-size: 16px;
        }

    .main-badge.b-purple {
        background: rgba(197, 133, 216, 0.15);
        color: #C585D8;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .main-badge.b-purple i {
            color: #C585D8;
            font-weight: 900;
            font-size: 16px;
        }

.dropdown-arrow-css .form-group.custom-select-icon:after {
    top: 24px !important;
    z-index: -1;
}

@media (max-width: 1300px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child .dataTables_length label {
        padding-right: unset;
        text-align: left;
    }
}

.filter-contains {
    border: 1px solid #ccc;
    background: #FFF;
    position: fixed;
    transform: translate(-10%, -3%);
    width: 378px;
    padding: 15px;
    border-radius: 6px;
}

.filter-blocker {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: ' ';
    background: rgba(0,0,0,.5);
}
/*# sourceMappingURL=style.css.map */

.main-data-table2 .top-btn {
    position: absolute;
    /*right: 5px;*/
    top: 13px;
}

    .main-data-table2 .top-btn > a {
        border: 1px solid #F3F3F3;
        border-radius: 50%;
        padding: 0;
        color: rgba(0, 0, 0, 0.2);
        background-color: #F3F3F3;
        height: 40px;
        width: 40px;
        margin: 0 4px;
        line-height: 2.4;
    }

.main-data-table3 .top-btn > a {
    border: 1px solid #F3F3F3;
    border-radius: 50%;
    padding: 0;
    color: rgba(0, 0, 0, 0.2);
    background-color: #F3F3F3;
    height: 40px;
    width: 40px;
    margin: 0 4px;
    line-height: 2.4;
}

@media (max-width: 1300px) {
    .content .main-content .main-data-table .dataTables_wrapper > .row:first-child .dataTables_length label {
        padding-right: unset;
        text-align: left;
    }
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?v=doHUR3_H3EFBOPiscByzeZUmo98&scoo4r');
    src: url('../fonts/icomoon.eot?v=doHUR3_H3EFBOPiscByzeZUmo98&scoo4r#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?v=AcCx2ylTg3B3EprY563DgRp-VZc&scoo4r') format('truetype'), url('../fonts/icomoon.woff?v=AcCx2ylTg3B3EprY563DgRp-VZc&scoo4r') format('woff'), url('../fonts/icomoon.svg?v=EjnyQqIZgsf9C6qoGRLGNVtS7ag&scoo4r#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-file:before {
    content: "\e900";
    font-size: 25px;
}

.icon-photo:before {
    content: "\e901";
    font-size: 25px;
}

.icon-view_conn:before {
    content: "\e902";
    font-size: 25px;
}

.icon-reload:before {
    content: "\e903";
    font-size: 25px;
}

a:focus-visible {
    outline: 1px solid #AC940C !important;
}

td.details-control:focus-visible {
    outline: 2px solid #AC940C !important;
}

.content .main-content .btn-view:focus-visible {
    background: #AC940C !important;
}

.content .main-content .checkBoxClass:focus-visible {
    background: #AC940C !important;
}


.data-table th:focus-visible {
    outline: 2px solid #AC940C !important;
}

.dropdown-toggle:focus-visible {
    background: #AC940C !important;
}

.b-modal .modal-body .heading .close:focus-visible {
    border: 2px solid #FFFADC !important;
}

.content .main-content .main-data-table .data-table tbody tr td button:focus-visible {
    background: #AC940C !important;
}


.content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_input {
    display: inline-block;
    float: right;
}

.inputpagingbutton {
    background-color: #F3F3F3;
    border-radius: var(--bs-border-radius-sm);
    border-color: #F3F3F3;
    margin-right: 15px;
    font-size: 14px;
    color: #000000;
    font-family: poppins-regular;
    padding: 8px 15px;
    border: 0;
    cursor: pointer;
    margin-left: 5px;
    height: 36px;
}

    .inputpagingbutton:focus-visible {
        outline: none !important;
        box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%) !important;
    }

.inputpagingtext {
    font-size: 14px;
    font-family: poppins-regular;
    color: #333333;
    border-radius: var(--bs-border-radius-sm);
    background-color: rgba(243, 243, 243, 0.5);
    border-color: rgba(243, 243, 243, 0.5);
    height: 40px;
    width: 65px;
    height: calc(1.2em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .inputpagingtext:focus-visible {
        outline: none !important;
        box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%) !important;
    }

.paginate_total {
    margin-right: 5px;
}

.marginbottm15 {
    margin-bottom: 15px;
}

.gridexpandbutton {
    border: none !important;
    background: none !important;
}

.content .main-content .main-data-table .data-table tbody tr td button.gridexpandbutton:focus-visible {
    outline: 2px solid #AC940C !important;
    background: none !important;
}

.grideditbuttons {
    padding: 8px 10px !important;
    border-bottom: 1px solid #eee !important;
    font-size: 12px !important;
    color: #000 !important;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
    .content .main-content .main-data-table .dataTables_wrapper div.dataTables_filter > label:before {
        Top: 4.0rem;
    }
}

.content .main-content .main-data-table .data-table tbody tr td checkBoxClass:focus-visible {
    outline: 2px solid #AC940C !important;
    background: none !important;
}

.b-modal .carousel-card .carousel-list ul li label:focus-visible {
    outline: 2px solid #AC940C !important;
    background: none !important;
}

.b-modal .carousel-card .carousel-list ul li label:focus {
    outline: 2px solid #AC940C !important;
    background: none !important;
}


#YearDataDiv {
    margin-top: 10px !important;
    width: 180px !important;
}
/*.searchFil .search-container {
    border-style: inset;
    border-left-style: solid;
    border-left-color: #ffe600;
    background-color: #f8f9fa;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    max-height: 200px;*/ /* adjust as needed */
/*overflow-y: auto;*/ /* vertical scrollbar appears */
/*flex-wrap: wrap;*/ /* keep wrapping but allow scroll */
/*}*/


.searchFil .form-select,
.searchFil .form-control {
    border-radius: 5px;
    padding: 6px;
    border-color: #eaeaea;
}

.searchFil .btn-primary {
    color: black !important;
    background-color: #ffe600 !important;
    border-color: #ffe600 !important;
    border-radius: 6px; /* make normal rectangle */
    padding: 6px 16px; /* consistent button padding */
    white-space: nowrap; /* keep "Search" in one line */
}

    .searchFil .btn-primary:hover {
        background-color: #e6cc00;
    }


.searchFilMt {
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding-left: 0;
    padding-right: 0;
}
/*textarea.searchFil {
    height: 2.5rem!important;
}*/
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 750px !important;
        margin: 1.75rem auto;
        /* padding: 3rem; */
    }
}

.spantext {
    display: block !important;
    font-family: auto !important;
    font-size: 12px !important;
}

.form-control {
    margin-right: 10px;
    border-radius: 5px;
    padding: 6px;
    border-color: #eaeaea;
    text-align: left;
    align-content: center;
}

.nav-user-details .dropdown-menu li a {
    color: #333333;
    font-size: 14px;
    font-family: poppins-regular;
    padding: 5px 10px;
}

.ms-auto {
    margin-right: 30px !important;
}


.content .main-content .main-data-table .dataTables_wrapper .dataTables_length {
    margin-top: 5px;
}

.content .main-content .main-data-table .dataTables_wrapper .dataTables_paginate.paging_input {
    margin-top: 5px;
}

.dataTables_wrapper .dataTables_length select {
    border-radius: var(--bs-border-radius-sm);
}

.notification_button i {
    color: #000; /* or your theme color */
}

table.table.dataTable > tbody > tr.selected > * {
    box-shadow: none !important; /* remove the DT blue overlay */
    background-color: #f8f9fa !important; /* Bootstrap 4 .table-active (light gray) */
    color: #212529 !important; /* Bootstrap 4 default text color */
}

.content .main-content .main-data-table .top-btn .btn:not(.dropdown-toggle) {
    border: 1px solid #F3F3F3;
    padding: 0;
    color: #6b6b6b;
    margin: 0 4px;
    line-height: 2.4;
}

/* Bootstrap 5 Toggle Switch Styling */
.form-check-input[type="checkbox"]:checked {
    background-color: #f6da3c;
    border-color: #f6da3c;
}

.form-switch .form-check-input {
    background-color: #6c757d;
}

    .form-switch .form-check-input:checked {
        background-color: #f6da3c;
        border-color: #f6da3c;
    }

    .form-switch .form-check-input:focus {
        border-color: #f6da3c;
        box-shadow: 0 0 0 0.25rem rgba(246, 218, 60, 0.25);
    }

/* Bootstrap 5 utility classes mapping */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* Search input styling to match the expected design */
.main-data-table {
    position: relative;
}

/* Records count styling */
.records-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.records-count {
    display: flex !important;
    justify-content: center !important; /* horizontal */
    align-items: center !important;
    margin: 5px;
}

.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: .255em !important;
    vertical-align: .255em !important;
    content: none !important;
    border-top: .3em solid !important;
    border-right: .3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: .3em solid transparent !important;
}

.btn-link {
    font-weight: 400;
    color: black;
    text-decoration: none;
}


.dataTables_wrapper .dataTables_length label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0;
    white-space: nowrap;
}

.dataTables_wrapper .dataTables_length select {
    width: auto !important;
    display: inline-block;
}

.btn-outline-secondary {
    margin-left: 10px !important;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    transition: all 0.3s;
}

    #sidebar.collapsed {
        min-width: 80px;
        max-width: 80px;
    }

        #sidebar.collapsed .menu-text {
            display: none;
        }

    #sidebar .fa {
        width: 30px;
    }


.management-buttons {
    padding: 8px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.select-picker-control {
    position: relative;
}

.details {
    padding-top: 22px;
    border-bottom: 2px dashed #eaeaea;
}

.btnModelClose {
    float: inline-end;
}




.nav-user-details .dropdown-menu li a {
    color: #333333;
    font-size: 14px;
    font-family: poppins-regular;
    padding: 5px 10px;
}

.ms-auto {
    margin-right: 30px !important;
}

.btnModelClose {
    float: inline-end;
}

/* Hide dropdown by default */
.nav-item.nav-user-details .dropdown-menu {
    display: none;
}

/* Show dropdown on hover (desktop) */
.nav-item.nav-user-details:hover > .dropdown-menu,
.nav-item.nav-user-details:focus-within > .dropdown-menu {
    display: block;
}

/* Optional: add smooth fade */
.nav-item.nav-user-details .dropdown-menu {
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.nav-item.nav-user-details:hover > .dropdown-menu,
.nav-item.nav-user-details:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Bootstrap 5 form-check styles */
.form-switch .form-check-input:checked {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    background-color: #efcd11;
    border-color: #efcd11;
}

.form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23efcd11'/%3e%3c/svg%3e") !important;
    background-color: #6c757d;
    border-color: #6c757d;
}

.form-check-input:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(246, 218, 60, 0.25);
}
/* Legacy custom-control support for backwards compatibility */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #333;
    color: #ffffff;
}

.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: var(--bs-form-switch-bg);
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
}

table.dataTable .form-switch .form-check-input {
    height: 20px;
    position: relative;
    margin-left: -1.25rem;
    width: 35px;
}

.custom-control-input:focus ~ .custom-control-label::before {
    outline: 0 !important;
}

table.table-hover.row-border.data-table.w-100.dataTable thead th {
    background: #f3f1f6 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #f3f1f6 !important;
    vertical-align: middle !important;
    border-radius: var(--bs-border-radius-sm);
}

.searchFil .search-container {
    border-style: inset;
    border-left-style: solid;
    border-left-color: #ffe600;
    background-color: #f8f9fa;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: flex-start; /* <-- keep items tight, no extra space */
    gap: 0.5rem; /* only uniform spacing */
    flex-wrap: wrap;
}
/* Reset the search button */
.QucFiltBtn {
    border-radius: 0.375rem !important; /* Bootstrap default rounded corners */
    background-color: #0d6efd !important; /* Bootstrap primary blue */
    color: #fff !important;
    padding: 0.375rem 0.75rem; /* Normal padding */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto; /* Prevent forced circle */
    height: auto; /* Prevent circle */
}

.rowFilter {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
}

.actions-btn:hover {
    background-color: #EFCD11 !important;
    color: #000 !important; /* optional: keeps text readable */
}


.rowDate {
    margin: 0.5% !important
}

.nav-user-details .dropdown-toggle::after {
    content: "\f107" !important; /* Font Awesome down arrow */
    font-family: "Font Awesome 5 Pro";
    font-weight: 900 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 8px !important; /* spacing from text/cart */
    border: none !important; /* remove old BS triangle */
}

button, input, select, textarea, [tabindex]:not([tabindex="-1"]) {
    transition: all .2s ease-in-out;
    color: #000;
}

#FilterByOthers .row .col.p-0.pr-1 {
    margin-right: 10px;
}

.FilterOuter {
    background-color: white;
    padding: 1.5rem;
    border-style: inset;
    border-left-style: solid;
    border-left-color: #ffe600;
}

.filter-box {
    background-color: #edebf2;
    border-radius: 10px;
    box-shadow: 0px 0px 45px #0000000D;
    margin-bottom: 8px;
    padding-bottom: 10px !important;
    padding: 5px;
}


table.table.dataTable > tbody > tr.selected a {
    color: none;
}

.mt-custom {
    margin-top: 1rem !important;
}

.btn-outline-secondary {
    border-radius: var(--bs-border-radius-sm);
}

.choices__list--multiple .choices__item:not(.choices__item--summary) {
    display: none !important;
}

.form-check-input[type=radio] {
    border-radius: var(--bs-border-radius-sm) !important;
}

.content .main-content .main-form .form-group .form-control {
    border-radius: 0px !important;
    border: 1px solid #dddddd !important;
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    max-width: 100%;
    padding: 0px !important;
    border-radius: var(--bs-border-radius-sm);
    overflow: unset !important;
}

table tr td b {
    padding: 0;
}

.accordion-button:not(.collapsed) {
    color: #212529;
    background-color: #f2f0f5 !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.notification_button {
    color: white;
    display: inline-block; 
    position: relative; 
    padding: 2px 5px;  
    margin-top: 10px;
}

/* Make the badge float in the top right corner of the button */
.notification_button__badge {
    background-color: #aa2222;
    border-radius: 2px;
    color: white;
    padding: 1px 3px;
    font-size: 10px;
    position: absolute;  
    top: 0;
    right: 0;
}
.choices__list--single {
    display: inline-block;
     padding: 0px !important; 
    width: 100%;
}
/* Choices.js custom dropdown styling */
/*.choices__list--dropdown .choices__item--choice {
    position: relative;
    padding-right: 24px !important;
    cursor: pointer;
}

    .choices__list--dropdown .choices__item--choice.is-selected::after {
        content: '✔';
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        color: #efcd11 !important;
        font-size: 14px;
        font-weight: bold;
    }

.choices-select-all-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 10px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
    font-weight: 600;
    font-size: 13px;
}

    .btn-select-all:hover {
        text-decoration: underline;
    }

.choices__list--dropdown .choices__input {
    margin-bottom: 5px;
}
.choices__list--dropdown {
    max-height: 250px;
    overflow-y: auto;
}

.choices__inner {
    min-height: 38px;
}*/
/* ==== Base responsive setup ==== */
/*.choices,
.choices__inner,
.choices__list--dropdown {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}*/

/* ==== Dropdown inside modals ==== */
/*.modal .choices__list--dropdown {
    position: relative !important;
    z-index: 1056 !important;*/ /* ensures dropdown appears above backdrop */
    /*width: 100% !important;
}*/

/* ==== Mobile (phones) ==== */
/*@media (max-width: 576px) {
    .choices__inner {
        font-size: 14px;
        padding: 0.4rem 0.6rem;
    }

    .choices__list--dropdown {
        font-size: 14px;
        max-height: 250px;*/ /* prevent overflow */
        /*overflow-y: auto;
    }
}*/

/* ==== Tablet ==== */
/*@media (min-width: 577px) and (max-width: 992px) {
    .choices__inner {
        font-size: 15px;
    }

    .choices__list--dropdown {
        font-size: 15px;
        max-height: 300px;
    }
}*/

/* ==== Desktop ==== */
/*@media (min-width: 993px) {
    .choices__inner {
        font-size: 16px;
    }

    .choices__list--dropdown {
        font-size: 16px;
        max-height: 400px;
    }
}*/

/* ==== Custom checkmark styling ==== */
/*.choices__list--dropdown .choices__item--choice.is-selected::after {
    content: '✔';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;*/ /* ✅ green check */
    /*font-size: 14px;
    font-weight: bold;
}*/

/* ==== Base Choices.js Styling ==== */
.choices,
.choices__inner,
.choices__list--dropdown {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Container look */
.choices__inner {
    min-height: 38px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow-y: auto;
    background-color: #fff;
    border-radius: var(--bs-border-radius-sm);
}

/* Multiple select items */
.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin: 2px 3px;
    background-color: #efcd11 !important;
    border: none !important;
    color: #000 !important;
    position: relative !important;
}

/* ==== Dropdown inside Modals ==== */
.modal .choices__list--dropdown {
    position: absolute !important;
    z-index: 1056 !important;
    max-height: 300px;
    width: 100%;
}

/* ==== Dropdown List ==== */
.choices__list--dropdown {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--bs-border-radius-sm);
    z-index: 2000 !important;
    max-height: 250px;
    overflow-y: auto;
    padding-top: 0 !important;
    width: 100%;
}

    /* Dropdown items */
    .choices__list--dropdown .choices__item--choice {
        position: relative;
        padding-right: 24px !important;
        cursor: pointer;
    }

        /* Selected ✔ checkmark */
        .choices__list--dropdown .choices__item--choice.is-selected::after {
            content: '✔';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            color: #28a745; /* green checkmark */
            font-weight: bold;
            font-size: 0.9rem;
            pointer-events: none;
        }


/* ==== Select All / Deselect All Row ==== */
.choices-select-all-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 10px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
    font-weight: 600;
    font-size: 13px;
}

    .choices-select-all-row button {
        font-size: 0.75rem;
        border: 1px solid #ccc;
        background: #fff;
        padding: 2px 6px;
        border-radius: 3px;
        cursor: pointer;
    }

        .choices-select-all-row button:hover {
            background: #efcd11;
            border-color: #efcd11;
            color: #333;
        }

/* ==== Responsive ==== */
@media (max-width: 576px) {
    .choices__inner {
        font-size: 14px;
        padding: 0.4rem 0.6rem;
    }

    .choices__list--dropdown {
        font-size: 14px;
        max-height: 220px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .choices__inner {
        font-size: 15px;
    }

    .choices__list--dropdown {
        font-size: 15px;
        max-height: 300px;
    }
}

@media (min-width: 993px) {
    .choices__inner {
        font-size: 16px;
    }

    .choices__list--dropdown {
        font-size: 16px;
        max-height: 400px;
    }
}

/* ==== Optional subtle UI buttons ==== */
.choices-btn {
    padding: 3px 8px;
    color: #333;
    font-size: 14px;
    background: #F3F3F3;
    border-radius: 19px;
    border: none;
    transition: 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

    .choices-btn:hover {
        background: #B09003;
        color: #333;
    }

    .choices-btn:focus {
        background: #AC940C;
        color: #333;
    }

/* ==== Summary (if used) ==== */
.choices__list--multiple .choices__item--summary {
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    color: #333;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
    position: relative;
    padding: 5px;
    font-size: 14px;
    margin-left:5px;
}

@media (prefers-color-scheme: dark) {
    .input-group.datepicker .input-group-append .input-group-text {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d; 
        margin-right: 5px;
    }
}

/* Bootstrap 5 Toggle Switch Styling */
.form-check-input[type="checkbox"]:checked {
    background-color: #f6da3c;
    border-color: #f6da3c;
}

.form-switch .form-check-input {
    background-color: #6c757d;
}

.form-switch .form-check-input:checked {
    background-color: #f6da3c;
    border-color: #f6da3c;
}

.form-switch .form-check-input:focus {
    border-color: #f6da3c;
    box-shadow: 0 0 0 0.25rem rgba(246, 218, 60, 0.25);
}

#view-maintenance-record .modal-dialog {
    max-width: 55% !important;
    margin: 0 auto;
}
.help-block.text-danger {
    color: #dc3545 !important;
    font-weight: 600;
}
.choices[data-type*=select-one] .choices__button {
    background-image: none;
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: .25;
}