/* add user type new css */

.partner-add-wrapper .remove_field {
    display: table;
    margin-left: auto;
    background: #ffe5e5;
    font-size: 21px;
    line-height: 22px;
}

.partner-add-wrapper:nth-child(2) .remove_field {
    display: none;
}

.usertype-frm-wrpr {
    border: 1px solid var(--light-border);
    border-top: 0;
    padding: 20px 18px 1px;
}

.usertypetab-wrp {
    border-radius: 0.25rem;
    color: var(--th-color);
    border: 1px solid var(--bs-gray-300);
    padding: 15px;
}

.usertypecheck {
    padding: 5px 15px;
    border-bottom: 1px solid #e7e7e7;
}

.usertypecheck:last-child {
    border: none;
}

.usertypecheck .exampleInputUsername1.main-level02 {
    margin: 0 0 0px 0;
    font-weight: 500;
    color: #000;
    width: 100%;
    display: block;
    font-size: 14px;
}

.usertypecheck .form-check {
    display: inline-block;
    margin: 5px 5px 0 0;
    color: #424242;
}

.usertypelvl {
    width: 100%;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--td-color);
    margin: 0 0 10px;
    word-break: break-all;
}

.usertypetab-wrp ul li {
    padding: 2px 8px;
    background: linear-gradient(45deg, #efefef, transparent);
    margin: 0 0 20px 0;
    line-height: 22px;
    color: var(--dark-blue);
    font-weight: 600;
}

.form-checkall {
    margin-left: 12px;
    color: #424242;
}

.common-form .usertypebtn-hldr .col {
    justify-content: flex-end;
    padding-top: 15px;
}

.usertypebtn-hldr :is(button, a) {
    background: var(--theme-green);
    color: var(--whiteCommom);
    display: table;
    padding: 8px 15px;
    margin-left: auto;
    text-align: center;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    width: 100%;
    max-width: 150px;
    transition: 0.5s ease-in-out;
    margin-right: 15px;
    margin-left: inherit;
}

.usertypebtn-hldr :is(button, a):last-child {
    margin-right: 0;
}

.usertypebtn-hldr :is(button, a):hover {
    color: #fff;
}

.usertypebtn-hldr a {
    background: var(--danger);
}

.main-footer {
    background: #e7eefa;
    text-align: center;
    padding: 7px;
    border-top: 1px solid #c0cfff;
    position: fixed;
    width: calc(100% - 336px);
    bottom: 0;
    right: 0;
    z-index: 99;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.main-footer strong {
    font-weight: normal;
    font-size: 14px;
}

.admin-main-panel.expand .main-footer {
    width: calc(100% - 65px);
}
/* end */

/*APPLICATION STATUS*/
.application-status-modal .modal-header{
    background:#073c6d;
    position: relative;
}
.application-status-modal .modal-header .modal-title{
    color:#fff;
    padding-bottom:20px;
}
.application-status-modal .modal-header p{
    position: absolute;
    color:#fff;
    bottom:15px;
    margin:0;
    line-height: 20px;
}
.application-status-modal .modal-header p strong{
    font-weight: 600;
}
.application-status-modal .modal-header .btn-close{
    background:#fff;
    color:#f00;
    border-radius: 100%;
    border:none;
    outline: none;
    top:0;
    right:0;
    font-size:20px;
    opacity: 1;
    display:flex;
    align-items: center;
    box-shadow: none;
    justify-content: center;
}
.application-status-modal .status-list{
    position: relative;
}
.application-status-modal .status-list:after{
    content:'';
    position: absolute;
    top:2px;
    left:8px;
    width:4px;
    height:calc(100% - 4px);
    background: #fff;
    border:1px solid #e9ecef;
}
.application-status-modal .status-list>li{
    position: relative;
    padding-left:35px;
    font-size:16px;
    color:#000;
    font-weight: 500;
}
.application-status-modal .status-list>li:not(:last-child){
    margin-bottom:15px;
}
.application-status-modal .status-list>li:before{
    content:'';
    position: absolute;
    left:0;
    top:2px;
    width:20px;
    height:20px;
    border:1px solid #e9ecef;
    background: #f0f7fe;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    z-index:2;
}

.application-status-modal .status-list>li.stage-complete:before{
    background: #46a536;
}

.application-status-modal .status-list>li.stage-complete:after{
    content:'';
    position: absolute;
    top:3px;
    left:8px;
    width:4px;
    background: #46a536;
    z-index:3;
}
.application-status-modal .status-list.rejected>li.stage-complete:before,
.application-status-modal .status-list.rejected>li.stage-complete:after{
    background:#f00;
}
.application-status-modal .status-list>li.stage-complete.complete-100:after{
    height:calc(100% + 15px);
}
.application-status-modal .status-list>li.stage-complete.complete-75:after{
    height:calc(75% - 15px);
}
.application-status-modal .status-list>li.stage-complete.complete-50:after{
    height:calc(50% - 15px);
}
.application-status-modal .status-list>li.stage-complete.complete-25:after{
    height:calc(25% - 15px);
}
.application-status-modal .status-list>li .status-sub-list{
    padding-left:20px;
    font-size:14px;
}
.status-sub-list li{
    margin-top:10px;
}
.status-sub-list li strong{
    font-weight: 500;
    line-height: 20px;
    display:block;
}
.status-sub-list li p{
    color:#525f7f;
    font-weight: 400;
    margin:0;
    line-height: 20px;
}
.common-form .row>div input[type="reset"]{
    width: 100%;
    max-width: 150px;
    transition: all 0.5s ease-in-out;
}
.common-form .row>div input[type="reset"]:hover{
    color:#525f7f;
}
.common-form .row .submit-holder{
    justify-content: flex-end;
}
.common-form .row>div.submit-holder input[type=submit]{
    margin-left:15px !important;
}
.update-application-status-modal .modal-header .modal-title{
    padding-bottom:0;
}
.update-status-form label{
    width: 100%;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5;
    color: #525f7f;
    margin: 0 0 10px;
    word-break: break-all;
}
.update-status-form .form-group{
    margin-bottom:20px;
}
.update-status-form .form-group input,
.update-status-form .form-group select{
    display: block;
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 0.25rem;
    min-height: 45px;
    color:#8898aa;
    border:1px solid #dee2e6;
    outline: none;
    box-shadow: none;
}
.update-status-form .form-group textarea{
    display: block;
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 0.25rem;
    color:#8898aa;
    border:1px solid #dee2e6;
    outline: none;
    height:100px;
    resize: vertical;
}
.update-status-form .submit-holder{
    text-align: right;
}
.update-status-form .submit-holder .sbmt{
    text-align: center;
    border-radius: 3px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    width: 100%;
    max-width: 150px;
    transition: 0.5s ease-in-out;
    background: #629b58;
    color: #fff;
    padding: 8px 15px;
    border:none;
    outline: none;
}
.update-status-form .submit-holder .sbmt:hover{
    background: #46a536;
}
.db-target-hd-right .target-hd-btn{
    margin:0;
}
.display-none{
    display:none !important;
}
.firm-name-and-id h4{
    font-weight: 600;
    color:#073c6d;
    margin-bottom:5px;
}
.firm-name-and-id p{
    margin:0;
    color:#606060;
}
.dash-taks{
    width:calc(100% - 80px);
    padding-left:15px;
}
.hidden{
    display: none !important;
}
.update-application-status-modal .modal-header{
    padding-bottom:60px;
}
.update-application-status-modal .modal-header .firm-nm{
    bottom:15px;
}
.update-application-status-modal .modal-header .app-id{
    bottom:35px;
}
.common-table.app-list-table td:last-child{
    width:140px;
    min-width:150px;
}
/*APPLICATION STATUS*/
.manageusertable{
    background: var(--whiteCommom);
    box-shadow: var(--shadowCommon);
    overflow: hidden;
    border-radius: 0.375rem;
}
.manageusertable table{
    margin-top:0;

}
.manageusertable tr th{
    background: #72bae6;
}
.manageusertable table td{
    font-size: var(--font-size);
}
.manageusertable tr td, .manageusertable tr th{
    border:none;
    padding:6px 10px;
}
.manageusertable tr:nth-child(even) td{
    background: #f0f7fe;
}
.guideline-view .table td:last-child{
    min-width:145px;
}
.guideline-view .table td:nth-child(2){
    min-width:100px;
}
.common-table th{
    border-bottom-color: currentColor;
}
.entri-holdr p{
    width:100%;
    margin-top:-10px;
    padding-left:20px;
    color:#fff;
}

/* kanchan */
.reortpage.common-table{
    margin-top: 0px;
}

.common-table.app-list-table.reortpage td{
    width: 100% !important;
    max-width: 50% !important;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid rgba(0,0,0,0.2);
   
}

.common-table.app-list-table.reortpage th{
    border-bottom: 0;
    background: var(--trans-thmblue);
    width: 100% !important;
    max-width: 50% !important;
    word-break: break-all;
    white-space: inherit;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0.375rem;
}
.common-table.app-list-table.reortpage th, .common-table.app-list-table.reortpage td{border-bottom: 0px;}
.common-table.app-list-table.reortpage tr:nth-child(even) th {
    background: #fff;
    border-radius: 0.375rem;
}


.declaration_area {
    background: #fff;
    padding: 25px;
    text-align: left;
    margin-top: 33px;
}
.declaration_area h3{
    color: var(--td-color);
   margin-bottom: 20px;

}
.declaration_area p {
    background: var(--trans-thmblue);
    padding: 25px;
}
.reortpage .table{
    margin-top: 30px;
}
.declaration_area span.no {
    color: var(--theme-green);
    font-size: 25px;
}
.reortpage.common-table {
    margin-top: 33px;
}
.declaration_area .target-hd-btn{
    display: table;
    margin: 0 auto;
}
.common-table.app-list-table.reortpage td img{
    width:150px;
    height: auto;
    object-fit: cover !important;
}
.common-form .row>div a.btn.sbmt.clr{
    width: 100%;
    max-width: 150px;
    transition: all 0.5s ease-in-out;
    display: block;
    padding: 0.625rem 0.75rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 0.25rem;
    min-height: 45px;
    color: var(--th-color);
    border: 1px solid var(--bs-gray-300);
    background:#f0f0f0;
    outline: none;
    box-shadow: none;
}
.common-form .row>div a.btn.sbmt.clr:hover {
    color: #525f7f;
}
.login-page .left-panel .mp_pc{
    opacity: 0;
    pointer-events: none;
}
.login-page .left-panel .map_pic{
    left:45%;
    transform: translateX(-50%);
    max-width:100%;
    width:auto;
    right:auto;
}
.login-page .left-panel .map_pic img{
    opacity: 0.7;
    width:auto;
    height:500px !important;
    object-fit: contain !important;
}
.login_txt{
    position: relative;
    z-index:2;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    border-radius: 50%!important;
    width: 36px;
    height: 36px;
}
.pagination .page-link{
    border-radius: 50%!important;
width: 36px;
height: 36px;
text-align: center;
}
.pagination-holdr ul li{
    margin:0px 3px;
}
.pagination .page-item{
    margin: 0px 3px !important;
}
.partnership-frm label.error.fail-alert {
    position: absolute;
    bottom: -25px;
    font-size: 12px;
    width: auto;
    color: red;
    border: 0;
}
.common-form .row>div {
    margin: 0 0 28px;
}

.common-form .row>div label.lvl{
    font-size: .855rem;
}

/* 24.8.22 */
.dashboard-panels-holdr {
    margin: 27px 0 0;
}
.dashboard-main {
    padding: 65px 40px 82px;
}
.dashboard-main h5.appinfo span{
   color:#606060;
}
.dashboard-main h5.appinfo {
    line-height: 31px;
}
.common-form.partnership-frm label#age\[0\]-error {
    bottom: -26px;
}
.img_size {
    position: absolute;
    bottom: -45px;
    font-size: 11px;
    line-height: 13px;
}
.dashboard-main .tab-main-box #tab-6 .img_size {
    bottom: -36px;
}
/* 29.8.22 */
.partnership-frm .row .col .img_size {
    position: relative;
    bottom: -4px;
    font-size: 11px;
    line-height: 13px;
    
}
.partnership-frm .row .col label.lvl {
    font-size: 12px;
    display: flex;
    min-height: 40px;
    align-items: center;
}
.common-form .row .col{
    align-items: flex-start;
    align-content: baseline;
}
.back-login-hldr .Back-Login {
    width: 100%;
    height: 45px;
    background: #00B7C2;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border: none;
    outline: none;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    text-align: center;
    height: 45px;
    line-height: 45px;
}
.back-login-hldr .Back-Login:hover{
    background: #007075;
}
#sendForgotPassLink{
    display: block;
    height: 45px;
    background: #007075;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    line-height: 45px;
    transition: all 0.5s ease-in-out;
    width:100%;
    border-radius: 0px;
    border: none;
}
#sendForgotPassLink:hover{
    background: #00B7C2;

}

