body {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    color: #535353;
    background-color: #f8fafb;
}


header {
    height: 60px;
    background-color: #FFF;
    box-shadow: 0px 0.91581px 3.66322px 0px rgba(0, 0, 0, 0.10);
}

.brandlogo img {
    width: 70px;
}

ul.headermenu {
    list-style: none;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
}

.headermenu li {
    display: inline-block;
    margin: 0px 5px;
    padding: 18px 8px;
}

    .headermenu li.active {
        background-color: #F1F4F7;
        color: #005B94;
    }

        .headermenu li.active a {
            color: #005B94;
        }

    .headermenu li a {
        color: #232323;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
    }

        .headermenu li a img {
            width: 15px;
            height: 15px;
            margin-right: 7px;
            margin-top: -3px;
        }

/* ************************** */

.page-wrapper {
    padding: 20px 25px;
    margin: 25px;
    background-color: #FFF;
}

.pagetitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #232323;
}

    .pagetitle.secd {
        color: #005B94;
        font-size: 24px;
        font-weight: 600;
    }

.customtab .nav-tabs {
    border-bottom: none !important;
    margin-bottom: 20px;
}

.customtab .nav-item {
    border: 1px solid #F8F8F8;
    background: #FFF;
    box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    margin-right: 30px;
}

.customtab .nav-link {
    padding: 20px;
    color: #535353 !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0px;
    border: none !important;
}

    .customtab .nav-link.active {
        color: #005B94 !important;
    }

    .customtab .nav-link .stepnumber {
        width: 40px;
        height: 40px;
        display: inline-block;
        background-color: #FFF;
        border-radius: 50px;
        border: 1px solid #535353;
        vertical-align: middle;
        margin-right: 10px;
        text-align: center;
        font-size: 14px;
        line-height: 40px;
    }

    .customtab .nav-link.active .stepnumber {
        color: #FFF !important;
        background-color: #005B94;
        border-color: #005B94;
    }

/* ******************* */

