@import url("https://fonts.googleapis.com/css2?family=Calibri:wght@400;700&display=swap");

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Calibri", sans-serif;
}

.bg-darkblue {
    background-color: rgb(20, 25, 42);
    color: #ffffff;
}

header {
    height: 80px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

.user-info span {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.profile {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .profile img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .profile .submenu {
        display: none;
        position: absolute;
        right: 0;
        top: 58px;
        background: #5772C6;
        border: 1px solid #5772C6;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding: 4px 14px;
        list-style: none;
        min-width: 190px;
        z-index: 32 !important;
        margin-bottom: 0;
    }

        .profile .submenu li {
            padding: 14px 0;
            cursor: pointer;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 20px;
            color: #FFFFFF;
            border-bottom: 1px solid #465FAB;
        }

            .profile .submenu li svg {
                margin-right: 8px;
            }

            .profile .submenu li:last-child {
                border-bottom: 0;
            }

.btn-transprant {
    color: #000000 !important;
    text-transform: capitalize !important;
}

    .btn-transprant:hover {
        opacity: 0.7;
    }

.layout {
    height: calc(100% - 80px);
    overflow: auto;
}

.sidebar {
    height: 100%;
    padding: 24px;
    width: 280px;
    background-color: #FFFFFF;
    border-right: 1px solid rgba(151, 163, 186, 0.5);
    box-shadow: 0px 4px 20px rgba(30, 30, 30, 0.1);
    z-index: 1;
    position: fixed;
}

    .sidebar ul li {
        margin-bottom: 10px;
    }

        .sidebar ul li a {
            display: flex;
            gap: 10px;
            align-items: center;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 22px;
            color: #000000;
            border-radius: 5px;
            padding: 10px;
            text-decoration: none;
        }

            .sidebar ul li a.active, .sidebar ul li a:hover {
                background-color: #d6d6f5;
            }

#content {
    width: calc(100% - 280px);
    background-color: #F3F5FC;
    height: auto;
    overflow: auto;
    position: relative;
    margin-left: 280px;
}

    #content .page-title {
        width: 100%;
        padding: 24px;
    }

        #content .page-title h2 {
            margin-bottom: 0;
            font-style: normal;
            font-weight: 700;
            font-size: 32px;
            line-height: 39px;
            color: #000000;
        }

    #content .card {
        background: #FFFFFF;
        box-shadow: 0px 4px 20px rgba(30, 30, 30, 0.1);
        padding: 24px;
        border-left: 0;
        border-radius: 0;
        border-right: 0;
    }

        #content .card .card-title {
            font-style: normal;
            font-weight: 700;
            font-size: 24px;
            line-height: 29px;
            color: #000000;
            margin-bottom: 20px;
        }

        #content .card .input-section {
            width: calc(100% - 200px);
        }

        #content .card .button-section {
            width: 180px;
            margin-left: 20px;
            display: flex;
            flex-direction: column;
            justify-content: end;
            margin-bottom: 1rem;
            gap: 10px;
        }

        #content .card form label {
            color: #000000;
        }

#common-content {
    width: 100%;
    background-color: #F3F5FC;
    height: auto;
    overflow: auto;
    position: relative;
}

    #common-content .page-title {
        width: 100%;
        padding: 24px;
    }

        #common-content .page-title h2 {
            margin-bottom: 0;
            font-style: normal;
            font-weight: 700;
            font-size: 32px;
            line-height: 39px;
            color: #000000;
        }

.card form .select2-selection {
    height: 48px !important;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 0.375rem 2.25rem .375rem .75rem;
}

    .card form .select2-selection span {
        color: rgb(0, 0, 0) !important;
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;
        padding-left: 20px;
        padding-right: 20px;
    }

.w-auto {
    width: auto !important;
}