.partnership-frm .row .col label.lvl .lvl-txt {
    display: inline-block;
    word-wrap: normal !important;
    font-size: 14px;
    white-space: normal !important;
}

.text-includes-form-hldr .other_input {
    display: block;
    width: 100%;
    margin-left: 117px;
}
.text-includes-form-hldr .other_input #other{
    width: 294px;
    margin-top: 6px;
}
.ifAmmendmentCheckbox #ifAmmendmentDate{
    display: inline-block;
    vertical-align: middle;
    min-width: inherit;
    width: 16px;
    height: 16px;
    min-height: inherit;
    margin: 0 8px;
}

/***** Frontend Password Check **************/
.Short {  
    width: 100%;  
    background-color: #dc3545;  
    margin-top: 0px;  
    height: 3px;  
    color: #dc3545;  
    font-weight: 500;  
    font-size: 12px;  
    margin-bottom:10px;
}  
.Weak {  
    width: 100%;  
    background-color: #fd8700;  
    margin-top: 0px;  
    height: 3px;  
    color: #fd8700;  
    font-weight: 500;  
    font-size: 12px;  
    margin-bottom:10px;
}  
.Good {  
    width: 100%;  
    background-color: #d39e00;  
    margin-top: 0px;  
    height: 3px;  
    color: #d39e00;   
    font-weight: 500;  
    font-size: 12px;  
    margin-bottom:10px;
}  
.Strong {  
    width: 100%;  
    background-color: #28a745;   
    margin-top: 0px;  
    height: 3px;  
    color: #28a745;  
    font-weight: 500;  
    font-size: 12px;  
    margin-bottom:10px;
}  


