.bg-secondary {
    background: #f8f9fc !important;
}

.mb-4 {
    margin-bottom: 2.5rem !important;
}

.btn-primary {
    border-color: #ffffff !important;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    line-height: 18px;
    border-width: 2px;
    background: #0062b0 !important;
    box-shadow: none !important;
    height: 40px;
}

.vertical-align-middle {
    vertical-align: middle !important;
}

#logout {
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer !important;
}

.text-gray-500 {
    color: #6d6d6d;
}

.border-theme {
    border-color: #0062b0 !important;
}

.btn-cancel {
    background-color: #ffeaee !important;
    font-size: 14px;
    color: #ff5388 !important;
    padding: 6px 20px;
    font-weight: 700;
}

.box-shadow-none {
    box-shadow: none !important;
}

.rounded-100 {
    border-radius: 50px;
}

.btn-theme {
    color: #ffffff !important;
    background-color: #0062b0 !important;
    font-size: 14px;
    padding: 6px 20px;
    border: 1px solid transparent !important;
    text-decoration: none !important;
    box-shadow: none !important;
    font-weight: 700;
}

.page-title {
    font-size: 21px;
    color: #0062b0 !important;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    margin-bottom: 60px;
    position: relative;
}

    .page-title:after {
        content: " ";
        height: 3px;
        width: 70px;
        background-color: #0062b0 !important;
        position: absolute;
        bottom: -15px;
        left: 0px;
    }
    .temp-title:after {
        content: " ";
        height: 3px;
        width: 245px;
        background-color: #0062b0 !important;
        position: absolute;
        bottom: -15px;
        left: 0px;
    }

.badge {
    height: 25px;
    font-size: 11px;
    padding: 0px 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    justify-content: center;
    color: #fff;
    font-weight: 400;
}

.font-16 {
    font-size: 16px !important;
}

.bg-danger, .badge-danger {
    background-color: #e74a3b !important;
}

.custom-breadcrumb {
    /* margin-left: 10px; */
}

    .custom-breadcrumb a {
        font-size: 21px;
        color: #0062b0 !important;
        text-decoration:none !important;
    }

        .custom-breadcrumb a:nth-child(2):before {
            content: " / ";
            margin-right: 1px;
            color: #0062b0 !important;
        }

        .custom-breadcrumb a.active {
            color: #8b8b8b !important;
        }

/* Icons CSS Start */