.table-wrap {
    margin-top: 24px;
    z-index: 0 !important;
}

    .table-wrap .jqgfirstrow {
        height: auto !important;
    }

    .table-wrap tr.jqgfirstrow td {
        height: 0px !important;
        padding: 0px !important;
    }

    .table-wrap table {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

        .table-wrap table thead tr th {
            background-color: #5772C6 !important;
            color: #ffffff;
            font-style: normal;
            font-weight: 700;
            font-size: 18px;
            line-height: 22px;
            padding: 16px 12px !important;
            height: 60px !important;
            border: 0 !important;
            text-align: left !important;
        }

    .table-wrap .ui-jqgrid {
        border: 0 !important;
    }

    .table-wrap table tbody tr {
        border-bottom: 2px solid #ffffff;
    }

        .table-wrap table tbody tr td {
            background-color: #E8EDFD;
            color: #000000;
            padding: 16px 12px !important;
            height: 60px !important;
            border: 0 !important;
            font-family: 'Calibri';
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 22px;
            white-space: break-spaces !important;
            vertical-align: middle;
        }

            .table-wrap table tbody tr td div {
                height: 100%;
                display: flex;
                align-items: center;
                margin-bottom: 30px;
            }

        .table-wrap table tbody tr:nth-child(even) td {
            background-color: #F5F7FF;
        }

    .table-wrap table thead tr th .ui-th-div {
        margin: 0 !important;
        font-family: 'Calibri';
        font-style: normal;
        font-weight: 700;
        font-size: 18px !important;
        line-height: 22px !important;
        color: #FFFFFF;
        height: auto !important;
        padding-left: 0 !important;
        text-wrap: auto;
    }

    .table-wrap table thead tr .ui-state-default {
        background: #5772C6 !important;
    }

    .table-wrap .pager-style {
        height: 70px !important;
        border: 0 !important;
        background-color: transparent !important;
    }

        .table-wrap .pager-style table {
            border-radius: 0 !important;
        }

        .table-wrap .pager-style tr td {
            background-color: #ffffff;
        }

            .table-wrap .pager-style tr td table tr {
                border: 0 !important;
            }

                .table-wrap .pager-style tr td table tr td {
                    height: 32px !important;
                    padding: 4px !important;
                }

                    .table-wrap .pager-style tr td table tr td.ui-pg-button.ui-corner-all {
                        color: #233775 !important;
                        min-width: 32px !important;
                        background-color: #5772C6 !important
                    }

                        .table-wrap .pager-style tr td table tr td.ui-pg-button.ui-corner-all span {
                            color: #ffffff;
                        }

                        .table-wrap .pager-style tr td table tr td.ui-pg-button.ui-corner-all:hover {
                            background: #233775 !important;
                        }

.ui-paging-pager tbody tr {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .ui-paging-pager tbody tr td.ui-pg-button.ui-corner-all {
        display: flex;
        justify-content: center;
        align-items: center;
    }

input {
    height: 48px;
    border-radius: 10px;
}

select {
    height: 48px;
    border-radius: 10px;
}

textarea {
    height: 48px;
    border-radius: 10px;
}

.form-control, .form-select {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    padding-left: 20px;
    padding-right: 20px;
}

.btn {
    height: 48px;
    border-radius: 999px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}

.btn-small {
    height: 20px;
    border-radius: 999px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px !important;
    line-height: 10px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}

.btn-login {
    background-color: rgb(87, 114, 198);
    color: #ffffff;
}

    .btn-login:hover {
        background-color: rgba(87, 114, 198, 0.7);
    }

.btn-primary {
    background-color: #233775;
    border-color: #233775;
}

    .btn-primary:hover {
        background-color: rgba(35, 56, 117, 0.8235294118);
    }

.btn-rounded {
    width: 48px;
    border-radius: 999px;
    background-color: #5772C6;
    border-color: #5772C6;
    font-size: 24px;
    padding: 8px 17px;
}

    .btn-rounded:hover {
        background-color: rgba(87, 114, 198, 0.8235294118);
        color: #FFFFFF;
    }

.btn-outline-primary {
    border-color: #233775;
    color: #233775;
}

    .btn-outline-primary:hover {
        border-color: rgba(35, 56, 117, 0.8235294118);
        background-color: rgba(35, 56, 117, 0.8235294118);
    }

.btn-info {
    border-color: #53A5D4;
    background-color: #53A5D4;
    color: #FFFFFF;
}

    .btn-info:hover {
        border-color: rgba(83, 165, 212, 0.8235294118);
        background-color: rgba(83, 165, 212, 0.8235294118);
    }

form label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.login-img-card {
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

    .login-img-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #233775 0%, rgba(87, 114, 198, 0.2) 100%);
        pointer-events: none;
    }

    .login-img-card .login-img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .login-img-card .login-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 12%;
    }

.login-form {
    max-width: 450px;
    width: 100%;
}

    .login-form h1 {
        font-weight: 700;
        font-size: 48px;
        line-height: 58.59px;
        letter-spacing: 0%;
        text-align: center;
    }

    .login-form p {
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 24px;
        text-align: center;
        color: #5772C6;
    }

        .login-form p.text-white {
            color: #ffffff;
        }

    .login-form .form-control {
        color: rgb(87, 114, 198);
        font-weight: 400;
    }

.login-text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}

    .login-text .link {
        text-decoration-line: underline;
        color: #5772C6;
    }

        .login-text .link:hover {
            text-decoration: none;
        }