/* 6.9.22 */
#updatePasswordBtn{
    display: block;
    height: 45px;
    background: #007075;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    line-height: 45px;
    transition: all 0.5s ease-in-out;
    width: 100%;
    border-radius: 0px;
    border:0;
}
#updatePasswordBtn:hover{
    background: #00B7C2;
    border:0;
}
.branch-have .custom-radio.yes_radio input[type='radio']:checked + label.radio_label, .branch-have .custom-radio.yes_radio input[type='radio']:checked + label.radio_label, .branch-have .custom-radio.yes_radio input[type='radio']:checked + label.radio_label {
    border: 1px solid var(--bs-success);
    color: #fff;
    background: var(--bs-success);
}
.branch-have .custom-radio.no_radio input[type='radio']:checked + label.radio_label, .branch-have .custom-radio.no_radio input[type='radio']:checked + label.radio_label, .branch-have .custom-radio.no_radio input:checked + label.radio_label {
    border: 1px solid var(--theme-blue);
    color: #fff !important;
    background: var(--theme-blue);
}

a.addmore-deedinfo {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    margin-left: auto;
    display: table;
    margin-bottom: 15px;
}
a.addmore-deedinfo:hover{
    background: var(--theme-green);
    color: var(--whiteCommom);
}

.remove_field{
    margin-left: auto;
    display: table;
}
/* 21.9.22 */
.log_btn {
    background: #0E86F6;
    padding: 8px 12px;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    border-radius: 11px;
    min-width: 100%;
    text-align: center;
}
.log_btn:hover{
    background: #0A467D;
    color: #fff;
}
.log_btn:not(:last-child){
    margin-right: 5px;
}
.left-panel .login_txt {
    position: absolute;
    z-index: 2;
    width: 85%;
    top: 12%;
}