@font-face {
    font-family: 'Nucleo';
    src: url('../fonts/nucleo.eot');
    src: url('../fonts/nucleo.eot') format('embedded-opentype'), url('../fonts/nucleo.woff2') format('woff2'), url('../fonts/nucleo.woff') format('woff'), url('../fonts/nucleo.ttf') format('truetype'), url('../fonts/nucleo.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

.tim-icons {
    display: inline-block;
    font: normal normal normal 1em/1 'Nucleo';
    vertical-align: middle;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-pencil::before {
    content: "\ea3d";
}

.icon-trash-simple::before {
    content: "\ea54";
}
/* Icons CSS End */

/* Login CSS Start */
.card-signin {
    border: 0;
    overflow: hidden;
    height: 80vh;
}

.login-box .col-lg-4 {
    border-right: 1px solid #f0f2f5;
}

.col-lg-4 .card-signin {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.col-lg-8 .card-signin {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.position-absolute {
    position: absolute;
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
}

.form-label-group {
    position: relative;
    margin-bottom: 1.8rem;
}

    .form-label-group .form-control {
        background-color: transparent;
        border: 1px solid #ddd;
        border-radius: 5px;
        outline: none;
        height: 42px;
        width: 100%;
        font-size: 13px;
        padding: 6px 0px 6px 30px;
        box-shadow: none !important;
        color: #5f5f5f !important;
    }

        .form-label-group .form-control::placeholder {
            /* color: #0000004a !important; */
            color:#8f8b8b !important;
        }

    .form-label-group > label {
        color: #ffffff !important;
        position: absolute;
        top: 0;
        left: 0;
        cursor: text;
        -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
        transition: color .2s ease-out, -webkit-transform .2s ease-out;
        transition: transform .2s ease-out, color .2s ease-out;
        transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        text-align: initial;
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
        font-size: 13px;
    }

input:not(.browser-default) + label:after {
    display: block;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    -webkit-transition: .2s opacity ease-out, .2s color ease-out;
    transition: .2s opacity ease-out, .2s color ease-out;
}

.form-label-group > label:not(.label-icon).active {
    -webkit-transform: translateY(-12px) scale(0.9);
    transform: translateY(-12px) scale(0.9);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.form-label-group input:focus ~ label, .form-label-group input:valid ~ label {
    -webkit-transform: translateY(-12px) scale(0.9);
    transform: translateY(-12px) scale(0.9);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    border-color: #af50e2;
}

.card-signin .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.card-title span {
    color: #1e1e2d;
    margin-left: -5px;
    font-weight: 100;
}

.login-banner {
    width: 37%;
    margin-left: -385px;
    margin-top: -32px;
}

.card-signin .card-title {
    color: #0062b0;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    margin-top: 15px;
}

.login-logo {
    width: 60px;
}
.logo-middle {
    width: 100%;
    text-align: center;
}
.login-icon {
    position: absolute;
    top: 15px;
    left: 10px;
    color: #c9ced2;
    font-size: 14px;
}

.triangle-top-left {
    display: inline-block;
    width: 0px;
    height: 0;
    border-style: solid;
    border-width: 120px 390px 0 0;
    border-color: #0062b0 transparent transparent transparent;
}

.triangle-top-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 200px 100px 0;
    border-color: transparent #0062b099 transparent transparent;
    right: 0px;
}

.trianglebg {
    height: 100%;
    right: 0px;
}

.login-box {
    height: 80vh;
    width: 30%;
    margin: auto;
    box-shadow: 0 0.5rem 1rem 0 rgb(0 0 0 / 30%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.version-text {
    font-size: 13px;
    color: rgb(0 0 0 / 54%);
    padding-top: 15px;
}

span.divider {
    width: 50%;
    height: 2px;
    background-color: #ccccccba;
    content: "";
    display: block;
    margin: 12px auto 17px;
}

.login-footer {
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    padding-top: 10px;
}

.sponser-text {
    color: #333 !important;
    margin-top: 3px;
    margin-left: 2px;
    margin-bottom: 5px;
    text-decoration: none;
}

    .sponser-text:hover {
        text-decoration: underline;
    }

.copyright {
    display: block;
    color: #0000004a;
    margin-top: 5px;
}
/* Login CSS End */

/* Header Start */
header {
    box-shadow: rgb(0 0 0 / 8%) 0 1px 0;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 15px;
    color: #9d9d9d !important;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 500;
    margin-left: 15px;
    margin-right: 15px;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-item .nav-link:hover {
    color: #0062b0 !important;
    border-bottom: 2px solid #0062b0;
}

.user_icon em {
    font-size: 42px;
    margin-bottom: 0px;
    margin-top: -3px;
}

.user_icon span {
    font-size: 14px;
    color: #9d9d9d !important;
    font-weight: 500;
    display: inline-block;
    vertical-align: top;
    padding-top: 8px;
    margin-left: 3px;
    white-space: nowrap;
    max-width: 392px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user_icon .dropdown-menu {
    transform: none !important;
    border: none;
    border-radius: 0px;
    box-shadow: 0 0 14px 0 rgba(53,64,82,.05);
    font-size: 14px;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    right: -10px;
    top: 42px !important;
    left: unset !important;
}

.dropdown-menu.show {
    transition: opacity 302ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 201ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.user_icon .dropdown-item em {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.user_icon .dropdown-item {
    color: #949494;
    padding: 8px 12px;
}

    .user_icon .dropdown-item:hover {
        background-color: #0062b0;
        color: #FFF;
    }

    .user_icon .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: #0062b0;
    }
/* Header End */

/* Side Bar CSS Start */

.sidenav-dark {
    background-color: #0062b0 !important;
    color: rgba(255,255,255,.5);
    z-index: 1;
}

.sidebar-fixed {
    position: fixed;
    left: 0;
}

.sidebar.toggled {
    overflow: visible;
    width: 7.5rem !important;
}

.sidebar {
    width: 14rem !important;
    min-height: 100vh;
}

    .sidebar.toggled .nav-item .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
        width: 7.5rem !important;
    }

    .sidebar .nav-item .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem;
        /*width: 14rem;*/
        color: #fff;
    }

.sidebar-dark .nav-item .nav-link .fas {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.sidebar.toggled .nav-item .nav-link span {
    font-size: .8rem;
    display: block;
}

.page-wrapper {
    overflow-x: hidden;
    margin-left: 7.5rem;
    padding: 40px 30px 80px;
    margin-top: 72px;
}

.sidebar-dark .nav-item.active .nav-link {
    color: #fff;
    background-color: #0d4e82;
}
.sidebar-dark .nav-item .nav-link svg{
    margin-bottom: 4px;
}
.loading {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 100000000000;
    cursor: pointer;
}

.spin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}

#overlaycustom p {
    font-size: 18px;
    /* position: absolute; */
    width: 100%;
    display: block;
    color: white;
}

/* Side Bar CSS End */

/* Table CSS */

.searcharea .form-control {
    border-color: #efefef;
    font-size: 13px;
    box-shadow: none;
    padding-left: 35px;
    height: 40px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #333;
}

.searcharea img {
    position: absolute;
    top: 9px;
    left: 22px;
    width: 23px;
}

.logstableview {
    background: #f8f9fc !important;
    border: 0;
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 0.2857rem;
    margin: 0px;
}

    .logstableview table {
        border-collapse: separate;
        border-spacing: 0px 5px;
        width: 100% !important;
        margin: 10px 0px 20px;
    }

    .logstableview .table > thead > tr > th {
        font-size: 13px;
        font-weight: 500;
        border: none;
        padding: 10px 10px 15px !important;
        color: #ffffff;
        line-height: 20px;
        text-align: center;
        background-color: #0062b0;
    }

    .logstableview .table > tbody > tr > td {
        border: none;
        padding: 4px 9px;
        background-color: #ffffff;
        height: 50px;
        vertical-align: middle;
        font-size: 12px;
        color: #808080;
        text-align: center;
        word-break: break-all;
    }
    .logstableviewdata .table > tbody > tr > td {
        border: none;
        padding: 0px 0px !important;
        background-color: #ffffff;
        height: 32px !important;
        vertical-align: middle;
        font-size: 12px;
        color: #808080;
        text-align: center;
        word-break: break-all;
    }

    .logstableview .table > thead > tr > th, .logstableview .table > tbody > tr > td {
        width: 150px !important;
        max-width: 150px !important;
        min-width: 150px !important;
    }
    .logstableview table#TblExcelData > thead > tr > th, .logstableview .table > tbody > tr > td {
        width: 150px !important;
        max-width: 150px !important;
        min-width: 145px !important;
    }

        .logstableview .table > thead > tr > th:last-child,
        .logstableview .table > tbody > tr > td:last-child {
            width: 100px !important;
            max-width: 100px !important;
            min-width: 120px !important;
        }
        #customermanagement > thead > tr > th:first-child,
        #customermanagement > tbody > tr > td:first-child {
            width: 130px !important;
            max-width: 150px !important;
            min-width: 130px !important;
        }
        #tempjsonfieldstable > thead > tr > th:nth-child(8), #tempjsonfieldstable > tbody > tr > td:nth-child(8) {
            width: 200px !important;
            max-width: 200px !important;
            min-width: 160px !important;
        }
        .logstableview .table > thead > tr > th:first-child,
        .logstableview .table > tbody > tr > td:first-child {
            width: 80px !important;
            max-width: 110px !important;
            min-width: 80px !important;
        }
.universalfieldstable .table > thead > tr > th:first-child,
.universalfieldstable .table > tbody > tr > td:first-child {
    width: 110px !important;
    max-width: 110px !important;
    min-width: 80px !important;
}
    .logstableview .table > tbody > tr > td:first-child, .logstableview .table > thead > tr > th:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

        .logstableview .table > tbody > tr > td:last-child,
        .logstableview .table > thead > tr > th:last-child {
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }


.searchtableview {
    background: #f8f9fc !important;
    border: 0;
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 0.2857rem;
    margin: 0px;
}

    .searchtableview table {
        border-collapse: separate;
        border-spacing: 0px 5px;
        width: 100% !important;
        margin: 10px 0px 20px;
    }

    .searchtableview .table > thead > tr > th {
        font-size: 13px;
        font-weight: 500;
        border: none;
        padding: 10px 10px 15px !important;
        color: #ffffff;
        line-height: 20px;
        text-align: center;
        background-color: #0062b0;
    }

    .searchtableview .table > tbody > tr > td {
        border: none;
        padding: 4px 9px;
        background-color: #ffffff;
        height: 50px;
        vertical-align: middle;
        font-size: 12px;
        color: #808080;
        text-align: center;
        word-break: break-all;
    }

    .searchtableview .table > tbody > tr > td {
        border: none;
        padding: 0px 0px !important;
        background-color: #ffffff;
        height: 32px !important;
        vertical-align: middle;
        font-size: 12px;
        color: #808080;
        text-align: center;
        word-break: break-all;
    }

    .searchtableview .table > thead > tr > th, .searchtableview .table > tbody > tr > td {
        width: 150px !important;
        max-width: 150px !important;
        min-width: 150px !important;
    }

        .searchtableview .table > thead > tr > th:last-child,
        .searchtableview .table > tbody > tr > td:last-child {
            width: 70px !important;
            max-width: 70px !important;
            min-width: 70px !important;
        }
        .tableviewtemp .table > thead > tr > th:last-child,
        .tableviewtemp .table > tbody > tr > td:last-child {
            width: 200px !important;
            max-width: 200px !important;
            min-width: 111px !important;
        }

        .searchtableview .table > thead > tr > th:first-child,
        .searchtableview .table > tbody > tr > td:first-child {
            width: 200px !important;
            max-width: 200px !important;
            min-width: 80px !important;
        }
        .tableviewtemp .table > thead > tr > th:first-child,
        .tableviewtemp .table > tbody > tr > td:first-child {
            width: 200px !important;
            max-width: 200px !important;
            min-width: 97px !important;
        }

        .searchtableview .table > tbody > tr > td:first-child,
        .searchtableview .table > thead > tr > th:first-child {
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
        }

        .searchtableview .table > tbody > tr > td:last-child,
        .searchtableview .table > thead > tr > th:last-child {
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }


.dt-search,
.dt-buttons {
    display: none;
}

.dt-container .dt-paging {
    float: right;
}

.dt-container .dt-info {
    float: left;
    font-weight: 500;
    color: #bbbaba;
    font-size: 13px;
}

:focus {
    outline: none !important;
}

table.dataTable.no-footer {
    border-bottom: none;
}

.dt-container .dt-paging .dt-paging-button {
    margin: 0px 4px;
    border-radius: 4px !important;
    padding: 5px 8px !important;
    font-size: 12px !important;
    vertical-align: middle;
    line-height: 14px;
    background: #e4e4e4 !important;
    color: #848484 !important;
    font-weight: 600;
    text-decoration: none !important;
    border:none !important;
}
.dt-paging .first, .dt-paging .last {
    display: none;
}
.dt-paging-button.previous, .dt-paging-button.next {
    visibility: hidden;
}
    .dt-paging-button.previous:before, .dt-paging-button.next:before {
        content: "Previous";
        visibility: visible;
        border-radius: 4px !important;
        padding: 5px 8px !important;
        font-size: 12px !important;
        vertical-align: middle;
        line-height: 14px;
        background: #e4e4e4 !important;
        color: #848484 !important;
        font-weight: 600;
        text-decoration: none !important;
        border: none !important;
        width: 100%;
    }
    .dt-paging-button.next:before {
        content: "Next";
    }


        .dt-container .dt-paging .dt-paging-button.current,
        .dt-container .dt-paging .dt-paging-button.current:hover {
            background: #0062b0 !important;
            border-color: #0062b0 !important;
            color: #fff !important;
        }

table.dataTable thead .dt-ordering-asc {
    background-image: url(../img/sort_asc.png) !important;
}

table.dataTable thead .dt-ordering-desc {
    background-image: url(../img/sort_desc.png) !important;
}

table.dataTable thead .dt-orderable-asc {
    background-image: url(../images/sort_both.png);
}
table.dataTable thead .dt-orderable-none {
    background-image: none !important;
}

table.dataTable thead .dt-orderable-asc,
table.dataTable thead .dt-orderable-asc-disabled,
table.dataTable thead .dt-orderable-desc-disabled {
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center right;
}

.logstableview .table > tbody > tr > td {
    color: rgb(56 56 56 / 81%) !important;
}



   

/* Table CSS End */

/* Modal CSS */
.modal-dialog {
    height: 100%;
    margin: auto;
    margin-right: 0;
    border-radius: 0px;
    width: 700px;
}
.modal-dialogxl {
    max-width: 1366px !important;
    width: 100%;
}

.modal-footer {
    border-top: none !important;
}

.modal-content {
    border-radius: 0px;
    height: 100%;
    background-color: #fff !important;
}

.modal-backdrop {
    background-color: #0062b0 !important;
    opacity: 0.6 !important;
}

.modal.right .modal-dialog {
    position: fixed;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
    overflow-y: auto;
}

/*Left*/
.modal.right.fade .modal-dialog {
    right: -700px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
    right: 0;
}

.close {
    position: absolute;
    z-index: 999;
    top: 10px;
    right: 20px;
}

.userlistform .requiredfield::after {
    content: "*";
    color: #AA2E16;
    margin-left: 4px;
    font-weight: 900;
    font-size: 16px;
}

.userlistform label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: #888888;
}

.userlistform .form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-control.error {
    border: 1px solid #dc3545 !important;
}
.error {
    border: 1px solid #dc3545 !important;
}

.select-icon {
    position: absolute;
    right: 13px;
    font-size: 24px;
    top: 35px;
    color: #b9b9b9;
    pointer-events: none;
    z-index: 1;
}

#searchUserDetail {
    position: absolute;
    right: 3px;
    top: 36px;
    background-color: #eee;
}

.userlistform .col-sm-6 {
    padding: 0px 10px;
}

.userlistform .form-control {
    border: 1px solid #efefef;
    border-radius: 5px;
    height: 42px;
    transition: none;
    -webkit-appearance: none;
    padding: 6px 10px;
    font-size: 13px;
    box-shadow: none;
    background-color: #ffffff;
    color: #333;
}

    .userlistform .form-control::placeholder {
        color: #ccc;
    }

.error-msg {
    font-size: 13px !important;
    color: #dc3545 !important;
    margin-bottom: 0px !important;
    margin-top: 2px;
}

.internal-error {
    position: absolute;
    line-height: 16px;
}

/* Modal CSS End */

/* Switch CSS Start */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.switch {
    position: relative !important;
    display: inline-block !important;
    width: 50px !important;
    height: 25px;
    margin-top: 10px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 19px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #0062b0;
}

input:checked + .slider {
    background-color: #0062b0;
}

    input:checked + .slider:before {
        -webkit-transform: translateX(24px);
        -ms-transform: translateX(24px);
        transform: translateX(24px);
    }

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/* Switch CSS End */

/* Footer Start */
footer {
    background-color: #ffffff;
    font-size: 12px;
    color: #bababa;
    text-align: center;
    width: 100%;
    bottom: 0px;
    padding: 13px;
    margin-top: 20px;
    box-shadow: 0px 0px 4px 0px #0000001f;
    position: fixed;
    font-weight: 400;
}
/* Footer End */

/* Alert CSS Start */

.swal-overlay {
    background-color: rgb(0 98 176 / 60%) !important;
}

.swal-title {
    color: rgb(115 114 114 / 80%);
    font-weight: 500;
    text-transform: none;
    position: relative;
    display: block;
    padding: 10px 16px;
    font-size: 18px;
    line-height: normal;
    text-align: center;
    margin-bottom: 0;
}

.for-note .swal-text {
    font-size: 14px;
    color: red;
    margin-top: 20px;
    margin-bottom: -15px;
}

.swal-button {
    background-color: #0062b0 !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50px;
    min-width: 96px;
}

.swal-button--cancel {
    color: #555 !important;
    background-color: #efefef !important;
    font-weight: 700;
    border-radius: 50px;
    margin-right: 10px;
}

.swal-button--danger {
    background-color: #ffeaee !important;
    color: #ff5388 !important;
    font-weight: 700;
    border-radius: 50px;
    min-width: 96px;
}

.swal-button--cancel:focus {
    box-shadow: none !important;
}

/* Alert CSS End */

/* Field Management CSS Start */

.formlabel {
    color: #585858;
    font-size: 13px;
}

    .formlabel.requiredfield::after {
        content: "*";
        color: #AA2E16;
        margin-left: 4px;
        font-weight: 900;
        font-size: 16px;
    }

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 5px;
    height: 40px;
    padding: 5px;
    font-size: 13px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #7b7373;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #9c9c9cb0 transparent transparent transparent;
        border-style: solid;
        border-width: 6px 6px 0 6px;
        height: 0;
        left: 50%;
        margin-left: -12px;
        margin-top: 3px;
        position: absolute;
        top: 50%;
        width: 0;
    }

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #efefef;
}