.customcards {
    border-radius: 3px;
    background: #FFF;
    box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.customcardsheader {
    border-radius: 5px 5px 0px 0px;
    border-bottom: 1.5px solid #E7E7E7;
    background: #ECF8FD;
    padding: 14px 25px;
}

    .customcardsheader h4 {
        font-size: 21px;
        color: #535353;
        margin-bottom: 0;
        font-weight: 600;
    }

.innercustomtab .nav-tabs {
    margin-bottom: 20px;
    border-bottom: 1px solid #E7E7E7 !important;
    background: #FFF;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
}

.innercustomtab .nav-item {
    background: #FFF;
    border-radius: 0px;
    margin-right: 10px;
    box-shadow: none;
    border: none;
}

.innercustomtab .nav-link {
    padding: 15px 25px;
    color: #535353 !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0px;
    border: none !important;
    border-bottom: 1px solid transparent;
}

    .innercustomtab .nav-link.active {
        color: #535353 !important;
        border-bottom: 1px solid #005B94 !important;
    }

.feildcontent {
    padding: 10px 25px;
}

    .feildcontent h6 {
        font-size: 18px;
        color: #535353;
        font-weight: 600;
    }

.feildcontenttable {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

    .feildcontenttable.table-bordered > :not(caption) > * {
        border-top: none !important;
        border-bottom: none;
    }

    .feildcontenttable thead td {
        font-size: 15px;
        color: #535353;
        background: #ECF8FD;
        font-weight: 600;
        padding: 10px 15px 8px;
        border-bottom: 1px solid #dee2e6;
    }

    .feildcontenttable tbody td {
        font-size: 15px;
        color: #535353;
        font-weight: 600;
        padding: 10px 15px 8px;
        vertical-align: baseline;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFF;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid #e3e3e3;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 19px;
        left: 2px;
        bottom: 2px;
        background-color: #a2aaad;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #FFF;
}

    input:checked + .slider:before {
        -webkit-transform: translateX(25px);
        -ms-transform: translateX(25px);
        transform: translateX(25px);
        background-color: #00AA51;
    }

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.feildcontenttable .form-control {
    border-radius: 5px;
    border: 1px solid #A2AAAD;
    background: #FFF;
    height: 30px;
    font-size: 14px;
}

.btn-addfeild {
    border-radius: 3px;
    border: 1px solid #535353 !important;
    font-size: 13px;
    padding: 5px 12px;
    background-color: #FFF !important;
    color: #535353 !important;
}

    .btn-addfeild img {
        margin-right: 10px;
    }

.addNewFieldarea .modal-header {
    border-radius: 5px 5px 0px 0px;
    background: #ECF8FD;
    padding: 12px;
}

    .addNewFieldarea .modal-header h4 {
        font-size: 16px;
        color: #535353;
        font-weight: 600;
    }

.modal-sm {
    --bs-modal-width: 400px;
}

.customFieldProperties .form-group {
    margin-bottom: 8px;
    margin-top: 8px;
}

.customFieldProperties label {
    color: #535353;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.customFieldProperties .form-select, .customFieldProperties .form-control {
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    height: 40px;
    font-size: 14px;
    color: #232323;
}

    .customFieldProperties .form-select:focus, .customFieldProperties .form-control:focus {
        box-shadow: 0 0 0 1px rgb(13 110 253 / 40%);
    }

.mr-3 {
    margin-right: 15px;
}

.mr-2 {
    margin-right: 10px;
}

.addNewFieldarea .modal-footer {
    border-top: none;
}

.btn-modalcancel, .btn-modaladd {
    color: #535353 !important;
    background-color: #FFF !important;
    padding: 8px 30px 6px;
    font-size: 13px;
    border-radius: 5px;
    border: 1px solid #999999 !important;
}

.btn-modaladd {
    color: #FFF !important;
    background-color: #00AEEF !important;
    border: 1px solid #00AEEF !important;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-sec-custom {
    color: #535353;
    font-size: 14px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #535353;
    font-weight: 500;
    background-color: #FFF;
}

.btn-pri-custom {
    color: #FFF;
    font-size: 14px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #00AEEF;
    font-weight: 500;
    background-color: #00AEEF;
}

.btn-spri-custom {
    color: #00AEEF;
    font-size: 13px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #00AEEF;
    font-weight: 500;
    background-color: #FFF;
}

.optionlist {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    position: relative;
}

.selectoption {
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #d9d9d9;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    margin-top: 11px;
    margin-left: 12px;
}

    .selectoption:before {
        content: '';
        position: absolute;
        background-color: #9b9b9b;
    }

    .selectoption:checked:before {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50px;
        background-color: #9b9b9b;
        margin: 3px;
    }

.error {
    border: 1px solid #fd2b2b !important;
}

label.required:after {
    content: '*';
    position: absolute;
    color: red;
    margin-top: -1px;
    margin-left: 2px;
}

.customdatatable table {
    width: 100% !important;
    border-bottom: none !important;
    margin-bottom: 20px;
}

.customdatatable {
    padding: 25px;
}

    .customdatatable table.dataTable > thead > tr > th, .customdatatable table.dataTable > thead > tr > td {
        padding: 14px 10px;
        border-bottom: 1px solid #E7E7E7;
        background-color: #ECF8FD;
        color: #535353;
        font-size: 14px;
        font-weight: 600;
    }

        .customdatatable table.dataTable > thead > tr > th:first-child,
        .customdatatable table.dataTable > thead > tr > td:first-child {
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
        }

        .customdatatable table.dataTable > thead > tr > th:last-child,
        .customdatatable table.dataTable > thead > tr > td:last-child {
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }

    .customdatatable table.dataTable > tbody > tr > td {
        padding: 18px 10px;
        color: #535353;
        font-size: 14px;
        font-weight: 400;
        min-height: 50px;
        vertical-align: middle;
        border-color: #e8e8e8;
    }

    .customdatatable .dataTables_wrapper .dataTables_filter {
        float: left;
        text-align: right;
        margin-bottom: 20px;
        display: none;
    }

.searcharea .form-control {
    border-color: #e5e9ec;
    font-size: 13px;
    box-shadow: none;
    padding-left: 35px;
    height: 38px;
}

.searcharea img {
    position: absolute;
    top: 9px;
    left: 10px;
    width: 21px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0px 7px;
    border-radius: 4px !important;
    padding: 5px 8px !important;
    font-size: 12px !important;
    vertical-align: middle;
    line-height: 14px;
    background: #FFF !important;
    color: #535353 !important;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid #F1F1F1 !important;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current,
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        background: #00AEEF !important;
        border-color: #00AEEF !important;
        color: #fff !important;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        color: #FFF !important;
        border: 1px solid #F1F1F1;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background: #00AEEF !important;
        border-color: #00AEEF !important;
        color: #fff !important;
    }

.dataTables_wrapper .dataTables_info {
    font-weight: 600;
    color: #535353;
    font-size: 13px;
}

.customcheckboxoption {
    width: 18px;
    height: 18px;
    background-color: white;
    vertical-align: middle;
    border: 2px solid #535353;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 2px;
}

    .customcheckboxoption:checked {
        border: none;
    }

        .customcheckboxoption:checked:before {
            content: "";
            background-image: url(../images/checkedbox.svg);
            width: 18px;
            height: 18px;
            position: absolute;
            z-index: 1;
            background-repeat: no-repeat;
        }

/* .customcheckboxoption:checked:before {
    content: "\f00c";
    position: absolute;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 2px;
    font-size: 14px;
    color: #FFF;
    background-color: #00AEEF;
    width: 20px;
    height: 20px;
    padding: 2px;
    border: 1px solid #00AEEF;
    top: -1px;
    position: absolute;
    left: -1px;
} */

.customradioboxoption {
    width: 18px;
    height: 18px;
    background-color: white;
    vertical-align: middle;
    border: 2px solid #535353;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 50px;
}

    .customradioboxoption:checked:before {
        content: "";
        width: 6px;
        height: 6px;
        position: absolute;
        z-index: 1;
        border-radius: 50px;
        background: #535353;
        left: 0;
        right: 0;
        margin: auto;
        top: 4px;
    }

/* Input file */

.inlinelist {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 20px;
}

    .inlinelist li {
        display: inline-block;
        width: 25%;
        margin-bottom: 10px;
        margin-top: 10px;
    }

        .inlinelist li label {
            font-weight: 600;
            cursor: pointer;
        }

            .inlinelist li label input {
                margin-right: 5px;
                vertical-align: sub;
            }

.customaccordion .accordion-button {
    background-color: #ecf8fd;
    font-size: 18px;
    color: #535353;
    font-weight: 600;
    box-shadow: none;
}

.customaccordion .accordion-item {
    margin-bottom: 20px;
}

    .customaccordion .accordion-item:not(:first-of-type) {
        border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    }

.custominnerform {
    position: relative;
}

    .custominnerform label {
        font-size: 16px;
        color: #535353;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .custominnerform .form-control, .custominnerform .form-select {
        height: 50px;
        border-radius: 5px;
        border: 1px solid #D9D9D9;
        font-size: 15px;
    }

        .custominnerform .form-select:focus, .custominnerform .form-control:focus {
            box-shadow: 0 0 0 1px rgb(13 110 253 / 40%);
        }

.foldericon {
    position: absolute;
    right: 23px;
    top: 53px;
    pointer-events: none;
}

.formsection {
    padding: 20px 25px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    margin: 10px 10px 20px;
}

    /* .formsection h4{
    font-size: 18px;
    width: fit-content;
    margin-top: -30px;
    background-color: #FFF;
    padding: 0px 10px;
    font-weight: 600;
} */

    .formsection h4 {
        font-size: 18px;
        background-color: #ecf8fd;
        padding: 12px 20px 10px;
        font-weight: 600;
        border-radius: 3px;
        margin-top: -20px;
        margin-left: -25px;
        margin-right: -25px;
    }

.nodeoptions .inlineelements {
    display: inline-block;
    margin-right: 10px;
    vertical-align: sub;
}

    .nodeoptions .inlineelements label {
        margin-bottom: 0px;
        vertical-align: bottom;
        margin-left: 2px;
    }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 20px;
    background: #F0F0F0;
    border: none;
    font-size: 13px;
    color: #232323;
    font-weight: 500;
    padding-right: 30px;
    padding-top: 5px;
    padding-left: 10px;
    padding-bottom: 1px;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #d9d9d9;
    height: 40px;
    padding-top: 1px;
    padding-right: 26px;
}

    .select2-container--default .select2-selection--multiple:before {
        content: "";
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        position: absolute;
        width: 12px;
        height: 12px;
        z-index: 1;
        right: 10px;
        top: 14px;
        background-repeat: no-repeat;
        pointer-events: none;
    }

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #d9d9d9 1px;
    outline: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 19px;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    right: 4px;
    top: -1px;
    border: 0px;
    left: unset;
}