.application_details{
    position: relative;
}

.application_details .changeStatus{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

button.Zebra_DatePicker_Icon {
    background: url("icons.png") center top no-repeat;
    border: none;
    cursor: pointer;
    display: block;
    height: 16px;
    line-height: 0;
    padding: 0;
    position: absolute;
    text-indent: -9000px;
    width: 16px;
    top: 50% !important;
    right: 12px !important;
    transform: translate(0 , -50%) !important;
}
input{
    height: 20px;
    width: 20px;
}
input[type="checkbox"]:checked {
    filter: opacity(0.5);
}
.Zebra_DatePicker {
    background: #073c6d !important;
    border-radius: 4px;
    box-shadow: 0 0 10px #888;
    color: #222;
    font: 13px Tahoma,Arial,Helvetica,sans-serif;
    padding: 3px;
    position: absolute;
    display: table;
    z-index: 1200;
}

.Zebra_DatePicker .dp_daypicker th {
    background: #72bae6 !important;
    cursor: text;
    font-weight: 700;
    color: #fff;
}

.Zebra_DatePicker .dp_body .dp_selected {
    background: #000 !important;
    color: #fff;
}

/* responsive */

@media(max-width:1400px){
    .dash-main-box{
        min-height:150px;
    }
    .common-form.partnership-frm label#age\[0\]-error {
        bottom: -50px;
    }
    .common-form.partnership-frm label#age\[0\]-error {
        bottom: -19px;
        line-height: 1;
    }
}
@media(max-width:1199px){
    .common-form.partnership-frm label#age\[0\]-error{
        bottom: -21px;
    }
}