.keyitem {
    background-color: #B5E4FF;
    border-radius: 5px;
    width: auto;
    padding: 8px 10px 8px 15px;
    display: flex;
    align-items: center;
    /*    flex-wrap: wrap;*/
    gap: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

    .keyitem em {
        cursor: pointer;
    }

.message-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    position: relative;
}

    .message-wrap.success {
        background-color: #DDF6DB;
        color: #3FB435;
    }

    .message-wrap.warning {
        background-color: #FFFBCA;
        color: #e2b203;
    }

    .message-wrap.error {
        background-color: #ffe7e7;
        color: #FF2D2D;
    }

    .message-wrap .btn-close {
        width: 20px;
        height: 20px;
        padding: 0;
        position: absolute;
        right: 24px;
        cursor: pointer;
    }

.forgot-password {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #5772C6;
}

    .forgot-password:hover {
        text-decoration: none;
    }

.change-password {
    background-color: rgb(87, 114, 198);
    width: calc(100% - 280px);
    padding: 20px;
    position: fixed;
    top: 80px;
    left: 280px;
    z-index: 1;
    display: none;
}

.overlay {
    content: "";
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    display: none;
}

.pt-32 {
    padding-top: 32px;
}

.btn:disabled {
    filter: grayscale(1);
}

.upload-container {
    background: #E0E7FF;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
}

    .upload-container h4 {
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
        text-align: center;
        color: #000000;
    }

    .upload-container p {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #636466;
    }

    .upload-container button {
        width: 240px;
    }

    .upload-container .file-box {
        background: #c8d4ff;
        border-radius: 8px;
        padding: 15px;
        margin: 20px auto 0;
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 460px;
        border: 1px solid #5772C6;
    }

        .upload-container .file-box h5 {
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 22px;
            color: #000000;
            margin-bottom: 0;
        }

        .upload-container .file-box span {
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            color: #000000;
        }

    .upload-container .progress {
        width: 100%;
        height: 10px;
        border-radius: 25px;
    }

        .upload-container .progress .progress-bar {
            background-color: #233775 !important;
        }

    .upload-container .file-icon {
        width: 40px;
        height: 40px;
    }

    .upload-container.multiupload {
        background: #DEF2FE !important;
    }

        .upload-container.multiupload .file-box {
            background: #C6EAFD;
        }

.w-120 {
    width: 120px;
}

.w-220 {
    width: 220px;
}

.w-240 {
    width: 240px;
}

.action-btn {
    width: 32px;
    height: 32px !important;
    background-color: #ffffff;
    border-radius: 200px;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    color: rgb(35, 55, 117);
    cursor: pointer;
    margin-bottom: 0 !important;
}

    .action-btn:hover.btn-edit {
        color: rgb(83, 165, 212);
    }

    .action-btn:hover.btn-delete {
        color: rgb(255, 0, 0);
    }

.status-wrap {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
}

    .status-wrap.processing {
        color: #FF7733;
        display: inherit;
    }

    .status-wrap.failed {
        color: #ef3838;
        display: inherit;
    }

    .status-wrap.completed {
        color: rgb(63, 180, 53);
        display: inherit;
    }

        .status-wrap.completed span {
            line-height: 0;
        }

.td-link {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #233775;
    cursor: pointer;
}

    .td-link:hover {
        text-decoration: none;
    }

.select2-container {
    width: 100% !important; /* Ensure proper width */
}

    .select2-container .select2-dropdown {
        position: absolute !important; /* Prevents misalignment */
        z-index: 9999; /* Ensures it appears above other elements */
    }

    .select2-container .select2-selection span {
        padding-left: 0 !important;
        padding-right: 0 !important;
        line-height: 34px !important;
    }

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px !important;
    right: 6px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 36px;
}