.select2-dropdown {
    border: 1px solid #efefef;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #0062b0;
    color: white;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #9c9c9cb0 transparent;
    border-width: 0 6px 6px 6px;
}

.select2-results__option {
    font-size: 13px;
}

.select2.select2-container {
    width: 100% !important;
}

.ui-menu .ui-menu-item {
    font-size: 13px;
}

.upload-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
    flex-direction: column;
    background-color: #f3f8fe;
    border: 2px dashed #96c0f7;
    font-size: 13px;
    font-weight: 600;
    color: #929398;
    cursor: pointer;
}

.file_upload {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.upload-box em {
    font-size: 48px;
    margin-bottom: 10px;
    color: #0062b0;
}

.upload-box a {
    text-decoration: none;
    padding: 10px 8px;
    text-align: center;
    background-color: #53a3f9;
    margin-top: -15px;
    border-radius: 5px;
    color: #FFF;
    border: 2px solid #8bc6fc;
    font-size: 15px;
}

.upload-box p {
    color: #0062b0;
    font-size: 16px;
    text-align: center;
}

    .upload-box p span {
        color: #0062b0;
        display: inline-block;
        margin-top: 3px;
    }

.upload-box .filename {
    color: #28a745;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: -12px;
    margin-top: 5px;
}

    .upload-box .filename:before {
        content: "\f15c";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 5px;
    }
/* Field Management CSS End */

/* App info CSS Start */

.grid-content-container {
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 6px #00000029;
    margin-bottom: 20px;
}

h4.releasetitle {
    font-weight: 600;
    margin-bottom: 0px;
    color: #333;
    font-size: 19px;
    background-color: #dadada;
    padding: 15px;
}

span.releasedate {
    float: right;
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.grid-content-container ul {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    opacity: 0.8;
    padding: 25px 50px;
}

    .grid-content-container ul li {
        padding: 1px 0px;
    }

/* App info CSS End */

/* Error Page CSS Start */

.centerFlex {
    margin-top: 6%;
    display: block;
}

.under-construction-bg {
    background-image: none;
    width: 280px;
    height: 220px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 12px;
    position: relative;
}

.error-innercontent {
    content: "";
    position: absolute;
    top: 12px;
    left: 22px;
}

    .error-innercontent h1 {
        font-size: 140px;
        font-weight: 600;
        color: #333;
        text-align: center;
        margin-top: 5px;
        margin-bottom: -8px;
        letter-spacing: 4px;
    }

    .error-innercontent em {
        font-size: 100px;
        position: absolute;
        left: -131px;
        color: #f46e6e;
        top: 74px;
    }

    .error-innercontent p {
        font-size: 28px;
        text-align: center;
        font-weight: 900;
        color: #333;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

.centerFlex a {
    display: block;
    text-align: center;
    color: #4c56c0;
    font-size: 16px;
    text-decoration: underline;
}

.under-construction-text {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #333333d1;
    margin-bottom: 8px;
    margin-top: 10px;
}

/* Error Page CSS End */
/* Field Management CSS End */
/* Data Extraction CSS Start */

.upload-dataextrator, .upload-jsonfield {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 86px;
    flex-direction: column;
    background-color: white;
    border: 2px dashed #BEBEBE;
    font-size: 13px;
    font-weight: 600;
    color: #b5b5b5;
    cursor: pointer;
    margin-top: -18px;
}
input#hpmsfile {
    height: 68px;
}

.dataextratorfile_upload, .jsonfieldfile_upload {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.upload-dataextrator em, .upload-jsonfield em {
    font-size: 28px;
    color: #ccc;
}

.upload-dataextrator p, .upload-jsonfield p {
    margin-bottom: 0px;
}

.upload-dataextrator a, .upload-jsonfield a {
    text-decoration: underline;
    font-weight: 400;
}

.summary-title {
    margin: 0px;
    display: inline-block;
    padding: 10px;
    background-color: #0062b0;
    color: #FFF;
    font-size: 14px;
    width: 160px;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.summary-card {
    background-color: #ffffff;
    padding: 0px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 3px 2px #33333314;
    display: flex;
    align-items: center;
    min-height: 100px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

    .summary-card::-webkit-scrollbar {
        display: none;
    }

.summary-details {
    padding: 0px 20px;
    border-right: 1px solid #e4e4e4;
    max-width: 20%;
    flex: 0 0 20%;
    text-align: center;
}

    .summary-details:last-child {
        border-right: none;
    }

    .summary-details p:nth-child(1) {
        font-size: 14px;
        color: #adadad;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .summary-details p:nth-child(2) {
        font-size: 28px;
        margin-bottom: 0px;
        font-weight: 700;
        color: #585858;
    }

svg.previous, svg.next {
    width: 20px;
    position: absolute;
    top: 65px;
    cursor: pointer;
    background-color: #FFF;
    display: none;
}

svg.previous {
    left: 30px;
}

svg.next {
    right: 25px;
}

    svg.previous.disabled, svg.next.disabled {
        cursor: no-drop;
        color: #d6d6d6;
    }

.upload-dataextrator .filename, .upload-jsonfield .filename {
    color: #28a745;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: -12px;
    margin-top: 5px;
}

    .upload-dataextrator .filename:before, .upload-jsonfield .filename:before {
        content: "\f15c";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 5px;
    }

.custom-error {
    white-space: nowrap;
}

/*Menu Toggle*/
.menu-collapsed {
    overflow: visible;
    width: 2rem !important;
}

.menu-toggle-margin {
    margin-left: 2rem !important;
}

.toggle-arrow {
    bottom: 60px;
    position: absolute;
}

.menu-icons {
    font-size: 15px !important;
    margin-left: -.5rem;
}

.collapse-arrow {
    padding: .8rem !important;
    background: radial-gradient(black, transparent);
}

.hidespan {
    display: none !important;
}

.logstableview #exceptionlogtable.table > thead > tr > th:first-child, .logstableview #exceptionlogtable.table > tbody > tr > td:first-child {
    width: 30px !important;
    max-width: 30px !important;
    min-width: 30px !important;
}

.logstableview #exceptionlogtable.table > thead > tr > th:nth-child(3), .logstableview #exceptionlogtable.table > tbody > tr > td:nth-child(3) {
    width: 70px !important;
    max-width: 70px !important;
    min-width: 70px !important;
}

.logstableview .table > tbody > tr.subgrid > td {
    background-color: #f1f1f1;
}

.logstableview .table > thead > tr > th, .logstableview .table > tbody > tr > td {
    width: 150px !important;
    max-width: 150px !important;
    min-width: 130px !important;
}

.logstableview #exceptionlogtable.table > thead > tr > th:last-child, .logstableview #exceptionlogtable.table > tbody > tr > td:last-child {
    width: 130px !important;
    max-width: 130px !important;
    min-width: 130px !important;
}

.logstableview .table > tbody > tr > td .badge {
    padding: 0px 6px;
}

.logstableview .table > tbody > tr > td .badge-warning {
    color: #212529 !important;
    background-color: #ffc1074d;
    border: 1px solid #ffc000;
}

.logstableview .table > tbody > tr > td .badge-info {
    color: #212529 !important;
    background-color: #17a2b84d;
    border: 1px solid #17a2b8;
}

.logstableview .table > tbody > tr > td .badge-danger {
    color: #212529 !important;
    background-color: #e74a3b4d !important;
    border: 1px solid #e74a3b;
}

.logstableview .table > tbody > tr > td .badge-success {
    color: #212529 !important;
    background-color: #28a7454d !important;
    border: 1px solid #28a745;
}

.view-history {
    font-size: 21px;
    color: #666666;
    vertical-align: middle;
    margin-left: 8px;
    cursor: pointer;
}

.action-icons {
    font-size: 15px;
    color: #4f4f4f;
    vertical-align: middle;
    /*background-color: #e3e3e3;*/
    width: 26px;
    height: 30px;
    line-height: 31px;
    border-radius: 50px;
    margin-right: -4px;
    text-align: center;
    cursor: pointer;
}

    .action-icons.disable {
        color: #c8c8c8;
        pointer-events: none;
    }

.extractionsummery {
    padding: 15px;
}

.extractionsummery {
    padding: 10px 5px;
}

    .extractionsummery h5 {
        text-align: left;
        font-size: 16px;
        color: #333;
    }

.logstableview .subgrid .table > thead > tr > th {
    background-color: #9bb5fe;
    color: #5f5f5f;
    padding: 6px 3px !important;
    vertical-align: middle;
    line-height: 14px;
    font-size: 12px;
}

.logstableview .subgrid .table > tbody > tr > td {
    padding: 6px 6px !important;
    height: 40px;
}

.logstableview .subgrid .table {
    margin-bottom: 0px;
}

    .logstableview .subgrid .table > thead > tr > th:first-child,
    .logstableview .subgrid .table > tbody > tr > td:first-child {
        width: 30px !important;
        max-width: 30px !important;
        min-width: 30px !important;
    }

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox],
    input[type=radio] {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

        input[type=checkbox]:after,
        input[type=radio]:after {
            content: "";
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        input[type=checkbox]:checked,
        input[type=radio]:checked {
            --b: var(--active);
            --bc: var(--active);
            --d-o: .3s;
            --d-t: .6s;
            --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
        }

        input[type=checkbox]:disabled,
        input[type=radio]:disabled {
            --b: var(--disabled);
            cursor: not-allowed;
            opacity: 0.9;
        }

            input[type=checkbox]:disabled:checked,
            input[type=radio]:disabled:checked {
                --b: var(--disabled-inner);
                --bc: var(--border);
            }

            input[type=checkbox]:disabled + label,
            input[type=radio]:disabled + label {
                cursor: not-allowed;
            }

        input[type=checkbox]:hover:not(:checked):not(:disabled),
        input[type=radio]:hover:not(:checked):not(:disabled) {
            --bc: var(--border-hover);
        }

        input[type=checkbox]:focus,
        input[type=radio]:focus {
            box-shadow: 0 0 0 var(--focus);
        }

        input[type=checkbox]:not(.switch),
        input[type=radio]:not(.switch) {
            width: 21px;
        }

            input[type=checkbox]:not(.switch):after,
            input[type=radio]:not(.switch):after {
                opacity: var(--o, 0);
            }

            input[type=checkbox]:not(.switch):checked,
            input[type=radio]:not(.switch):checked {
                --o: 1;
            }

        input[type=checkbox] + label,
        input[type=radio] + label {
            font-size: 14px;
            line-height: 21px;
            display: inline-block;
            vertical-align: top;
            cursor: pointer;
            margin-left: 4px;
        }

        input[type=checkbox]:not(.switch) {
            border-radius: 7px;
        }

            input[type=checkbox]:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 7px;
                top: 4px;
                transform: rotate(var(--r, 20deg));
            }

            input[type=checkbox]:not(.switch):checked {
                --r: 43deg;
            }

        input[type=checkbox].switch {
            width: 38px;
            border-radius: 11px;
        }

            input[type=checkbox].switch:after {
                left: 2px;
                top: 2px;
                border-radius: 50%;
                width: 15px;
                height: 15px;
                background: var(--ab, var(--border));
                transform: translateX(var(--x, 0));
            }

            input[type=checkbox].switch:checked {
                --ab: var(--active-inner);
                --x: 17px;
            }

            input[type=checkbox].switch:disabled:not(:checked):after {
                opacity: 0.6;
            }

    input[type=radio] {
        border-radius: 50%;
    }

        input[type=radio]:after {
            width: 19px;
            height: 19px;
            border-radius: 50%;
            background: var(--active-inner);
            opacity: 0;
            transform: scale(var(--s, 0.7));
        }

        input[type=radio]:checked {
            --s: .5;
        }
}

.logstableview .subgrid .table > thead > tr > th:last-child,
.logstableview .subgrid .table > tbody > tr > td:last-child {
    width: 130px !important;
    max-width: 130px !important;
    min-width: 130px !important;
}

.labelupload {
    position: absolute;
    top: -50px;
}

.submacrolink svg {
    width: 30px !important;
    height: 30px !important;
}

.macrolink svg {
    margin-right: 5px;
}

.submacrolink svg path {
    fill: #FFF;
}

.macrolink svg path {
    fill: #949494;
}

.user_icon .dropdown-item:hover svg path, .user_icon .dropdown-item:active svg path {
    fill: #FFF;
}

.user-arrow-down {
    font-size: 24px !important;
    margin-top: 0px !important;
    margin-left: 8px;
    color: #6d6d6d;
    margin-bottom: 0px !important;
    vertical-align: sub;
}

.menu-collapsed svg {
    width: 20px !important;
    margin-left: -9px;
}

.sidemenu {
    position: relative;
}

.sidebar li.nav-item:hover {
    background-color: #0d4e82;
}

.sidemenu ul.submenu.dropdown-menu {
    margin-left: 7.5rem !important;
    position: absolute;
    padding: 0px;
    top: -3px;
    left: -1px;
    border-radius: 0px;
    min-width: 12rem;
}

.menu-collapsed .sidemenu ul.submenu.dropdown-menu {
    margin-left: 2rem !important;
}

.sidebar .nav-item .submenu .nav-link {
    width: 100% !important;
    font-size: 14px;
    text-align: left;
    background-color: #0062b0;
    border-bottom: 1px solid #0d4e82;
    padding: 10px 1rem;
    padding-left: 35px;
}

    .sidebar .nav-item .submenu .nav-link:hover, .sidebar .nav-item .submenu .nav-link.active {
        background-color: #0d4e82;
    }

.sidebar .nav-item .submenu li {
    position: relative;
}

.sidebar .nav-item .submenu em {
    position: absolute;
    color: #FFF;
    left: 8px;
    top: 13px;
}
.sidebar .nav-item .submenu li:last-child .nav-link {
    border-bottom: none;
}

.logstableview #universalExtractorfieldstable > thead > tr > th:nth-child(7),
.logstableview #universalExtractorfieldstable > tbody > tr > td:nth-child(7),
.logstableview #universalExtractorfieldstable > thead > tr > th:nth-child(8),
.logstableview #universalExtractorfieldstable > tbody > tr > td:nth-child(8) {
    width: 75px !important;
    max-width: 75px !important;
    min-width: 75px !important;
}