.select2-results__option {
    font-size: 14px;
    color: #232323;
    font-weight: 400;
    border-bottom: 1px solid #efefef;
}

.select2-container .select2-search--inline .select2-search__field {
    font-size: 14px;
    margin-top: 8px;
    height: 21px;
}

.pickericon {
    position: absolute;
    right: 10px;
    top: 10px;
    pointer-events: none;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    display: block;
}

.collapse.in {
    display: block;
}

.bootstrap-datetimepicker-widget table th {
    height: 35px;
    line-height: 20px;
    width: 35px;
    font-size: 14px;
    color: #3F4254;
}

.bootstrap-datetimepicker-widget table td.day {
    height: 35px;
    line-height: 20px;
    width: 35px;
    font-size: 14px;
    color: #7E8299;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #e1f0ff;
}

.bootstrap-datetimepicker-widget table td span:hover {
    background: #e1f0ff;
}

.bootstrap-datetimepicker-widget table td {
    height: 35px !important;
    line-height: 20px !important;
    width: 35px !important;
    font-size: 14px !important;
    color: #3F4254 !important;
}

.btn-export {
    color: #535353;
    font-size: 14px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #F1F4F7;
    font-weight: 500;
    background-color: #F1F4F7;
}

    .btn-pri-custom img, .btn-export img {
        width: 18px;
        vertical-align: sub;
        margin-right: 2px;
    }