.select2-results__option {
    font-size: 14px;
    padding: 4px 10px;
}

#btnEditAdd.btn {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}

.popup-tag .keyitem {
    gap: 0 !important;
}

.ui-dialog .ui-dialog-titlebar-close {
    top: 21px !important;
}

.ui-dialog .ui-dialog-buttonpane {
    margin-top: 0 !important;
    background-color: #ffffff !important;
}

    .ui-dialog .ui-dialog-buttonpane button {
        height: 48px;
        border-radius: 999px;
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: #FFFFFF;
        text-transform: uppercase;
        background-color: #343a40;
        border-color: #343a40;
        border-width: 0;
        padding: 4px 16px;
    }

.field-validation-error, .text-danger, .error {
    color: red !important;
}

.ui-widget.ui-widget-content {
    padding: 0 !important;
    border-radius: 10px;
    overflow: hidden;
    border: 0 !important;
}

.ui-widget-header {
    background: #5772C6 !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 12px 1em !important;
}

.ui-dialog .ui-dialog-titlebar-close {
    width: 32px !important;
    height: 32px !important;
    color: #5772C6 !important;
    right: 1em !important;
    top: 21px;
    border-radius: 150px;
}

    .ui-dialog .ui-dialog-titlebar-close:hover {
        border: 1px solid #fff !important;
    }

.ui-dialog .ui-dialog-content {
    background: #fff !important;
}

.ui-dialog .card {
    background: #FFFFFF;
    border: 0;
    border-radius: 0;
}

    .ui-dialog .card .card-title {
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
        color: #000000;
        margin-bottom: 20px;
    }

    .ui-dialog .card .input-section {
        width: calc(100% - 200px);
    }

    .ui-dialog .card .button-section {
        width: 180px;
        margin-left: 20px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        margin-bottom: 1rem;
        gap: 10px;
    }

    .ui-dialog .card form label {
        color: #000000;
    }

    .ui-dialog .card form .select2-selection {
        height: 48px !important;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        padding: 0.375rem 2.25rem .375rem .75rem;
    }

        .ui-dialog .card form .select2-selection span {
            color: rgb(0, 0, 0);
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            letter-spacing: 0%;
            padding-left: 20px;
            padding-right: 20px;
        }

.btn-block {
    font-size: 10px !important;
    line-height: 100%;
    height: 18px;
    padding: 2px 12px;
    background: #233775;
    border: 1px solid #233775;
    color: #ffffff;
    border-radius: 99px;
}

.btn-unblock {
    font-size: 10px !important;
    line-height: 100%;
    height: 18px;
    padding: 2px 12px;
    background: #5772C6;
    border: 1px solid #5772C6;
    color: #ffffff;
    border-radius: 99px;
}

.btn_preview {
    font-size: 14px !important;
    line-height: 100%;
    height: 24px;
    padding: 2px 12px;
    background: #6c757d;
    border: 1px solid #6c757d;
    color: #ffffff;
    border-radius: 99px;
    float: right;
    position: relative;
    top: -44px;
}

.btn-update {
    font-size: 10px !important;
    line-height: 100%;
    height: 18px;
    padding: 2px 12px;
    background: #fff;
    border: 1px solid #fff;
    color: #233775;
    border-radius: 99px;
}

.userstatus-checkbox {
    height: auto !important;
}


#updateStatusButton.btn-update {
    margin-left: 5px;
}

.ui-dialog-titlebar-close {
    background-image: url(jqueryui/images/ui-icons_c47a23_256x240.png) !important;
    background-position: -129.5px -174.5px !important;
    background-color: transparent;
    background-size: 355px;
    border: 1px solid #5772C6 !important;
}

.bi-arrow-clockwise {
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiBjbGFzcz0iYmkgYmktYXJyb3ctY2xvY2t3aXNlIiB2aWV3Qm94PSIwIDAgMTYgMTYiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTggM2E1IDUgMCAxIDAgNC41NDYgMi45MTQuNS41IDAgMCAxIC45MDgtLjQxN0E2IDYgMCAxIDEgOCAyeiIvPgogIDxwYXRoIGQ9Ik04IDQuNDY2Vi41MzRhLjI1LjI1IDAgMCAxIC40MS0uMTkybDIuMzYgMS45NjZjLjEyLjEuMTIuMjg0IDAgLjM4NEw4LjQxIDQuNjU4QS4yNS4yNSAwIDAgMSA4IDQuNDY2Ii8+Cjwvc3ZnPg==");
    background-size: 16px 16px;
    display: inline-block;
}