.logstableview #universalExtractorfieldstable > thead > tr > th:nth-child(4),
.logstableview #universalExtractorfieldstable > tbody > tr > td:nth-child(4) {
    width: 110px !important;
    max-width: 110px !important;
    min-width: 110px !important;
}

.logstableview #universalExtractorfieldstable > thead > tr > th {
    line-height: 15px;
    vertical-align: middle;
    padding: 8px 10px 8px !important;
}

.download-note {
    font-size: 14px;
    margin-top: -30px;
    margin-bottom: 20px;
}

.download-note a{
    text-decoration: underline;
}

.extraction_tab {
    padding: 6px 0px;
    border: none;
    border-radius: 5px;
    margin-bottom: -10px;
    margin-left: -6px;
}
.extraction_tab li .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
    margin: 0px 5px;
    padding: 5px 18px;
    background-color: #0062b0;
}

.extraction_tab li .nav-link.active, .extraction_tab li .nav-link:hover {
    background-color: #0d4e82;
    border-color: transparent;
    color: #FFF;
}

.logstableview #universalExtractortable.table > thead > tr > th:first-child, .logstableview #universalExtractortable.table > tbody > tr > td:first-child {
    width: 30px !important;
    max-width: 30px !important;
    min-width: 30px !important;
}

.logstableview #universalExtractortable .subgrid .table > thead > tr > th:first-child,
.logstableview #universalExtractortable .subgrid .table > tbody > tr > td:first-child {
    position: sticky;
    left: 0px;
    box-shadow: 3px 0px 3px -1px #00000033;
    pointer-events: none;
}