.br-t-1 {
    border-top: 1px solid #dee2e6;
}

.countnotes {
    color: #686868;
    font-size: 13px;
    margin-top: -20px;
    margin-bottom: 30px;
}

.select2-container {
    display: block;
}


/* Pgroup  */

.pGroupCardTitle, .pGroupFieldLabel {
    font-weight: 600 !important;
}


.pGroupFamilyCol {
    margin: 0.5rem 2rem 0rem 2rem;
}









































































































































































































































































































































































































































































































































































































































































































































































































































































































body {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    color: #535353;
    background-color: #f8fafb;
}








.loginbg {
    background-image: url(../images/loginbg.png);
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
}

.login-wrapper {
    width: 33%;
    height: 90vh;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 5px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 0px 2px 15px 4px rgba(0, 0, 0, 0.10);
    padding: 20px;
}

.rrdlogoimg {
    width: 45px;
    margin-top: -10px;
}

.login-content .logoimg {
    margin: auto;
    display: block;
}

.login-content h5 {
    font-size: 21px;
    color: #005B94;
    font-weight: 600;
    margin: 10px 0px;
}

.loginform .form-group {
    margin-bottom: 10px;
}

.loginform label {
    font-size: 14px;
    color: #535353;
    margin-bottom: 5px;
}

.loginform .form-control {
    border-radius: 4px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    font-size: 14px;
    color: #535353;
    height: 40px;
}

.forgottext {
    color: #00AEEF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.admin-login .btn-pri-custom {
    border-radius: 5px;
    background: #00AEEF !important;
    height: 44px;
    display: block;
    width: 100%;
    border-color: #00AEEF !important;
    font-size: 14px;
    font-weight: 600;
}

.admin-login .btn-sec-custom {
    border-radius: 5px;
    background: #FFF !important;
    height: 44px;
    display: inline-block;
    width: 49%;
    border-color: #00AEEF !important;
    font-size: 13px;
    color: #00AEEF !important;
    font-weight: 600;
}

    .admin-login .btn-sec-custom:hover {
        background: #00AEEF !important;
        border-color: #00AEEF !important;
        color: #FFF !important;
    }