.bi-arrows-expand {
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiBjbGFzcz0iYmkgYmktYXJyb3dzLWV4cGFuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xIDhhLjUuNSAwIDAgMSAuNS0uNWgxM2EuNS41IDAgMCAxIDAgMWgtMTNBLjUuNSAwIDAgMSAxIDhNNy42NDYuMTQ2YS41LjUgMCAwIDEgLjcwOCAwbDIgMmEuNS41IDAgMCAxLS43MDguNzA4TDguNSAxLjcwN1Y1LjVhLjUuNSAwIDAgMS0xIDBWMS43MDdMNi4zNTQgMi44NTRhLjUuNSAwIDEgMS0uNzA4LS43MDh6TTggMTBhLjUuNSAwIDAgMSAuNS41djMuNzkzbDEuMTQ2LTEuMTQ3YS41LjUgMCAwIDEgLjcwOC43MDhsLTIgMmEuNS41IDAgMCAxLS43MDggMGwtMi0yYS41LjUgMCAwIDEgLjcwOC0uNzA4TDcuNSAxNC4yOTNWMTAuNUEuNS41IDAgMCAxIDggMTAiLz4KPC9zdmc+");
    background-size: 16px 16px;
    display: inline-block;
}

.bi-arrows-fullscreen {
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiBjbGFzcz0iYmkgYmktYXJyb3dzLWZ1bGxzY3JlZW4iIHZpZXdCb3g9IjAgMCAxNiAxNiI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNS44MjggMTAuMTcyYS41LjUgMCAwIDAtLjcwNyAwbC00LjA5NiA0LjA5NlYxMS41YS41LjUgMCAwIDAtMSAwdjMuOTc1YS41LjUgMCAwIDAgLjUuNUg0LjVhLjUuNSAwIDAgMCAwLTFIMS43MzJsNC4wOTYtNC4wOTZhLjUuNSAwIDAgMCAwLS43MDdtNC4zNDQgMGEuNS41IDAgMCAxIC43MDcgMGw0LjA5NiA0LjA5NlYxMS41YS41LjUgMCAxIDEgMSAwdjMuOTc1YS41LjUgMCAwIDEtLjUuNUgxMS41YS41LjUgMCAwIDEgMC0xaDIuNzY4bC00LjA5Ni00LjA5NmEuNS41IDAgMCAxIDAtLjcwN20wLTQuMzQ0YS41LjUgMCAwIDAgLjcwNyAwbDQuMDk2LTQuMDk2VjQuNWEuNS41IDAgMSAwIDEgMFYuNTI1YS41LjUgMCAwIDAtLjUtLjVIMTEuNWEuNS41IDAgMCAwIDAgMWgyLjc2OGwtNC4wOTYgNC4wOTZhLjUuNSAwIDAgMCAwIC43MDdtLTQuMzQ0IDBhLjUuNSAwIDAgMS0uNzA3IDBMMS4wMjUgMS43MzJWNC41YS41LjUgMCAwIDEtMSAwVi41MjVhLjUuNSAwIDAgMSAuNS0uNUg0LjVhLjUuNSAwIDAgMSAwIDFIMS43MzJsNC4wOTYgNC4wOTZhLjUuNSAwIDAgMSAwIC43MDciLz4KPC9zdmc+");
    background-size: 16px 16px;
    display: inline-block;
}

.bi-arrows-angle-expand {
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiBjbGFzcz0iYmkgYmktYXJyb3dzLWFuZ2xlLWV4cGFuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01LjgyOCAxMC4xNzJhLjUuNSAwIDAgMC0uNzA3IDBsLTQuMDk2IDQuMDk2VjExLjVhLjUuNSAwIDAgMC0xIDB2My45NzVhLjUuNSAwIDAgMCAuNS41SDQuNWEuNS41IDAgMCAwIDAtMUgxLjczMmw0LjA5Ni00LjA5NmEuNS41IDAgMCAwIDAtLjcwN200LjM0NC00LjM0NGEuNS41IDAgMCAwIC43MDcgMGw0LjA5Ni00LjA5NlY0LjVhLjUuNSAwIDEgMCAxIDBWLjUyNWEuNS41IDAgMCAwLS41LS41SDExLjVhLjUuNSAwIDAgMCAwIDFoMi43NjhsLTQuMDk2IDQuMDk2YS41LjUgMCAwIDAgMCAuNzA3Ii8+Cjwvc3ZnPg==");
    background-size: 16px 16px;
    display: inline-block;
}