.logstableview #universalExtractortable .subgrid .table > thead > tr > th,
.logstableview #universalExtractortable .subgrid .table > tbody > tr > td {
    width: 160px !important;
    max-width: 160px !important;
    min-width: 160px !important;
    height: 40px;
    position: relative;
}

.extractedDataInput {
    height: 34px;
    font-size: 12px;
    border: none;
    cursor: default;
}
.isedit {
    border: 1px solid #ced4da;
    cursor: text;
    box-shadow: none !important;
}

.processave {
    background-color: #ffffff;
    margin: auto;
    border-radius: 5px;
    position: absolute;
    width: 94%;
    top: 0px;
    height: 100%;
    text-align: center;
    color: #28a745;
    line-height: 32px;
    padding: 6px 6px !important;
}

.processave i {
    line-height: 32px;
    font-size: 18px;
    vertical-align: sub;
}

.processave span {
    padding-left: 6px;
    font-size: 13px;
    font-weight: 600;
}

.extractedDataLabel {
    margin-bottom: 0px !important;
    vertical-align: middle;
    min-height: 34px;
    padding: 8px 0px;
    line-height: 1.5;
    display: block;
}

.logstableview #ChangeManagementDatatable.table > thead > tr > th,
.logstableview #ChangeManagementDatatable.table > tbody > tr > td,
.logstableview .dataTables_scrollHeadInner .table > thead > tr > th {
    width: 170px !important;
    max-width: 170px !important;
    min-width: 170px !important;
}