.textdivider p{
    font-size: 14px;
    color: #535353;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

.loginform label.required:after {
    content: "*";
    position: absolute;
    color: red;
    margin-left: 3px;
    margin-top: -2px;
}

header {
    height: 60px;
    background-color: #FFF;
    box-shadow: 0px 0.91581px 3.66322px 0px rgba(0, 0, 0, 0.10);
}

.brandlogo img {
    margin-top: 10px;
}

ul.headermenu {
    list-style: none;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
}

.headermenu li {
    display: inline-block;
    margin: 0px 5px;
    padding: 18px 20px;
}

    .headermenu li.active {
        background-color: #F1F4F7;
        color: #005B94;
    }

        .headermenu li.active a {
            color: #005B94;
        }

.headermenu li a{
    color: #232323;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.headermenu li a img{
    width: 15px;
            height: 15px;
    margin-right: 7px;
            margin-top: -3px;
}

ul.notification-menu {
    list-style: none;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 10px;
}

    ul.notification-menu li {
        display: inline-block;
    }

span.usericon {
    width: 40px;
    display: block;
    height: 40px;
    background-color: #005B94;
    border-radius: 50px;
}

    span.usericon a {
        font-size: 14px;
        color: #FFF;
        line-height: 40px;
        text-decoration: none;
    }
/* ************************** */

.page-wrapper {
    padding: 20px 25px;
    margin: 25px;
    background-color: #FFF;
}

.pagetitle{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #232323;
}

    .pagetitle.secd {
        color: #005B94;
        font-size: 24px;
        font-weight: 600;
    }

.customtab .nav-tabs{
    border-bottom: none !important;
    margin-bottom: 20px;
}

.customtab .nav-item {
    border: 1px solid #F8F8F8;
    background: #FFF;
    box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    margin-right: 30px;
}

.customtab .nav-link {
    padding: 20px;
    color: #535353 !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0px;
    border: none !important;
}

.customtab .nav-link.active {
    color: #005B94 !important;
}

.customtab .nav-link .stepnumber {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: #FFF;
    border-radius: 50px;
    border: 1px solid #535353;
    vertical-align: middle;
    margin-right: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}

    .customtab .nav-link.active .stepnumber {
    color: #FFF !important;
    background-color: #005B94;
    border-color: #005B94;
}

/* ******************* */

.customcards {
    border-radius: 3px;
    background: #FFF;
    box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.customcardsheader {
    border-radius: 5px 5px 0px 0px;
    border-bottom: 1.5px solid #E7E7E7;
    background: #ECF8FD;
    padding: 14px 25px;
}

    .customcardsheader h4 {
    font-size: 21px;
    color: #535353;
    margin-bottom: 0;
    font-weight: 600;
}

.innercustomtab .nav-tabs {
    margin-bottom: 20px;
    border-bottom: 1px solid #E7E7E7 !important;
    background: #FFF;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
}

.innercustomtab .nav-item {
    background: #FFF;
    border-radius: 0px;
    margin-right: 10px;
    box-shadow: none;
    border: none;
}

.innercustomtab .nav-link {
    padding: 15px 25px;
    color: #535353 !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0px;
    border: none !important;
    border-bottom: 1px solid transparent;
}

.innercustomtab .nav-link.active {
    color: #535353 !important;
    border-bottom: 1px solid #005B94 !important;
}

.feildcontent {
    padding: 10px 25px;
}

.feildcontent h6 {
    font-size: 18px;
    color: #535353;
    font-weight: 600;
}

.feildcontenttable {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

    .feildcontenttable.table-bordered > :not(caption) > * {
        border-top: none !important;
        border-bottom: none;
    }

.feildcontenttable thead td {
    font-size: 15px;
    color: #535353;
    background: #ECF8FD;
    font-weight: 600;
    padding: 10px 15px 8px;
        border-bottom: 1px solid #dee2e6;
}

.feildcontenttable tbody tr {
    
}

.feildcontenttable tbody td {
    font-size: 15px;
    color: #535353;
    font-weight: 600;
    padding: 10px 15px 8px;
    vertical-align: baseline;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFF;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid #e3e3e3;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 2px;
    bottom: 2px;
    background-color: #a2aaad;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #FFF;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
    background-color: #00AA51;
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .feildcontenttable .form-control {
    border-radius: 5px;
    border: 1px solid #A2AAAD;
    background: #FFF;
    height: 30px;
    font-size: 14px;
  }

  .btn-addfeild {
    border-radius: 3px;
    border: 1px solid #535353 !important;
    font-size: 13px;
    padding: 5px 12px;
    background-color: #FFF !important;
    color: #535353 !important;
  }

    .btn-addfeild img {
    margin-right: 10px;
  }

.addNewFieldarea .modal-header {
    border-radius: 5px 5px 0px 0px;
    background: #ECF8FD;
    padding: 12px;
  }

    .addNewFieldarea .modal-header h4 {
    font-size: 16px;
    color: #535353;
    font-weight: 600;
  }

  .modal-sm {
    --bs-modal-width: 400px;
  }

.customFieldProperties .form-group {
    margin-bottom: 8px;
    margin-top: 8px;
}

.customFieldProperties label {
    color: #535353;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.customFieldProperties .form-select, .customFieldProperties .form-control {
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    height: 40px;
    font-size: 14px;
    color: #232323;
}

.customFieldProperties .form-select:focus, .customFieldProperties .form-control:focus {
    box-shadow: 0 0 0 1px rgb(13 110 253 / 40%);
}

.mr-3 {
    margin-right: 15px;
}

.mr-2 {
    margin-right: 10px;
}

.addNewFieldarea .modal-footer {
    border-top: none;
}

.btn-modalcancel, .btn-modaladd {
    color: #535353 !important;
    background-color: #FFF !important;
    padding: 8px 30px 6px;
    font-size: 13px;
    border-radius: 5px;
    border: 1px solid #999999 !important;
}

.btn-modaladd {
    color: #FFF !important;
    background-color: #00AEEF !important;
    border: 1px solid #00AEEF !important;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-sec-custom {
    color: #535353;
    font-size: 14px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #535353;
    font-weight: 500;
    background-color: #FFF;
}

.btn-pri-custom {
    color: #FFF;
    font-size: 14px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #00AEEF;
    font-weight: 500;
    background-color: #00AEEF;
}

.btn-spri-custom {
    color: #00AEEF;
    font-size: 13px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #00AEEF;
    font-weight: 500;
    background-color: #FFF;
}

.optionlist {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    position: relative;
}

.selectoption {
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #d9d9d9;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    margin-top: 11px;
    margin-left: 12px;
}

.selectoption:before {
    content: '';
    position: absolute;
    background-color: #9b9b9b;
}

.selectoption:checked:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: #9b9b9b;
    margin: 3px;
}

.error {
    border: 1px solid #fd2b2b !important;
}

label.required:after {
    content: '*';
    position: absolute;
    color: red;
    margin-top: -1px;
    margin-left: 2px;
}

.customdatatable table {
    width: 100% !important;
    border-bottom: none !important;
    margin-bottom: 20px;
}

.customdatatable {
    padding: 25px;
    zoom: 0.9;
}

    .customdatatable table.dataTable > thead > tr > th, .customdatatable table.dataTable > thead > tr > td {
        padding: 14px 10px;
    border-bottom: 1px solid #E7E7E7;
    background-color: #ECF8FD;
    color: #535353;
    font-size: 14px;
    font-weight: 600;
}

        .customdatatable table.dataTable > thead > tr > th:first-child,
        .customdatatable table.dataTable > thead > tr > td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

        .customdatatable table.dataTable > thead > tr > th:last-child,
        .customdatatable table.dataTable > thead > tr > td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .customdatatable table.dataTable > tbody > tr > td {
        padding: 18px 10px;
        color: #535353;
    font-size: 14px;
        font-weight: 400;
    min-height: 50px;
    vertical-align: middle;
    border-color: #e8e8e8;
}

.customdatatable .dataTables_wrapper .dataTables_filter {
    float: left;
    text-align: right;
    margin-bottom: 20px;
    display: none;
}

.searcharea .form-control {
    border-color: #e5e9ec;
    font-size: 13px;
    box-shadow: none;
    padding-left: 35px;
    height: 38px;
}

.searcharea img {
    position: absolute;
    top: 9px;
    left: 10px;
    width: 21px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0px 7px;
    border-radius: 4px !important;
    padding: 5px 8px !important;
    font-size: 12px !important;
    vertical-align: middle;
    line-height: 14px;
    background: #FFF !important;
    color: #535353 !important;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid #F1F1F1 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        background: #00AEEF !important;
        border-color: #00AEEF !important;
    color: #fff !important;
}    

    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        color: #FFF !important;
        border: 1px solid #F1F1F1;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background: #00AEEF !important;
        border-color: #00AEEF !important;
    color: #fff !important;
} 

.dataTables_wrapper .dataTables_paginate {
    float: left;
}

.dataTables_wrapper .dataTables_info {
    float: right;
    font-weight: 600;
    color: #535353;
    font-size: 13px;
}

.customcheckboxoption {
    width: 18px;
    height: 18px;
    background-color: white;
    vertical-align: middle;
    border: 2px solid #535353;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 2px;
}

.inner-checkbox .customcheckboxoption {
    width: 15px;
    height: 15px;
    margin-right: 2px !important;
}

.customcheckboxoption:checked {
    border: none;
}

.customcheckboxoption:checked:before {
        content: "";
        background-image: url(../images/checkedbox.svg);
        width: 18px;
        height: 18px;
        position: absolute;
        z-index: 1;
        background-repeat: no-repeat;
    }

/* .customcheckboxoption:checked:before {
    content: "\f00c";
    position: absolute;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 2px;
    font-size: 14px;
    color: #FFF;
    background-color: #00AEEF;
    width: 20px;
    height: 20px;
    padding: 2px;
    border: 1px solid #00AEEF;
    top: -1px;
    position: absolute;
    left: -1px;
} */

.customradioboxoption {
    width: 18px;
    height: 18px;
    background-color: white;
    vertical-align: middle;
    border: 2px solid #535353;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 50px;
}

    .customradioboxoption:checked:before {
        content: "";
        width: 6px;
        height: 6px;
        position: absolute;
        z-index: 1;
        border-radius: 50px;
        background: #535353;
        left: 0;
        right: 0;
        margin: auto;
        top: 4px;
    }

/* Input file */

.inlinelist {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 20px;
}

    .inlinelist li {
        display: inline-block;
        width: 25%;
        margin-bottom: 10px;
        margin-top: 10px;
    }

        .inlinelist li label {
            font-weight: 600;
            cursor: pointer;
        }

            .inlinelist li label input {
                margin-right: 5px;
                vertical-align: sub;
            }

.customaccordion .accordion-button {
    background-color: #ecf8fd;
    font-size: 18px;
    color: #535353;
    font-weight: 600;
    box-shadow: none;
}

.customaccordion .accordion-item {
    margin-bottom: 20px;
}

    .customaccordion .accordion-item:not(:first-of-type) {
        border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    }

.custominnerform {
    position: relative;
}

    .custominnerform label {
        font-size: 16px;
        color: #535353;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .custominnerform .form-control, .custominnerform .form-select {
        height: 50px;
        border-radius: 5px;
        border: 1px solid #D9D9D9;
        font-size: 15px;
    }

        .custominnerform .form-select:focus, .custominnerform .form-control:focus {
            box-shadow: 0 0 0 1px rgb(13 110 253 / 40%);
        }

    .custominnerform .form-group {
        margin-bottom: 10px;
        position: relative;
    }

.foldericon {
    position: absolute;
    right: 20px;
    top: 45px;
    pointer-events: none;
}

.formsection {
    padding: 20px 25px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    margin: 10px 10px 20px;
}

    /* .formsection h4{
    font-size: 18px;
    width: fit-content;
    margin-top: -30px;
    background-color: #FFF;
    padding: 0px 10px;
    font-weight: 600;
} */

    .formsection h4 {
        font-size: 18px;
        background-color: #ecf8fd;
        padding: 12px 20px 10px;
        font-weight: 600;
        border-radius: 3px;
        margin-top: -20px;
        margin-left: -25px;
        margin-right: -25px;
    }

.nodeoptions .inlineelements {
    display: inline-block;
    margin-right: 10px;
    vertical-align: sub;
}

    .nodeoptions .inlineelements label {
        margin-bottom: 0px;
        vertical-align: bottom;
        margin-left: 2px;
    }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 20px;
    background: #F0F0F0;
    border: none;
    font-size: 13px;
    color: #232323;
    font-weight: 500;
    padding-right: 30px;
    padding-top: 5px;
    padding-left: 12px;
    padding-bottom: 1px;
    position: relative;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #d9d9d9;
    min-height: 40px;
    padding-top: 1px;
    padding-right: 26px;
}

    .select2-container--default .select2-selection--multiple:before {
        content: "";
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        position: absolute;
        width: 12px;
        height: 12px;
        z-index: 1;
        right: 10px;
        top: 14px;
        background-repeat: no-repeat;
        pointer-events: none;
    }

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #d9d9d9 1px;
    outline: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 19px;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    right: 4px;
    top: -1px;
    border: 0px;
    left: unset;
}