.bi-x-lg {
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiBjbGFzcz0iYmkgYmkteC1sZyIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBkPSJNMi4xNDYgMi44NTRhLjUuNSAwIDEgMSAuNzA4LS43MDhMOCA3LjI5M2w1LjE0Ni01LjE0N2EuNS41IDAgMCAxIC43MDguNzA4TDguNzA3IDhsNS4xNDcgNS4xNDZhLjUuNSAwIDAgMS0uNzA4LjcwOEw4IDguNzA3bC01LjE0NiA1LjE0N2EuNS41IDAgMCAxLS43MDgtLjcwOEw3LjI5MyA4eiIvPgo8L3N2Zz4=");
    background-size: 16px 16px;
    display: inline-block;
}

.bi-zoom-in {
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiB2aWV3Qm94PSIwIDAgMTYgMTYiPgogIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTYuNSAxMmE1LjUgNS41IDAgMSAwIDAtMTEgNS41IDUuNSAwIDAgMCAwIDExTTEzIDYuNWE2LjUgNi41IDAgMSAxLTEzIDAgNi41IDYuNSAwIDAgMSAxMyAwIi8+CiAgPHBhdGggZD0iTTEwLjM0NCAxMS43NDJxLjA0NC4wNi4wOTguMTE1bDMuODUgMy44NWExIDEgMCAwIDAgMS40MTUtMS40MTRsLTMuODUtMy44NWExIDEgMCAwIDAtLjExNS0uMSA2LjUgNi41IDAgMCAxLTEuMzk4IDEuNHoiLz4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjUgM2EuNS41IDAgMCAxIC41LjVWNmgyLjVhLjUuNSAwIDAgMSAwIDFIN3YyLjVhLjUuNSAwIDAgMS0xIDBWN0gzLjVhLjUuNSAwIDAgMSAwLTFINlYzLjVhLjUuNSAwIDAgMSAuNS0uNSIvPgo8L3N2Zz4=");
    background-size: 20px 20px;
    display: inline-block;
}

.file-drop-zone .file-preview-thumbnails {
    display: flex;
    justify-content: center;
}

.krajee-default.file-preview-frame {
    border: 1px solid #5772c6 !important;
    background: #cbd7ff;
    box-shadow: none !important;
    padding: 16px !important;
    border-radius: 10px;
}

    .krajee-default.file-preview-frame .kv-file-content {
        margin: 0 auto;
    }

.krajee-default .file-footer-buttons {
    float: right;
    position: absolute;
    top: -100px;
    width: 40px;
    height: 40px;
    left: 80px;
}