.logstableview #ChangeManagementDatatable_wrapper table {
    margin: 0px;
}

.logstableview .dataTables_scrollBody .table > thead > tr > th {
    padding: 0px 10px 0px !important;
}

.card_scroll {
    width: 100%;
    position: fixed;
    overflow-x: auto;
    bottom: 0px;
    z-index: 9999;
    left: 2px
}

.dataTables_scrollBody::-webkit-scrollbar {
    display: none;
}

.hiddendivparent {
    scrollbar-color: #666 transparent !important;
    scrollbar-width: auto;
}
.hiddendivparent:hover {
    scrollbar-color: #545454 transparent !important;
}
@-moz-document url-prefix() {
    .card_scroll {
        bottom: -7px !important;
    }
}
#ChangeManagementDatatable_wrapper .dataTables_scrollBody, #ChangeManagementDatatable_wrapper .dataTables_scrollBody {
    scrollbar-width: none;
}
.hiddendivparent::-webkit-scrollbar {
    height: 10px;
}

.hiddendivparent::-webkit-scrollbar-track {
    border-radius: 10px;
}

.hiddendivparent::-webkit-scrollbar-thumb {
    background: #666666;
    border-radius: 10px;
}

.hiddendivparent::-webkit-scrollbar-thumb:hover {
    background: #545454;
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #efefef;
    border-radius: 5px;
    min-height: 40px;
    padding: 5px;
    font-size: 13px;
    padding-right: 30px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #efefef;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 3px;
}