.select2-results__option {
    font-size: 14px;
    color: #535353;
    font-weight: 400;
    border-bottom: 1px solid #efefef;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #FFF;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #ddd;
    color: #535353;
}

.select2-container .select2-search--inline .select2-search__field {
    font-size: 14px;
    margin-top: 8px;
    height: 21px;
}

.pickericon {
    position: absolute;
    right: 10px;
    top: 10px;
    pointer-events: none;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    display: block;
}

.collapse.in {
    display: block;
}

.bootstrap-datetimepicker-widget table th {
    height: 35px;
    line-height: 20px;
    width: 35px;
    font-size: 14px;
    color: #3F4254;
}

.bootstrap-datetimepicker-widget table td.day {
    height: 35px;
    line-height: 20px;
    width: 35px;
    font-size: 14px;
    color: #7E8299;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #e1f0ff;
}

.bootstrap-datetimepicker-widget table td span:hover {
    background: #e1f0ff;
}

.bootstrap-datetimepicker-widget table td {
    height: 35px !important;
    line-height: 20px !important;
    width: 35px !important;
    font-size: 14px !important;
    color: #3F4254 !important;
}

.btn-export {
    color: #535353 !important;
    font-size: 14px;
    padding: 8px 30px;
    border-radius: 5px;
    border: 1px solid #F1F4F7 !important;
    font-weight: 500;
    background-color: #F1F4F7 !important;
}

    .btn-pri-custom img, .btn-export img {
        width: 18px;
        vertical-align: sub;
        margin-right: 2px;
    }