button.kv-file-zoom {
    width: 100% !important;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.krajee-default .file-footer-caption {
    margin-bottom: 0 !important;
}

.krajee-default .file-upload-indicator {
    display: none !important;
}

.krajee-default.file-preview-frame .file-thumbnail-footer {
    height: auto !important;
}

.kv-zoom-actions, .floating-buttons {
    display: flex;
    gap: 6px;
}

    .kv-zoom-actions .btn-kv {
        margin-left: 3px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .floating-buttons .btn-kv {
        margin-left: 3px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
    }

button.btn.fileinput-remove-button {
    color: #000;
    max-width: 105px;
}

.btn.btn-file {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-export {
    height: 32px;
    font-size: 10px;
    line-height: 16px;
    background-color: #5772C6 !important;
    border-color: #5772C6 !important;
}

.btn-review {
    font-size: 9px !important;
    line-height: normal;
    height: 40px;
    padding: 6px 14px;
    border: 1px solid #fff;
    border-radius: 99px;
    width: 100%;
    min-width: 88px;
}

.btn-uploadotherdocs {
    font-size: 9px !important;
    line-height: normal;
    height: 40px;
    padding: 6px 5px;
    border: 1px solid #fff;
    border-radius: 99px;
    width: 40px;
}

.btn-reupload {
    padding: 4px 14px;
}

.status-btn {
    height: 32px;
    margin-top: 10px;
    font-size: 14px;
}

.popup-wrap {
    padding: 0 24px 24px;
}

.popup-card {
    width: 100%;
    height: auto;
    /*    max-height: 90vh;*/
    /*overflow: auto;*/
}


    .popup-card .form-control, .popup-card .form-select {
        font-size: 14px;
        padding-left: 16px;
        padding-right: 16px;
        height: 36px;
    }


    .popup-card .table-grid {
        width: 70%;
    }


        .popup-card .table-grid .table-wrap {
            width: 100%;
            overflow: auto;
            margin-top: 0;
        }


            .popup-card .table-grid .table-wrap table thead tr th {
                font-size: 14px;
            }


            .popup-card .table-grid .table-wrap table thead tr td {
                font-size: 14px;
            }

            .popup-card .table-grid .table-wrap table tbody tr td {
                white-space: normal !important;
            }


    .popup-card .pdf-view {
        width: 30%;
        padding: 16px;
    }


        .popup-card .pdf-view iframe {
            width: 100%;
            height: 100%;
        }


.ui-widget-overlay {
    background: #000000;
    opacity: 0.4;
}


span.edit-span {
    padding: 4px;
}


.popup-card .card-title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 20px;
}


.popup-card .table-detail label {
    color: #000000;
}

.back-btn {
    text-decoration: none;
    color: #233775;
}

.popup-card .btn-outline-primary:hover .back-btn {
    color: #fff !important;
}

.popup-card .btn-outline-primary:hover {
    color: #fff !important;
}

.popup-card .table-wrap table thead tr th .ui-th-div {
    font-size: 14px !important;
}

.popup-card .table-wrap table tbody tr td {
    font-size: 14px !important;
}

.btn-add {
    background-color: #fff;
    color: #233775;
    width: 34px;
    height: 34px;
    padding: 6px 8px;
}

    .btn-add:hover {
        border-color: #fff;
    }

.btn-remove {
    background-color: #5772C6;
    border-color: #5772C6;
    color: #fff;
    width: 34px;
    height: 34px;
    padding: 6px 8px;
}

    .btn-remove:hover {
        border-color: #5772C6;
        color: #5772C6;
    }

.btn-pass {
    padding-top: 30px;
}

#jqInvItemList tr td {
    vertical-align: top !important;
}

#jqUsermanagement tr td:nth-child(7) div, #jqUsermanagement tr td:nth-child(8) div, #jqMappingList tr td:nth-child(10) div {
    margin-bottom: 0 !important;
}

.password-container {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}

.eye-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

#jqInvItemList .form-control {
    padding-left: 4px;
    padding-right: 4px;
}

.loader-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background */
    z-index: 9999; /* Ensure it's on top */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 4px solid #f3f3f3; /* Light gray background */
    border-top: 4px solid #3498db; /* Blue spinner */
    border-radius: 50%; /* Circle shape */
    width: 40px; /* Loader size */
    height: 40px; /* Loader size */
    animation: spin 1s linear infinite; /* Spinning animation */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.message-wrap .btn-w-close {
    position: initial;
}

.user-align {
    justify-content: center !important;
}

.kv-zoom-actions .btn-kv-rotate {
    display: none !important;
}

.floating-buttons .btn-kv-rotate {
    display: none !important;
}

#dvPoList .ui-jqgrid .ui-jqgrid-htable th .ui-jqgrid-sortable {
    cursor: text !important;
}

.rviewsuccess span, .rviewwarning span, .rviewerror span, .invoicewarning span {
    padding-right: 30px;
}

.btn-proceedanyway {
    font-size: 9px !important;
    line-height: normal;
    height: 40px;
    padding: 6px 14px;
    border: 1px solid #fff;
    border-radius: 99px;
    width: 100%;
    min-width: 78px;
    margin-left: -12px;
}

.table-wrap table tbody tr td .dvSlNo {
    font-weight: 700;
    align-items: inherit;
    /*margin-bottom: auto;*/
}

.table-wrap table tfoot tr td {
    font-weight: 700;
}

    .table-wrap table tfoot tr td label {
        font-weight: 700;
        font-size: 14px;
    }