.multiselecticon .fa-caret-down {
    position: absolute;
    right: 27px;
    top: 43px;
    color: #bbbbbb;
    font-size: 18px;
}

.cls-1 {
    fill-rule: evenodd;
    fill: #FFF;
}
.multiselect-native-select {
    display: block;
}

    .multiselect-native-select .btn-group {
        width: 100%;
    }

        .multiselect-native-select .btn-group button {
            text-align: left;
        }

    .multiselect-native-select .multiselect {
        background-color: #fff;
        border: 1px solid #efefef;
        border-radius: 5px;
        min-height: 40px;
        padding: 5px;
        font-size: 13px;
        color: #495057;
    }

.multiselect-container {
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    padding: 6px 3px !important;
}

    .multiselect-container > li > a > label {
        padding-left: 8px !important;
    }

.multiselect-native-select .dropdown-toggle::after {
    border-top: 0.5em solid;
    border-right: 0.5em solid transparent;
    border-bottom: 0;
    border-left: 0.5em solid transparent;
    position: absolute;
    right: 8px;
    color: #bbbbbb;
    top: 16px;
}
.text-splinfo {
    color: #ff021a !important;
    font-size: 13px;
    font-weight: 400;
    float:right;
}
.uploaded-jsonfile {
    /*cursor: pointer;*/
    color: #28a745;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: -12px;
    margin-top: 5px;
}
.deleteicon, .deletemsgicon, .deletemsgbulkicon {
    font-size: 18px;
    color: red;
    cursor: pointer;
}
.addOpp {
    opacity: 10000 !important;
    display: none !important;
}
.alertcon {
    position: relative;
    /* padding: 0.75rem 1.25rem; */
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
#addKeyVal {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}
    #addKeyVal .rowuploaded {
        cursor: move;
    }