.br-t-1 {
    border-top: 1px solid #dee2e6;
}

.countnotes {
    color: #686868;
    font-size: 13px;
    margin-top: -20px;
    margin-bottom: 30px;
}

.select2-container {
    display: block;
    z-index: 1111;
}

.statusbadge {
    border-radius: 5px;
    padding: 4px 8px 4px 14px;
    font-size: 13px;
    position: relative;
}

    .statusbadge.active {
        background: #E4F8EB;
        color: #00AA51;
    }

    .statusbadge.inactive {
        background: #FAE3E6;
        color: #CC4D50;
    }

    .statusbadge:before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50px;
        top: 11px;
        left: 5px;
        z-index: 1;
    }

    .statusbadge.active:before {
        background: #00AA51;
    }

    .statusbadge.inactive:before {
        background: #CC4D50;
    }

#AddUpdateRoles .modal-xl {
    --bs-modal-width: 965px;
}


.permissionarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
}

    .permissionarea ul {
        list-style: none;
        padding-left: 0px;
        margin-bottom: 0px;
    }

        .permissionarea ul li {
            display: inline-block;
            width: 31%;
            margin-right: 1%;
        }

.customFieldProperties .permissionarea label {
    font-size: 13px;
}

.customFieldProperties .permissionarea .customcheckboxoption {
    vertical-align: sub;
    margin-right: 5px;
}