@media(max-width:1023px) {
    .main-footer {
        width: calc(100% - 65px);
    }
    .admin-main-panel.expand .main-footer {
        width: calc(100% - 323px);
    }
    .common-table.app-list-table td:last-child{
        min-width:200px;
    }
}

@media(max-width:767px) {
    .common-form .usertypebtn-hldr .col {
        justify-content: center;
    }
    .usertypebtn-hldr :is(button, a) {
        max-width: 45%;
    }
    .usertypecheck {
        padding: 5px 0;
    }
    .form-checkall {
        margin-left: 0px;
    }
    .main-footer,
    .admin-main-panel.expand .main-footer {
        padding: 4px;
        width: 100%;
    }
    .common-form .row>div.submit-holder{
        justify-content: space-between;
    }
    .common-form .row>div.submit-holder input[type="submit"],
    .common-form .row>div input[type="reset"]{
        max-width:145px;
    }
    .update-status-form .form-group{
        margin-bottom:10px;
    }
    .common-table.app-list-table.reortpage th, .common-table.app-list-table.reortpage td {
        font-size: 11px;
        line-height: 20px;
    }
    .common-table.app-list-table.reortpage table{
        width: 500px;
    }
    .declaration_area{
        padding: 15px;
    }
    .dashboard-main .table th:nth-child(4){
        min-width: 250px;
    }
    .img_size {
        bottom: -32px;
        font-size: 9px;
        line-height: 14px;
    }
    .text-includes-form-hldr .other_input {
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .text-includes-form-hldr .other_input #other {
        width: 100%;
        margin-top: 6px;
    }
    .common-form .row>div input[type=submit]{
        font-size: 14px;
    }
    
}

@media print {
    body, html, .wrapper {
        height: 100% !important;
        width: 100% !important;
        display: inline-block;
    }
}