/* width */
    #addKeyVal::-webkit-scrollbar {
        width: 5px;
    }

/* Track */
    #addKeyVal::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

/* Handle */
    #addKeyVal::-webkit-scrollbar-thumb {
        background: #888;
    }

    /* Handle on hover */
    #addKeyVal::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
.dataiconsize {
    font-size: 16px;
}

.nav-bar-menu {
    list-style: none;
    padding-left: 0px;
    padding-bottom: 8px;
    margin-bottom: 0px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    margin-right: auto;
    border-bottom: 1px solid #dee2e6;
}
.nav-bar-menuheader {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    margin-right: auto;
}

    .nav-bar-menu li, .nav-bar-menuheader li {
        padding: 0px 5px;
        display: inline-block;
    }

.valstl, .txtstl, .txtstlheder{
    width: 49%;
}
.txtstl {
    border-left: 1px solid #dee2e6 !important;
}.dataTtable td {
    border-left: 1px solid #dee2e6 !important;
    border-top: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
}
.logstableviewdata .table > tbody > tr > td:last-child,
.logstableviewdata .table > thead > tr > th:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-right: 1px solid #dee2e6 !important;
}
#columnFieldsRequested {
    width: 65px !important;
    max-width: 65px !important;
    min-width: 65px !important;
}
.logstableview .table > tbody > tr > td .badge-primary {
    color: #212529 !important;
    background-color: #ffcc80 !important;
    border: 1px solid #ff9900;
}

#btnSearch
{
    float:right !important;
}
.fetchbtnSearch {
    position: absolute;
    top: 40px;
    right: 8px;
}
.ui-autocomplete {
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
}
.replacePercentage, .reviewcompleted, .includePlanid {
    font-size: 15px;
    font-weight: bold;
    margin-left: -12px;
}


.datatableExcel {
    overflow-x: scroll;
    max-width: 100%;
    display: block;
    text-overflow: ellipsis;
}
/*#TblExcelData.datatableExcel{
    display: table;
}*/
a.actionModelClient {
    text-decoration: underline;
}
span.select-icon.fieldmanagement-select-icon {
    top: 37px !important;
    font-size: 18px !important;
}

#emptyTblExcelData thead .sorting_asc {
    background-image: none !important;
}

.single-select-style {
    font-size: 13px;
}
.anchor-style {
    color: #007bff !important;
}
.paddingleft {
    padding-left: 10px !important;
}
.form-control-style {
    color: #7b7373 !important;
}
#overlaycustom #text {
    top: 45% !important;
}


.clslock
{
    margin-top:3px;
}
p.lockalertmessage {
    padding: 0px 15px;
    color: #e32222;
    margin-bottom: 12px;
    margin-top: -20px;
    font-size: 13px;
}

p.lockalertmessage i{
    margin-right : 5px;
    font-size:15px;
}

.disable-click {
    pointer-events: none !important;
    cursor: default !important;
}

input#IsRemovePercentage, input#IncludePlanid {
    border-radius: 10px;
}
#jsonpath {
    width: 80%;
}
.field-mgmt-model {
    width: 850px;
}
#jsoncontent {
    overflow-x: hidden;
}
#ChangeManagementDatatable_wrapper .dt-scroll-head{
    display:none;
}
/* body.bg-light {
    background-image: url('../images/banner.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
} */
.logo-middle {
    width: 100%;
    text-align: center;
}
.newlogin-ses {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.bg-light {
    background-color: #f3f3f3 !important;
}

.btn-block {
    display: block;
    width: 100%;
}

.select-icon-login {
    position: absolute;
    right: 10px;
    font-size: 18px;
    top: 9px;
    color: #5f5f5f;
    pointer-events: none;
    z-index: 1;
}