.showPermissionlable {
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
}

.showPermission {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-top: 4px;
}

    .showPermission li {
        display: inline-block;
        margin-right: 2%;
    }


.customdatatable table.dataTable > tbody > tr.childelement > td {
    background-color: #FAFAFA;
    color: #535353;
    padding: 5px 10px;
}

.btn-viewmappig {
    border-radius: 20px;
    border: 1px solid #12ADEF;
    background: #FFF;
    font-size: 13px;
    color: #12ADEF;
    padding: 6px 20px;
    line-height: 14px;
    text-decoration: underline;
    font-weight: 500;
}

    .btn-viewmappig:active, .btn-viewmappig:hover {
        background: #12ADEF;
        color: #FFF;
    }

.select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    background-color: #fff;
    margin-right: 10px;
    vertical-align: sub;
    width: 18px;
    height: 18px;
    border: 2px solid #535353;
    border-radius: 2px;
}

.select2-results__option[aria-selected=true]:before {
    content: "";
    background-image: url(../images/checkedbox.svg);
    width: 18px;
    height: 18px;
    z-index: 1;
    background-repeat: no-repeat;
    border: none;
}

.formdivider {
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid #A6A6A6;
    color: #535353;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.swal2-content {
    font-size: 18px !important;
    margin-bottom: 10px !important;
    color: #000 !important;
    font-weight: 600 !important;
}

.swal2-actions {
    margin-top: 0px !important;
}

.swal2-styled.swal2-confirm {
    border-radius: 5px !important;
    background: #00AEEF !important;
    border: 1px solid #00AEEF !important;
    font-size: 14px !important;
    padding: 7px 28px !important;
    font-weight: 600 !important;
}

.swal2-styled.swal2-cancel {
    border-radius: 5px !important;
    border: 1px solid #000 !important;
    font-size: 14px !important;
    padding: 7px 28px !important;
    background: #FFF !important;
    color: #000 !important;
    font-weight: 600 !important;
}

.customdatatable table#TblCategoryMaster.dataTable > tbody > tr > td:nth-child(1),
.customdatatable table#TblCategoryMaster.dataTable > thead > tr > th:nth-child(1) {
    width: 80px !important;
    max-width: 80px !important;
    word-break: break-all !important;
}

.customdatatable table#TblCategoryMaster.dataTable > tbody > tr > td:nth-child(2),
.customdatatable table#TblCategoryMaster.dataTable > thead > tr > th:nth-child(2) {
    width: 150px !important;
    max-width: 150px !important;
    word-break: break-all !important;
}

.badge-success {
    background: #78d885 !important;
}

.badge-danger {
    background: #f46e6e !important;
}

.feildcontenttable td.actioncheckbox {
    width: 65px;
    text-align: center;
}

#outputfieldconfig .tab-content {
    width: 65%;
}

.reportselect.form-select {
    border-radius: 5px;
    border: 1px solid #535353;
    height: 40px;
    font-size: 14px;
    color: #232323;
    display: inline-block;
    width: auto;
}

.fieldsselected h5 {
    font-size: 16px;
    font-weight: 600;
}

.fieldsselected ul {
    padding-left: 0px;
    list-style: none;
}

    .fieldsselected ul li {
        font-size: 14px;
        padding-bottom: 2px;
        color: #535353;
    }

#PreviewReportModal .form-control {
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    color: #535353;
    font-size: 14px;
}

#PreviewReportModal .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.showlength select {
    font-size: 13px;
    box-shadow: none;
    height: 38px;
    border-color: #dee2e6;
    border-radius: var(--bs-border-radius);
    padding: 0px 10px;
    width: 66px;
    display: inline-block;
    margin: 0px 5px;
}

.showlength label {
    font-size: 13px;
}

.showlength {
    display: inline-block;
    width: 35%;
}

.usersearch {
    display: inline-block;
    width: 63%;
}

.MultiSelect.error + .select2-container--default .select2-selection--multiple {
    border: 1px solid red;
}

.select2-container--default .select2-results__option[aria-disabled=true]:before {
    border-color: #d1d1d1;
}

.error-msg {
    color: red;
}

/**/

.widgetcards {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #CFE9FF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}

    .widgetcards h5 {
        color: #232323;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .widgetcards h5 {
        color: #232323;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .widgetcards h6 {
        color: #232323;
        font-size: 15px;
        margin-bottom: 10px;
    }

        .widgetcards h6 .widgetcount {
            color: #232323;
            font-size: 15px;
            margin-bottom: 10px;
        }

.role-title {
    color: cornflowerblue !important;
}