/* Minification failed. Returning unminified contents.
(313,2): run-time error CSS1019: Unexpected token, found '}'
(2935,64): run-time error CSS1062: Expected semicolon or closing curly-brace, found '='
(3374,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(3375,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '100%'
(9793,5): run-time error CSS1019: Unexpected token, found '@keyframes'
(9794,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '15%'
(9811,5): run-time error CSS1019: Unexpected token, found '@keyframes'
(9812,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(11158,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11159,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11160,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11161,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11162,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11163,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11164,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11165,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11166,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11167,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11177,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(11178,10): run-time error CSS1035: Expected colon, found '{'
(11193,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(11218,22): run-time error CSS1039: Token not allowed after unary operator: '-card-bg'
(11219,30): run-time error CSS1039: Token not allowed after unary operator: '-border'
(11220,25): run-time error CSS1039: Token not allowed after unary operator: '-radius'
(11225,22): run-time error CSS1039: Token not allowed after unary operator: '-section-bg'
(11249,28): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(11262,22): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(11269,22): run-time error CSS1039: Token not allowed after unary operator: '-accent-light'
(11282,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(11289,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(11298,22): run-time error CSS1039: Token not allowed after unary operator: '-input-bg'
(11299,30): run-time error CSS1039: Token not allowed after unary operator: '-border'
(11300,25): run-time error CSS1039: Token not allowed after unary operator: '-radius-sm'
(11306,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(11313,17): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(11317,24): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(11334,26): run-time error CSS1039: Token not allowed after unary operator: '-border'
(11340,21): run-time error CSS1039: Token not allowed after unary operator: '-muted'
(11379,22): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(11382,25): run-time error CSS1039: Token not allowed after unary operator: '-radius-sm'
(11482,17): run-time error CSS1039: Token not allowed after unary operator: '-color-text-tertiary'
(12286,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12287,10): run-time error CSS1035: Expected colon, found '{'
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

header {
    background: #fffefe;
    height: 71px;
}
.contentpage {
    background: #F7F6FE;
    border-radius: 32px;
    padding: 34px 32px;
}
.navbar-brand {
    position: relative;
    z-index: 99;
}

@media (max-width: 1200px) {
    .paymentPage .formarea {
        padding: 20px;
    }

    .paymentPage .nav-tabs .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .paymentPage .bigcheck {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .paymentPage .checkbox-area {
        flex-direction: column;
    }

    #btnProcced {
        width: 100%;
        height: 50px;
    }
}


  /* Aniket HEM NXT*/

.listcontent.indexpage {
    padding: 26px 32px 26px 60px;
    background: #F5F6FB;
    border: 1px solid #C9C6F5;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 450px;
    padding-left: 20px;
    align-content: center;
    margin-top: 112px;
}


@media (max-width: 991px) {
    .listcontent.indexpage {
        width: 100%;
        margin-top: 30px;
    }
}

/* ✅ Mobile */
@media (max-width: 576px) {
    .listcontent.indexpage {
        width: 100%;
        margin-top: 20px;
        padding: 12px 15px;
        font-size: 13px;
        border-radius: 10px;
    }

    .listcontent .bigcheck {
        gap: 8px;
    }
}



/*end*/


.pagesFade {
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.input-validation-error {
    border: 2px solid red !important;
}

header a {
    color: #060606;
}

.clientphotoarea video {
    object-fit: fill;
    width: 328px;
    height: 328px;
    overflow-clip-margin: unset;
}
canvas#canvas {
    object-fit: fill;
    width: 328px;
    height: 328px;
}
.formarea.imageuload p {
    font-size: 22px;
}

ul.nav.navbar-nav li b {
    font-weight: bold;
    color: #181717;
    padding-left: 10px;
}

.mobile_view {
    display: none;
}

div#RejectionModal .col-auto.digilockerbtn.othersubit button.btn {
    text-align: center;
    display: block;
    margin: 0 auto;
}

div#RejectionModal .col-auto.digilockerbtn.othersubit {
    width: 100%;
}

.imagearea .inputpas .pdfpasswwrd {
    position: relative;
}

input#panNoverify {
    text-align: center;
}

div#PDFModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal .modal-header.pd-y-10.pd-x-10 h6 {
    position: relative;
    top: 0px;
    font-size: 20px;
    font-weight: bold;
	    text-align: left;
}

div#PDFModal .modal-body.pd-0 {
    margin-top:30px;
}
div#PDFModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal {

}


ul.nav.navbar-nav li.logout_btn {
    /* display: none; */
    cursor: pointer;
}

/*#loader ~ body {
    overflow:hidden;
}*/
div#DivDematYes .listcontent2 p {
    font-size: 14px;
    font-weight: 600;
    padding-left: 0;
}


button#btnSelectBrokeragePlan {
    margin-left: 44px;
}

div#PAN_Image {
    margin-top: 15px;
}

div#IncomeProof_Image {
    margin-top: 15px;
}

div#Bank_Image {
    margin-top: 15px;
    float: left;
    width: auto;
}

div#SIGNATURE_Image {
    margin-top: 15px;
}

div#CLIENT_PHOTO_Image {
    margin-top: 15px;
}

div#IncomeProof_Image {
    margin-top: 15px;
}


input#panNo_Adhaar::placeholder {
    /* color: #8b7ee5; */
    font-size: 14px;
    font-weight: bold;
}

.form-control:disabled, .form-control[readonly] {
    background: transparent;
    opacity: 1;
    letter-spacing: 0px;
    color: #574949;
    font-size: 14px;
}
button#btnSelectBrokeragePlan {
    margin-left: 27px !important;
}

.formarea.imageuload p.imagesrowp span {
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-top: -7px;
}

.inputpas .pdfpasswwrd i {
    position: absolute;
    top: 18px;
    right: 25px;
    color: #764277;
}

div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload {
    margin-top: 140px;
    max-width: 100%;
    padding-top: 70px;
    padding-bottom: 25px;
}

    div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload h2 {
        text-align: center;
        letter-spacing: 0px;
        color: #000000;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 5px;
        margin-top: -208px;
    }

.modal-header.pd-y-10.pd-x-10 button.close span {
    font-size: 40px;
    padding: 0;
    text-align: right;
}

.modal-header.pd-y-10.pd-x-10 {
    position: relative;
    color: #574949;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}}

.rectifybtn.model_footer {
    position: absolute;
    bottom: 20px;
    z-index: 99;
    right: 80px;
}

div#RejectionFormModal .rightborder::after {
    display: none;
}

div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload label.btn.inputgrp.fileupload img.img-fluid {
    position: relative;
    width: 22px;
    height: 24px;
    top: 0;
    left: 0;
    display: inline-block;
}

div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload label.btn.inputgrp.fileupload {
    margin-bottom: 20px;
}

.rectifybtn.model_footer button.btn {
    width: 165px;
    line-height: 45px;
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-top: 32px;
    font-weight: 500;
    padding: 0 26px;
    color: #fff;
    letter-spacing: normal;
    font-size: 14px;
    opacity: 1;
    height: 50px;
    background: #8b7ee5;
    border-radius: 8px;
    cursor: pointer;
}
.formarea .bankform .bank_details p {
    font-size: 15px;
}
div#divDocumentBtn .col-auto.classsbmit button#btnFinalSubmit {
    width: auto;
    padding: 0 20px;
}
    div#divDocumentBtn .col-auto.classsbmit button#btnFinalSubmit img {
        width: 30px;
    }

div#RejectionFormModal div#CaptureImageModal .modal-content .modal-header {
    width: 100%;
    display: block;
    margin: 0;
    float: unset;
    text-align: right;
}
button#btnRejecDone img {
    width: 30px;
}


.modal-header.pd-y-10.pd-x-10 button.close span {
    font-size: 40px;
    padding: 0;
    text-align: right;
    color: #6F6F6F;
    opacity: 1;
    font-weight: 500;
    top: 0;
    position: relative;
}

button.close {
    background: transparent;
    border: none;
    outline: none !important;
    position: relative;
    top: 10px;
    right: 0;
}


.modal-header.pd-y-10.pd-x-10 button.close {
    float: right;
    right: 0;
    position: relative;
    width: 35px;
    text-align: right;
    z-index: 999;
    margin: 0 auto;
    display: block;
	    top: 0;
}

div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload .imagesrow06 {
    padding: 25px 0;
}

div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload .imagesrow {
    margin-bottom: 20px;
}

div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload .col-auto.inputgrp.select img.img-fluid {
    position: absolute;
    top: 16px;
    left: 15px;
    z-index: 1;
    width: 20px;
    height: 17px;
}

div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal {
    top: 5%;
    height: 90vh !important;
}

    div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload img.img-fluid {
        width: 200px;
        height: 200px;
        top: -200px;
    }

    div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload .selectareea img.img-fluid {
        position: absolute;
        top: 16px;
        left: 15px;
        z-index: 1;
        width: 20px;
        height: 17px;
    }

.row.pagecontent.paymentPage .paymentProcgess .progressbar ul {
    margin: 0 auto;
    text-align: center;
}

.row.pagecontent.paymentPage .paymentProcgess .progressbar .progree_border {
    left: 24%;
    /*display: block;*/
}

.row.pagecontent.paymentPage .paymentProcgess .progressbar ul::before {
    left: 25%;
}

.bi-eye::before {
    content: "\f321";
}

.modal-content {
    border-radius: 30px;
}

.bi-eye-slash::before {
    content: "\f320";
}

[class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: text-bottom;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.caz_button {
    background: url('../../images/quickyc/PDF-icon.png') no-repeat;
    cursor: pointer;
    border: none;
    height: 50px;
    width: 80px;
    vertical-align: middle;
    border-radius: 0;
}

header .client_logo {
    background: #FFFFFF;
    box-shadow: 0px 3px 25px #8b7ee540;
    border-radius: 0px 0px 10px 10px;
    opacity: 1;
    width: 180px;
    height: 89px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    outline: none;
}

.progressbar.uploadDocument .progressbar .progree_border {
    left: 23%;
    display: none;
}

header .client_logo img {
    width: 85%;
    height: auto;
}

.modal-dialog-centered {
    display: block;
}

header .navbar-expand-lg {
    padding: 0;
}

    header .navbar-expand-lg a.navbar-brand {
        padding: 0;
    }

header nav ul li {
    margin-top: -15px;
}

.btnbank {
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}

.pagescontent p {
    font-size: 18px;
    padding-left: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

div#myModal .modal-dialog {
    top: 0;
    margin: 0 auto;
    max-width: 700px;
    background: transparent;
    width: 50%;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

    div#myModal .modal-dialog .modal-content {
        border-radius: 25px;
        box-shadow: 0px -8px 36px #00000029;
    }

.row.digi-info p {
    margin-bottom: 0 !important;
}

.pagescontent p.textinput {
    font-size: 14px !important;
    margin-bottom: 10px;
    padding-top: 5px;
    font-weight: normal;
    color: #707070;
}

.sweet-alert .sa-icon.sa-warning span {
}

.pricingTable3 {
    margin-right: 22px;
    background: #f3f2fc;
    /*   padding-bottom: 10px;*/
    width: 290px;
}
table.pricing-content {
    width: 100%;
}
    .pricingTable3 h3.title {
        text-transform: uppercase;
        background: #e0def7 0% 0% no-repeat padding-box;
        box-shadow: 0px 4px 6px #00000029;
        border-radius: 10px;
        font-size: 16px;
        text-align: center;
        letter-spacing: 0px;
        color: #8b7ee5;
        height: 23px;
        line-height: 23px;
        font-weight: bold;
    }

div#DivDPScheme .pricingTable3 {
    margin-right: 0;
}
table.pricing-content td.brok-title {
    font-size: 12px;
    color: #686868;
    line-height: 10px;
    text-align: left;
    padding: 9px 5px;
    list-style: none;
}

div#Nominee_1Adress span.bigcheck label.bigcheck.gardiantext2 input#NOMINEE_1AddressHide {
    width: auto;
    height: auto;
}

div#Nominee_2Adress span.bigcheck label.bigcheck.gardiantext2 input#NOMINEE_2AddressHide {
    width: auto;
    height: auto;
}

div#Nominee_3Adress span.bigcheck label.bigcheck.gardiantext2 input#NOMINEE_3AddressHide {
    width: auto;
    height: auto;
}

div#Nominee_1Adress span.bigcheck label.bigcheck.gardiantext2 {
    margin: 0;
    margin-top: -25px;
    margin-left: -25px;
    padding: 0;
    float: left;
    display: flex;
    padding-right: 10px;
}

div#Nominee_2Adress span.bigcheck label.bigcheck.gardiantext2 {
    margin: 0;
    margin-top: -25px;
    margin-left: -25px;
    padding: 0;
    float: left;
    display: flex;
    padding-right: 10px;
}

div#Nominee_2Adress span.bigcheck label.bigcheck.gardiantext2 {
    margin: 0;
    margin-top: -25px;
    margin-left: -25px;
    padding: 0;
    float: left;
    display: flex;
    padding-right: 10px;
}

.sweet-alert.showSweetAlert.visible {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #686868;
    border-radius: 15px;
}


div#equityBrokerage .modal-content {
    min-width: 970px;
    overflow: scroll;
}

div#eq-brokerage .modal-content {
    max-width: 955px;
}

    div#eq-brokerage .modal-content .modal-body {
        max-width: 970px;
        overflow-x: scroll;
        background: #fff;
        border-radius: 0;
    }

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

div#BrokerageCommodity .modal-content {
    max-width: 955px;
    background: #fff;
    border-radius: 30px 30px 0 0;
}

    div#BrokerageCommodity .modal-content .modal-body {
        max-width: 955px;
        overflow-x: scroll;
    }

button#btnEditCommodity img.img-fluid {
    width: auto;
    height: auto;
    top: 0;
}


div#CommCat input.btn.btn-link {
    height: 28px;
    background: #8b7ee5;
    border-radius: 25px;
    opacity: 1;
    width: 40%;
    color: #fff;
    display: block;
    line-height: 28px;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
}

.otherbtn2.otherbtn3 .checkboxarea input#DematAccountType {
    width: 20px;
    height: 20px;
    position: relative;
    top: 0;
    margin-right: 10px;
    cursor: pointer;
}

div#DivDematYes table tr td.pay-3 {
    padding-left: 55px;
}

div#DivDematYes table tr td span {
    text-align: right;
    float: right;
    font-weight: 500;
    font-size: 15px;
}

.tab-content.payment_form .otherbtn2.otherbtn3 .yesno .checkboxarea span.bigcheck label.bigcheck input {
    accent-color: #8b7ee5;
}

div#CommCat .modal-content {
    max-width: 500px;
    margin: 0 auto;
    max-height: 620px;
    /*  overflow: scroll;*/
}

    div#CommCat .modal-content .modal-body {
        max-width: 520px;
        overflow-x: hidden;
        margin: 0 auto;
        max-height: 470px;
        background: #f3f2fc;
        padding: 10px;
        overflow-y: scroll;
    }

input#DematName {
    text-transform: uppercase;
}
div#div_commCat select {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    outline: none;
    cursor: pointer;
}

input.btn.btn-link.wdth-auto {
    font-size: 12px;
}

.otherbtn2.otherbtn3 b {
    line-height: normal;
    display: block;
}

input#PastAction {
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 3px;
    left: -999em;
}

input#DealingWithSB {
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 3px;
    left: -999em;
}

div#uploadIncome .modal-dialog {
    background: transparent;
    border: transparent;
}

button.close {
    border: none;
    background: transparent;
    font-size: 25px;
    color: #999 !important;
}

header a:hover {
    color: #fff;
}

button.close.CommCat {
    top: 0;
}

div#uploadIncome .modal-dialog {
    top: 0;
}

.tab-content.payment_form .checkbox-area label.bigcheck span.bigcheck-target {
    position: relative;
}

.tab-content.payment_form .listcontent2 p {
    font-size: 22px;
}

.krainput {
}


.tab-content.payment_form .otherbtn2.otherbtn3 .yesno .checkboxarea span.bigcheck label.bigcheck span.fottop {
    position: relative;
    left: 0;
}

.progressbar ul li a {
    font-size: 14px;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

#bankDetails .succestextarea {
    margin: 30px 0;
}

.formarea.imageuload.applistaus h4.userapplication {
    position: relative;
    letter-spacing: 0px;
    color: #686868;
    text-transform: capitalize;
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 6px;
}

.formarea.rejection img.img-fluid {
    top: -195px;
    width: 200px;
    height: 200px;
}

.ddpipdf2 {
    position: relative;
}

    .ddpipdf2::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 77px;
        background: #C8C8C8;
        display: block;
        top: -25px;
        left: 16px;
    }

ul#ApplicationStatus li:nth-child(3) {
    left: 56px;
}

ul#ApplicationStatus li:nth-child(2)::before {
    width: 310px;
}

.sidebara .logo-name__button {
    position: relative;
    top: -88px;
    left: 200px;
    font-size: 1.8rem;
    background-color: transparent;
    border: none;
}

.sidebara .side-bar {
    width: 216px;
    height: 100%;
    padding: 2.1rem 1.2rem;
    background: #6F6F6F;
    position: fixed;
    transition: all 0.5s ease;
    top: 71px;
    left: 0;
}

.tab-content.payment_form .listcontentmtf {
    border-top: 2px solid #D8D8D8;
    border-bottom: 2px solid #D8D8D8;
    padding: 31px 0;
    margin-left: 16px;
    margin-right: 30px;
    background: none;
}

    .tab-content.payment_form .listcontentmtf p {
        margin-bottom: 0;
    }


.tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.select {
    position: relative;
}

.tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.paymentinput {
    margin-left: 0;
    position: relative;
}

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.paymentinput input {
        padding-left: 40px;
    }

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.paymentinput img {
        top: 15px;
        position: absolute;
        left: 15px;
        width: auto;
    }

input#HighValueTransactions {
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 3px;
}

input#HighValueTransactionsY {
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 3px;
    left: -999em;
}

input#HighValueTransactionsN {
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 3px;
    left: -999em;
}

.nominee_form .accordion-body .col-auto.inputgrp.mrbtm {
    margin-bottom: 0;
}

.nominee_form .accordion-body .col-auto.inputgrp.persentagearea.mrbtm {
    margin-bottom: 0;
}

td.pay-3 {
    font-size: 14px;
}

.text-danger {
    color: #dc3545 !important;
    padding-left: 15px;
    padding-top: 0;
    float: left;
    font-size: 12px;
}

.tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.select img {
    top: 15px;
    position: absolute;
    left: 15px;
    width: auto;
}

.formarea2.formarea_dashboard {
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    padding: 50px 70px 41px;
    box-shadow: 2px 1px 10px #8b7ee5;
    margin-bottom: 70px;
    margin-right: 50px;
    width: 1246px;
}

.tab-content.payment_form .otherbtn2.otherbtn3 .yesno .checkboxarea span.bigcheck label.bigcheck {
    border: none;
    font-size: 16px;
}

.tab-content.payment_form .listcontent2 {
    margin-bottom: 15px;
}

.ddpipdf2 {
    position: relative;
}


    .ddpipdf2::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 77px;
        background: #C8C8C8;
        display: block;
        top: -25px;
        left: 0px;
    }

.formarea.rectification_area .imagesrow {
    background: #f7f7f7;
    padding: 30px 28px;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 30px;
}

    .formarea.rectification_area .imagesrow p {
        font-size: 16px;
        padding-right: 20px;
    }

    .formarea.rectification_area .imagesrow h5 {
        text-align: left;
        letter-spacing: 0px;
        color: #6F6F6F;
        text-transform: capitalize;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 20px;
    }

.formarea.rectification_area .classsbmit button {
    margin-top: 0;
}

.bankdetailsrev2 h5 {
}

.formarea.rectification_area .row.imagesrow06 .inco .selectareea .inputgrp.select {
    position: relative;
    margin-bottom: 0;
}



.formarea.rectification_area .row.imagesrow06 .inco .inputgrp {
    margin-bottom: 7px;
}

.formarea.rectification_area .row.imagesrow06 .inco2 .selectareea .inputgrp.select {
    position: relative;
    margin-bottom: 0;
}

.formarea.rectification_area .row.imagesrow06 .inco2 .inputgrp {
    margin-bottom: 7px;
}

.classsbmit {
    margin-bottom: 0px;
}

.formarea.rejection {
    padding: 50px 30px;
    width: 920px;
    max-width: 920px;
    margin: 0 auto;
    /*background: url(../images/formarea_rejection_bg.png) #fff no-repeat;*/
    background: #fff;
}

div#RejectionModal .modal-content.bd-0.tx-14 {
    background: transparent;
    border: none;
    overflow: hidden;
}

/*.rejection_top {
    margin-top: -205px;
}*/

.rejectionreason button.btn {
    font-size: 14px;
    margin-right: 15px;
}

.formarea.imageuload.applistaus h4.userapplication img {
    width: 40px;
    height: 40px;
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-right: 14px;
}

.formarea.imageuload.applistaus h4.userapplication span {
    text-align: center;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bold;
}

.imagesrow {
    margin-bottom: 50px;
}

.row.imagesrow.imagesrow2 {
    margin-top: 0;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    border-radius: 10px;
    padding: 30px;
    height: 305px;
    margin-bottom: 0;
}
input#INCOMEPROOF_btnAI {
    font-size: 9px;
    width: 100px;
    float: left;
    height: 31px;
    line-height: 31px;
    padding-top: 0;
    margin-top: 15px;
}
input#BANK_btnAI {
    font-size: 9px;
    width: 100px;
    float: left;
    height: 31px;
    line-height: 31px;
    padding-top: 0;
    margin-top: 15px;
}

input#DP_IMAGE_btnAI {
    font-size: 9px;
    width: 100px;
    float: left;
    height: 31px;
    line-height: 31px;
    padding-top: 0;
    margin-top: 15px;
}


/*Sidebar css start*/

.statusarea .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: -8px;
    overflow-x: clip;
    transition: 0.5s;
    padding-top: 60px;
    /*        display: none;*/
    /*    background: url(../images/mobile-navigation-bg.png) no-repeat;*/
}

    .statusarea .sidebar a {
        padding: 8px 8px 8px 0;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .statusarea .sidebar a:hover {
            color: #f1f1f1;
        }

    .statusarea .sidebar .closebtn {
        right: 0;
        font-size: 36px;
        margin-left: 50px;
        position: absolute;
        z-index: 1;
        background: transparent;
        top: 40%;
        left: 140px;
    }

.statusarea .openbtn {
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    color: white;
    padding: 10px 15px;
    border: none;
    outline: none !important;
}

    .statusarea .openbtn img {
        outline: none !important;
    }

    .statusarea .openbtn:hover {
    }

.statusarea #main {
    transition: margin-left .5s;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    display: none;
}

div#main button.openbtn {
    background: transparent;
    outline: none !important;
    border: none;
    display: none;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */


/*
@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }

    .sidebar a {
        font-size: 18px;
    }
}
*/


/*Sidebar css end*/

.statusbar ul li:nth-child(4)::after {
    position: absolute;
    content: "";
    /*background: url(../images/status_iconcircle.svg) no-repeat;*/
    background: url(../../images/quickyc/status_iconcircle.svg) no-repeat;
    height: 50px;
    width: 50px;
    top: 96px;
    left: 80px;
    z-index: 9;
}

.inputgrp.select {
    position: relative;
}

    .inputgrp.select img {
        position: absolute;
        top: 12px;
        left: 15px;
        z-index: 1;
    }

.imagearea h4.warning {
    color: #eb1d1d;
}

div#mobileno_area {
    margin-top: -90px;
}

.statusarea .progressbar.collapse:not(.show) {
    display: flex;
    flex-basis: auto;
}

.nav li a {
    font-weight: normal;
    text-decoration: none;
}

.nav li span {
    font-weight: bold;
    color: #0d0c0c;
}

.contentpage h1 b {
    font-weight: 700;
}

.collapse:not(.show) {
    /*    display: block;*/
}

nav#navbar_top .collapse:not(.show) {
   /* display: block;*/
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    /*background: url(../images/quickkycbg.jpg) no-repeat;*/
    /* background: url(../../images/quickyc/quickkycbg.jpg) no-repeat; */
    background-size: cover;
    background-color: #f8f8f81c;
}

.mobile_hide {
    display: block;
}

.mobile_hide2 {
    display: inline-block;
}

.demo3 {
    display: flex;
}

.mobile_show {
    display: none;
}

    .proarea .progressbar {
        text-align: center;
        margin-top: 35px;
    }

        .proarea .progressbar ul {
            position: relative;
        }

            .proarea .progressbar ul::before {
                left: 24%;
            }

            .proarea .progressbar ul li {
            }

                /*.proarea .progressbar ul li:first-child::after {
                    width: 110px;
                    left: 25px;
                    top: 19px;
                    z-index: -1;
                    background: transparent linear-gradient(90deg, #8b7ee5 0%, #C60820 100%);
                    display: none;
                }*/

.progressbar.bankDetailPage .progressbar ul::before {
    width: 640px;
}

.progressbar .progree_border {
    position: absolute;
    top: 20px;
    left: 2%;
    width: 0;
    background: transparent linear-gradient(90deg, #8b7ee5 0%, #C60820 100%);
    height: 14px;
    border-radius: 30px;
    display: none;
}

.progressbar {
    position: relative;
}

.bank_details b {
    color: #8b7ee5;
}

.tab-content > :focus-visible {
    outline: none !important;
}

.succestextarea p {
    text-align: center;
    font-size: 18px;
}

.listcontent2 p span {
    text-align: right;
    float: right;
    padding-right: 65px;
    font-weight: 500;
    font-size: 15px;
}

.camarabtn {
    position: relative;
    bottom: 65px;
    margin: 0 auto;
    text-align: left;
    left: 0;
}

    .camarabtn .current {
        text-align: center;
        color: #FFFFFF;
        font-size: 22px;
        font-weight: 600;
        border: none;
        margin-bottom: 20px;
        width: 315px;
        height: 52px;
        background: #8b7ee5;
        border-radius: 9px;
        margin-left: 7px;
    }

.imagesrow.imagesrow2 h2 {
    margin-bottom: 25px;
}

.statusbar ul li:first-child {
    padding-left: 0;
}

.imagesrow2 h4 {
    text-align: center;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 24px;
    margin-bottom: 20px;
}

.equitypdf {
    /*
    display: inline-flex;
    width: 100%;
*/
}

.nopad {
    padding: 0;
}

.manage .sidebar-nav .offcanvas ul li {
    margin: 10px 0px;
}

.dassnev {
    padding: 0 50px;
}

.manage .sidebar-nav .offcanvas ul li a {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
}

.menuera ul {
    list-style: none;
    float: right;
    margin-top: 20px;
    margin-bottom: 30px;
}

.dassnev.menuera3 .menuera ul li a img {
    width: 21px;
    height: 21px;
}

.menuera ul li {
    display: inline-block;
    padding-left: 20px;
}

    .menuera ul li a {
        text-align: left;
        letter-spacing: 0px;
        color: #4D4D4D;
        text-transform: capitalize;
        font-size: 20px;
        font-weight: normal;
        text-decoration: none;
    }

        .menuera ul li a img {
            width: 20px;
            height: 20px;
        }

.manage .sidebar-nav .offcanvas {
    width: auto;
    top: 71px;
    background: transparent;
    border: none;
    /*    visibility: visible !important;*/
    transform: translateX(0%);
}

    .manage .sidebar-nav .offcanvas ul li a span.item-text {
        display: none;
    }

.col-auto.inputgrp.ddpi_area {
    margin-bottom: 0;
}

.col-auto.inputgrp.checkboxarea05 .btnera {
    margin-bottom: 10px;
}

.manage .sidebar-nav .offcanvas.show ul li a {
    font-size: 16px;
    text-align: left;
    color: #FFFFFF;
    text-transform: capitalize;
    opacity: 1;
    font-weight: normal;
    text-align: center;
}

    .manage .sidebar-nav .offcanvas.show ul li a b {
        font-size: 16px;
        text-align: left;
        color: #FFFFFF;
        text-transform: capitalize;
        opacity: 1;
        font-weight: 600;
    }

.manage .sidebar-nav .offcanvas.show {
    width: 200px;
}

    .manage .sidebar-nav .offcanvas.show ul li a span.item-text {
        display: block;
    }

    .manage .sidebar-nav .offcanvas.show ul li a span {
        font-size: 18px;
        transition: 0.5s;
    }

    .manage .sidebar-nav .offcanvas.show ul li a:hover span {
        /*    padding-left: 10px;*/
    }

.manage .sidebar-nav .modal-backdrop.show {
    opacity: .5;
    display: none;
}

.menuicon {
}

    .menuicon img {
        width: 30px;
        height: auto;
    }

.sidebar-nav button.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 0;
    overflow-y: auto;
    background: #6F6F6F;
}

.equitypdf .vievbtn {
    background: transparent;
    border: none;
    border-radius: 0;
    font: normal normal 600 16px/32px Poppins;
    letter-spacing: 0px;
    color: #8978ED;
    padding: 5px 15px;
    text-align: center;
    margin-right: 10px;
}


    .equitypdf .vievbtn:hover {
        background: #FFFFFF;
        color: #574949;
    }
.equitypdf .vievbtn2 {
    background: #8b7ee5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font: normal normal 600 16px/32px Poppins;
    letter-spacing: 0px;
    padding: 5px 15px;
    text-align: center;
}

.equitypdf label {
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    font-weight: 600;
    font-size: 24px;
    padding-left: 10px;
}

.bottomarea {
    margin-top: 44px;
    margin-bottom: 80px;
}

.formarea .imagesrow2 h4 img {
    width: 40px;
    height: 40px;
    position: relative;
    top: 0;
    left: 0;
}

.formarea.imageuload.applistaus {
    margin-top: 145px;
}

.imagesrow2 h4 span {
    text-align: center;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-weight: 600;
}

.rejection {
}

    .rejection h2 {
        text-align: center;
        letter-spacing: 0px;
        color: #EB1D1D;
        font-weight: 600;
        font-size: 34px;
        margin-bottom: 15px;
    }

.rejectiontext p {
    text-align: center;
}

.rejectiontext {
    padding: 0;
}

.rejectionname {
    /*text-align: left;*/
    /* width: 50%;*/
    letter-spacing: 0px;
    color: #6F6F6F;
    font-weight: 600;
    font-size: 15px;
}

    .rejectionname span {
        font-size: 14px;
        color: #000;
        padding-left: 5px;
    }

.rejectionreason {
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    font-weight: normal;
    font-size: 18px;
    padding-left: 10px;
    width: 100%;
}

.rejectionarea {
    display: inline-flex;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 8px;
    line-height: 48px;
}

.rejectiontext p span {
    text-align: right;
    letter-spacing: 0px;
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.rectifybtn {
    margin-bottom: 15px;
    margin-top: 10px;
}

    .rectifybtn button {
        margin: 0 auto;
        text-align: center;
        display: block;
        width: auto;
        height: 40px;
        background: #8b7ee5;
        border-radius: 30px;
        letter-spacing: normal;
        color: #FFFFFF;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        line-height: 40px;
        padding: 0 20px;
    }

.statusbar ul li {
    position: relative;
    display: inline-flex;
    text-align: center;
    letter-spacing: 0px;
    color: #8b7ee5;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bold;
}

    .statusbar ul li:first-child::after {
        position: absolute;
        content: "";
        background: url(../../images/quickyc/status_icon.svg) no-repeat;
        height: 50px;
        width: 50px;
        top: 100px;
        left: 80px;
    }

    .statusbar ul li::before {
        position: absolute;
        content: "";
        background: #d5d5d5;
        height: 10px;
        width: 385px;
        top: 118px;
        left: 15px;
    }

    .statusbar ul li:last-child::before {
        display: none;
    }

    .statusbar ul li a {
    }

    .statusbar ul li:first-child::before {
        position: absolute;
        content: "";
        background: transparent linear-gradient(90deg, #8b7ee5 0%, #C60820 100%);
        height: 10px;
        width: 230px;
        top: 118px;
        left: 95px;
        box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
    }

    .statusbar ul li:nth-child(2)::before {
        position: absolute;
        content: "";
        background: transparent linear-gradient(90deg, #8b7ee5 0%, #C60820 100%);
        height: 10px;
        width: 260px;
        top: 118px;
        left: 95px;
        box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
        z-index: 1;
    }

    .statusbar ul li:nth-child(2) a {
        position: relative;
        top: 190px;
    }

    .statusbar ul li:nth-child(2) {
        left: 0;
    }

    .statusbar ul li:nth-child(3) {
        left: 0;
    }

    .statusbar ul li:nth-child(4) a {
        position: relative;
        top: 190px;
        left: -30px;
    }

    .statusbar ul li:nth-child(4) {
        right: 0;
        position: absolute;
        top: 0;
    }

    .statusbar ul li:nth-child(2)::after {
        position: absolute;
        content: "";
        background: url(../../images/quickyc/status_icon.svg) no-repeat;
        height: 50px;
        width: 50px;
        top: 100px;
        left: 80px;
    }

    .statusbar ul li::after {
        position: absolute;
        content: "";
        background: url(../../images/quickyc/status_icon2.svg) no-repeat;
        height: 50px;
        width: 50px;
        top: 96px;
        left: 95px;
        z-index: 9;
    }

.statusbar ul {
    list-style: none;
    margin-top: 0;
    padding: 0;
    position: relative;
}

    .statusbar ul li a {
        margin-top: 0;
    }

.statusbar {
    text-align: left;
    margin-top: 0;
    padding: 0;
}

.camarabtn .retake {
    border: none;
    width: 315px;
    height: 55px;
    background: #8b7ee5 0% 0% no-repeat padding-box;
    border-radius: 9px;
    text-align: center;
    letter-spacing: 5.4px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-left: 7px;
}

.listcontent3 p span {
    text-align: right;
    float: right;
    padding-right: 65px;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
}
.content-box {
    background: #F7F6FE;
    border-radius: 32px;
    padding: 34px 32px;
}
.pagecontent h1 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #3D3D3D;
}

.imageuload h5.gardiantext {
    text-align: left;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 22px;
}

hr:not([size]) {
    height: 2px;
}

.nomin .fileupload {
    margin-top: 5px;
}

.formarea .listcontent2 p b {
    font-weight: 600;
    font-size: 15px;
    /* padding-left: 13px;*/
}

.formarea .listcontent p {
    font-size: 15px;
    padding: 0 110px;
}

.formarea .listcontent3 p b {
    font-weight: bold;
    font-size: 15px;
}

.listcontent2 {
    border-radius: 5px;
    font-size: 15px;
    position: relative;
    margin-bottom: 35px;
}

.clientphotoarea {
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: self-start;
    left: 3%;
    top: 40px;
}

/*.imageuload .inputgrp {
    margin-bottom: 8px;
}*/

.formarea.imageuload p {
    font-size: 15px;
}


.modal.documentpagemodule.show .modal-dialog {
    top: 20%;
    margin: 0 auto;
    max-width: 605px;
    background: #fff;
    border: 1px solid #686868;
    border-radius: 15px;
}

.documentpagemodule .imagearea p {
    text-align: center;
    letter-spacing: 0px;
    color: #292928;
    font-size: 18px;
    font-weight: normal;
    margin: 0 auto;
    margin-bottom: 20px;
}

.documentpagemodule .modal-content {
    padding: 0;
    max-width: 605px;
    width: 605px;
    height: auto;
    background: #FFFFFF;
    border-radius: 25px;
    border: none;
    height: 408px;
}

.documentpagemodule .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 15px 28px 0 45px;
    border: none;
}

.formarea.rectification_area .imagesrow p.imagesrowp {
    height: 70px;
    padding-right: 30px;
}

.formarea.rectification_area .nomin .fileupload {
    margin-top: 8px;
}

.formarea.rectification_area label.btn.inputgrp.fileupload {
    position: relative;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    width: 156px;
    text-align: center;
    height: 48px;
    line-height: 48px;
    padding: 0;
}

.formarea.rectification_area .imagesrow .row.panrow label.btn.inputgrp.fileupload {
    width: 206px;
    font-size: 16px;
}

.formarea.imageuload .nomin .fileupload {
    margin-top: 2px;
}

.formarea.imageuload .camaraarea .fileupload img {
    position: relative;
    width: 25px;
    height: 25px;
    top: -1px;
    left: -6px;
    display: inline-block;
}

.formarea.imageuload .fileupload img {
    position: relative;
    width: 22px;
    height: 24px;
    top: 0;
    left: 0;
    display: inline-block;
}

.formarea.imageuload.rejection .inputgrp {
    text-align: center;
}

.rejectionform {
    /*
    max-height: 1740px;
    overflow: scroll;
*/
}

.formarea.rectification_area .inputgrp label.btn.inputgrp.fileupload {
    position: relative;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    width: 156px;
    text-align: center;
    height: 48px;
    line-height: 48px;
    padding: 0;
}

.rectification_row {
    margin-top: -290px;
}

.formarea.rectification_area {
    margin-top: 230px;
    max-width: 88%;
    padding-top: 80px;
    margin-left: 86px;
}

    .formarea.rectification_area img.img-fluid {
        top: -275px;
        width: 315px;
        height: 315px;
    }

.formarea.rectification_area {
}

    .formarea.rectification_area .fileupload img {
        position: relative;
        width: 25px;
        height: 27px;
        top: 0;
        left: 0;
    }

    .formarea.rectification_area .inputgrp label.btn.inputgrp.fileupload {
        position: relative;
        letter-spacing: 0px;
        color: #FFFFFF;
        opacity: 1;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        width: 156px;
        text-align: center;
        height: 48px;
        line-height: 48px;
        padding: 0;
    }

    .formarea.rectification_area .fileupload img {
        position: relative;
        width: 25px;
        height: 27px;
        top: 0;
        left: 0;
        display: inline-flex;
    }

.bankdetailsrev.bankdetailsrev2 .bankrevised {
    background: #E3E3E3;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    opacity: 1;
    padding: 66px 31px 66px 31px;
    text-align: left;
    font-size: 14px;
}

    .bankdetailsrev.bankdetailsrev2 .bankrevised p {
        font-size: 14px;
        margin-bottom: 0;
    }

.formarea.rectification_area .bankdetailsrev nav {
    margin-top: 0;
}

.rectification_row .bankdetailsrev.bankdetailsrev2 h5.gardiantext {
    text-align: center;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

.recinput.recinput5 {
    margin-bottom: 0;
}

.formarea.rectification_area .bankdetailsrev.bankdetailsrev2 {
    background: #f7f7f7;
    padding: 30px;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.bankdetailsrev.bankdetailsrev2 .recinput label.btn.inputgrp.fileupload {
    margin-bottom: 0;
}

.formarea.rectification_area .basicdetails .inputgrp {
    margin-bottom: 0;
}

.formarea.rectification_area .basicdetails {
    background: #f7f7f7;
    padding: 30px;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 29px;
    text-align: center;
}

    .formarea.rectification_area .basicdetails label.fatherba {
        margin-right: 16px;
    }

    .formarea.rectification_area .basicdetails h5.gardiantext {
        text-align: center;
        margin-bottom: 20px;
        letter-spacing: 0px;
        color: #6F6F6F;
        text-transform: capitalize;
        font-weight: 600;
        font-size: 24px;
    }

    .formarea.rectification_area .basicdetails .inputgrp label.btn.inputgrp.fileupload {
        position: relative;
        letter-spacing: 0px;
        color: #FFFFFF;
        opacity: 1;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        width: 156px;
        text-align: center;
        height: 48px;
        line-height: 48px;
        padding: 0;
    }

    .formarea.rectification_area .basicdetails label {
        margin-left: 8px;
        text-align: left;
        letter-spacing: 0px;
        color: #292928;
        font-size: 16px;
        font-weight: normal;
    }

.rectification_area h2 {
    text-align: center;
    letter-spacing: 0px;
    color: #EB1D1D;
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 25px;
}


/* width */

.formarea.imageuload.rejection.rejectionform::-webkit-scrollbar {
    width: 10px;
}


/* Track */

.formarea.imageuload.rejection.rejectionform::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
    height: 500px;
}


/* Handle */

.formarea.imageuload.rejection.rejectionform::-webkit-scrollbar-thumb {
    background: #f8f8f8;
    border-radius: 10px;
}


    /* Handle on hover */

    .formarea.imageuload.rejection.rejectionform::-webkit-scrollbar-thumb:hover {
        background: #f8f8f8;
    }

.formarea.imageuload.rejection.rejectionform::-webkit-scrollbar {
    width: 10px;
}


/* Track */

.formarea.imageuload.rejection.rejectionform::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
    height: 500px;
}


/* Handle */

.formarea.imageuload.rejection.rejectionform::-webkit-scrollbar-thumb {
    background: #f8f8f8;
    border-radius: 10px;
}


    /* Handle on hover */

    .formarea.imageuload.rejection.rejectionform::-webkit-scrollbar-thumb:hover {
        background: #f8f8f8;
    }


/*
.rejectionform2 {
    position: relative;
}

.rejectionform2::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: url(../images/rectification_icon.png) no-repeat;
    left: 40%;
    z-index: 99;
}
*/

.formarea.imageuload.rejection .basicdetails h5.gardiantext {
    text-align: center;
    margin-bottom: 20px;
}

.formarea.imageuload.rejection .inputgrp label {
    display: inline-block;
    padding-right: 15px;
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    opacity: 1;
    font-size: 16px;
}

.formarea.rectification_area .rightborder::after {
    background: #D8D8D8;
    height: 170px;
    width: 1px;
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: 10px;
}

.formarea.rectification_area .rightborder {
    position: relative;
}

.formarea.rectification_area .row.imagesrow06 {
    background: #f7f7f7;
    padding: 30px 28px;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.formarea.rectification_area .imagesrow06 .inco h5 {
    text-align: left;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

div#ModalCropImage p {
    text-align: center;
    display: block;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    color: #6F6F6F;
}

div#ModalCropImage .modal-dialog .modal-content .modal-header button.btn-close {
    outline: none !important;
    font-size: 25px;
    font-weight: bold;
    opacity: 1;
    border: none !important;
    margin: 0;
}

.formarea.rectification_area .imagesrow06 .inco2 h5 {
    text-align: left;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

.formarea.rectification_area .imagesrow06 .inco p {
    font-size: 16px;
}

.formarea.rectification_area .imagesrow06 .inco2 p {
    font-size: 16px;
}

.formarea.rectification_area .imagesrow06 .inco .select img {
    position: absolute;
    top: 14px;
    left: 15px;
    z-index: 1;
    width: 23px;
    height: 20px;
}

.formarea.rectification_area .imagesrow.nomin .col-auto.inputgrp.select img {
    top: 16px;
}

.formarea.rectification_area .imagesrow.nomin .col-auto.inputgrp.select {
    margin-bottom: 2px;
}

.formarea.rectification_area .imagesrow06 .inco2 .select img {
    position: absolute;
    top: 14px;
    left: 15px;
    z-index: 1;
    width: 23px;
    height: 20px;
}

.bankdetailsrev {
    background: #f7f7f7;
    padding: 30px;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.formarea.rectification_area .bankdetailsrev2 p {
    font-size: 14px;
}

.progressbar.nomineePage .progressbar .progree_border {
    left: 23%;
}

.formarea.rectification_area .bankdetailsrev h5.gardiantext {
    text-align: center;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

.formarea.rectification_area .digilockerbtn.nomineesubmit {
    margin-top: 0;
    text-align: right;
}

    .formarea.rectification_area .digilockerbtn.nomineesubmit button {
        float: unset;
    }

.formarea.rectification_area .nav-tabs .nav-link {
    border: none;
    color: #686868;
    font-weight: 600;
    font-size: 20px;
    margin: 0 30px;
    padding: 0 37px 4px;
    margin-bottom: 20px;
    border-bottom: 5px solid #E3E3E3;
}

.formarea.rectification_area .bankdetailsrev .nav-tabs .nav-link:active,
.formarea.rectification_area .bankdetailsrev .nav-tabs .nav-link:hover,
.formarea.rectification_area .bankdetailsrev .nav-tabs .nav-link:focus {
    color: #8b7ee5;
    font-weight: 600;
    border-bottom: 5px solid #8b7ee5 !important;
}

div#nav-tabContent .inputgrp {
    margin-bottom: 20px;
}

.bankdetailsrev2 {
    background: #f7f7f7;
    padding: 30px 34px;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.documentpagemodule .imagearea .inputpas img.img-fluid {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 15px;
    top: 60px;
}

.imagesrow.nomin {
    margin-bottom: 0;
}

.documentpagemodule .imagearea h4 {
    margin-top: -20px;
}

.bankdetailsrev .tab-content {
    padding: 0;
}

.formarea .bankdetailsrev .nav-tabs .nav-item.show .nav-link,
.formarea .bankdetailsrev .nav-tabs .nav-link.active {
    color: #8b7ee5 !important;
    background: transparent;
    font-weight: 600;
    border-bottom: 5px solid #8b7ee5 !important;
}

.formarea .bankdetailsrev .nav-tabs .nav-link:active,
.formarea .bankdetailsrev .nav-tabs .nav-link:hover,
.formarea .bankdetailsrev .nav-tabs .nav-link:focus {
    color: #8b7ee5;
    font-weight: 600;
    border-bottom: 5px solid #8b7ee5 !important;
}

.formarea.imageuload.rejection .bankdetailsrev h5.gardiantext {
    text-align: center;
    margin-bottom: 30px;
}

.revincome {
    padding-right: 50px;
}

revincome2 {
    padding-left: 30px;
}

.formarea.imageuload.rejection .bankdetailsrev2 h5.gardiantext {
    text-align: left;
}

.formarea.rectification_area .bankdetailsrev.bankdetailsrev2 input.form-control {
    font-weight: 500;
    color: #686868;
}

.bankdetailsrev.bankdetailsrev2 label.btn.inputgrp.fileupload {
    position: relative;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    width: 156px;
    text-align: center;
    height: 48px;
    line-height: 48px;
    padding: 0;
}

.bankdetailsrev label {
    padding-left: 2px;
    font-size: 16px;
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    font-weight: normal;
}

.formarea.imageuload.rejection h5.gardiantext {
    text-align: left;
    letter-spacing: 0px;
    color: #6F6F6F;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 24px;
}

.basicdetails {
    margin-bottom: 100px;
}

.recinput {
    margin-bottom: 20px;
}

.bankrevised p b {
    font-size: 14px;
    font-weight: 600;
}

.formarea.imageuload.rejection .inputgrp label.btn.inputgrp.fileupload {
    position: relative;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    width: 156px;
    text-align: center;
    height: 48px;
    line-height: 48px;
    padding: 0;
}

.imageuload.rejection h2 {
    text-align: center;
    letter-spacing: 0px;
    color: #EB1D1D;
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 25px;
}

.statusbar ul li a {
    position: relative;
}

    .statusbar ul li a::before {
        position: absolute;
        content: "";
    }

.formarea.imageuload p.imagesrowp {
    height: auto;
}

.inputgrp select {
    border-radius: 12px !important;
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    padding: 10px 14px !important;
    font-size: 14px;
    color: #6b7280;
    background: #fff;
    outline: none;
    box-shadow: none;
    height: 54px;
    width: 100%;
}
.imagesrow06 .inputgrp.select select {
    padding-left: 45px;
    width: 100%;
    padding-right: 40px;
}


.imageuload h2 {
    font-size: 32px;
    line-height: 48px;
    color: #3D3D3D;
    font-weight: 700;
    margin: 0 0 16px;
}


.formbottm button {
    width: 157px;
    float: right;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    height: 50px;
    padding-left: 0;
    background: transparent linear-gradient(113deg, #622963 0%, #8b7ee5 44%, #6F6F6F 100%) 0% 0% no-repeat padding-box;
    border-radius: 35px;
    padding-right: 0;
    cursor: pointer;
}

.brcokeragebtn button {
    padding: 5px 25px;
    font-size: 14px;
    font-weight: 600;
}

.formbottm b {
    text-align: left;
    letter-spacing: 2.7px;
    color: #8b7ee5;
    font-size: 18px;
    font-weight: bold;
    padding-top: 7px;
    display: block;
}

.formbottm select {
    border-radius: 21px;
    letter-spacing: 2.52px;
    color: #292928;
    text-transform: uppercase;
    border: none;
    padding: 2px 20px;
    font-weight: 600;
    font-size: 12px;
    text-align: left;
    display: block;
    position: relative;
    appearance: none;
    outline: none !important;
    width: 151px;
    height: 35px;
    background: url(../../images/quickyc/appearence_bg.svg) #f8f8f8 no-repeat;
    background-position: right 6% bottom 20%;
    margin-top: 8px;
}

.bank_details {
    background: url(../../images/quickyc/bankdetails_bg.png) no-repeat;
    padding: 40px;
    background-size: 93% 100%;
}

.classsbmit button {
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-top: 32px;
    font-weight: 500;
    padding: 0 25px;
    height: 45px;
    font-size: 18px;
}

.pay {
    height: 42px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #8b7ee5;
    border-radius: 25px;
    width: 111px;
}

.skip {
    width: 111px;
    height: 42px;
    background: #8b7ee5 0% 0% no-repeat padding-box;
    border-radius: 25px;
    color: #fff;
    border: none;
}

.imagearea {
    margin-top: 40px;
}

    .imagearea img {
        margin: 0 auto;
        position: relative;
        text-align: left;
        left: 0;
        top: 22px;
    }

    .imagearea h4 {
        text-align: center;
        letter-spacing: 0px;
        color: #23B502;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .imagearea p {
        text-align: center;
        letter-spacing: 0px;
        color: #292928;
        font-size: 18px;
        font-weight: normal;
    }

.succestextarea {
    background: #f8f8f8 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 5px #6868687d;
    border-radius: 20px;
    opacity: 1;
    margin: 100px 0;
    padding: 40px 44px;
}

.brokeragelist {
    max-width: 350px;
}

ul.pricing-content {
    padding-left: 15px;
    min-width: 278px;
}

.brcokeragebtn button.selectedit {
    background: none;
    border: none;
    color: #8b7ee5;
    font-weight: bold;
    font-size: 14px;
    padding-left: 50px;
}

.tab-content .brcokeragebtn button#btnEdit {
    width: 125px;
    padding: 5px 25px;
    font-size: 14px;
    font-weight: 600;
}

.tab-content .brcokeragebtn button#btnEditsilverDemat {
    width: 125px;
    height: 45px;
    font-size: 18px;
    line-height: 45px;
    padding: 0;
}

.brcokeragebtn button#btnEdit img {
    width: 20px;
    height: 20px;
    position: relative;
    top: 0;
    left: 0;
    display: inline-flex;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem 2rem;
    padding-top: 0;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
    height: 5px;
    cursor: pointer;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #f8f8f8;
    border-radius: 10px;
    height: 5px;
    cursor: pointer;
}


    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: #8b7ee5;
        cursor: pointer;
    }

.listatt .tabscontent_area .loader .loader--dot {
    left: 12%;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
    height: 500px;
    cursor: pointer;
}



/* Handle */

::-webkit-scrollbar-thumb {
    background: #f8f8f8;
    border-radius: 10px;
    cursor: pointer;
}


    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: #8b7ee5;
        cursor: pointer;
    }

.brcokeragebtn button#btnEditsilverDemat img {
    width: 20px;
    height: 20px;
    position: relative;
    top: 0;
    left: 0;
    display: inline-flex;
}

.modal.show .modal-dialog {
    top: 0;
    margin: 0 auto;
    max-width: 980px;
    /* max-width: max-content; */
    /* overflow: scroll; */
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 1;
    font-weight: bold;
}

.pricingTable {
    padding: 10px 10px 10px;
    margin: 0 6px;
    text-align: center;
    z-index: 1;
}

.pricing-content li span {
    float: right;
    color: #686868;
    text-decoration: none;
}

.pricingTable .pricing-content li {
    font-size: 12px;
    color: #686868;
    line-height: 10px;
    text-align: left;
    padding: 9px 5px;
    list-style: none;
}

a.pricingTable-signup {
    height: 28px;
    background: #8b7ee5 0% 0% no-repeat padding-box;
    border-radius: 25px;
    opacity: 1;
    width: 100%;
    color: #fff;
    display: block;
    line-height: 28px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.pricingTable .pricing-content li span {
    padding-left: 15px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: #8b7ee5ba;
}

.pricingTable h3 {
    background: #e0def7 0% 0% no-repeat padding-box;
    box-shadow: 0px 4px 6px #00000029;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0px;
    color: #8b7ee5;
    height: 23px;
    line-height: 23px;
    font-weight: bold;
}

.clientphototext img {
    text-align: left;
    position: relative;
    left: -40px;
    margin-top: -35px;
}

.clientphototext h4 {
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    font-size: 24px;
    font-weight: 600;
    margin-top: -25px;
}

.clientphototext span {
    font-size: 18px;
    font-weight: 600;
    color: #8b7ee5;
    margin-top: 5px;
    display: block;
}

.clientphototext p {
    font-size: 18px;
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    font-weight: normal;
}

.clientphototext button {
    width: 224px;
    height: 55px;
    background: #8b7ee5 no-repeat;
    border-radius: 9px;
    text-align: center;
    letter-spacing: 5.4px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    margin-top: 16px;
}

.demo3 .brokeragelist {
    display: inline-block;
}

.modal-content {
    /*    width: max-content;
    height: auto;
    overflow: scroll;
*/
}


/*
div#clientPhoto .modal-content {
    max-width: 786px;
    width: max-content;
    height: auto;
    padding: 30px 60px;
}
*/

.modal-title {
    margin-bottom: 0;
    text-align: left;
    letter-spacing: 0px;
    color: #000;
    font-size: 17px;
    font-weight: 600;
    padding-top: 12px;
    padding-left: 30px;
}


/*
.formbottm select::before {
    position: relative;
    content: "";
    right: 0;
    top: 0;
    background: url(../images/appearence_bg.svg) no-repeat;
    display: block;
    width: 19px;
    height: 15px;
}
*/

button#btnSelectBrokeragePlan {
    padding: 5px 25px;
    font-size: 16px;
    font-weight: 600;
}

.formbottm {
    max-width: 88% !important;
    margin-left: 80px;
}

.listcontent3 {
    background: #686868;
    padding: 10px 110px;
    border-radius: 5px;
    font-size: 15px;
    position: relative;
    margin-bottom: 35px;
    margin-left: 30px;
    margin-right: 30px;
    height: 65px;
    line-height: 65px;
    padding-top: 0;
}

.modal-header {
    border-bottom: none;
    padding: 0.5rem 0;
}

.btn-danger:hover {
    color: #fff;
    background-color: #8b7ee5;
    border-color: #8b7ee5;
}

div#myModal .modal-dialog .modal-content .modal-body button.btn.btn-danger.bx-sh {
    width: 150px;
}

.btn-check:focus + .btn-danger, .btn-danger:focus {
    color: #fff;
    background-color: #8b7ee5;
    border-color: #8b7ee5;
    box-shadow: 0 0 0 0.25rem rgba(225,83,97,.5);
}

.btn-check:active + .btn-danger, .btn-check:checked + .btn-danger, .btn-danger.active, .btn-danger:active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #8b7ee5;
    border-color: #8b7ee5;
}

.listcontent2 p {
    margin-bottom: 0;
}

div#myModal .modal-dialog .modal-content .modal-body .col-md-12.pad-0.flx .row.digi-info p span {
    font-weight: normal;
    color: #8b7ee5;
}

.listcontent3 p {
    margin-bottom: 0;
    color: #fff;
}

div#myModal .modal-dialog .modal-content .modal-body .col-md-12.pad-0.flx {
    margin-bottom: 20px;
}

.addnomi i {
    color: #6F6F6F;
}

.brcokeragebtn {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.pagecontent {
    margin-top: 60px;
}

.listarea ul {
    list-style: none;
    padding-left: 17px;
}
.listarea ul li {
    padding: 0;
    font-size: 14px;
    position: relative;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 5px;
    list-style: disc;
    color: #6D6D6D;
}

.listarea ul li a {
    text-transform: uppercase;
    color: #8b7ee5;
    text-decoration: underline;
    font-weight: bold;
}

      
a.navbar-brand {
    font-size: 28px;
    font-family: Poppins;
    font-weight: normal;
}

    a.navbar-brand b {
        font-weight: 600;
    }

.modal.clientphotomodel {
}

.clientphotomodel .modal-dialogs {
    top: 20%;
    margin: 0 auto;
    width: 920px;
    height: 559px;
    background: #fff;
}

.clientphotomodel {
}

    .clientphotomodel .modal-body {
        padding: 0;
    }

.cliebt {
}

.clickphotoarea {
    width: 414px;
    height: 385px;
    background: #292928;
    border-radius: 10px;
}

.clientphotomodel .modal-content {
    width: 920px;
    height: 540px;
    padding: 50px 63px;
    border: none;
    margin: 0;
    position: absolute;
    border-radius: 30px;
    background-size: cover;
}

.listcontent {
    background: #f8f8f8;
    border-radius: 10px;
    font-size: 15px;
    position: relative;
    padding: 25px 0 15px;
}

    .listcontent p span {
        font-weight: 500;
        text-align: right;
        float: right;
        padding-right: 65px;
    }

    .listcontent input {
        position: relative;
        left: -999em;
    }

    .listcontent.indexpage input {
        position: absolute;
        left: -999em;
    }

    .listcontent p {
        padding-left: 25px;
        font-weight: 500;
    }

    .listcontent input.form-check-input {
        background: #8b7ee5;
        border-radius: 4px;
        height: 20px;
        width: 20px;
    }

.inputpas button.pay {
    position: relative;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    width: 100px;
    text-align: center;
    height: 48px;
    line-height: 45px;
    padding: 0;
    background: #8b7ee5;
}

.inputpas .toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -25px;
}

.emailid.inputgrp input#panNo {
    margin-bottom: 0;
}

.formbottomtext {
    font-size: 14px;
    margin: 20px 0 25px 0;
    text-align: center;
}

.imagearea2 {
    margin-top: 0;
    padding: 0 60px;
}

#button {
    display: block;
    margin: 20px auto;
    padding: 10px 30px;
    background-color: #eee;
    border: solid #ccc 1px;
    cursor: pointer;
}

.ladertext {
    color: #fff;
    position: absolute;
    top: 55%;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: #8b7ee5;
    opacity: 0.8;
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spinner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

div#mobileno_area {
    /*    margin-top: -60px;*/
}


/*

.form-check-input:checked[type=checkbox] {
    background: url(../images/check_icon.png) no-repeat;
}
*/

.form-check-input:checked {
    border: none;
}

.formarea {
    border-radius: 15px;
    max-width: 490px;
    margin: 0 auto;
    padding: 0;
}

.inputgrp label input[type="checkbox"] {
}
l
.inputgrp h4 {
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    font-size: 24px;
    font-weight: 500;
    font-family: "Poppins";
    padding-left: 15px;
}

div#Nominee_3Adress span.bigcheck label.bigcheck.gardiantext2 {
    margin: 0;
    margin-top: -25px;
    margin-left: -25px;
    padding: 0;
    float: left;
    display: flex;
    padding-right: 10px;
}
/*
.inputgrp select {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 25px;
    text-align: left;
    letter-spacing: 0px;
    color: #6F6F6F;
    font-size: 14px;
    font-weight: bold;
    height: 48px;
    border: 1px solid #ced4da;
    width: 100%;
    padding-left: 20px;
    outline: none !important;
    position: relative;
    appearance: none;
    background: url(../../images/quickyc/appearence_bg2.svg) 97% #FFFFFF no-repeat;
    padding-right: 40px;
    cursor: pointer;
}*/
.form-control::placeholder {
    color: #574949;
}

.form-control::placeholder {
    color: #574949;
}

.formarea.rectification_area hr:not([size]) {
    height: 5px;
    width: 98%;
    margin-left: 15px;
}

.col-auto.inputgrp.select {
    position: relative;
}

.formarea.imageuload .col-auto.inputgrp.select img {
    position: absolute;
    top: 16px;
    left: 15px;
    z-index: 1;
    width: 20px;
    height: 17px;
}

.form-control {
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    padding: 10px 14px !important;
    font-size: 14px;
    color: #6b7280;
    background: #fff;
    outline: none;
    box-shadow: none;
    height: 54px;
    text-align: left;
}

div#mobileno_area p {
    font-size: 16px;
    padding-left: 0;
    margin-bottom: 20px;
    font-weight: 500;
    color: #6D6D6D;
}
.title-label {
    font-size: 14px;
    color: #3D3D3D;
    font-weight: 600;
    margin-bottom: 12px;
}
.title-label span {
    color: #6D6D6D;
}

div#emailid_area p {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #6D6D6D;
    line-height: 24px;
}

.formarea h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3d3d3d;
    line-height: 33px;
}

.mobileno {
    position: relative;
    display: flex;
    margin-bottom: 0;
}

    .mobileno label {
        position: absolute;
        font-weight: normal;
        color: #8b7ee5;
        top: 18px;
        left: 10px;
        font-size: 16px;
    }

div#emailid_area p.textinput.textinput2 {
    margin-bottom: 32px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px !important;
    margin-top: 15px;
    height: 56px;
    padding: 16px !important;
}
.btn-submit:hover {
    color: #fff;
}

.statusbar .ApplicationStatus li:nth-child(3) {
}

    .statusbar .ApplicationStatus li:nth-child(3)::before {
        position: absolute;
        content: "";
        background: #f8f8f8;
        height: 10px;
        width: 365px;
        top: 118px;
        left: 25px;
        box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
    }

    .statusbar .ApplicationStatus li:nth-child(3):after {
        position: absolute;
        content: "";
        background: url(../../images/quickyc/status_icon.svg) no-repeat;
        height: 50px;
        width: 50px;
        top: 100px;
        left: 80px;
    }

.statusbar .ApplicationStatus li:nth-child(4):before {
    position: absolute;
    content: "";
    background: #f8f8f8;
    height: 10px;
    width: 325px;
    top: 118px;
    left: 95px;
    box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
}

.statusbar .ApplicationStatus li:nth-child(4):after {
    position: absolute;
    content: "";
    background: url(../../images/quickyc/status_icon.svg) no-repeat;
    height: 50px;
    width: 50px;
    top: 100px;
    left: 80px;
}

.emailid input {
    width: 100%;
    height: 60px;
    font-size: 16px;
    border-radius: 12px;
}

.emailid {
    position: relative;
    display: flex;
    margin-bottom: 0;
}

    .emailid label {
        position: absolute;
        font-weight: bold;
        color: #8b7ee5;
        top: 14px;
        left: 10px;
        font-size: 16px;
    }

.bank_details3 ul {
    position: absolute;
    padding-left: 0;
    list-style: none;
}

    .bank_details3 ul li {
        position: relative;
        left: -30px;
        height: 80px;
    }

        .bank_details3 ul li:first-child::before {
            content: "";
            background: url(../../images/quickyc/bankpageprogrees_icon.svg) no-repeat;
            width: 22px;
            height: 22px;
            position: relative;
            display: block;
            border-radius: 50px;
            left: -8px;
            top: 12px;
        }

        .bank_details3 ul li:first-child::after {
            content: "";
            width: 4px;
            height: 44px;
            position: relative;
            display: block;
            border-radius: 50px;
            left: 0;
            top: 5px;
            background: #6F6F6F;
        }

        .bank_details3 ul li::before {
            content: "";
            width: 15px;
            height: 15px;
            background: #E3E3E3;
            position: relative;
            display: block;
            border-radius: 50px;
            left: -5px;
            top: 0;
        }


/*
.bank_details3 ul li a {
    width: 15px;
    height: 15px;
    background: #E3E3E3 0% 0% no-repeat padding-box;
}
*/

.kra input {
    padding-left: 42px;
    width: 389px;
    height: 48px;
    box-shadow: none;
}

.kra {
    position: relative;
    display: flex;
    margin-bottom: 0;
    width: 350px;
    float: right;
    margin-right: 0;
    margin-top: 4px;
}

    .kra label {
        position: absolute;
        font-weight: bold;
        color: #8b7ee5;
        top: 14px;
        left: 10px;
        font-size: 16px;
    }

.formarea {
    position: relative;
}
/*
.openarea {
    margin-top: 35px;
}*/

.testsarea {
    padding-right: 70px;
}

/*.progressbar ul li:first-child a img {
    display: block;
    margin: 0;
    position: relative;
}*/

.checkbox-area .nominee_form label:active,
.nominee_form label:hover {
    border: 2px solid #6F6F6F;
}

.nominee_form {
    margin-top: 170px;
    max-width: 100%;
    position: relative;
    padding: 90px 40px 40px 40px;
}

    .nominee_form .accordion-body {
        padding: 15px 0 0 0;
    }

        .nominee_form .accordion-body .inputgrp {
            margin-bottom: 22px;
        }

.btn {
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 18px;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background: #8b7ee5;
}

.btn-primary {
    color: #fff;
    background-color: #8b7ee5;
    border-color: #8b7ee5;
}

    .btn-check:focus + .btn-primary,
    .btn-primary:focus {
        color: #fff;
        background-color: #8b7ee5;
        border-color: #8b7ee5;
        box-shadow: none;
    }

    .btn-check:active + .btn-primary:focus,
    .btn-check:checked + .btn-primary:focus,
    .btn-primary.active:focus,
    .btn-primary:active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: none;
        outline: none !important;
    }

    .btn-check:active + .btn-primary,
    .btn-check:checked + .btn-primary,
    .btn-primary.active,
    .btn-primary:active,
    .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #8b7ee5;
        border-color: #8b7ee5;
    }

    .btn-primary:hover {
        color: #fff;
        background-color: #8b7ee5;
        border-color: #8b7ee5;
    }


.addnomi {
    margin-bottom: 0px;
}

div#Add_Nominee .accordian_area {
    margin-top: 20px;
}

.mobileno input {
    padding-left: 42px !important;
    width: 100%;
    height: 60px;
    font-size: 16px;
    border-radius: 12px;
    text-align: left;
}

.ui-draggable,
.ui-droppable {
    background-position: top;
}

.formarea .accordion button {
    position: relative;
}

    .formarea .accordion button img {
        position: relative !important;
        width: 25px !important;
        display: inline-flex;
        height: 25px !important;
        top: 0;
        left: 0;
    }

.accordion-header button {
    display: inline-block;
}

    .accordion-header button.button1 {
        width: 100%;
    }

.statusbar ul li a span {
    text-align: center;
    letter-spacing: 0px;
    color: #686868;
    text-transform: capitalize;
    display: block;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

    .statusbar ul li a span::before {
        content: "";
        position: absolute;
        left: 100px;
        top: 25px;
        height: 50px;
        width: 1px;
        background: transparent;
        border: 1px dashed;
        border-color: #bdbaba;
    }

.statusbar ul li:nth-child(2) a span::before {
    content: "";
    position: absolute;
    left: 105px;
    top: -74px;
    height: 50px;
    width: 1px;
    background: transparent;
    border: 1px dashed;
    border-color: #bdbaba;
}

.statusbar ul li:nth-child(3) a span::before {
    content: "";
    position: absolute;
    left: 118px;
    top: 28px;
    height: 50px;
    width: 1px;
    background: transparent;
    border: 1px dashed;
    border-color: #bdbaba;
}

.statusbar ul li:nth-child(4) a span::before {
    content: "";
    position: absolute;
    left: 135px;
    top: -74px;
    height: 50px;
    width: 1px;
    background: transparent;
    border: 1px dashed;
    border-color: #bdbaba;
}
.accordion-item {
    background-color: transparent;
    padding: 20px;
    margin: 0;
    border: 1px solid #C9CBFC;
    margin-bottom: 20px;
    border-radius: 16px !important;
}

.formarea.nominee_form .accordian_area .accordion-item button img {
    height: auto !important;
    width: auto !important;
    top: 0;
}

.formarea.nominee_form .col-auto.nomineedate.inputgrp img.img-fluid {
    top: 48px;
    width: auto;
}

.accordion-header button.button2 {
    font-size: 18px;
    height: 46px;
    background: #6F6F6F no-repeat;
    border-radius: 5px;
    line-height: 47px;
    color: #fff;
    outline: none;
    border: none;
    margin-top: 0;
    display: inline-block;
    font-weight: 600;
    width: 127px;
    text-align: left;
}

.formarea .accordion button:first-child {
}

.formarea .accordion button:last-child {
}

.accordion-button::after {
    background: url(../../images/quickyc/arrownom.svg) no-repeat;
    width: 28px;
    height: 28px;
    margin-left: auto;
    float: right;
}

.accordion-button:not(.collapse) {
    padding: 10px 18px;
    height: 45px;
    border-radius: 5px;
    background: #c6c6c6;
    color: #000;
}

.accordion-button:not(.collapsed)::after {
    background: url(../../images/quickyc/arrownom2.svg) no-repeat;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    float: right;
    width: 17px;
    height: 17px;
}

.accordion-button {
    height: 45px;
    background: #c6c6c6;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0px;
    color: #000000;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 15px;
}

input.form-control::placeholder {
    font-weight: 500;
    color: #574949;
}
.accordion-button:not(.collapsed) {
    color: #3D3D3F;
    background-color: #8b7ee5;
}

.accordian_area {
    margin-bottom: 30px;
}

.form-control:focus {
    outline: 0;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 12px;
    letter-spacing: 0px;
    border: 1px solid #ced4da;
    color: #574949;
}

.formarea .emailid.inputgrp img {
    width: 21px;
    height: 17px;
    position: absolute;
    top: 15px;
    left: 18px;
}

.emailid.inputgrp.search a img {
    width: 44px !important;
    height: 42px;
    top: 4px;
    right: 6px;
    position: absolute;
    left: unset;
}

.btn {
    background: #8b7ee5;
    color: #fff;
    border-radius: 10px;
}
.btn:hover {
    color: #fff;
}
.bank_details2 {
    margin-bottom: 20px;
}

.bank_details3 {
    padding-left: 30px;
    position: relative;
    margin-top: 30px;
}

    .bank_details3::before {
      /*  content: "";*/
       /* position: absolute;*/
        top: 18px;
        left: 0;
        width: 4px;
        height: 144px;
        /*    transform: matrix(0, 1, -1, 0, 0, 0);*/
        background: #E3E3E3;
        box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
    }

.mobile {
}

.formarea p {
    font-size: 18px;
}

/*.mobileno .btn {
    position: absolute;
    color: #fff;
    text-align: center;
    padding: 5px;
    right: 25px;
    width: 377px;
    height: 45px;
    top: 75px;
    font-size: 18px;
    font-weight: normal;
}*/


.mobileno {
    position: relative;
}

    .mobileno .btn {
        position: absolute;
        right: 15px;
        left: 15px; /* makes it responsive */
        width: auto; /* remove fixed width */
        height: 45px;
        top: 75px;
        font-size: 18px;
        text-align: center;
    }

/* Tablet */
@media (max-width: 991px) {
    .mobileno .btn {
        top: 70px;
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mobileno .btn {
        position: static; /* remove absolute */
        width: 100%;
        margin-top: 15px;
    }
}



/*.emailid .btn {
    position: absolute;
    color: #fff;
    text-align: left;
    padding: 5px;
    right: 25px;
    width: 106px;
    height: 31px;
    top: 9px;
    font-weight: normal;
    font-size: 13px;
    text-align: center;
}*/

.emailid .btn {
    position: absolute;
    color: #fff;
    text-align: left;
    padding: 8px;
    right: 0px;
    /* width: 106px; */
    height: 31px;
    top: 88px;
    font-weight: normal;
    font-size: 15px;
    text-align: center;
}

ul.nav.navbar-nav li {
    font-size: 18px;
}
ul.nav.navbar-nav li a:hover{
    color: #000 !important;
}

.kra .btn {
    position: absolute;
    color: #fff;
    text-align: center;
    padding: 5px;
    right: 5px;
    width: 120px;
    height: 40px;
    top: 4px;
    font-weight: 600;
}

.kra .form-control:focus {
    color: #9a9a9a;
    background-color: #fff;
    border: none;
    outline: 0;
    box-shadow: none;
}

#otp_area {
    display: none;
    margin-bottom: 0;
}

div#otp_area p {
    font-size: 16px;
    padding-left: 0;
    margin-bottom: 20px;
    font-weight: normal;
    color: #6D6D6D;
}

input#btnResend {
    color: #8b7ee5;
    font-weight: 600;
    padding-left: 0;
}

.offcanvas-body ul.navbar-nav li a img {
    width: 80px;
    height: 80px;
}

.otherdetalisform {
    margin-top: 0px;
}

footer {
    position: fixed;
    left: 0;
    right: 0px;
    background: #fff;
    bottom: 0px;
    border-top: 1px solid #fff;
    padding: 6px 0px;
    z-index: 9999;
    height: 62px;
}

    footer p {
        color: #000;
        padding-top: 10px;
    }

        footer p a {
            color: #000;
            text-decoration: none;
        }

.menubar {
    width: 100%;
}

.emailid.inputgrp img {
    width: 21px !important;
    height: 17px;
    position: absolute;
    top: 15px;
    left: 12px;
}

.emailid.bank01.inputgrp img {
    width: 24px !important;
    height: 17px;
}

/*.progressbar ul li:nth-child(1) a {
    color: #8b7ee5;
    font-weight: 600;
}*/

.emailid.inputgrp img.right {
    width: 25px !important;
    height: 25px;
    float: right;
    text-align: right;
    position: absolute;
    right: 31px;
    left: unset;
    top: 12px;
}

.kra.inputgrp img {
    width: 21px !important;
    height: 17px;
    position: absolute;
    top: 15px;
    left: 12px;
}

    .kra.inputgrp img.right {
        width: 25px !important;
        height: 25px;
        float: right;
        text-align: right;
        position: absolute;
        right: 9px;
        left: unset;
        top: 12px;
    }

.nomineedate.inputgrp {
    position: relative;
}

hr {
    background: #E3E3E3;
    opacity: 1;
}

.gardiantext2 {
    text-align: left;
    font: normal normal normal 18px/26px Poppins;
    letter-spacing: 0px;
    color: #292928;
    font-size: 18px;
    font-weight: 500;
}

h3.gardiantext {
    text-align: left;
    letter-spacing: 0;
    color: #686868;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 5px;
}

    h3.gardiantext b {
        text-align: right;
        letter-spacing: 0px;
        color: #FF0000;
        font-size: 16px;
        font-weight: 600;
        float: right;
    }

.addnominee .inputgrp.persentagearea input {
    background: #dbd6fc 0% 0% no-repeat padding-box;
    border: 1px solid #d5c5ec;
    border-radius: 25px;
    text-align: left;
    letter-spacing: 0px;
    color: #6F6F6F;
    font-weight: 500;
}

    .addnominee .inputgrp.persentagearea input::placeholder {
        color: #574949;
    }

.formarea .nomineedate.inputgrp img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    left: unset;
    right: 21px;
    display: inline-block;
}

.nomineedate.inputgrp img.right {
    width: 25px;
    height: 25px;
    float: right;
    text-align: right;
    position: absolute;
    right: 9px;
    left: unset;
    top: 12px;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: #8b7ee5;
    height: 71px;
}

.mobileno p {
}

footer p a:hover {
    color: #000;
}

.noatearea p {
    font-size: 14px;
    padding-left: 40px;
}

.inputgrp img {
}
.sweet-alert p {
    color: #000 !important;
    font-size: 18px !important;
    font-weight: normal !important;
}

.sweet-alert button {
   /* background: #8b7ee5 !important;*/
}

div#mobileOtp input {
    background: #F8F7FB 0% 0% no-repeat padding-box;
    opacity: 1;
    width: 52px;
    height: 51px;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    font-weight: bold;
    color: #574949;
    padding-left: 0;
}

span#customerEmail {
    font-weight: bold;
    color: #8b7ee5;
}

.footer_icon {
    float: right;
    padding-top: 10px;
}

    .footer_icon ul {
        list-style: none;
    }

        .footer_icon ul li {
            display: inline-flex;
            padding: 0 5px;
        }

div#otp_area a {
    text-transform: uppercase;
    color: #6F6F6F;
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 0;
    border-bottom: 1px solid #6F6F6F;
}

.twobtn {
    margin-top: 12px;
    display: flex;
    color: #707070;
    font-size: 14px;
    align-items: center;
    justify-content: space-between;
}

.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.twobtn input {
    background: transparent;
    color: #000;
    font-size: 14px;
}

    .twobtn input.btn:hover {
        color: #000;
    }

input#mobileOtp:focus-visible {
    border: none;
    outline: none;
}

form input {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
}

.mobileOtp input:focus-visible {
    border: none;
    outline: none;
}

.mobileOtp {
    position: relative;
    margin: 30px 0 0 0;
    display: flex;
    gap: 12px;
}

    .mobileOtp .control-label {
        display: block;
        margin: 40px 0 0 0;
        font-weight: 900;
    }

    .mobileOtp input[type=text] {
        border: 2px solid #e1e1e1;
        width: 46px;
        height: 46px;
        padding: 10px;
        text-align: center;
        display: inline-block;
        box-sizing: border-box;
        font-weight: 600;
    }

.emailOtp input:focus-visible {
    border: none;
    outline: none;
}

.emailOtp {
    position: relative;
    margin: 30px 0 0 0;
    display: flex;
    gap: 12px;
}

    .emailOtp .control-label {
        display: block;
        margin: 40px 0 0 0;
        font-weight: 900;
    }

    .emailOtp input[type=text] {
        border: 2px solid #e1e1e1;
        width: 46px;
        height: 46px;
        padding: 10px;
        text-align: center;
        display: inline-block;
        box-sizing: border-box;
    }

div#emailid_area p.textinput {
    font-size: 14px !important;
    margin-bottom: 10px;
    padding-top: 5px;
    font-weight: normal;
    color: #888888;
}

div#emailOtp input {
    background: #F8F7FB 0% 0% no-repeat padding-box;
    opacity: 1;
    width: 52px;
    height: 51px;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    font-weight: bold;
    color: #574949;
    padding-left: 0;
}

.progressbar ul {
    list-style: none;
    margin-top: 0;
    position: relative;
    padding-left: 0;
}

/*.progressbar ul::before {
    content: "";
    width: 620px;
    height: 14px;
    background: transparent linear-gradient(113deg, #8b7ee5 0%, #8b7ee5 44%, #6F6F6F 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 19px;
    left: 2%;
    z-index: -2;
}*/

.progressbar ul li {
    display: flex;
    align-items: center;
    margin: 0 34px;
    position: relative;
    padding-right: 15px;
}
.progressbar ul li:after {
    content: "";
    position: absolute;
    left: 100%;
    width: 50px;
    height: 1px;
    background-color: #8978ED;
}
.progressbar ul li:last-child:after {
    display: none;
}
.progressbar ul li.active:after {
    background-color: #1B9E5C;
}
.progressbar ul li a .status-check {
    position: relative;
}
.progressbar ul li a .status-check span{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.progressbar ul li.active a .status-check span {
    opacity: 1;
}

.formarea.nominee_form {
    margin-top: 20px;
    max-width: 100%;
    padding: 0 32px;
}

.nominee_form span.bigcheck-target {
    font-family: FontAwesome;
    /* use an icon font for the checkbox */
}

.nominee_form input[type='checkbox'].bigcheck {
    position: relative;
    left: -999em;
    /* hide the real checkbox */
}


label.bigcheck:focus-visible,
label.bigcheck:focus,
label.bigcheck:hover{
    border: none !important;
}


.addnominee button {
    background: transparent !important;
    color: #8978ED;
    font-weight: 600;
    font-size: 16px;
    margin: 15px 0;
}

.addnominee button i {
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
    font-weight: bold;
}

label.bigcheck.gardiantext2 {
    border: none;
    width: auto;
    display: inline-flex;
    font-size: 18px;
    text-align: left;
    letter-spacing: 0px;
    color: #686868;
    height: 40px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 23px;
    line-height: 40px;
    justify-content: center;
}

/*.nominee_form input[type='checkbox'].bigcheck.gardiantext2:checked + span.bigcheck-target:after {
    content: "";*/
    /* fontawesome checked box (fa-check-square-o) */
    /*background: url(../../images/quickyc/nominneedrees_icon.svg) no-repeat;
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-block;
    top: 4px;
    margin-right: 6px;
}*/

/*.nominee_form input[type='checkbox'].bigcheck.gardiantext2 + span.bigcheck-target:after {
    content: "";
    background: url(../../images/quickyc/nominneedrees_icon2.svg) no-repeat;
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-block;
    top: 4px;
    margin-right: 6px;
}*/

/*.indexpage input[type='checkbox'].bigcheck:checked + span.bigcheck-target:after {
    content: "";
    background: url(../../images/quickyc/nominneedrees_icon.svg) no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    display: inline-block;*/
    /* top: 15px; */
    /*margin-right: 6px;*/
    /* margin-left: -24px; */
/*}*/



.indexpage span b {
    font-size: 18px;
    font-weight: 500;
    color: #292928;
}

.indexpage span {
    font-size: 18px;
}

/*.indexpage input[type='checkbox'].bigcheck + span.bigcheck-target:after {
    content: "";
    background: url(../../images/quickyc/nominneedrees_icon2.svg) no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    display: inline-block;
    top: 28px;
    margin-right: 0px;
    left: 25px;
}*/

.listcontent.indexpage {
    padding: 26px 32px 26px 60px;
}

.payment_form span.bigcheck-target {
    font-family: FontAwesome;
}

/*.payment_form input[type='checkbox'].bigcheck {
    position: relative;
    left: -999em;
    width: auto;
}*/

 /*   .payment_form input[type='checkbox'].bigcheck + span.bigcheck-target:after {
        content: "";
        background: url(../../images/quickyc/circle-regular.svg) no-repeat;
        width: 20px;
        height: 20px;
        position: relative;
        display: inline-block;
        top: 4px;
        color: #686868;
    }*/

.accordion-item:first-of-type .accordion-button {
    border-radius: 5px;
}

/*.payment_form input[type='checkbox'].bigcheck:checked + span.bigcheck-target:after {
    content: "";*/
    /* fontawesome checked box (fa-check-square-o) */
    /*background: url(../../images/quickyc/circle-check-regular.svg) no-repeat;
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    top: 4px;
}*/

.digilockerbtn.nomineesubmit {
    margin-top: 0;
}

    .digilockerbtn.nomineesubmit button {
        width: 171px;
        height: 48px;
        float: right;
        font-size: 16px;
        font-weight: 600;
        line-height: 44px;
        padding-top: 0;
    }

.nominee_form .accordion-body hr:not([size]) {
    height: 5px;
    width: 98%;
    margin: 0 0 21px 12px;
}

.addresssame .updated_area span.bigcheck label.bigcheck {
    position: relative;
    top: -20px;
    background: #fff;
    width: 30%;
}

.addresssame span.bigcheck {
    margin-bottom: 12px;
}


/* ==== optional - colors and padding to make it look nice === */

div#Demat_Checkbox button.btn.btn-primary.selectedit {
    cursor: auto;
}


.formarea.nominee_form h2 {
    letter-spacing: 0px;
    color: #3D3D3D;
    font-weight: 600;
    font-size: 22px !important;
    text-transform: uppercase;
}

.checkbox-area {
    display: inline-flex;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.investment {
}

.othernoarea {
    display: inline-flex;
}


.noatearea {
    margin-top: 25px;
    position: relative;
}

    .noatearea img {
        position: absolute;
        height: 31px;
        width: 31px;
    }

.digilockerbtn {
    position: relative;
    margin-top: 20px;
}

    .digilockerbtn.banksubmit {
        float: right;
        margin-top: 0;
    }

    /*.digilockerbtn button img {
        position: relative;
        width: 40px;
    }*/

    .digilockerbtn button {
        height: 50px;
        padding-left: 14px;
       /* background: transparent linear-gradient(113deg, #574949 0%, #8b7ee5 44%, #6F6F6F 100%) 0% 0% no-repeat padding-box;*/
        border-radius: 10px;
        padding-right: 40px;
        cursor: pointer;
    }


@media (max-width: 768px) {
    #btnProcced {
        inline-size: 100%;
        width: 100%; /* fallback */
        height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #btnProcced {
        inline-size: 100%;
        width: 100%; /* fallback */
        height: 50px;
        font-size: 14px;
    }
}

input#MICRCode {
    color: #574949 !important; 
}
.kraarea {
    background: transparent linear-gradient(113deg, #574949 0%, #8b7ee5 44%, #6F6F6F 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    opacity: 1;
    height: 95px;
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    margin-bottom: 40px;
    width: 100%;
    cursor: pointer;
}

.othersubit {
    text-align: right;
    margin-top: 0;
}

.emailid.bank01.inputgrp img.right {
    right: 10px;
}

.closearea {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.checkboxarea span.bigcheck.nooarea {
    padding-left: 20px;
}

.btnequity img {
    box-shadow: inset 1px 2px 3px #00000038, 3px 3px 4px #00000012;
    border: 2px solid #6F6F6F;
    border-radius: 100px;
    opacity: 1;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-left: 9px;
}

.btnera {
    margin: 0 0 30px 0;
    margin-left: 0;
}

    .btnera button {
        margin-right: 15px;
    }

.investment label.bigcheck strong {
    position: absolute;
    height: 50px;
    left: 50px;
    font-weight: 500;
    line-height: normal;
}

.investment label.bigcheck {
    position: relative;
    width: 95%;
    height: 85px;
}

.btnequity {
    background: #FFFFFF;
    border: 2px solid #6F6F6F;
    border-radius: 23px;
    opacity: 1;
    text-align: left;
    letter-spacing: 0px;
    color: #686868;
    width: max-content;
    height: 40px;
    font-size: 18px;
}

.btnequity2 {
    background: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    text-align: left;
    letter-spacing: 0px;
    color: #686868;
    width: 100%;
    height: 40px;
    font-size: 18px;
}

.closearea img {
    width: 55px;
    height: 55px;
    position: absolute;
}

.closearea p {
    color: #fff;
    padding-left: 65px;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}

div#mobileno_area p.textinput {
    font-size: 14px !important;
    margin-bottom: 10px;
    padding-top: 5px;
    font-weight: normal;
    color: #707070;
}

.formarea .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active .form-check-input[type=checkbox] {
    background-color: #6F6F6F;
}

.formarea .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #6F6F6F !important;
    border-bottom: 5px solid #6F6F6F !important;
}

.form-check-input[type=checkbox] {
    background: #686868;
    border: none;
    border-radius: 3px;
}

.formarea .nav-tabs .nav-link {
    border: none;
    color: #686868;
    font-weight: 600;
    font-size: 22px;
    margin: 0 30px;
    padding: 0 37px 4px;
    margin-bottom: 20px;
    border-bottom: 5px solid #E3E3E3;
}

    .formarea .nav-tabs .nav-link:active,
    .formarea .nav-tabs .nav-link:hover,
    .formarea .nav-tabs .nav-link:focus {
        color: #6F6F6F;
        font-weight: 600;
        border-bottom: 5px solid #6F6F6F !important;
    }

.formarea nav {
    margin: 0 auto;
    text-align: center;
    margin-top: -300px;
}

.formarea .nav-tabs {
    border: none;
    display: inline-flex;
}

.btnequity input {
    box-shadow: inset 1px 2px 3px #00000038, 3px 3px 4px #00000012;
    border: 2px solid #6F6F6F;
    border-radius: 100px;
    opacity: 1;
    width: 20px;
    height: 20px;
    padding: 0px;
}

.btnequity.btnfano input[type="checkbox"] {
    width: 65px;
}

input[type="checkbox"]:checked {
    background-color: #555555;
}

.btnequity input[type="checkbox"] {
    box-shadow: inset 1px 2px 3px #00000038, 3px 3px 4px #00000012;
    border: 2px solid #6F6F6F;
    border-radius: 5px;
    width: 110px;
    height: 31px;
}

.btnequity2 input[type="checkbox"] {
    box-shadow: inset 1px 2px 3px #00000038, 3px 3px 4px #00000012;
    border: 2px solid #6F6F6F;
    border-radius: 5px;
    width: 100%;
    height: 20px;
    outline: none !important;
}

.progressbar {
    text-align: left;
    margin-bottom: 20px;
}

button.btnequity {
    position: relative;
}


/* The container */

.tab-content {
    display: block;
    position: relative;
    margin-bottom: 12px;
  /*  cursor: pointer;*/
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

.btnequity input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

button.btnequity2.btnequity.textexta input {
    height: 50px;
}
.nav-center {
    display: flex;
    justify-content: center;
}

/* Create a custom checkbox */

.btnequity .checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    box-shadow: inset 1px 2px 3px #00000038, 3px 3px 4px #00000012;
    border: 2px solid #6F6F6F;
    border-radius: 100px;
    opacity: 1;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-left: 9px;
}

.otherbtn b {
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    opacity: 1;
    font-size: 14px;
    font-weight: 500;
}

.yesno {
    display: flex;
}

.otherbtn2 {
    text-align: left;
    letter-spacing: 0px;
    color: #292928;
    opacity: 1;
    font-size: 14px;
    font-weight: 500;
}

.otherbtn {
    margin-top: 10px;
    display: inline-flex;
}

.otherbtn2 {
    margin-top: 0;
    display: inline-flex;
    width: 100%;
    align-items: center;
    line-height: 30px;
}

.otherbtn button.btnequity2.othrrrr {
    margin-right: 30px;
}

.btnequity2 .checkmark {
    left: -30px;
}


/* On mouse-over, add a grey background color */

.btnequity:hover input ~ .checkmark {
}


/* When the checkbox is checked, add a blue background */

.btnequity input:checked ~ .checkmark {
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.btnequity input:checked ~ .checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */
.btn.verifyBtn {
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.btnequity .checkmark:after {
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #6F6F6F;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.col-auto.emailid.bank01.inputgrp img.img-fluid.right {
    right: 22px;
    display: none;
}

.col-auto.emailid.inputgrp.search a img.img-fluid.right {
    right: 8px !important;
    position: absolute;
    top: 7px;
    height: 35px;
    width: 35px !important;
}

.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
    width: 250px !important;
    background: #fff;
    display: block;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin-left: 7px;
    height: 30px;
    line-height: 30px;
}

    .ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front li {
        height: 30px;
        line-height: 30px;
    }

.btnequity .wquity {
    padding-left: 28px;
}

.btnequity2 .wquity {
    padding-left: 0;
    max-width: 100%;
}

header .navbar-expand-lg .container {
    padding: 0;
}

button.close {
    background: transparent;
    border: none;
    outline: none !important;
}

input#btnResend {
    padding: 0;
    width: auto;
}

input#btnResend_Email {
    width: auto;
    text-align: left;
    letter-spacing: 0px;
    color: #8b7ee5;
    font-weight: bold;
}

table.pricing-content td.brok-title {
    font-size: 14px;
    color: #686868;
}

.pricingTable3 table.pricing-content td.brok-val {
    font-size: 14px;
    color: #686868;
}

#bankDetails .succestextarea h4 {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

div#DivDPScheme .modal-content {
    border-radius: 30px 30px 0 0;
}

div#DivDematYes .listcontent2 {
    padding: 0 12px;
    border-radius: 5px;
    font-size: 15px;
    position: relative;
    margin-bottom: 0px;
    margin-left: 0;
    margin-right: 0;
}

.modal-header .btn-close {
    padding: 0;
    margin: 0;
    font-size: 20px;
    opacity: 1;
}


.col-auto.inputgrp.ddpi_area .otherbtn2.otherbtn3 b {
    padding-left: 15px;
}

div#DivDematYes .listcontent2 p span {
}

.formarea.imageuload img.img-fluid {
    width: auto;
    height: auto;
    top: -250px;
}

.formarea.imageuload {
    max-width: 100%;
}

    .formarea.imageuload .fileupload img.img-fluid {
        width: auto;
        top: 0;
    }

.col-auto.classsbmit button#btnFinalSubmit {
    font-size: 15px;
    height: 54px;
    padding-left: 0;
    border-radius: 8px;
    padding-right: 0;
    cursor: pointer;
    text-align: center;
    width: 250px !important;
}

.formarea.nominee_form .row.monimeeformtext .checkbox-area span label.bigcheck input {
    width: auto;
    height: auto;
}

div#Add_Nominee .accordian_area .accordion {
    margin-top: 15px;
}

.form-control:disabled, .form-control[readonly] {
    background: transparent;
    opacity: 1;
}

/*@media (max-width:1590px) and (min-width:1367px) */
@media (max-width:1590px) and (min-width:1367px) {
    ul.nav.navbar-nav li {
        font-size: 14px;
    }

    .inputgrp select {
        font-size: 12px;
    }

    .inputgrp input {
        font-size: 12px;
    }
    input#panNoverify {
        right: 10px !important;
        text-align: center;
        padding: 0;
        top: 5px;
        width: 80px;
    }
        .inputgrp input::placeholder {
            font-size: 12px;
        }

    .brcokeragebtn button {
        padding: 5px 25px;
        font-size: 12px;
        font-weight: 600;
    }

    .formbottm button {
        width: 120px;
        height: 36px;
        font-size: 14px;
    }

    .payment_form label.bigcheck b {
        font-size: 12px;
    }

    button#btnSelectBrokeragePlan {
        padding: 5px 25px;
        font-size: 13px;
        font-weight: 600;
    }

    .formarea .listcontent2 p b {
        font-weight: 600;
        font-size: 14px;
        /* padding-left: 13px; */
    }

    .formarea .listcontent3 p b {
        font-weight: bold;
        font-size: 14px;
    }

    .formarea .listcontent p {
        font-size: 14px;
        padding: 0 110px;
    }

    h3.gardiantext b {
        font-size: 12px;
    }

    header .client_logo {
        width: 167px;
        height: 80px;
    }

        header .client_logo img {
            width: 140px;
            height: auto;
        }

    .formarea img.img-fluid {
        width: 185px;
        height: 185px;
        top: -90px;
    }


    .formarea h3 {
        font-size: 24px;
    }

    .progressbar ul li a {
        font-size: 14px;
    }

    .form-control {
        font-size: 14px;
        font-weight: 500;
        height: 40px;
    }

    div#otp_area p {
        font-size: 14px;
    }

    .mobileOtp {
        position: relative;
        margin: 0;
        text-align: left;
    }

    div #emailid_area p.textinput.textinput2 {
        margin-bottom: 22px;
    }

    .digilockerbtn button img {
        position: relative;
        width: 40px;
    }

    div#emailid_area p {
        font-size: 15px;
    }

    .inputgrp h4 {
        font-size: 18px;
    }

    .investment label.bigcheck strong {
        left: 44px;
    }

    .investment label.bigcheck {
        height: 68px;
    }

    .digilockerbtn button {
        height: 49px;
        line-height: 44px;
        padding-top: 0;
    }

    .checkboxarea label {
        font-size: 14px;
    }

    .indexpage span b {
        font-size: 14px;
    }

    .indexpage span {
        font-size: 14px;
    }

    input#btnResend_Email {
        width: auto;
        text-align: left;
        letter-spacing: 0px;
        color: #8b7ee5;
        font-weight: bold;
        height: auto;
    }

    a.navbar-brand {
        font-size: 25px;
    }

    .bottomarea {
        margin-bottom: 35px;
    }

    .equitypdf label {
        font-size: 20px;
    }

    .equitypdf .vievbtn {
        font-size: 12px;
    }

    .equitypdf .vievbtn2 {
        font-size: 12px;
        line-height: 18px;
    }

    .rectifybtn {
        margin-bottom: 30px;
    }

    .rejection h2 {
        font-size: 26px;
    }

    .rejectionname {
        font-size: 15px;
    }

    .rejectionreason {
        font-size: 16px;
    }

    .statusbar ul li {
        font-size: 18px;
    }

        .statusbar ul li a {
            margin-top: -25px;
        }

        .statusbar ul li:nth-child(2)::before {
            width: 250px;
            top: 60px;
        }

        .statusbar ul li:first-child::after {
            top: 40px;
        }

        .statusbar ul li:first-child::before {
            top: 60px;
        }

        .statusbar ul li:nth-child(2) a {
            top: 135px;
        }

        .statusbar ul li:nth-child(4) a {
            position: relative;
            top: 152px;
        }

        .statusbar ul li::before {
            width: 480px;
            top: 60px;
        }

        .statusbar ul li:nth-child(4) a span::before {
            top: -50px;
        }

    .formarea.imageuload .fileupload {
        font-size: 13px;
        line-height: 40px;
    }

    .statusbar ul li:nth-child(2)::after {
        top: 36px;
    }

    .statusbar ul li:nth-child(4)::after {
        top: 60px;
    }

    .statusbar ul li:nth-child(4) a span::before {
        /*    top: -29px;*/
    }

    .imageuload h2 {
        font-size: 24px;
        margin-top: -115px;
        margin-bottom: 20px;
    }

    .row.imagesrow.imagesrow2 {
        padding: 45px 45px 45px;
        height: 260px;
    }

    .formarea.imageuload.applistaus h4.userapplication span {
        font-size: 20px;
    }

    .statusbar ul li:nth-child(3) {
        left: 0;
    }

    .statusbar ul li:nth-child(2) {
        left: 0;
    }

    .statusbar ul li::after {
        top: 40px;
    }

    .imageuload h5.gardiantext {
        font-size: 17px;
    }

    .formarea.imageuload p {
        font-size: 12px;
    }

    .progressbar ul {
        margin-bottom: 0;
    }

    .btnequity {
        width: 100%;
        font-size: 14px;
    }

    .emailid .btn {
        right: 33px;
    }

    div#mobileno_area p {
        margin-bottom: 25px;
    }

    .emailid.inputgrp img {
        width: 21px !important;
        height: 17px;
        position: absolute;
        top: 15px;
        left: 12px;
    }

    .progressbar ul::before {
        left: 6%;
        width: 600px;
    }

    .progressbar ul li {
        font-size: 14px;
    }

    .formarea .nav-tabs .nav-link {
        font-size: 18px;
    }

    div#mobileno_area p {
        font-size: 15px;
    }

    .noatearea p {
        font-size: 12px;
    }

    .listcontent {
        font-size: 13px;
    }

    .mobileno input[type="text"] {
        font-size: 14px;
        padding-left: 36px !important;
    }

    .mobileno label {
        font-size: 14px;
        top: 10px;
    }

    .emailid input {
    }

    .formarea .emailid.inputgrp img {
        top: 14px;
        left: 14px;
    }

        .formarea .emailid.inputgrp img.right {
            width: 25px !important;
            height: 25px;
            float: right;
            text-align: right;
            position: absolute;
            right: 31px;
            left: unset;
            top: 12px;
        }


    .col-auto.emailid.inputgrp img.img-fluid.right {
        right: 7px;
        left: unset;
        top: 8px;

    }
    .emailid label {
        font-size: 14px;
        top: 11px;
    }

   

    .kra input {
        font-size: 14px;
        padding-left: 36px;
    }

    .kra label {
        font-size: 14px;
    }

    .pagecontent {
        margin-top: 35px;
    }

    header {
    }

    .formarea img.img-fluid {
    }

    .pagecontent h1 {
        font-size: 26px;
    }

    .listarea ul li {
        padding: 0;
        font-size: 13px;
        position: relative;
    }

    /*.mobileno .btn {
        right: 30px;
        top: 4px;
    }*/

    .formarea {
    }

        .formarea h3 {
            /*        font-size: 20px;*/
            margin-bottom: 5px;
        }

        .formarea p {
            font-size: 14px;
            margin-bottom: 4px;
        }

    footer p {
        color: #000;
        padding-top: 13px;
        font-size: 13px;
    }

    div#emailid_area p.textinput {
        font-size: 10px;
        padding-top: 5px;
    }

    .formarea img.img-fluid {
        /*
        width: 200px;
        height: 200px;
        top: -90px;
*/
    }

    .formarea.nominee_form {
        margin-top: 40px;
        max-width: 88%;
        margin-left: 86px;
        padding-bottom: 20px;
    }

        .formarea.nominee_form img.img-fluid {
            width: 18%;
            height: auto;
            top: -250px;
        }

    .twobtn input {
        font-size: 13px;
    }

    .twobtn {
        font-size: 13px;
    }

    .tab-content.payment_form .listcontent2 {
        margin-bottom: 0;
    }

    .brcokeragebtn {
        margin-bottom: 10px;
    }

    .tab-content.payment_form .listcontent2 {
        margin-bottom: 0;
        height: 35px;
        line-height: 30px;
    }

    div#Demat_Checkbox {
        margin-bottom: 0 !important;
    }

    .listcontent {
       /* margin-left: 30px;*/
        margin-right: 30px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .listcontent {
        padding: 10px 0 15px;
    }

    .formarea .listcontent p {
        margin-bottom: 0;
    }

    .listcontent3 p span {
        font-size: 14px;
    }

    .modal-title {
        font-size: 16px;
    }

    div#DivDematYes .listcontent2 {
        margin-bottom: 10px;
    }


    .inputgrp select {
        height: 40px;
        padding-left: 14px;
    }

    .inputgrp input {
        height: 40px;
        padding-left: 14px;
    }

    .col-auto.emailid.inputgrp input[type="text"] {
        padding-left: 45px;
    }

    .col-auto.emailid.inputgrp input {
        padding-left: 40px;
    }

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.select img {
        top: 13px;
        position: absolute;
        left: 15px;
        width: auto;
    }

    .tab-content.payment_form .otherbtn2.otherbtn3 .yesno .checkboxarea span.bigcheck label.bigcheck {
        border: none;
        font-size: 14px;
    }

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.paymentinput img {
        top: 12px;
        position: absolute;
        left: 15px;
        width: auto;
    }

    div#DivDematYes .listcontent2 p {
        font-size: 14px;
        font-weight: 600;
        padding-left: 0;
    }

   /* .inputgrp {
        margin-bottom: 12px;
    }*/

        .inputgrp input::placeholder {
            font-size: 13px;
        }

        .inputgrp select::placeholder {
            font-size: 13px;
        }

    .progressbar ul li a img {
        width: 32px;
        margin-bottom: 0;
    }

    .progressbar ul::before {
        top: 16px;
        height: 13px;
    }

    .progressbar .progree_border {
        top: 16px;
        height: 10px;
        display: none;
    }

    .progressbar ul li:first-child a img {
        margin-bottom: 0;
    }

    .progressbar nav.navbar.navbar-expand-lg {
        padding: 0;
    }

    .row.pagecontent.paymentPage .paymentProcgess .progressbar ul::before {
        /*left: 27%;*/
    }

    .tab-content.payment_form .listcontent {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .tab-content.payment_form .listcontent3 {
        height: 40px;
        line-height: 40px;
    }

    .bank_details3 ul li {
        position: relative;
        left: -30px;
        height: 45px;
    }

    .bank_details3::before {
        top: 0;
        height: 105px;
    }

    .bank_details3 ul li:first-child::before {
        top: -3px;
    }

    .bank_details3 ul li:first-child::after {
        top: -15px;
    }

    .bank_details3 ul li:first-child::before {
        top: -6px;
    }

    .col-auto.emailid.inputgrp.search a img.img-fluid.right {
        top: 3px;
    }

    .progressbar.nomineePage .progressbar ul:before {
        width: 640px;
    }

    .proarea .progressbar {
        margin-top: 22px;
    }

    .formarea.nominee_form h2 {
        font-size: 20px;
    }

    .nominee_form label {
        width: 90px;
        height: 32px;
        line-height: 27px;
        font-size: 16px;
    }

    div#Add_Nominee .accordian_area {
        margin-top: 0;
        margin-bottom: 0;
    }

    .addnominee button {
        width: 180px;
        height: 44px;
        font-size: 14px;
    }

        .addnominee button.btn.addnomi {
            background-position: left 13% top 50%;
        }

    .btn.verifyBtn {
        font-size: 13px;
    }

    .accordion-collapse h3.gardiantext {
        font-size: 16px;
    }

    .addresssame label.bigcheck.gardiantext2 {
        font-size: 15px;
        margin-left: -36px !important;
    }

    h3.gardiantext b {
        font-size: 13px;
    }

    .progressbar.uploadDocument .progressbar ul::before {
        width: 610px;
    }

    .imagesrow .row.imagesrow06 .inco span {
        font-size: 11px;
    }

    .imagesrow .row.imagesrow06 .inco2 span {
        font-size: 11px;
    }

    .imagesrow {
        margin-bottom: 20px;
    }

    .imagesrow06 {
        padding: 20px;
    }

    .rightborder::after {
        height: 130px;
    }

    .formarea.imageuload .col-auto.inputgrp.select img {
        top: 12px;
    }

    .formarea.imageuload .panrow .fileupload {
        width: 100%;
        margin-top: 0;
    }

    .col-auto.inputgrp.select br {
        display: none;
    }

    .formarea.imageuload img.img-fluid {
        width: 18%;
        top: -110px;
    }

    .formarea.imageuload {
        margin-top: 100px;
        padding: 0 34px 34px 34px;
    }

        .formarea.imageuload .fileupload img.img-fluid {
            width: 18px;
            top: 0;
            height: 18px;
        }

        .formarea.imageuload p.imagesrowp {
            height: 35px;
        }

    .col-auto.classsbmit button#btnFinalSubmit {
        font-size: 13px;
    }

    .selectareea .col-auto.inputgrp.select {
        width: 100%;
    }

    footer {
        /*position: relative;*/
        left: 0;
        right: 0px;
        background: #fff;
        bottom: 0px;
        border-top: 1px solid #fff;
        padding: 0;
        z-index: 9999;
        height: 40px;
        line-height: 13px;
    }

    .modal.show .modal-dialog {
        top: 0%;
    }
    div#CaptureImageModal .modal-header .btn-close {
        right: 0 !important;
    }
    .clientphototext h4 {
        font-size: 20px;
    }
    .clientphototext {
        left: 0 !important;
        position: relative;
    }

    .clientphototext span {
        margin-top: 10px;
    }

    .clientphotomodel .modal-content {
        width: auto;
        height: auto;
        padding: 25px;
    }

    .clientphototext button {
        width: 160px;
        height: 46px;
        font-size: 18px;
    }

    .formarea.imageuload.applistaus h4.userapplication {
        margin-bottom: 15px;
    }

    .statusbar ul li:nth-child(3) a span::before {
        height: 25px;
    }

    .statusbar .ApplicationStatus li:nth-child(3):after {
        top: 40px;
        left: 95px;
    }

    .statusbar .ApplicationStatus li:nth-child(4):after {
        top: 57px;
    }

    .statusbar .ApplicationStatus li:nth-child(3)::before {
        top: 60px;
        left: 110px;
    }

    ul#ApplicationStatus li::before {
        width: 430px;
        top: 60px;
    }

    ul.ApplicationStatus li::before {
        width: 340px !important;
        top: 60px;
    }

    input#btnEmailOtp {
        right: -2px;
        text-align: center;
        padding: 0;
       /* top: 5px;*/
    }
    div#emailOtp input {
        padding: 0;
    }
    .form-control.mobile.emailValueScroll {
        padding-right: 0;
    }

}

/*@media (max-width:1400px) and (min-width:1366px) {
    .mobileno .btn {
        right: 10px;
        top: 4px;
    }
    .form-control.mobile.emailValueScroll {
        padding-right: 0;
    }
    input#btnEmailOtp {
        right: 10px;
        text-align: center;
        padding: 0;
        top: 5px;
    }
    input#btnEmailOtp {
        right: 11px;
    }

    div#emailOtp input {
        padding: 0;
    }

}
*/
    /* END @media (max-width:1590px) and (min-width:1367px) */



    /*start @media (max-width:1500px) and (min-width:1401px) */
    @media (max-width:1500px) and (min-width:1401px) {
        .col-xl-7 {
            flex: 0 0 auto;
            width: 58.33333333%;
        }

        ul#ApplicationStatus li:nth-child(2)::before {
            width: 284px !important;
        }

        #ApplicationStatus li::before {
            width: 340px !important;
            top: 60px;
        }

        .statusbar .ApplicationStatus li:nth-child(3)::before {
            top: 60px;
            left: 0;
        }

        .statusbar .ApplicationStatus li:nth-child(4):after {
            top: 60px;
        }

        .formarea.imageuload {
            margin-top: 100px;
            padding: 0 34px 34px 34px;
        }

            .formarea.imageuload.applistaus h4.userapplication {
                font-size: 20px;
            }

                .formarea.imageuload.applistaus h4.userapplication span {
                    font-size: 18px;
                }

        .statusbar ul li:nth-child(4) a span::before {
            top: -62px;
            left: 103px;
        }

        .statusbar ul li:nth-child(4) a {
            position: relative;
            top: 152px;
            left: 0;
        }

        .statusbar ul li {
            font-size: 16px;
        }

            .statusbar ul li::before {
                width: 400px;
                top: 60px;
            }

            .statusbar ul li:nth-child(2)::before {
                width: 230px;
                top: 60px;
            }

        .formarea h3 {
            font-size: 20px;
        }

        div#emailid_area p {
            font-size: 13px;
        }

        div#mobileno_area p {
            font-size: 13px;
        }

        .formarea .emailid.inputgrp img {
            top: 11px;
        }

        div #emailid_area p.textinput {
            font-size: 12px !important;
        }

        .mobileno label {
            font-size: 14px;
            top: 9px;
        }

        .progressbar ul::before {
            left: 2%;
            width: 515px;
        }

        .emailid .btn {
            right: 8px;
            top: 4px;
            text-align: center;
            padding-left: 0 !important;
        }

        .formarea.imageuload img {
            width: 18%;
            /*  top: -190px;*/
        }

        /* .formarea.imageuload {
        margin-top: 100px;
        padding: 0 34px 20px 34px;
    }*/

        .formarea.imageuload .fileupload img.img-fluid {
            width: 18px;
            top: 0;
            height: 18px;
        }

        .formarea.imageuload p.imagesrowp {
            height: 50px;
        }

        .col-auto.classsbmit button#btnFinalSubmit {
            font-size: 13px;
        }

        .selectareea .col-auto.inputgrp.select {
            width: 80%;
        }

        .accordion-collapse h3.gardiantext {
            font-size: 16px;
        }

        .addresssame label.bigcheck.gardiantext2 {
            font-size: 15px;
            margin-left: -36px !important;
        }

        .inputgrp select {
            font-size: 12px;
            padding-left: 14px;
        }

        .inputgrp input {
            font-size: 12px;
            padding-left: 14px;
        }

            .inputgrp input::placeholder {
                font-size: 12px;
            }

        .progressbar.nomineePage .progressbar ul:before {
            width: 555px;
        }

        .formarea.nominee_form h2 {
            font-size: 20px;
        }

        .col-xl-5 {
            flex: 0 0 auto;
            width: 41.66666667%;
        }

        .col-auto.emailid.inputgrp.search a img.img-fluid.right {
            top: 3px;
            width: 24px !important;
        }

        .row.pagecontent.paymentPage .paymentProcgess .progressbar ul::before {
            left: 11%;
            top: 18px;
        }

        .row.pagecontent.paymentPage .paymentProcgess .progressbar .progree_border {
            left: 4%;
        }

        .contentpage h1 b {
            font-weight: 700;
            font-size: 20px;
        }

        .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
            max-width: 1140px;
        }

        .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
            display: flex;
            flex-wrap: inherit;
            align-items: center;
            justify-content: space-between;
        }

        .progressbar ul li {
            width: 105px;
        }

        .row.pagecontent.paymentPage .paymentProcgess .progressbar ul::before {
            left: 3%;
            top: 18px;
            width: 570px;
        }

        .mobileno .btn {
            right: 8px;
            top: 4px;
        }

        .openarea {
            margin-top: 23px;
        }

        .bank_details3 ul li:first-child::before {
            top: -3px;
        }

        .bank_details3::before {
            top: 0;
            height: 105px;
        }

        .bank_details3 ul li {
            position: relative;
            left: -30px;
            height: 45px;
        }

            .bank_details3 ul li:first-child::after {
                top: -15px;
            }

            .bank_details3 ul li:first-child::before {
                top: -6px;
            }

        .proarea .progressbar {
            margin-top: 22px;
        }

        .nominee_form label {
            width: 90px;
            height: 32px;
            line-height: 27px;
            font-size: 16px;
        }

        .formarea.nominee_form img.img-fluid {
            width: 18%;
            height: auto;
            top: -250px;
        }

        div#Add_Nominee .accordian_area {
            margin-top: 0;
            margin-bottom: 0;
        }

        .addnominee button {
            width: 180px;
            height: 44px;
            font-size: 14px;
        }

            .addnominee button.btn.addnomi {
                background-position: left 13% top 50%;
            }

        .btn.verifyBtn {
            font-size: 13px;
        }

        .accordion-collapse h3.gardiantext {
            font-size: 17px;
        }

        h3.gardiantext b {
            font-size: 13px;
        }

        .progressbar.uploadDocument .progressbar ul::before {
            width: 535px;
            top: 18px;
        }

        footer p {
            color: #000;
            padding-top: 13px;
            font-size: 12px;
        }

        footer {
            position: relative;
            left: 0;
            right: 0px;
            background: #fff;
            bottom: 0px;
            border-top: 1px solid #fff;
            padding: 0;
            z-index: 9999;
            height: 40px;
            line-height: 13px;
        }

        .imageuload h2 {
            font-size: 22px;
        }

        .modal.show .modal-dialog {
            top: 15%;
        }

        .clientphototext h4 {
            font-size: 20px;
        }

        .clientphototext span {
            margin-top: 10px;
        }

        footer {
            position: fixed;
        }

        .progressbar.bankDetailPage .progressbar ul::before {
            width: 565px;
        }

        .formarea .emailid.inputgrp img.right {
            right: 8px;
            left: unset;
            top: 7px;
        }

        .col-auto.emailid.inputgrp.search input#IFSCCode {
            padding-left: 38px;
        }
    }


    .modal.clientphotomodel .modal-dialog .modal-content .modal-header {
        position: relative;
        top: -22px;
        right: -44px;
    }

    /*END @media (max-width:1500px) and (min-width:1401px) */

    /* start @media (max-width:1366px)*/

    @media (max-width:1366px) {
        .modal.clientphotomodel .modal-dialog {
            top: 6%;
        }


        body {
            background-size: inherit;
            overflow-y: scroll !important;
        } 
        .clientphototext button {
            width: 185px;
            height: 44px;
            background: #292928 no-repeat;
            border-radius: 9px;
            text-align: center;
            letter-spacing: 5.4px;
            color: #FFFFFF;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: bold;
            margin-top: 0;
        }

        .statusbar .ApplicationStatus li:nth-child(3):after {
            top: 39px;
            left: 93px;
        }

        .statusbar .ApplicationStatus li:nth-child(4):after {
            top: 59px;
            left: 34px;
        }

        .formarea.imageuload {
            margin-top: 100px;
            max-width: 100%;
            padding-top: 81px;
            margin-left: 86px;
        }

        .clientphototext h4 {
            font-size: 20px;
        }

        .clientphototext span {
            margin-top: 10px;
        }

        .modal.show .modal-dialog {
            top: 0;
        }

        .imageuload h5.gardiantext {
            font-size: 16px;
        }

        .formarea.imageuload img.img-fluid {
            width: 18%;
            top: -184px;
        }

        .formarea.imageuload .fileupload img.img-fluid {
            width: 16px;
            top: 0;
        }

        .progressbar.uploadDocument .progressbar ul::before {
            /* left: 27%;*/
        }

        .progressbar.uploadDocument .progressbar .progree_border {
            left: 24%;
            /*display: block;*/
        }

        .formarea.imageuload p {
            font-size: 22px !important;
        }

        .formarea.imageuload .fileupload {
            font-size: 12px !important;
        }

        .selectareea .col-auto.inputgrp.select {
            width: 78%;
        }

        .imagesrow .row.imagesrow06 .inco span {
            font-size: 11px;
        }

        .imagesrow .row.imagesrow06 .inco2 span {
            font-size: 11px;
        }

       
        .imageuload h2 {
            text-align: center;
            letter-spacing: 0px;
            color: #000000;
            font-weight: 600;
            font-size: 20px;
            margin-bottom: 16px;
            margin-top: -187px;
        }

        .progressbar ul li a {
            font-size: 14px;
        }

        .progressbar.uploadDocument .progressbar .progree_border {
            /* left: 20%;*/
        }

        .progressbar.uploadDocument .progressbar ul li a {
            font-size: 14px;
        }

        footer {
            /*   position: relative;*/
            left: 0;
            right: 0px;
            background: #fff;
            bottom: 0px;
            border-top: 1px solid #fff;
            padding: 0;
            z-index: 9999;
            height: 40px;
            line-height: 13px;
        }

        h3.gardiantext b {
            font-size: 13px;
        }

        .accordion-collapse h3.gardiantext {
            font-size: 16px;
        }

        .addresssame label.bigcheck.gardiantext2 {
            font-size: 15px;
        }

        .inputgrp select {
            font-size: 12px;
            padding-left: 14px;
        }

        .btn.verifyBtn {
            font-size: 13px;
        }

        .inputgrp input {
            font-size: 12px;
            padding-left: 14px;
        }

            .inputgrp input::placeholder {
                font-size: 12px;
            }

            .addnominee button.btn.addnomi {
                background-position: left 13% top 50%;
            }

        div#Add_Nominee .accordian_area {
            margin-top: 0;
            margin-bottom: 0;
        }

        .formarea.nominee_form img.img-fluid {
            width: 18%;
            height: auto;
        }

        .nominee_form label {
            width: 90px;
            height: 32px;
            line-height: 27px;
            font-size: 16px;
        }

        .bank_details3 ul li {
            position: relative;
            left: -30px;
            height: 45px;
        }

        .formarea.nominee_form h2 {
            font-size: 20px;
        }

        .progressbar.nomineePage .progressbar ul:before {
            width: 540px;
        }

        .col-auto.emailid.inputgrp.search a img.img-fluid.right {
            top: 3px;
        }
        /* .bank_details3 ul li:first-child::before {
            top: -3px;
            height: 105px;
        }*/
        .bank_details3 ul li:first-child::after {
            top: -15px;
        }

        .bank_details3 ul li:first-child::before {
            top: -6px;
        }

        .tab-content.payment_form .listcontent3 {
            height: 40px;
            line-height: 40px;
        }

        .bank_details3::before {
            top: 0;
            height: 105px;
        }

        .row.pagecontent.paymentPage .paymentProcgess .progressbar .progree_border {
            left: 4%;
        }

        .tab-content.payment_form .listcontent {
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .row.pagecontent.paymentPage .paymentProcgess .progressbar ul::before {
            left: 5%;
            top: 16px;
        }

        .modal-title {
            font-size: 16px;
        }

        .bank_details3::before {
            top: 0;
        }

        .progressbar nav.navbar.navbar-expand-lg {
            padding: 0;
        }

        .inputgrp input::placeholder {
            font-size: 13px;
        }

        .progressbar ul::before {
            top: 16px;
            height: 10px;
        }

        .progressbar .progree_border {
            top: 16px;
            height: 10px;
        }

        .inputgrp select::placeholder {
            font-size: 13px;
        }

        .inputgrp {
            margin-bottom: 12px;
        }

            .inputgrp select {
                height: 40px;
            }

            .inputgrp input {
                height: 40px;
            }

        .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.select img {
            top: 13px;
            position: absolute;
            left: 15px;
            width: auto;
        }

        .tab-content.payment_form .otherbtn2.otherbtn3 .yesno .checkboxarea span.bigcheck label.bigcheck {
            border: none;
            font-size: 14px;
        }

        .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.paymentinput img {
            top: 12px;
            position: absolute;
            left: 15px;
            width: auto;
        }

        div#DivDematYes .listcontent2 p {
            font-size: 14px;
            font-weight: 600;
            padding-left: 0;
        }

        div#DivDematYes .listcontent2 {
            margin-bottom: 10px;
        }

        .listcontent {
           /* margin-left: 30px;*/
            margin-top: 0;
            margin-bottom: 10px;
        }

        .listcontent3 p span {
            font-size: 12px;
        }

        .formarea .listcontent p {
            margin-bottom: 0;
        }

        .listcontent {
            padding: 10px 0 15px;
        }

        div#Demat_Checkbox {
            margin-bottom: 0 !important;
        }

        .brcokeragebtn {
            margin-bottom: 10px;
        }

        .tab-content.payment_form .listcontent2 {
            margin-bottom: 0;
        }

        .brcokeragebtn button {
            padding: 5px 25px;
            font-size: 12px;
            font-weight: 600;
        }

        .tab-content.payment_form .listcontent2 {
            margin-bottom: 0;
        }

        input#btnResend_Email {
            width: auto;
            text-align: left;
            letter-spacing: 0px;
            color: #8b7ee5;
            font-weight: bold;
            height: auto;
        }

        .formarea.imageuload.applistaus h4.userapplication img {
            width: 28px;
            height: 28px;
        }

        .formarea.imageuload.applistaus img.img-fluid {
            width: 160px;
            height: 160px;
            top: -167px;
            position: relative;
            left: 0;
        }

        .formarea.imageuload.applistaus h2 {
            font-size: 15px;
            margin-bottom: 20px;
            margin-top: -165px;
        }

        .formarea.imageuload.applistaus {
            margin-top: 92px;
            max-width: 88%;
            padding: 80px 42px 30px 41px;
            margin-left: 86px;
        }

            .formarea.imageuload.applistaus h4.userapplication {
                font-size: 20px;
                margin-bottom: 10px;
            }

                .formarea.imageuload.applistaus h4.userapplication span {
                    font-size: 18px;
                }

        .formarea.imageuload {
            margin-top: 100px;
        }

            .formarea.imageuload.applistaus .row.imagesrow.imagesrow2 {
                padding: 30px 45px 30px;
                height: 230px;
            }

        .formarea.imageuload {
            margin-top: 110px;
            max-width: 100%;
            margin-left: 0;
            padding: 80px 25px 25px 25px;
        }

        .formarea.imageuload .col-auto.inputgrp.select img {
            position: absolute;
            top: 11px;
        }

        .rightborder::after {
            height: 120px !important;
            top: 15px !important;
        }

        .imagesrow {
            margin-bottom: 20px;
        }

        .formarea.imageuload img.img-fluid {
            width: 18%;
            top: -200px;
        }

        .pagecontent {
            margin-top: 0;
            margin-bottom: 20px;
        }

        .formarea.imageuload p.imagesrowp {
            height: 38px;
        }

        .col-auto.inputgrp.select br {
            display: none;
        }

        .statusbar ul li {
            font-size: 15px;
        }

            .statusbar ul li a span {
                font-size: 13px;
            }

        .imageuload h2 {
            font-size: 22px;
            margin-bottom: 10px;
            margin-top: -200px;
        }

        .formarea.imageuload img.img-fluid {
            /*width: 25%;
        top: -200px;*/
        }

        ul.nav.navbar-nav li {
            font-size: 13px;
        }

        .inputgrp select {
            font-size: 14px;
        }

        .form-control {
            font-size: 14px;
        }

        .digilockerbtn.nomineesubmit button {
            width: 138px;
            height: 45px;
            font-size: 14px;
            line-height: 45px;
        }

        .nominee_form label {
            font-size: 14px;
            width: 130px;
            height: 32px;
            line-height: 28px;
        }

        .succestextarea {
            padding: 30px;
        }

        .imagearea img {
            top: -24px;
        }

        .imagearea p {
            font-size: 14px;
        }

        .imagearea h4 {
            font-size: 14px;
            margin-top: -38px;
        }

        .succestextarea p {
            text-align: center;
            font-size: 14px;
        }

        button#btnSelectBrokeragePlan {
            font-size: 12px;
        }

        .formarea .listcontent2 p b {
            font-weight: 600;
            font-size: 13px;
        }

        .brcokeragebtn button.selectedit {
            font-size: 12px;
        }

        .emailotpt .twobtn input {
            padding: 0;
        }

        .formbottm button {
            width: 110px;
            height: 30px;
            line-height: 30px;
            padding: 0;
            font-size: 13px;
        }

        .formarea .listcontent p {
            font-size: 13px;
            padding: 0 110px;
        }

        .formarea .listcontent3 p b {
            font-weight: bold;
            font-size: 13px;
        }

        .pricingTable3 h3.title {
            font-size: 13px;
        }

        /*header .client_logo img {
            width: 65px;
            height: auto;
        }*/

        header .client_logo {
            width: 140px;
            height: 80px;
        }

        .twobtn {
            font-size: 13px;
            margin-top: 20px;
        }

       /* .emailid .btn {
            width: 90px;
        }*/

        .twobtn input {
            font-size: 13px;
        }

        .formarea.nominee_form img.img-fluid {
            width: auto;
            height: auto;
        }

        .openarea {
            margin-top: 16px;
        }

        .formarea.nominee_form h2 {
            font-size: 22px;
        }

        .addresssame label.bigcheck.gardiantext2 {
            font-size: 15px;
        }

        .accordion-header button.button1 {
            width: 100%;
        }

        .proarea .progressbar ul::before {
            /*  left: 30%;*/
        }

        .progressbar.bankDetailPage .progressbar ul::before {
            width: 565px;
            left: 23%;
        }

        .form-control {
            font-size: 13px;
            width: 100% !important;
        }

        .inputgrp select {
            font-size: 13px;
        }

        .otherbtn2 .proarea .progressbar ul::before {
            left: 30%;
        }

        .pagescontent p.textinput {
            font-size: 12px !important;
            margin-bottom: 0;
        }

        div#emailOtp input {
            width: 45px;
            height: 45px;
        }

        .indexpage span b {
            font-size: 12px;
            font-weight: 500;
            color: #292928;
        }

        .formbottm b {
            font-size: 14px;
        }

        a.navbar-brand {
            font-size: 25px;
        }

        .bottomarea {
            margin-bottom: 35px;
        }

        .equitypdf label {
            font-size: 20px;
        }

        .equitypdf .vievbtn {
            font-size: 14px;
            width: 80px;
            height: 34px;
            line-height: 30px;
        }

        .equitypdf .vievbtn2 {
            font-size: 14px;
            width: 80px;
            height: 34px;
            line-height: 30px;
        }

        .rectifybtn {
            margin-bottom: 30px;
        }

        .rejection h2 {
            font-size: 26px;
        }

        .rejectionname {
            font-size: 15px;
        }

        .rejectionreason {
            font-size: 16px;
        }

        .statusbar ul li {
            font-size: 18px;
        }

            .statusbar ul li a {
                margin-top: -25px;
            }

            .statusbar ul li:nth-child(2)::before {
                width: 215px;
                top: 60px;
            }

            .statusbar ul li:first-child::after {
                top: 40px;
                left: 50px;
            }

            .statusbar ul li:nth-child(3) {
                left: -40px;
            }

        div#emailid_area p {
            font-size: 13px;
        }

        .row.imagesrow.imagesrow2 .statusbar ul li::before {
            top: 60px;
            /*left: 110px;*/
        }

        .statusbar .ApplicationStatus li:nth-child(3)::before {
            width: 300px;
        }

        .statusbar ul li:first-child::before {
            top: 60px;
        }

        div#emailid_area p.textinput {
            font-size: 11px !important;
        }

        .statusbar ul li:nth-child(2) a {
            top: 135px;
        }

        .statusbar ul li:nth-child(4)::after {
            top: 64px;
            left: 31px;
        }

        .statusbar ul li:nth-child(4) a {
            position: relative;
            top: 150px;
        }

            .statusbar ul li:nth-child(4) a span::before {
                left: 87px;
                top: -70px;
            }

        .statusbar ul li:nth-child(4)::after {
            left: 30px;
        }

        ul#ApplicationStatus li:nth-child(4)::after {
        }

        ul#ApplicationStatus li:nth-child(3) {
            left: 0;
        }

        ul#ApplicationStatus li:nth-child(2)::before {
            width: 250px;
        }

        ul#ApplicationStatus li::before {
            width: 266px;
            top: 60px;
        }

        .statusbar ul li::before {
            width: 305px;
            top: 60px;
        }

        .formarea.imageuload .fileupload {
            font-size: 13px;
        }

        .statusbar ul li:nth-child(2)::after {
            top: 40px;
        }


        .statusbar ul li:first-child::before {
            left: 70px;
        }

        .statusbar ul li::after {
            top: 40px;
        }

        .imageuload h5.gardiantext {
            font-size: 16px;
        }

        .formarea.imageuload p {
            font-size: 22px !important;
        }

        .progressbar ul {
            margin-bottom: 0;
        }

        .btnequity {
            width: 100%;
            font-size: 14px;
        }

        .listcontent.indexpage span {
            font-size: 12px;
        }

       /* .emailid .btn {
            right: -8px;
            height: 26px;
            top: 5px;
            font-weight: normal;
            font-size: 11px;
            line-height: 26px;
            padding-top: 0;

        }*/
        input#btnEmailOtp {
            right: 11px;
        }

        div#mobileno_area p {
            margin-bottom: 20px;
        }

        .emailid.inputgrp img {
            width: 21px !important;
            height: 17px;
            position: absolute;
            top: 15px;
            left: 12px;
        }

        div#otp_area p {
            font-size: 13px;
        }

        /*.progressbar ul::before {
            left: 5%;
            width: 540px;
        }*/

        .progressbar ul li {
            font-size: 14px;
        }

        div#mobileOtp input {
            width: 40px;
            height: 40px;
        }

        div#emailOtp input {
            width: 40px;
            height: 40px;
        }

        .formarea .nav-tabs .nav-link {
            font-size: 14px;
        }

        div#mobileno_area p {
            font-size: 13px;
        }

        div#emailid_area p.textinput.textinput2 {
            margin-bottom: 18px;
        }

        .noatearea p {
            font-size: 12px;
        }

        .listcontent {
            font-size: 13px;
        }

        .mobileno input {
            font-size: 14px;
            padding-left: 36px;
            width: 100%;
        }

        .mobileno label {
            font-size: 14px;
            top: 13px;
        }

        .mobileno input::placeholder {
            font-size: 14px;
        }

        div#mobileno_area p.textinput {
            font-size: 12px !important;
        }

        .listarea ul li::before {
            top: 10px;
        }

        .emailid input {
            font-size: 13px;
            height: 36px;
        }

        .formarea .emailid.inputgrp img.right {
            top: 6px;
            right: 6px;
        }

        .formarea .emailid.inputgrp img {
            top: 10px;
        }

        .emailid label {
            font-size: 14px;
        }

        .kra input {
            font-size: 14px;
            padding-left: 36px;
        }

        .kra label {
            font-size: 14px;
        }

        .pagecontent {
            margin-top: 60px;
            margin-bottom: 40px !important;
        }

        .pagecontent h1 {
            font-size: 24px;
        }

        .listarea ul li {
            padding: 0;
            font-size: 12px;
            position: relative;
        }

       /* .mobileno .btn {
            right: 7px;
            top: 6px;
            width: 100px;
            height: 28px;
            line-height: 28px;
            padding-top: 0;
        }*/

        .mobileOtp {
            position: relative;
            margin: 0;
            text-align: left;
        }

        div#otp_area p {
            margin-bottom: 15px;
        }

        input#btnResend {
            padding: 0;
            width: auto;
            height: auto;
        }

        .formarea {
            padding: 0 0 30px;
            position: relative;
        }

            .formarea h3 {
                font-size: 21px;
                margin-bottom: 5px;
            }

            .formarea p {
                font-size: 12px;
            }

        footer p {
            color: #000;
            padding-top: 13px;
            font-size: 11px;
        }

        div#emailid_area p.textinput {
            font-size: 10px;
            padding-top: 5px;
            margin-bottom: 0;
        }

        .formbottomtext {
            font-size: 12px;
            margin: 20px 0 15px 0;
            text-align: center;
        }

        .digilockerbtn button {
            font-size: 14px;
            padding-right: 20px;
            height: 41px;
            line-height: 38px;
            padding-top: 0;
        }

            .digilockerbtn button img {
                position: relative;
                width: 30px;
            }

        .progressbar ul li a {
            font-size: 13px;
        }

        .mobileno input {
            height: 40px;
        }

        .mobileno label {
            top: 10px;
        }

        div#div_MobileRelation select {
            height: 40px;
        }

        div#div_EmailRelation select {
            height: 40px;
        }

        .emailOtp {
            position: relative;
            margin: 0;
            text-align: left;
        }
    }

    /* END @media (max-width:1366px) */

    .col-auto.emailid.inputgrp input#PanNo {
        margin-bottom: 0;
    }

    .sweet-alert button {
        color: #fff;
        box-shadow: none;
        font-size: 17px;
        font-weight: 700;
        -webkit-border-radius: 4px;
        border-radius: 0px;
        padding: 5px 25px;
        margin: 15px 5px 0 5px;
        cursor: pointer;
        text-transform: capitalize;
       /* background: #8b7ee5 !important;*/
        border-radius: 25px;
        border: none;
    }

    .mobile_hide2 {
        display: inline-block;
    }

    div#div_MobileRelation {
        margin-bottom: 0;
        margin-top: 10px;
    }

        div#div_MobileRelation label {
            padding-left: 5px;
        }

    div#div_EmailRelation {
        margin-bottom: 0;
        margin-top: 10px;
    }

    div#div_EmailRelation {
        padding-left: 5px;
    }


    @media (max-width:991px) {
        .navbar-collapse {
            flex-basis: 100%;
            flex-grow: 1;
            align-items: end;
            background: #e6e3fb;
            z-index: 999;
            border-radius: 0;
        }

        header .navbar-expand-lg .container {
            padding: 0 15px;
        }

        .formarea .bankform {
            margin-top: -115px;
        }

        nav.navbar.navbar-expand-lg li {
            width: 100%;
            margin: 0;
            padding: 8px;
            text-align: center;
        }
        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 {
            display: block;
            float: unset;
            margin-top: 0 !important;
            text-align: center;
        }
        .skiptranslate.goog-te-gadget {
            margin-left: 0 !important;
        }
        .goog-te-gadget .goog-te-combo {
            margin: 4px 0;
            width: 214px !important;
        }
        footer {
            height: auto;
        }

            footer p {
                text-align: center;
            }

        .footer_icon {
            float: none;
        }

            .footer_icon ul {
                list-style: none;
                margin: 0 auto;
                text-align: center;
            }

        .mobileno .btn {
            right: 5px;
        }

        .contentpage {
            padding-right: 15px;
            padding-top: 0;
            padding-left: 18px;
        }

        .formarea {
            max-width: 480px;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .mobile_hide {
            display: none;
        }

        .mobile_show {
            display: block;
        }

        .mobile_show2 {
            display: inline-block;
        }
    }

    ul.nav.navbar-nav svg {
        color: #f8f8f8;
        margin-right: 5px;
        border: 1px solid #f8f8f8;
        border-radius: 50%;
        padding: 3px;
    }

    a#scrlTop {
        display: none;
    }

    .rightborder {
        position: relative;
    }

        .rightborder::after {
            background: #D8D8D8;
            height: 200px;
            width: 1px;
            content: "";
            display: block;
            position: absolute;
            right: 0;
            top: 5px;
        }

    .rightborder2 {
        position: relative;
    }

        .rightborder2::after {
            background: #D8D8D8;
            height: 160px;
            width: 1px;
            content: "";
            display: block;
            position: absolute;
            left: -15px;
            top: 5px;
        }

    .rightborder3 {
        position: relative;
    }

        .rightborder3::after {
            background: #D8D8D8;
            height: 160px;
            width: 1px;
            content: "";
            display: block;
            position: absolute;
            left: -15px;
            top: 5px;
        }

    .imagearea .inputpas img {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 15px;
        top: 15px;
    }

    .documentpagemodule.imagearea .inputpas img {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 15px;
        top: 15px;
    }

    .imagearea .inputpas {
        position: relative;
    }

        .imagearea .inputpas input {
            padding-left: 38px;
        }

    .documentpagemodule .imagearea img {
        position: relative;
        left: unset;
        width: auto;
        height: auto;
        margin: 0 auto;
        display: block;
        top: 0;
        margin-top: -45px;
    }

        .documentpagemodule .imagearea img.password_hide {
            float: right;
            width: 20px;
            height: 20px;
            position: relative;
            left: unset;
            top: -34px;
            right: -55px;
        }

@media (max-width:600px) {
    .statusarea #main {
        display: block;
    }

    .jcrop-widget {
        min-width: 90px !important;
        min-height: 35px !important;
    }

    div#divDocumentBtn .col-auto.classsbmit button#btnFinalSubmit {
        width: auto;
        padding: 0 20px;
        font-size: 14px;
        font-weight: 600;
    }

    .demo3 {
        display: block !important;
    }

    div#BrokerageCommodity .modal-content .modal-body {
        max-width: 970px;
        overflow-y: scroll;
        height: 550px;
    }

    .paymentProcgess {
        margin-top: 0 !important;
    } 
    div#myModal .modal-dialog {
        width: 100% !important;
        max-width:unset !important;
    }
    .modal-body {
        padding: 1rem 1rem !important; 
    }

    .loader {
        /* left: 18% !important;*/
    }

    header .client_logo {
        width: 121px;
        height: 50px;
    }

    .loader--dot {
        left: 15% !important;
    }

    header .client_logo img {
        width: 100px;
        height: 22px;
    }

    nav#navbar_top,
    container {
        padding: 0;
        position: relative;
    }


    .nominee_form .accordion-body hr:not([size]) {
        display: none;
    }

    .statusarea {
        position: absolute;
        width: 100%;
        height: 100vh;
        /*            background: #000;*/
    }

    #openbg {
        background: #29292880;
        position: absolute;
        width: 100%;
        height: 100vh;
        z-index: 1;
        opacity: 87%;
        display: none;
    }

    .mobile_view {
        display: block;
    }

    .succestextarea p {
        font-size: 14px;
    }

    #bankDetails .succestextarea {
        width: 92%;
        margin: 0 auto;
    }

    .bank_details {
        background-size: 100% 100%;
    }

    .tab-content.payment_form .otherbtn2.otherbtn3 .yesno .checkboxarea span.bigcheck label.bigcheck {
        border: none;
        position: relative;
    }

    div#nav-commodity .listcontent2 {
        margin-bottom: 20px;
    }

    .progressbar::-webkit-scrollbar {
        width: 10px;
        display: none;
    }

    .progressbar::-webkit-scrollbar-track {
        width: 10px;
        display: none;
    }

    .progressbar::-webkit-scrollbar-thumb {
        width: 10px;
        display: none;
    }

    .progressbar::-webkit-scrollbar {
        width: 10px;
        display: none;
    }

    .progressbar::-webkit-scrollbar-track {
        width: 10px;
        display: none;
    }

    .progressbar::-webkit-scrollbar-thumb {
        width: 10px;
        display: none;
    }

        .progressbar::-webkit-scrollbar-thumb:hover {
            width: 10px;
            display: none;
        }

    .statusarea .sidebar a {
        font-size: 15px;
        padding-left: 20px;
        color: #000;
        text-transform: uppercase;
    }

    div#main button.openbtn {
        background: transparent;
        outline: none !important;
        border: none;
        display: block;
        position: relative;
    }

        div#main button.openbtn::before {
            content: "";
            position: absolute;
            display: block;
            top: -128px;
            left: 4px;
            width: 40px;
            height: 385px;
            background: #f7ecea;
            z-index: -1;
            border-radius: 20px;
        }

    div#main {
        position: fixed;
        z-index: 1;
        background: transparent;
        top: 40%;
        left: -35px;
    }

    .progressbar {
        background: url(../../images/quickyc/mobile-navigation-bg.png) no-repeat;
        padding-top: 50px;
        height: 100vh;
    }

        .progressbar ul::before {
            left: 5%;
            width: 440px;
        }

    .contentpage.statusarea nav.navbar {
        position: absolute;
        top: 0;
        z-index: 99;
        left: -5px;
    }

        .contentpage.statusarea nav.navbar button {
            top: 300px;
            position: absolute;
            z-index: 9;
        }

            .contentpage.statusarea nav.navbar button img {
                width: 92px;
                height: 92px;
            }

    .statusarea .progressbar.collapse:not(.show) {
        display: none;
    }

    .statusarea .progressbar.collapse {
        display: block;
    }

    .contentpage.mobile_show h1 {
        font-size: 18px;
    }

    .checkboxarea.checkboxarea2 {
        position: relative;
        left: -15px;
    }
    .demo3 {
        display: block !important;
    }
    .inputgrp.checkboxarea05 .btnera {
        margin: 0;
    }

    .tab-content.payment_form .btnera::-webkit-scrollbar {
        width: 5px;
    }

    .inputgrp.empaddress textarea {
        width: 100%;
        height: 90px;
        box-shadow: 0px 4px 6px #00000029;
        border: 1px solid #C7D5D9;
        border-radius: 25px;
        padding: 13px 15px;
        font-size: 14px;
        color: #9A9A9A;
    }

    .inputgrp.empaddress2 textarea {
        width: 100%;
        height: 58px;
        box-shadow: 0px 4px 6px #00000029;
        border: 1px solid #C7D5D9;
        border-radius: 25px;
        padding: 9px 15px;
        font-size: 14px;
        color: #9A9A9A;
    }

    /* Track */
    .tab-content.payment_form .btnera::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px;
        height: 5px;
        display: none;
    }

    /* Handle */
    .tab-content.payment_form .btnera::-webkit-scrollbar-thumb {
        background: #f8f8f8;
        border-radius: 10px;
    }

        /* Handle on hover */
        .tab-content.payment_form .btnera::-webkit-scrollbar-thumb:hover {
            background: #f8f8f8;
        }

    .tab-content.payment_form .btnera::-webkit-scrollbar {
        width: 5px;
        display: none;
    }

    /* Track */
    .tab-content.payment_form .btnera::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px;
        height: 5px;
    }

    /* Handle */
    .tab-content.payment_form .btnera::-webkit-scrollbar-thumb {
        background: #f8f8f8;
        border-radius: 10px;
    }

        /* Handle on hover */
        .tab-content.payment_form .btnera::-webkit-scrollbar-thumb:hover {
            background: #f8f8f8;
        }

    span.bigcheck.equitybtn01 label {
        width: 150px;
        padding-right: 0;
    }

    .tab-content.payment_form .btnera {
       /* margin: 0;
        margin-left: 0;
        overflow-x: scroll;
        width: 100%;
        height: 60px;*/
    }

    span.bigcheck.currenttbbt label {
        width: 155px;
    }

    button#btnSelectBrokeragePlan {
        padding: 0 !important;
        font-weight: 600;
        font-size: 14px;
        width: 153px;
        height: 35px;
        text-align: center;
        display: block;
        margin: 0 auto !important;
    }

    .tab-content.payment_form .listcontentmtf p {
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        color: #686868;
    }

    .listcontent.listcontentmtf p span {
        width: 10%;
    }

    .brcokeragebtn button.selectedit {
        font-size: 14px;
    }

    .formarea .listcontent3 p b {
        font-weight: bold;
        font-size: 14px;
        text-align: left;
    }

    .listcontent3 {
        background: #686868;
        padding: 0 15px;
        margin: 0;
        height: 47px;
        line-height: 47px;
    }

        .listcontent3 p span {
            padding-right: 0;
        }

    .formarea .listcontent3 p {
        text-align: left !important;
    }

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.paymentinput.demateid {
        margin-left: 0;
    }

    .brcokeragebtn {
        margin-bottom: 20px;
        margin-left: 0;
        position: relative;
        left: 0;
    }

    .payment_form label {
        font-size: 14px;
    }

    .listcontent2 p span {
        text-align: right;
        float: right;
        padding-right: 0px;
        font-weight: 600;
        font-size: 15px;
    }

    .brcokeragebtn button.selectedit {
        font-size: 14px;
        padding: 0 !important;
    }

    .formarea .listcontent p {
        font-size: 14px;
        padding: 0 15px;
        text-align: left;
    }

    .listcontent p span {
        font-weight: 500;
        text-align: right;
        float: right;
        padding-right: 0;
    }

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.select {
        margin-left: 0;
    }

    .brcokeragebtn button {
        padding: 5px 25px !important;
        font-size: 12px;
        font-weight: 600;
    }

    .tab-content.payment_form .otherbtn2.otherbtn3 {
        padding-left: 0;
    }

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.select img {
        width: 21px !important;
        height: 17px;
        position: absolute;
        top: 17px;
        left: 15px;
    }

    .tab-content.payment_form .brcokeragebtn .col-auto.inputgrp.paymentinput img {
        width: 21px !important;
        height: 17px;
        position: absolute;
        top: 12px;
        left: 15px;
    }


    .tab-content.payment_form .listcontent2 {
        padding: 0;
        margin: 0;
    }
    .row.bank_details2 .col-auto.emailid.bank01.inputgrp img.img-fluid {
        margin: 0;
        text-align: left;
        width: auto !important;
    }
    .col-auto.emailid.inputgrp.search input {
        padding-left: 40px !important;
    }
    .row.bank_details2 .col-auto.emailid.bank01.inputgrp span.text-danger.field-validation-error {
        padding-left: 15px;
    }
    .col-auto.emailid.bank01.inputgrp input {
        padding-left: 40px !important;
    }

    .tab-content.payment_form .otherbtn2.otherbtn3 b {
        font-size: 14px;
        font-weight: 600;
    }

    .payment_form .checkbox-area {
        left: 0;
        display: flex;
        overflow-x: scroll;
        justify-content: start;
        margin-bottom: 15px;
    }

    .formarea .listcontent2 p b {
        font-weight: 600;
        font-size: 14px;
        width: auto;
        display: inline-block;
        line-height: normal;
    }
    .modal.show .modal-dialog {
        top: 0 !important;
    }
    div#BrokerageCommodity {
        padding: 0 !important;
    }

    .tab-content.payment_form .listcontent2 p {
        font-size: 14px;
        text-align: left;
    }

    .formarea nav {
        margin-top: -165px;
    }

    .mobile_hide2 {
        display: none;
    }

    .emailid input {
        width: 100%;
    }

    .digilockerbtn {
        position: relative;
        margin: 0 auto;
        text-align: right;
        margin-top: 20px;
    }

    input#panNoverify {
        width: 78px;
        right: 6px;
    }

    .footer_icon ul {
        padding-left: 0;
    }

    .inputgrp.checkboxarea05 {
        margin-bottom: 0;
    }

    .form-control {
        box-shadow: 0px 4px 6px #00000029;
        border: 1px solid #C7D5D9;
        font-size: 14px;
        height: 36px;
        font-weight: 500;
        padding-left: 22px;
    }

    .formarea .nomineedate.inputgrp img {
        top: 8px;
        right: 10px;
    }

    .rejectionform2::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        background: url(../../images/quickyc/rectification_icon_mobile.svg) no-repeat;
        left: 20%;
        z-index: 99;
        top: -17px;
    }

    .formarea.imageuload.rejection .inputgrp label.btn.inputgrp.fileupload {
        margin-top: 20px;
        float: left;
        padding-left: 15px;
    }

    .formarea.imageuload.rejection .basicdetails .inputgrp label {
        text-align: left !important;
        font-size: 14px;
        width: 100%;
    }

    .imageuload.rejection h2 {
        font-size: 18px;
        margin-top: 32px;
    }

    .formarea.imageuload.rejection h5.gardiantext {
        font-size: 18px;
    }

    .nopad {
        padding: 0 15px;
    }

    .statusbar ul li a {
        position: relative;
        text-align: left;
        float: right;
        font-size: 15px;
        width: 70%;
    }
    div#mobileOtp {
        position: relative;
        margin: 0 auto;
        text-align: center;
    }
    ul#ApplicationStatus li:nth-child(2)::before {
        width: 0;
    }
    ul#ApplicationStatus li::before {
        width: 10px;
        top: 0;
        left: 22px;
    }

    .equitypdf .vievbtn {
        width: 104px;
    }

    .equitypdf .vievbtn2 {
        width: 104px;
    }

    .equitypdf {
        padding-bottom: 30px;
        padding-top: 30px;
        width: 90%;
        margin: 0 auto;
    }

    .equitypdf2 {
        border-bottom: 1px solid #aba4a4;
    }

    .equitypdf label {
        font-size: 18px;
    }

    .bottomarea {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .rejectionarea {
        display: block;
    }

    .rejectionreason {
        font-size: 14px;
        width: 70%;
        text-align: center;
        margin: 0 auto;
    }

    .rejectionname {
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .statusbar ul li a span {
        text-align: left;
    }

    .statusbar ul li:nth-child(2)::before {
        height: 130px;
        width: 10px;
        top: 80px;
        left: 18px;
    }

    .statusbar ul li:nth-child(2)::after {
        top: 75px;
        left: 0;
    }

    .rectifybtn {
        margin-bottom: 50px;
        margin-top: 50px;
    }

    .statusbar ul li:nth-child(2) a span::before {
        content: "";
        position: absolute;
        left: -70px;
        top: -40px;
        height: 1px;
        width: 50px;
        background: transparent;
        border: dotted;
        border-color: #c5c0c0;
    }

    .statusbar ul li:nth-child(4) a span::before {
        content: "";
        position: absolute;
        left: -70px;
        top: -40px;
        height: 1px;
        width: 50px;
        background: transparent;
        border: dotted;
        border-color: #c5c0c0;
    }

    .statusbar ul li:nth-child(3)::after {
        
    }

    .statusbar ul li::before {
        width: 10px;
        top: 0;
        height: 70px;
    }

    .statusbar ul li:nth-child(3) {
        top: 120px;
    }

    .statusbar ul li:nth-child(2) a {
        top: 0;
    }

    .statusbar ul li a span::before {
        content: "";
        position: absolute;
        left: -70px;
        top: -40px;
        height: 1px;
        width: 50px;
        background: transparent;
        border: dotted;
        border-color: #c5c0c0;
        display:none;
    }

    .statusbar ul li:first-child::after {
        top: 0;
        left: 0;
    }

    .statusbar ul li:first-child::before {
        height: 140px;
        width: 10px;
        top: 8px;
        left: 22px;
    }

    .statusbar ul li:nth-child(4) a {
        position: relative;
        top: 0;
    }

    .statusbar ul li::after {
        top: 170px;
        left: -8px;
    }
    .statusbar ul li:nth-child(4)::after {
        top: -30px;
        left: 0;
    }

    .statusbar ul li:nth-child(3) a span::before {
        content: "";
        position: absolute;
        left: -70px;
        top: -40px;
        height: 1px;
        width: 50px;
        background: transparent;
        border: dotted;
        border-color: #c5c0c0;
    }

    .statusbar ul li {
        display: inline-block;
        float: right;
        width: 100%;
        padding-bottom: 50px;
    }

    .camarabtn {
        position: absolute;
        bottom: -105px !important;
        margin: 0 auto;
        text-align: center;
        left: 0;
    }
    .statusbar ul li:nth-child(4) a {
        position: relative;
        top: 0;
        left: 0;
    }
    .clientphototext h4 {
        margin-top: 46px !important;
    }
        .statusbar ul {
        list-style: none;
        margin-top: 0;
        padding-left: 0;
    }

    div#clientPhoto .modal-content {
        width: 90%;
        height: auto;
        padding: 0;
    }

    .clientphotoarea img.cliebt {
        margin-top: 50px;
    }

    .camarabtn .current {
        width: 86%;
        font-size: 14px;
    }

    .camarabtn .retake {
        width: 86%;
        font-size: 14px;
    }

    .clientphotoarea .mobile_show img {
        position: absolute;
        top: -68px;
        left: 28%;
    }

    .clientphototext h4 {
        font-size: 18px;
        text-align: center;
    }

    .clientphototext p {
        text-align: center;
    }

    .clientphototext span {
        text-align: center;
        display: block;
        margin-top: 0 !important;
    }

    .clientphototext {
        margin-top: 110px;
    }

    div#clientPhoto .modal-dialog {
        top: 10%;
    }
    .clientphototext span {
        font-size: 12px !important;
    }
        .clientphototext button {
        width: 224px;
        height: 40px;
        background: #292928 no-repeat;
        border-radius: 10px;
        text-align: center;
        font: normal normal 600 16px/32px Poppins;
        letter-spacing: 4.32px;
        color: #FFFFFF;
        text-transform: uppercase;
        margin: 0 auto;
        display: block;
    }
    .modal.clientphotomodel .modal-dialog .modal-content .modal-header {
        position: relative;
        top: 14px;
        right: 0;
        padding: 0 20px !important;
    }
    .clientphotoarea canvas#canvas {
        width: 280px !important;
        height: 280px !important;
    }
    div#CaptureImageModal .modal-header .btn-close {
        right: 0 !important;
    }
    div#CaptureImageModal .modal-dialog .modal-content .modal-header p.warning {
        font-size: 17px;
    }
    .imagearea p {
        font-size: 14px !important;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .inputpas button.pay {
        margin: 0 auto;
        text-align: center;
        display: block;
        margin-top: 10px;
        padding: 0;
    }

    .row.imagesrow.nomin {
        margin-bottom: 0;
    }

    .rightborder::after {
        background: #D8D8D8;
        height: 2px;
        content: "";
        display: block;
        position: absolute;
        left: 15px;
        top: 0;
        width: 90%;
    }

    /* .classsbmit button { */
        /* height: 45px; */
        /* opacity: 1; */
        /* background: #f8f8f8; */
        /* margin-bottom: 25px; */
        /* width: 295px; */
        /* font-size: 16px; */
    /* } */

    .rightborder2::after {
        background: #D8D8D8;
        height: 2px;
        content: "";
        display: block;
        position: absolute;
        left: 15px;
        top: 0;
        width: 90%;
    }

    .rightborder3::after {
        background: #D8D8D8;
        height: 2px;
        content: "";
        display: block;
        position: absolute;
        left: 15px;
        top: 0;
        width: 90%;
    }

    .imageuload h5.gardiantext {
        font-size: 14px;
    }

    .rightborder h5.gardiantext {
        margin-top: 20px;
    }

    .rightborder2 h5.gardiantext {
        margin-top: 20px;
    }

    .rightborder3 h5.gardiantext {
        margin-top: 20px;
    }

    .imageuload h2 {
        font-size: 18px !important;
        color: #8b7ee5;
        margin-top: -115px;
    }
    div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload {
        margin-top: 140px;
        max-width: 95%;
        padding-top: 70px;
        margin-left: 3%;
        padding-bottom: 25px;
        padding: 80px 10px 10px 10px !important;
    }
    .inco {
        width: 100% !important;
    }
    div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload .imagesrow06 {
        padding: 10px 0 !important;
    }

    .rightborder2 {
        position: relative;
        margin-top: 30px;
    }

    .rightborder3 {
        position: relative;
        margin-top: 30px;
    }

    .formarea.imageuload p.imagesrowp {
        height: auto;
    }

    .rightborder {
        position: relative;
        margin-top: 27px;
    }

    .inputgrp select {
        font-size: 14px;
        height: 36px;
        padding-left: 22px;
        font-weight: 500;
    }

    .formarea.imageuload p {
        font-size: 22px;
        text-align: left;
    }

    .formarea.nominee_form h2 {
        font-size: 18px;
        margin-top: 25px;
    }
    .imagesrow div#div_IncomeAndBank {
        margin-top: 0;
    }

    .nominee_form .accordion-body {
        padding: 16px 0 0 0;
    }

    div#bankDetails {
        padding: 30px;
    }

    .accordion-header button.button2 {
        width: 27%;
        height: 36px;
        font-size: 14px;
        line-height: 28px;
        font-weight: 500;
    }

    .accordion-header button.button1 {
        width: 100%;
        height: 50px;
        font-size: 14px;
        line-height: 16px;
        font-weight: 500;
    }

    .formarea.nominee_form .accordian_area .accordion-item button img {
        height: 35px !important;
        width: 26px !important;
    }

    .progressbar ul li:first-child {
        width: auto;
        margin-top: 50px;
    }

        .progressbar ul li:first-child a img {
            display: inline-flex;
            margin: 0;
            text-align: left;
            margin-bottom: 0px;
            position: relative;
            left: 0;
            width: 35px;
            height: 35px;
            z-index: 2;
        }

    h3.gardiantext {
        text-align: left !important;
        margin-top: 10px;
        margin-bottom: 17px;
    }

        h3.gardiantext b {
            float: left;
            margin-top: 5px;
        }

    .addresssame {
        border: none;
        padding: 0;
        margin: 0 -15px;
    }

    .marbtm {
        margin-bottom: 0 !important;
    }

    .addresssame::before {
        background: transparent;
    }

    .accordion-button::after {
        top: -3px;
        position: relative;
    }

    .addnominee {
        padding: 0 17px;
    }

    .addresssame label.bigcheck.gardiantext2 {
        width: 100%;
        display: flex;
        margin: 0;
        justify-content: left;
        font-size: 16px;
        line-height: 35px;
        /*        margin-left: -16px;*/
    }


    .imagearea h4 {
        margin-top: -160px;
    }

    .succestextarea {
        margin: 0;
        padding: 20px;
    }

    .imagearea {
        margin-top: 0;
        position: relative;
    }

        .imagearea img {
            top: -145px;
            margin: 0 auto;
            text-align: center;
            display: block;
        }

    .bank_details2 .emailid.inputgrp {
        margin-bottom: 24px;
    }

    .digilockerbtn.banksubmit {
        float: left;
        margin-top: 0;
    }

    .digilockerbtn button {
        font-size: 10px;
        height: 38px;
        line-height: 38px;
        padding-top: 0;
    }

        .digilockerbtn button img {
            position: relative;
            width: 28px;
            height: 28px;
        }

    .bank_details2 {
        margin-bottom: 0;
    }

    .formarea .bank_details p {
        text-align: left;
    }

    .bank_details3::before {
       /* content: "";*/
        position: absolute;
        top: 0;
        left: 38px;
        height: 4px;
        width: 146px;
        /* transform: matrix(0, 1, -1, 0, 0, 0); */
        background: #E3E3E3;
        box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
        margin: 0 auto;
        text-align: center;
        left: 28%;
    }

    .bank_details3 ul {
        position: relative;
        left: 20%;
    }

        .bank_details3 ul li {
            position: relative;
            left: 0;
            height: 4px;
            display: inline-flex;
            width: 70px;
        }

            .bank_details3 ul li:first-child::before {
                left: 0;
                top: -6px;
            }

            .bank_details3 ul li:first-child::after {
                content: "";
                width: 72px;
                height: 4px;
                top: 0;
                left: 0px;
            }

            .bank_details3 ul li::before {
                top: -12px;
            }

    .tab-content {
        padding-left: 0;
    }

    .formbottm b {
        letter-spacing: 2.7px;
        color: #8b7ee5;
        font-size: 16px;
        display: block;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 15px;
    }

    .formbottm select {
        margin-top: 0;
        width: 118px;
        height: 35px;
        position: relative;
        left: 25px;
        font-size: 14px;
        font-weight: 600;
    }

    .formbottm button {
        width: 118px;
        height: 35px;
        background: #6F6F6F;
        border-radius: 22px;
        font: normal normal 600 14px/32px Poppins;
        letter-spacing: 1.96px;
        color: #FFFFFF;
        text-transform: uppercase;
        text-align: center;
        line-height: 35px;
        padding: 0;
        float: left;
    }

    .tab-content.payment_form .listcontentmtf {
        border-top: 2px solid #D8D8D8;
        border-bottom: 2px solid #D8D8D8;
        padding: 15px 0;
        margin-left: 16px;
        margin-right: 30px;
        background: none;
        border-radius: 0;
        margin: 0 0 30px;
    }

    .formbottm {
        max-width: 100% !important;
        margin: 0 auto;
        margin-top: 0;
        margin-bottom: 15px;
    }

    div#equityBrokerage .modal-content {
        /*
        min-width: 300px;
        overflow-x: scroll;
*/
    }

    .proarea {
        background-color: #ffe9e4;
        position: relative;
        top: -2px;
    }

    .formarea .emailid.inputgrp img.right {
        width: 25px !important;
        height: 25px;
        float: right;
        text-align: right;
        position: absolute;
        right: 6px;
        left: unset;
        top: 6px;
    }

    .progressbar ul li:nth-child(2) a {
    }

    .progressbar ul li:nth-child(3) a {
    }

    .progressbar ul li a {
        font-size: 16px;
        color: #000;
        text-decoration: none;
        font-weight: 500;
        padding-left: 30px;
    }

    div#emailOtp input {
        width: 45px;
        height: 45px;
        padding-left: 0;
    }

    .twobtn {
        font-size: 11px;
        margin-top: 20px;
    }
        .twobtn input {
            font-size: 11px;
        }

        .progressbar ul li:nth-child(6) {
            margin-bottom: 50px;
        }

        .formarea h3 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 15px;
        }

        p.textinput {
            font-size: 11px !important;
        }

        .formarea .emailid.inputgrp img {
            width: 21px !important;
            height: 17px;
            position: absolute;
            top: 10px;
            left: 12px;
        }

        .formbottomtext {
            display: none;
        }

        .progressbar ul li {
            font-size: 10px;
        }

        .emailid .btn {
            right: 10px;
            width: 93px;
            height: 27px;
            font-weight: 600;
            font-size: 12px;
        }

        div#emailid_area p.textinput {
            font-size: 13px !important;
        }

            div#emailid_area p.textinput.textinput2 {
                margin-bottom: 16px;
            }

        div#emailid_area p.textinput {
            margin-bottom: 10px;
            padding-top: 0px;
        }

        .formarea p {
            font-size: 14px;
        }

        .progressbar ul li {
            padding-right: 8px;
            padding-left: 8px;
            width: auto;
            height: 70px;
            text-align: left !important;
            display: block;
        }

            .progressbar ul li::before {
                left: 14px;
            }

            .progressbar ul li:first-child::after {
                left: 37px;
                width: 14px;
                height: 43px;
                z-index: 1;
            }

        p.textinput {
            font-size: 13px !important;
            margin-top: 10px;
            padding: 0 20px;
        }

        .contentpage.statusarea nav.navbar button.navbar-toggler {
        }

            .contentpage.statusarea nav.navbar button.navbar-toggler .navbar-toggler-icon {
                display: inline-block;
                width: 92px;
                height: 92px;
                vertical-align: middle;
                background-repeat: no-repeat;
                background-position: center;
                background-size: 100%;
            }

        .progressbar ul::before {
            left: 40px;
            width: 9px;
            height: 350px;
            z-index: 0;
            top: 73px;
        }

        div#mobileno_area p {
            font-size: 14px;
            text-align: center;
        }

        .progressbar ul li a img {
            display: inline-flex;
            margin: 0 auto;
            text-align: center;
            margin-bottom: 0;
            position: relative;
            left: 0px;
            width: 35px;
            height: 35px;
        }

        footer p {
            font-weight: 500;
            text-align: center;
            font-size: 9px;
        }

        .mobile_hide {
            display: none;
        }

        .mobile_show {
            display: block;
        }

        .footer_icon {
            float: none;
            padding-top: 0;
        }

        a#scrlTop {
            position: absolute;
            top: -17px;
            margin: 0 auto;
            text-align: center;
            display: block;
            width: 100%;
            display: block;
        }
    }

    @media (max-width:767px) and (min-width:481px) {
        .mobile_hide {
            display: none;
        }

        .mobile_show {
            display: block;
        }

        .nav li span {
            font-weight: bold;
            color: #0d0c0c;
            display: block;
        }

        .nav li a {
            text-decoration: none;
            font-size: 12px;
            font-weight: normal;
        }

        footer {
            height: auto;
            position: relative;
            margin-top: 20px;
        }

        .formarea {
            padding: 25px 12px;
        }

        .mobileno input {
            font-size: 13px;
        }

        .mobileno {
            display: block;
        }

        .formarea h3 {
            font-size: 18px;
        }

        div#mobileno_area p {
            font-size: 14px;
        }

        .mobileno input {
            max-width: 100%;
        }

        .mobile_hide {
            display: none;
        }

        .mobile_show {
            display: block;
        }

        footer {
            height: auto;
            margin-top: 20px;
            position: relative;
        }

        nav#navbar_top,
        container {
            padding: 0;
            position: relative;
        }
    }

    @media (max-width:360px) and (min-width:319px) {
        div#emailOtp input {
            width: 40px;
            height: 40px;
        }

        /*
    .progressbar ul li {
        font-size: 8px;
        width: 40px;
    }
*/

        .progressbar ul::before {
            /*
        left: 40px;
        width: 240px;
*/
        }
    }

    @media (max-width:480px) and (min-width:319px) {
        .formarea {
            padding: 20px 0 15px;
            margin-top: 40px;
        }

        div#mobileno_area p {
            font-size: 12px;
        }

        .listarea ul li {
            padding: 8px 0;
            font-size: 14px;
            position: relative;
            padding-right: 15px;
        }

        div#mobileOtp input {
            background: #F8F7FB 0% 0% no-repeat padding-box;
            box-shadow: 0px 3px 6px #00000029;
            opacity: 1;
            width: 37px;
            height: 37px;
            border: 1px solid #E7E7E7;
            border-radius: 8px;
            font-weight: 600;
            padding-left: 0;
        }

        nav#navbar_top,
        container {
            padding: 6px 0;
            position: relative;
        }

        .mobileno label {
            font-size: 12px;
            font-weight: 500;
            top: 9px;
        }

        .nav li a {
            text-decoration: none;
            font-size: 11px;
            font-weight: normal;
        }

        .mobileno .btn {
            right: 7px;
            top: 4px;
            height: 28px;
            width: 93px;
            font-size: 11px;
            font-weight: 500;
        }

        .formarea img.img-fluid {
            height: auto;
            position: relative;
        }       

        .formarea h3 {
            font-size: 20px;
        }

        div#mobileno_area p {
            font-size: 14px;
        }

        .pagecontent h1 {
            font-size: 18px;
        }

        footer {
            height: auto;
            margin-top: 0px;
            position: relative;
            border-top: 3px solid #6F6F6F;
        }

        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 {
            padding-top: 10px;
        }

        .mobileno label {
            font-size: 14px;
            font-weight: 500;
            top: 8px;
        }

        footer p {
            font-weight: 500;
            text-align: center;
            font-size: 9px;
        }

      
        .mobileno input {
            padding-left: 40px;
            width: 100%;
            height: 37px;
        }

        .nav li span {
            font-weight: 500;
            color: #0d0c0c;
            font-size: 12px;
            position: relative;
            top: 1px;
        }

        div#otp_area {
            margin-bottom: 0;
            margin-top: 0 !important;
        }

            div#otp_area p {
                font-size: 14px;
            }

        header {
            background: #8b7ee5;
            height: 50px;
            width: 100%;
            top: 0;
            /*        z-index: 999;
         position: fixed;
        */
        }

        .content_area {
            position: relative;
            /*background: #8b7ee5;*/
        }

    }

    @media (max-width:380px) and (min-width:319px) {
        .statusbar ul li:first-child::after {
            top: -25px;
            left: 0;
        }

        .statusbar ul li:nth-child(2)::after {
            top: -30px;
        }

        .statusbar ul li:nth-child(3)::after {
            top: -30px;
            left: 0;
        }

        .statusbar ul li::after {
            top: 150px;
        }

        .accordion-header button.button1 {
            width: 100%;
        }

        .accordion-header button.button2 {
            width: 31%;
        }

        .formarea::before {
            left: 20%;
        }
    }

    @media (max-width:320px) {
        .mobileno input {
            font-size: 12px !important;
            padding-left: 36px;
        }

        .succestextarea p {
            font-size: 11px;
        }

        .formarea::before {
            left: 16% !important;
        }

        div#mobileno_area p.textinput {
            font-size: 12px !important;
        }

        .formarea h3 {
            font-size: 18px !important;
        }

        .btnbank {
            margin: 0 auto;
            text-align: center;
            font-size: 13px;
            display: inline-block;
        }

        div#bankDetails {
            padding: 15px;
        }

        .pay {
            width: 80px;
            height: 30px;
        }

        .skip {
            width: 80px;
            margin-left: 15px;
            height: 30px;
        }

        .formbottm select {
            margin-top: 0;
            width: 105px;
            height: 35px;
            position: relative;
            left: 15px;
            font-size: 14px;
            font-weight: 600;
        }

        .formbottm button {
            width: 95px;
            font-size: 12px;
        }

        .formarea .listcontent2 p b {
            width: 70%;
        }

        .formbottm b {
            font-size: 16px;
        }

        .investment label.bigcheck {
            height: 100px !important;
        }
    }

    @media (max-width:1199px) and (min-width:990px) {
        .progressbar ul::before {
            left: 28%;
            width: 365px;
        }

        .emailid .btn {
            right: 10px;
        }

        .progressbar ul li {
            font-size: 10px;
        }
    }


    @media (max-width:767px) and (min-width:481px) {
        header .client_logo img {
            width: 100px;
            height: auto;
        }

        .nav li a {
            text-decoration: none;
            font-size: 12px;
            font-weight: normal;
            display: inline-flex;
            margin-top: 23px;
        }

        header {
            background: #8b7ee5;
            height: 50px;
            width: 100%;
            top: 0;
        }

        .formarea img.img-fluid {
            width: 150px;
            height: auto;
            top: -100px;
            position: relative;
            left: 0;
        }

        .formarea {
            padding: 25px 25px 15px;
            margin-top: 65px;
        }

            .formarea::before {
                position: absolute;
                content: "";
                top: 0;
                left: 30%;
                display: block;
                background: url(../../images/quickyc/form_icon_purple_bg.png) no-repeat;
                width: 198px;
                height: 102px;
            }

        .formarea {
            max-width: 480px;
            padding: 25px 32px;
            margin-top: 20px;
            margin-bottom: 30px;
        }

            .formarea h3 {
                font-size: 20px;
            }

        div#mobileno_area p {
            font-size: 12px;
        }

        .mobileno input {
            padding-left: 35px;
        }
    }

    /*Loarder CSS*/
    #loader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000000db;
        background-size: cover;
        height: 100%;
        z-index: 999999;
    }



    .loader {
        height: 100%;
        width: 100%;
        position: relative;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .loader--dot {
        animation-name: loader;
        animation-timing-function: ease-in-out;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        height: 18px;
        width: 18px;
        border-radius: 100%;
        background-color: black;
        position: absolute;
        border: 1px solid white;
    }

        .loader--dot:first-child {
            background-color: #8b7ee5;
            animation-delay: 0.5s;
            opacity: 1;
        }

        .loader--dot:nth-child(2) {
            background-color: #8b7ee5;
            animation-delay: 0.4s;
            opacity: 0.9;
        }

        .loader--dot:nth-child(3) {
            background-color: #8b7ee5;
            animation-delay: 0.3s;
            opacity: 0.8;
        }

        .loader--dot:nth-child(4) {
            background-color: #8b7ee5;
            animation-delay: 0.2s;
            opacity: 0.7;
        }

        .loader--dot:nth-child(5) {
            background-color: #8b7ee5;
            animation-delay: 0.1s;
            opacity: 0.6;
        }

        .loader--dot:nth-child(6) {
            background-color: #8b7ee5;
            animation-delay: 0s;
            opacity: 0.5;
        }

    .loader--dot {
        left: 44%;
    }

    .loader--text {
        position: relative;
        top: 45px;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
    }




    /*.loader--text:after {
        content: "Loading";
        font-weight: bold;
        animation-name: loading-text;
        animation-duration: 3s;
        animation-iteration-count: infinite;
    }
*/
    @keyframes loader {
        15% {
            transform: translateX(0);
        }

        45% {
            transform: translateX(230px);
        }

        65% {
            transform: translateX(230px);
        }

        95% {
            transform: translateX(0);
        }
    }

    @keyframes loading-text {
        0% {
            content: "Loading";
        }

        25% {
            content: "Loading.";
        }

        50% {
            content: "Loading..";
        }

        75% {
            content: "Loading...";
        }
    }

@media (max-width:1199px) and (min-width:1024px) {

    .formarea {
        margin-left: 0px !important;
    }
    .mobileno .btn {
        right: 10px !important;
    }
    ul#ApplicationStatus li::before {
        width: 335px !important; 
    }
    ul#ApplicationStatus li:nth-child(2)::before {
        width: 200px !important;
    }

    .formarea.imageuload.applistaus {
        margin-top: 92px;
        max-width: 100%;
        padding: 80px 42px 30px 41px;
        margin-left: 0;
    }
    .statusbar ul li {
        font-size: 14px !important;
    } 
            
    }

    @media (max-width:1023px) and (min-width:992px) {
        .formarea {
            margin-left: 0px !important;
        }

        .mobileno .btn {
            right: 10px !important;
        }

        ul#ApplicationStatus li::before {
            width: 335px !important;
        }

        ul#ApplicationStatus li:nth-child(2)::before {
            width: 200px !important;
        }

        .formarea.imageuload.applistaus {
            margin-top: 92px;
            max-width: 100%;
            padding: 80px 42px 30px 41px;
            margin-left: 0;
        }

        .statusbar ul li {
            font-size: 14px !important;
        } 
    }

    @media (max-width:991px) and (min-width:768px) {

        .formarea {
            margin-left: 0px !important;
        }

        .mobileno .btn {
            right: 10px !important;
        }

        ul#ApplicationStatus li::before {
            width: 180px !important;
        }

        ul#ApplicationStatus li:nth-child(2)::before {
            width: 100px !important;
        }

        .formarea.imageuload.applistaus {
            margin-top: 92px;
            max-width: 100%;
            padding: 80px 42px 30px 41px;
            margin-left: 0;
        }

        .statusbar ul li {
            font-size: 12px !important;
        }
            .statusbar ul li a span {
                font-size: 8px !important;
            }
            .statusbar ul li:nth-child(2)::after {
                top: 40px;
                left: 45px !important;
            }
            .statusbar ul li:nth-child(2) a span::before {
                content: "";
                position: absolute;
                left: 72px !important;
                top: -71px;
                height: 50px;
                width: 1px;
                background: transparent;
                border: 1px dashed;
                border-color: #bdbaba;
            }
            .statusbar ul li:nth-child(3) a span::before {
                    
                }
            .statusbar ul li:nth-child(3)::after {
                left: 45px !important;
            }
            .statusbar ul li a span::before {
                left: 74px !important;
            }
            .formarea {
                margin-left: 0;
            }

        .contentpage.mobile_show {
            padding-right: 0;
            padding-top: 38px;
        }
        .statusbar ul li:nth-child(4) a span::before {
            left: 87px !important;
            top: -70px;
        }
            .contentpage.mobile_show h1 br {
                display: none;
            }

        .pagecontent h1 {
            font-size: 21px;
        }

        .indexpage input[type='checkbox'].bigcheck:checked + span.bigcheck-target:after {
            left: 12px;
        }

        .listcontent.indexpage {
            margin: 0;
            padding: 26px 20px 26px 45px;
        }

            .listcontent.indexpage label {
                text-align: justify;
            }

        .footer_icon {
            padding-top: 0;
            padding-bottom: 15px;
        }

        .col-auto.mobileno.inputgrp input::placeholder {
            font-size: 12px;
        }

        .mobileno .btn {
            width: 90px;
        }

        .emailid input {
            margin-bottom: 10px;
        }

        .formarea .emailid.inputgrp img.right {
            top: 6px;
            right: 7px;
        }

        header nav ul li.logout_btn {
            margin-top: 0;
        }

        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 li.mobile_show {
            display: inline-flex;
        }

        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 {
            display: -webkit-box;
            float: right;
            margin-top: 0;
        }
    }

    @media (max-width:767px) and (min-width:601px) {
        .nav li a {
            margin-top: 0;
        }
        div#mobileOtp {
            position: relative;
            margin: 0;
            margin: 0 auto;
            text-align: center;
        }
        .mobileno .btn {
            right: 23px;
        }
        .statusbar ul li {
            font-size: 15px !important;
            width: 100% !important;
            margin-bottom: 20px !important;
        }
        .formarea {
            margin-top:25px !important;
            margin-bottom: 0;
            margin-left: 0;
        }
        .statusbar ul li a span::before {
            display: none;
        }
            .formarea.imageuload.applistaus h4.userapplication {
                font-size: 15px !important;
                margin-bottom: 10px;
            }
        ul#ApplicationStatus li:nth-child(4)::after {
            top: -15px !important;
            left: 0 !important;
        }
        .statusbar ul li:nth-child(2)::after {
            top: -15px !important;
            left: 0 !important;
        }
        .statusbar ul li:nth-child(3)::after {
            top: -15px !important;
            left: 0 !important;
        }
            .statusbar ul li a {
            margin-top: 0 !important;
            width: 100% !important;
        }
        .statusbar ul li:nth-child(4) a {
            position: relative;
            top: 0;
            left: 0 !important;
        }

        ul#ApplicationStatus li::before {
            width: 10px !important;
            top: 0 !important;
            left: 22px !important;
            height: 50px !important;
        }
        ul#ApplicationStatus li:nth-child(2)::before {
            width: 10px !important;
        }

        nav.navbar.navbar-expand-lg li {
            text-align: right;
            margin-top: -5px !important;
        }


        .statusbar ul li:nth-child(2) a {
            top: 0 !important;
        }
        .statusbar ul li:nth-child(4) a {
            position: relative;
            top: 0 !important;
        }
        .statusbar ul li:first-child::after {
            top: -10px !important;
            left: 1px !important;
        }

        .formarea.imageuload.applistaus .row.imagesrow.imagesrow2 {
            padding: 30px 15px !important;
            height: 260px;
        }
        .statusbar ul li:nth-child(4) {
            right: 0;
            position: relative;
            top: 0;
        }
        .statusbar ul li a span {
            font-size: 10px !important;
        }

        .contentpage.mobile_show {
            padding-right: 0;
            padding-top: 25px;
        }
        .formarea.imageuload.applistaus h4.userapplication span {
            font-size: 15px !important;

        }
        .footer_icon {
            padding-top: 0;
            padding-bottom: 15px;
        }

        .formarea h3 {
            font-size: 20px;
        }

        .contentpage.mobile_show h1 br {
            display: none;
        }

        .emailid input {
            margin-bottom: 10px;
        }

        .formarea .emailid.inputgrp img.right {
            top: 6px;
            right: 22px;
        }

        header nav ul li.logout_btn {
            margin-top: 0;
        }

        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 li.mobile_show {
            display: inline-flex;
        }

        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 {
            display: -webkit-box;
            float: right;
            margin-top: 0;
        }

        .mobileno .btn {
            right: 20px !important;
        }
    }




    @media (max-width:600px) and (min-width:319px) {

        section.content_area .row.pagecontent .formarea.imageuload.applistaus {
            max-width: 100%;
            padding: 80px 15px 30px 15px;
            margin-left: 0;
            margin-bottom: 0;
        }
        div#RejectionModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal {
            width: 100% !important;
            top: 5% !important;
        }
            div#RejectionModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal .formarea.rejection {
                width: 100% !important;
                padding: 80px 15px 25px 15px;
            }

        .statusbar ul li:first-child::after {
            top: -25px;
            left: 0;
        }
        div#RejectionModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal .formarea.rejection img.img-fluid {
            top: -155px !important;
            width: 50% !important;
            height: auto !important;
        }
        .rejection_top {
            margin-top: -130px;
        }
        div#RejectionFormModal .modal-content.bd-0.tx-14 {
            margin-top: 40px;
        }
            div#RejectionFormModal .modal-content.bd-0.tx-14 .bank_details3 ul {
                display: none;
            }
            div#RejectionFormModal .modal-content.bd-0.tx-14 .bank_details3::before {
                display:none;
            }
        .rejection h2 {
            font-size: 21px !important;
        }

        div#RejectionModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area {
            background: transparent;
        }

        

        .rejectionreason {
            font-size: 14px;
            width: 100% !important;
            text-align: center;
            margin: 0 auto;
            padding: 0 20px;
        }
        div#RejectionDiv .rejectionreason .rejectionname button.btn {
            display: block;
            margin: 0 auto;
            text-align: center;
            font-size: 13px;
            width: 115px;
            height: 31px;
            line-height: 31px;
            padding: 0;
        }
        .rejectionname span {
            font-size: 13px;
            color: #eb1d1d;
            padding-left: 5px;
            line-height: normal;
            height: 20px;
            display: inline-block;
        }

        .rectifybtn button {
            font-size: 12px;
        }

        .statusbar ul li:nth-child(3) {
            top: 0;
        }
        .statusbar ul li:nth-child(2)::after {
            top: -30px;
        }
        .statusbar ul li:nth-child(3)::after {
            top: -30px;
            left: 0;
        }
        

        .statusbar ul li:nth-child(4) {
            right: 0;
            position: relative;
            top: 0;
            padding-bottom: 0;
        }
            section.content_area .row.pagecontent .formarea.imageuload.applistaus h2 {
                font-size: 20px;
                margin-bottom: 20px;
                margin-top: -140px;
            }

        .formarea.imageuload.applistaus .row.imagesrow.imagesrow2 {
            padding: 30px 15px;
            height: auto;
        }

        .formarea.imageuload.applistaus h4.userapplication {
            font-size: 15px;
            margin-bottom: 10px;

        }
        .formarea.imageuload.applistaus h4.userapplication span {
            font-size: 14px;
        }

        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 {
          /*  display: -webkit-box;
            float: right;
            margin-top: -18px;*/
        }

        section.content_area.pagesFade .row.pagecontent .formarea.imageuload .col-auto.inputgrp.select img.img-fluid {
            margin: 0;
            position: absolute;
            top: 10px;
            left: 15px;
        }
        .formarea.imageuload .imagesrow p.notetext {
          font-size: 12px !important;
        }

        div#eq-brokerage {
            padding: 0px !important;
        }
            div#eq-brokerage .modal-dialog.modal-dialog-centered {
               /* background: #fff;*/
                border: none;
                height: 430px;
            }
            div#eq-brokerage .modal-content {
                background: #fff;
                border: none;
                height: 470px;
            }
        div#Deamt_Field .col-auto.inputgrp.select img.img-fluid {
            top: 10px;
        }

        .pricingTable3 {
            margin-right: 0 !important;
            background: #f3f2fc;
            margin-bottom: 12px !important;
            width: auto !important;
        }
        .brcokeragebtn button#btnSelectBrokeragePlan {
            margin: 0 !important;
            display: inline-block;
        }
        .checkboxarea {
            display: inline-flex;
            width: 100%;
            margin: 0 auto;
            text-align: left;
            align-items: center;
            padding: 0;
        }
        div#DivDematYes .listcontent2 {
            margin-bottom: 10px;
            width: 100%;
        }
        .tab-content.payment_form .otherbtn2.otherbtn3 b {
            padding-left: 0;
        }
        nav.navbar.navbar-expand-lg li.mobile_show {
          /*  text-align: right;
            display: inline-block;
            font-size: 12px !important;*/
        }
        .formarea.nominee_form {
            margin: 0;
            max-width: 100%;
        }
        ul.nav.navbar-nav.ms-auto.mb-2.mb-lg-0 li.logout_btn {
            margin-top: 0;
        }
        section.content_area.pagesFade .formarea.nominee_form {
            padding-top: 0;
            margin-bottom: 60px;
        }
        form#FormNominee section.content_area.pagesFade {
            /*height: 100vh;*/
            padding-bottom: 30px;
        }
        .row.monimeeformtext .checkbox-area {
            margin-bottom: 15px;
        }
        section.content_area.pagesFade .formarea.nominee_form .accordion-body .inputgrp img.img-fluid.calender_icon {
            margin: 0;
            width: auto !important;
            top: 10px;
            position: absolute;
            right: 15px;
            left: unset;
        }
        .nominee_form .accordion-body .col-auto.inputgrp.mrbtm {
            margin-bottom: 20px !important;
        }
        .formarea.nominee_form .row.monimeeformtext .addresssame span.bigcheck {
            margin-left: 35px !important;
            margin-top: 15px;
        }
        div#NOMINEE_1GAdress .col-lg-4.col-md-4.col-12, div#NOMINEE_2GAdress .col-lg-4.col-md-4.col-12, div#NOMINEE_3GAdress .col-lg-4.col-md-4.col-12 {
            padding-right: 0;
        }
        div#NOMINEE_1GAdress .col-lg-2.col-md-3.col-12, div#NOMINEE_2GAdress .col-lg-2.col-md-3.col-12, div#NOMINEE_3GAdress .col-lg-2.col-md-3.col-12 {
            padding-right: 0;
        }
        div#imageContentBank label.btn.inputgrp.fileupload img.img-fluid {
            width: auto !important;
            margin: 0;
            position: absolute;
            top: 8px;
            left: 10px;
        }
        .selectareea .col-auto.inputgrp.select {
            width: 100% !important;
        }
        .selectareea {
            display: block;
            width: 100%;
        }
        .imagesrow div#div_IncomeAndBank .rightborder .selectareea .col-auto.inputgrp.select img.img-fluid {
            width: auto !important;
        }
        .imagesrow .row.imagesrow06 .row.panrow label.btn.inputgrp.fileupload img.img-fluid {
            width: auto !important;
        }
        .imagesrow .row.imagesrow06 .col-auto.inputgrp.select img.img-fluid {
            width: auto !important;
        }
        .imagesrow.nomin .row.imagesrow06 label.btn.inputgrp.fileupload img.img-fluid {
            width: auto !important;
        }
        section.content_area.pagesFade .row.pagecontent .formarea.imageuload .row.panrow label.btn.inputgrp.fileupload img.img-fluid {
            margin: 0;
            left: 0;
            top: 6px;
            left: 40px;
            width: 22px;
            display: flex;
            position: absolute;
        }
        .loader--text {
            font-size: 13px !important;
        }
        .inputpas .pdfpasswwrd i {
            position: absolute;
            top: 11px;
            right: 20px;
            color: #764277;
        }

        .documentpagemodule .imagearea .inputpas img.img-fluid {
            width: 20px;
            height: 20px;
            position: absolute;
            left: 22px;
            top: 53px;
        }


        section.content_area.pagesFade .row.pagecontent .formarea.imageuload .row.panrow div#imageContentCLIENT_PHOTO label.btn.inputgrp.fileupload img.img-fluid {
            left: -12px;
        }
        section.content_area.pagesFade .row.pagecontent .formarea.imageuload .imagesrow div#imageContentNOMINEE_1 img.img-fluid {
            margin: 0;
            left: 0;
            top: 6px;
            left: 9px;
            width: 22px;
            display: flex;
            position: absolute;
        }
        div#CaptureImageModal {

        }
            div#CaptureImageModal .modal-dialog {

            }
        .clientphotomodel .modal-body {
            padding-top: 0 !important;
            height: 200px;
            overflow-y: scroll;
            margin-bottom: 65px;
        }

                div#CaptureImageModal .modal-dialog .modal-content {
                    width: 96%;
                    left: 2%;
                    padding: 0;
                    height: 600px;
                    margin: 0 auto;
                    text-align: center;
                }
        .clientphotoarea video#video {
            width: 280px !important;
            height: 280px !important;
        }
        .clientphotomodel .modal-body .camarabtn button {
            width: 80%;
            margin-left: 0;
            height: 40px;
            line-height: 40px;
            z-index: 999;
            position: relative;
        }
        .clientphototext {
            left: 0 !important;
            position: relative;
        }
        .clientphototext h4 {
            font-size: 17px !important;
            text-align: center !important;
        }


    }

    @media (max-width:600px) and (min-width:500px) {
        .mobileno .btn {
            right: 40px;
        }
    }
    @media (max-width:1199px) and (min-width:990px) {
        .mobileno .btn {
            right: -10px;
        }
    }

@media (max-width:360px) and (min-width:319px) {
   
    div#navbarScroll li.logout_btn {
        margin-top: 0;
    }
}


/*############# Biman NEW Css #############*/

.radio-group {
    display: flex;
    gap: 16px;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
#bank-section .radio-label {
    color: #6d6a6a !important;
}
.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

    .radio-label input[type="radio"]:checked {
        background-color: #6366f1;
        border-color: #6366f1;
        box-shadow: inset 0 0 0 3px #fff;
    }

    .radio-label input[type="radio"]:hover {
        border-color: #6366f1; /* hover এ border color */
    }

.consent-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent !important;
    border: 1px solid #C9CBFC;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 60px;
}
.consent-text {
    font-size: 12px !important;
    font-weight: 400;
    color: #3D3D3D !important;
    margin-bottom: 0 !important;
}

.consent-container input[type="checkbox"] {
    display: none;
}

.consent-checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 6px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1px solid #00000029;
}

.consent-text {
    font-size: 13px;
    color: #444444;
    line-height: 1.65;
    margin: 0;
}

.consent-text strong {
    color: #222222;
    font-weight: 600;
}
/* Hide tick by default */
.tick {
    display: none;
}

.consent-container input:checked + .consent-checkmark {
    background: #7F77DD;
}

.consent-container input:checked + .consent-checkmark .tick {
    display: block;
}

/*############*/

.footer-qr-prt{
    display: flex;
    justify-content: space-between;
}
.qr-bx {
    display: flex;
    align-items: center;
    gap: 10px;
}
.qr-bx p{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height:22px;
}
.qr-bx p span {
    display: block;
    font-size: 14px;
    color: #888888;
}

.form-inr-prt {
    padding: 0 34px;
}
.back-btn-area {
    margin-bottom: 30px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.back-btn-area span {
    font-weight: 600;
    font-size: 14px;
    color: #3D3D3D;
}
.kyc-box {
    padding: 34px 32px;
}
.emailid input {
    width: 100%;
    height: 60px;
    font-size: 16px;
    border-radius: 12px;
}
.emailid .hasDatepicker {
    padding-left: 50px;
}

/*###### Patment checkbox toggle button ######*/

.checkbox-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

span.bigcheck {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 16px;
    padding: 14px 18px;
    min-height: 56px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    span.bigcheck:hover {
        border-color: #a5b4fc;
        box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
    }

    span.bigcheck b {
        font-size: 12px;
        font-weight: 500;
        color: #1f2937;
        order: 0;
        text-align: left;
    }

    span.bigcheck input.bigcheck[type="checkbox"] {
        display: none;
    }

    span.bigcheck label.bigcheck {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        margin: 0;
    }

span.bigcheck-target {
    position: relative;
    width: 44px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 999px;
    flex-shrink: 0;
    order: 1;
    transition: background 0.2s;
    cursor: pointer;
}

    span.bigcheck-target::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 18px;
        height: 18px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 1px 3px rgba(0,0,0,0.18);
        transition: transform 0.2s;
    }

input.bigcheck:checked ~ span.bigcheck-target {
    background: #6366f1;
}

    input.bigcheck:checked ~ span.bigcheck-target::after {
        transform: translateX(20px);
    }

input.bigcheck:disabled ~ span.bigcheck-target {
    background: #6366f1;
    opacity: 0.7;
    cursor: not-allowed;
}

    input.bigcheck:disabled ~ span.bigcheck-target::after {
        transform: translateX(20px);
    }

span.equitybtn01 {
    border-color: #C9CBFC;
    background: #f5f3ff;
}

    span.equitybtn01 b {
        color: #4338ca;
    }

.btnera {
    margin: 16px 0 0 !important;
}

.otherbtn2.otherbtn3 {
    display: flex !important;
    padding: 0;
    flex-direction: column;
    align-items: start;
}

.otherbtn2.otherbtn3 .col-lg-7 {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 20px;
}

.otherbtn2.otherbtn3 .col-lg-7 b {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.yesno {
    display: flex;
    align-items: center;
}

.checkboxarea {
    display: flex;
    gap: 16px;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

    .checkboxarea span.bigcheck {
        display: flex;
        align-items: center;
        background: transparent;
        border: none !important;
        padding: 0;
        min-height: unset;
        box-shadow: none !important;
        border-radius: 0;
    }

    .checkboxarea span.bigcheck:hover {
        border: none !important;
        box-shadow: none !important;
        background: transparent;
    }

.checkboxarea label.bigcheck {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #374151;
    font-weight: 400;
    flex-direction: row;
}

.checkboxarea input[type="radio"] {
    display: none;
}

/* Custom radio circle */
.checkboxarea .bigcheck-target {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #9ca3af;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    order: 0;
    transition: border-color 0.15s;
}

.checkboxarea .bigcheck-target::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s;
}

.checkboxarea input[type="radio"]:checked ~ .bigcheck-target {
    border-color: #6366f1;
}

.checkboxarea input[type="radio"]:checked ~ .bigcheck-target::after {
    transform: translate(-50%, -50%) scale(1);
}

.checkboxarea .fottop {
    font-size: 14px;
    color: #374151;
    order: 1;
}

.amount-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #C9CBFC;
    border-radius: 24px;
    padding: 15px;
    background: #fff;
    max-width: 425px;
}

.amount-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amount-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.amount-label {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 2px 0;
    line-height: 24px;
}

.amount-sublabel {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.amount-value {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
}

.inputgrp {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/*.inputgrp img {
    display: none;
}*/

.form-inr-prt .emailid.inputgrp img {
    display: none;
}

.inputgrp-label {
    font-size: 14px !important;
    font-weight: 600;
    color: #3D3D3D;
    margin: 0 0 2px 0;
}

.paymentinput.inputgrp .form-control {
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    padding: 10px 14px !important;
    font-size: 14px;
    color: #6b7280;
    background: #fff;
    outline: none;
    box-shadow: none;
    height: 54px;
}

.select.inputgrp select.form-control {
    border-radius: 12px !important;
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    padding: 10px 14px !important;
    font-size: 14px;
    color: #6b7280;
    background: #fff;
    outline: none;
    box-shadow: none;
    height: 54px;
}

.inputgrp .form-control::placeholder {
    color: #9ca3af;
}

.inputgrp .form-control:focus {
    border-color: #a5b4fc;
    box-shadow: none;
}

.inputgrp.select {
    position: relative;
}

/*.inputgrp.select::after {
    content: '▾';
    position: absolute;
    right: 14px;
    bottom: 11px;
    color: #6b7280;
    font-size: 28px;
    pointer-events: none;
}*/

/*###### t&c checkbox ######*/

.listcontent.indexpagee {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 20px;
    background: #fff;
}

.listcontent.indexpagee span.bigcheck {
    display: block;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-height: unset !important;
}

.listcontent.indexpagee label.bigcheck {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: default;
    font-size: 13.5px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    flex-direction: row;
}

.listcontent.indexpagee input[type="checkbox"] {
    display: none;
}

.listcontent.indexpagee .bigcheck-target {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: none !important;
    background: #6366f1;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    order: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

    .listcontent.indexpagee .bigcheck-target::after {
        content: '';
        width: 10px;
        height: 6px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
        display: block;
    }
.tc-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .tc-heading span:last-child {
        font-size: 20px;
        font-weight: 700;
        color: #3D3D3D;
    }

/* checkbox wrapper */
.tc-checkbox-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    cursor: pointer;
}

    /* hide default checkbox */
    .tc-checkbox-icon input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* custom box */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: #7C6CF6;
    border-radius: 4px;
}

    /* tick */
    .checkmark:after {
        content: "";
        position: absolute;
        display: block;
        left: 7px;
        top: 4px;
        width: 4px;
        height: 8px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

/* unchecked */
.tc-checkbox-icon input:not(:checked) ~ .checkmark {
    background: #fff;
    border: 1.5px solid #ccc;
}

    .tc-checkbox-icon input:not(:checked) ~ .checkmark:after {
        display: none;
    }
.listcontent.indexpagee {
    padding: 16px 12px;
    border: 1px solid #C9CBFC;
    background-color: #fff;
    border-radius: 16px;
    flex-direction: column;
}

.tc-list {
    padding-left: 3rem;
}
.tc-list li {
    color: #6D6D6D;
    font-size:14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.tc-list li a {
    color: #6D4DDE;
    font-size: 14px;
    text-decoration: none;
}

/*###### Bank Details ######*/

.bank-lft-prt {
    background-color: #F7F6FE;
    border-radius: 32px;
}
    .bank-lft-prt h1 {
        font-size: 28px;
        line-height: 32px;
        color: #3D3D3D;
        font-weight: 700;
        margin: 0 0 8px;
    }
    .bank-lft-prt h3 {
        font-size: 20px;
        line-height: 30px;
        color: #3D3D3D;
        font-weight:700;
        margin: 0 0 8px;
    }
.bottom-image {
    margin-top: 20px;
    text-align: center;
}
.bottom-image img{
    display: inline-block;
}

/*###### bank details form ######*/
:root {
    --card-bg: #ffffff;
    --section-bg: #F4F5FF;
    --border: #E7E7E7;
    --accent: #6c5ce7;
    --accent-light: #ede9ff;
    --text: #1a1a2e;
    --muted: #9090b0;
    --input-bg: #fafafd;
    --radius: 14px;
    --radius-sm: 10px;
}
.bankform {
    padding-left: 50px;
}
.card {
    border: none;
    border-radius: 12px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* ── UPI Section ── */

.upi-fields {
    display: none;
}

.section.active .upi-fields {
    display: block;
}

/* Bank grid — visible class না থাকলে লুকানো */
.bank-grid {
    display: none;
}

.bank-grid.visible {
    display: grid;
}

.bankform .card .section {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.25rem 1.5rem;
    transition: border-color 0.2s;
}
.bankform .card .section.active {
    background: var(--section-bg);
}
.bankform .card .radio-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    user-select: none;
    margin-bottom: 1.25rem;
}
.bankform .card .radio-header .radio-label img{
    width: 60px;
}
.radio-header .badge {
    background-color: #8b7ee5;
    padding: 2px 6px;
    font-size: 13px;
}

/* Custom radio */
.bankform .card .radio-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.bankform .card .radio-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.2s, transform 0.2s;
}

.bankform .card .radio-header.checked .radio-dot {
    background: var(--accent-light);
}

    .radio-header.checked .radio-dot::after {
        opacity: 1;
        transform: scale(1);
    }



.bankform .card .radio-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

/* Field label */
.bankform .card .field-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bankform .card input[type="text"],
.bankform .card input[type="number"] {
    width: 100%;
    background: var(--input-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: none !important;
    padding: 16px;
    height: 54px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bankform .card input::placeholder {
    color: var(--muted);
}

.bankform .card input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.12);
}

/* ── OR Divider ── */
.or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

    .or-divider::before,
    .or-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .or-divider span {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: 0.12em;
    }

/* ── Bank Grid ── */
.bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(.22,1,.36,1), opacity 0.3s;
}

    .bank-grid.visible {
        max-height: 400px;
        opacity: 1;
    }

.field {
    display: flex;
    flex-direction: column;
}
.field .form-control {
    background: #FFFFFF;
    box-shadow: none;
    border-radius: 12px;
    font-size: 15px;
    height: 54px;
    padding: 16px;
}

/* ── Submit ── */
.submit-btn {
    width: 100%;
    margin-top: 1.75rem;
    padding: 0.9rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(108,92,231,0.25);
}

    .submit-btn:hover {
        background: #5a4bd1;
        box-shadow: 0 6px 24px rgba(108,92,231,0.35);
    }

    .submit-btn:active {
        transform: scale(0.98);
    }

/* Disabled state for bank fields when UPI is active */
.section:not(.active) input {
    pointer-events: none;
    opacity: 0.5;
}

.section.active input {
    pointer-events: auto;
    opacity: 1;
}

/*###### End bank details form ######*/

.otherdetalisform h3 {
    font-size: 32px;
    line-height: 48px;
    color: #3D3D3D;
    font-weight: 700;
    margin: 0 0 16px;
}

.otherdetalisform .inputgrp .form-control {
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    padding: 10px 14px !important;
    font-size: 14px;
    color: #6b7280;
    background: #fff;
    outline: none;
    box-shadow: none;
    height: 54px;
}
.custom-change .listcontent.indexpagee {
    flex-direction: row;
}
.custom-change .listcontent.indexpagee .tc-list {
    padding-left: 2rem;
}

.inco2 .inputgrp.select::after {
    display: none;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #3c4043;
    cursor: pointer;
    font-family: 'Google Sans', sans-serif;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}

    .google-btn:hover {
        background: #f8f9fa;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .google-btn:active {
        transform: scale(0.98);
        box-shadow: none;
    }

    .google-btn svg {
        width: 20px;
        height: 20px;
    }
.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    color: var(--color-text-tertiary);
    font-size: 13px;
    margin: 10px 0;
}
    .divider::before, .divider::after {
        content: '';
        flex: 1;
        height: 0.5px;
        background: #ddd;
    }
.bottomarea h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3d3d3d;
    line-height: 48px;
}
.equitypdf {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 20px;
    min-height: 160px;
    overflow: hidden;
    background: url('/Content/images/quickyc/bg1.png') no-repeat top right;
    height: 200px;
}
.equitypdf .row{
    height:100%;
    flex-direction: column;
    justify-content: space-between;
}
.nopad {
    display: flex;
    align-items: center;
    gap: 10px;
}
.equitypdf label {
    font-size: 16px;
    font-weight: 600;
    color: #3D3D3D;
    padding-left: 0;
}
.equitypdf p {
    font-size: 14px;
    color: #7a7a7a;
    margin: 5px 0 0;
}

.d-flex > .btn {
    flex: inherit;
}

/*###### QR Code part(bank details) ######*/

.upi-fields .card {
    padding: 2.5rem 2rem;
    margin: 0 auto;
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.amount {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.6rem;
    letter-spacing: -0.5px;
}

    .amount span {
        color: #1a1a2e;
    }

.scan-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.upi-apps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

    .upi-apps img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: contain;
    }

/* Fake UPI app icons using CSS */
.app-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.app-phonepe {
    background: #5f259f;
    color: #fff;
    font-size: 14px;
}

.app-googlepay {
    background: #fff;
    border: 1.5px solid #e5e7eb;
}

.app-paytm {
    background: #00BAF2;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.app-bhim {
    background: #FF6B00;
    color: #fff;
    font-size: 12px;
}

.app-whatsapp {
    background: #25D366;
    color: #fff;
    font-size: 18px;
}

.qr-wrapper {
    display: inline-block;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 1.5rem;
    background: #fff;
}

/* QR Code — generated via CSS pattern simulation */
.qr-box {
    width: 200px;
    height: 200px;
    position: relative;
    background: #fff;
}

    .qr-box canvas {
        width: 200px;
        height: 200px;
    }

.qr-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e1b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

    .qr-logo svg {
        width: 24px;
        height: 24px;
    }

.timer-text {
    font-size: 14px;
    color: #374151;
}

    .timer-text strong {
        color: #1a1a2e;
        font-weight: 600;
    }

#countdown {
    font-weight: 700;
    color: #dc2626;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 9999px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5f259f, #00BAF2);
    border-radius: 9999px;
    transition: width 1s linear;
    width: 100%;
}

/*###### QR Code part(bank details) ######*/

.upi-fields .card {
    padding: 2.5rem 2rem;
    margin: 0 auto;
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.amount {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.6rem;
    letter-spacing: -0.5px;
}

    .amount span {
        color: #1a1a2e;
    }

.scan-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.upi-apps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

    .upi-apps img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: contain;
    }

/* Fake UPI app icons using CSS */
.app-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.app-phonepe {
    background: #5f259f;
    color: #fff;
    font-size: 14px;
}

.app-googlepay {
    background: #fff;
    border: 1.5px solid #e5e7eb;
}

.app-paytm {
    background: #00BAF2;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.app-bhim {
    background: #FF6B00;
    color: #fff;
    font-size: 12px;
}

.app-whatsapp {
    background: #25D366;
    color: #fff;
    font-size: 18px;
}

.qr-wrapper {
    display: inline-block;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 1.5rem;
    background: #fff;
}

/* QR Code — generated via CSS pattern simulation */
.qr-box {
    width: 200px;
    height: 200px;
    position: relative;
    background: #fff;
}

    .qr-box canvas {
        width: 200px;
        height: 200px;
    }

.qr-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e1b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

    .qr-logo svg {
        width: 24px;
        height: 24px;
    }

.timer-text {
    font-size: 14px;
    color: #374151;
}

    .timer-text strong {
        color: #1a1a2e;
        font-weight: 600;
    }

#countdown {
    font-weight: 700;
    color: #dc2626;
}

/*###### Application Status ######*/

.status-wrap {
    background: #f6f6f6;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px 40px;
    min-height: 140px;
    box-sizing: border-box;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

.steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, #8b7ee5 0%, #C60820 100%);
    border-radius: 2px;
    z-index: 0;
    width: 75%;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(139,126,229,0.18);
}

.step:nth-child(1) .step-icon {
    background: #8b7ee5;
    color: #fff;
}

.step:nth-child(2) .step-icon {
    background: #a78be8;
    color: #fff;
}

.step:nth-child(3) .step-icon {
    background: #c65070;
    color: #fff;
}

.step:nth-child(4) .step-icon {
    background: #C60820;
    color: #fff;
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin-bottom: 6px;
    max-width: 110px;
    margin: 0 auto;
}

.step-date {
    font-size: 11px;
    color: #8b7ee5;
    font-weight: 600;
    text-align: center;
    background: #ede9fd;
    border-radius: 20px;
    padding: 2px 10px;
    white-space: nowrap;
}

.step:nth-child(3) .step-date, .step:nth-child(4) .step-date {
    background: #fde9ec;
    color: #C60820;
}

.userapplication {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e8e4fb;
    border-radius: 50px;
    padding: 12px 28px;
    width: fit-content;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    color: #3d3580;
    box-shadow: 0 2px 12px rgba(139,126,229,0.10);
}

    .userapplication img {
        width: 32px;
        height: 32px;
    }

    .userapplication span {
        color: #8b7ee5;
        font-weight: 700;
    }

.common-bx {
    display: flex;
    flex-direction: column;
    border: 1px solid #C9CBFC;
    height: 100%;
    position: relative;
    padding: 14px 14px 60px !important;
}
.panrow{
    position:absolute;
    bottom: 5px;
    width: 100%;
}
.common-bx .btn {
    background: #8990e9;
    color: #fff;
    border-radius: 10px;
}

section#ClientContainer {
    height: calc(100vh - 60px - 74px);
    overflow-y: auto;
}
.btn.addnomi:hover {
    color: #8978ED;
}
.btn-skip {
    font-size: 15px;
    color: #8978ED;
    padding: 10px 15px;
    margin-right: 10px;
    font-weight: 600;
    text-decoration: none;
}

.sweet-alert button {
    padding: 8px 25px !important;
    border-radius: 10px !important;
    margin: 0 5px !important;
    font-weight: 400 !important;
}
#RejectionFormModal .modal-body {
    padding: 1rem 0 !important;
}

#ModelAadharNameConfirmDigiLocker .modal-dialog {
    max-width: 600px !important;
}
#ModelAadharNameConfirmDigiLocker .btn-box {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/*###### Fee & Charges Design ######*/

.fee-card {
    background: #ffffff;
    border: 0.5px solid #e0dff5;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 320px;
    gap: 12px;
}

.fee-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #EEEDFE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fee-text {
    min-width: 0;
}

.fee-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    margin: 0 0 5px;
}

.fee-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0;
}
.view-btn {
    background: #8978ED;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.view-btn:hover {
    background: #8978ED;
}


/*###### END Fee & Charges Design ######*/

#feeModal .modal-dialog {
    max-width: 650px !important;
}
#feeModal .modal-header .btn-close {
    margin: 0 20px 0 0;
}

#feeModal .container {
    background: white;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

#feeModal .header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    position: relative;
}

#feeModal .icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    #feeModal .icon svg {
        width: 30px;
        height: 30px;
        fill: #667eea;
    }

#feeModal .title {
    color: white !important;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

#feeModal .rupee-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 28px;
    font-weight: 700;
}

#feeModal .content {
    padding: 25px;
}

.charge-item {
    margin-bottom: 35px;
}

.charge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.charge-title {
    color: #1d1d1f;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.charge-amount {
    color: #667eea;
    font-size: 24px;
    font-weight: 700;
    text-decoration: line-through;
}
.charge-amount2 {
    color: #667eea;
    font-size: 24px;
    font-weight: 700;
}

.charge-description {
    color: #86868b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.charge-details {
    color: #667eea;
    font-size: 14px;
    line-height: 1.6;
}

.button-container {
    padding: 0 30px 35px;
}

.agree-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

    .agree-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .agree-button:active {
        transform: translateY(0);
    }

@media (max-width: 640px) {
    .header {
        padding: 30px 20px 25px;
    }

    .title {
        font-size: 26px;
    }

    .content {
        padding: 25px 20px;
    }

    .button-container {
        padding: 0 20px 25px;
    }
}

.accordion-content ul li.form-check {
    padding: 0;
}
.bottom-image img {
    width: 50%;
}

.edit-ico {
    position: absolute;
    right: 15px;
    top: 20px;
    color: #7F77DD;
    font-size: 15px;
}


.ddpi-popup-msg {
    position: relative;
    margin-top: 8px;
    background-color: #a3a4e7;
    border: 1px solid #7f80f0;
    color: #fff;
    padding: 8px 18px 8px 8px;
    border-radius: 6px;
    font-size: 11px;
    animation: fadeInPopup 0.3s ease-in-out;
    line-height: 18px;
    font-weight: 400;
}

.ddpi-popup-close {
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

@keyframes fadeInPopup {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.applistaus p{
    font-size: 22px !important;
}
div#imageContentIncomeProof {
    position: absolute;
    bottom: 12px;
    width: 91%;
}
div#imageContentBank {
    position: absolute;
    bottom: 12px;
    width: 91%;
}
.formarea.imageuload .inco p {
    font-size: 12px !important;
}
.formarea.imageuload p.imagesrowp {
    font-size: 12px !important;
}
div#div_IncomeAndBank {
    width: 100%;
}

#RejectionFormModal .modal-header {
    justify-content: flex-end;
    padding: 0;
}
.rectifybtn {
    margin-top: 0;
}
.rectifybtn.model_footer button.btn {
    margin-top: 0;
}
#BankRejectionModel {
    position: absolute;
    inset: 23px auto auto -12px;
    margin: 0px;
    transform: translate(380px, 252px);
    display: none;
}

#DerivativeRejectionModel {
    position: absolute;
    inset: 17px auto auto -333px;
    margin: 0px;
    transform: translate(527px, 252px);
	display:none;
}
#ClientPhotoRejectionModel {
    position: absolute;
    inset: 329px auto auto 430px;
    margin: 0px;
    transform: translate(145px, 75px);
	display:none;
}
.footer_icon li img {
    height: 23px;
}



/*###### Responsive ######*/
@media (max-width: 1199.98px) {
    .progressbar ul li {
        margin: 0 30px;
    }
    div#nav-tabContent .inputgrp {
        margin-bottom: 10px;
    }
}

@media (max-width: 991.98px) {
    .contentpage.mobile_show {
        padding: 20px;
    }
    .contentpage h1 {
        font-size: 26px !important;
        line-height: 38px !important;
        margin-bottom: 15px !important;
    }
    .contentpage ul li {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 22px;
    }
    .listcontent.indexpage {
        display: none;
    }
    .consent-container {
        margin-top: 30px;
    }
    .back-btn-area {
        margin-bottom: 15px;
    }
    #otp_area {
        margin-top: 0;
    }
    div#emailid_area p {
        margin-bottom: 10px;
    }
    .btn-submit {
        margin-top: 20px;
    }
    .bankform {
        padding-left: 0;
    }
    .bank-lft-prt {
        padding: 0;
    }
    .bottom-image img {
        width: 100%;
    }
    .bank-grid {
        grid-template-columns: 1fr;
    }
    .status-wrap {
        padding: 20px 10px;
    }
	.navbar-toggler {
        padding: 2px 6px;
        background-color: #8b7ee5;
    }
}

@media (max-width: 767.98px) {

    .form-inr-prt {
        padding: 0 20px;
    }
    .contentpage h1 {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-bottom: 14px !important;
    }
    .contentpage h1 br{
        display: none;
    }
    .contentpage ul li {
        font-size: 14px !important;
        line-height: 23px !important;
    }
    .btn-submit {
        border-radius: 12px !important;
        margin-top: 20px;
        height: 40px;
        padding: 10px !important;
        font-size: 14px !important;
    }
    .consent-container {
        padding: 12px;
    }
    .consent-text {
        font-size: 12px !important;
        line-height: 1.55;
    }
    #otp_area .form-inr-prt {
        padding: 0 15px;
    }
    .mobileOtp {
        gap: 9px;
    }
    .formarea h3 {
        margin-bottom: 8px;
        line-height: 30px;
    }
    .pagecontent {
        margin-top: 20px;
    }
    .emailOtp {
        margin: 20px 0 0;
        gap: 5px;
    }
    .checkbox-area span.bigcheck {
        padding: 5px 8px;
        min-height: 51px;
        display: flex;
        width: 100%;
    }
    .checkbox-area {
        gap: 0;
    }
    .my-5 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .tc-heading span:last-child {
        font-size: 16px;
    }
    .tc-list {
        padding-left: 1rem;
        margin-top: 10px;
    }
    .bank-lft-prt h3 {
        font-size: 16px;
    }
    .formarea {
        padding: 0 15px;
    }
    .otherdetalisform .inputgrp .form-control {
        height: 50px;
    }
    .inputgrp select {
        height: 50px;
    }
    .custom-change .listcontent.indexpagee .tc-list {
        padding-left: 1rem;
    }
    .inco2 {
        margin-bottom: 20px;
    }
    .formarea.nominee_form {
         padding: 0; 
    }
    .nominee_form .checkbox-area {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    .formarea.nominee_form h2 {
        font-size: 14px !important;
    }

    .status-wrap {
        padding: 24px 16px
    }

    .steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0
    }

    .steps::before {
        top: 0;
        bottom: 0;
        left: 22px;
        right: auto;
        width: 4px;
        height: auto;
        background: linear-gradient(180deg,#8b7ee5 0%,#C60820 100%)
    }

    .step {
        flex-direction: row;
        align-items: center;
        flex: none;
        width: 100%;
        gap: 16px;
        padding: 8px 0
    }

    .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 18px
    }

    .step-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .step-label {
        text-align: left;
        max-width: none;
        margin-bottom: 0;
        font-size: 13px
    }

    .step-date {
        white-space: nowrap;
        font-size: 11px
    }
    .panrow {
        position: static;
    }
    .common-bx {
        margin-top: 20px;
    }
    .otherdetalisform h3 {
        font-size: 22px;
        margin: 0 0 24px !important;
    }
    .paymentPage .formarea {
        margin: 0;
    }
	.custom-tooltiptext {
        width: 294px !important;
        left: -80px !important;
        margin-left: 0 !important;
    }
    .fee-card {
        width: 100%;
        margin-bottom: 12px;
    }
    #signatureCropModal .modal-dialog {
        height: 86% !important;
    }
    #signatureCropModal .modal-content {
        height: 320px !important;
        overflow: auto !important;
    }
	.d-flex.imagesrow06 {
		display: block !important;
	}
	#div_IncomeAndBank .d-flex {
		display: block !important;
	}
	
	#div_IncomeAndBank .w-50 {
		width: 100% !important;
	}
	#signatureCropModal .modal-content {
		padding: 0 !important;
	}
.imagesrow div#div_IncomeAndBank {
    margin-bottom: 20px;
}
.imagesrow div#div_IncomeAndBank {
    display: block !important;
}
div#RejectionFormModal .modal-dialog.modal-dialog-vertical-center.imageUploadModal section.content_area.pagesFade .formarea.imageuload {
    padding: 80px 0 10px !important;
}
#DerivativeRejectionModel {
    inset: -42px auto auto -516px;
}
.popover {
    max-width: 220px;
}
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-end > .popover-arrow {
    left: 73%;
    width: .5rem;
    height: 1rem;
    top: 98% !important;
    transform: translate(0px) rotate(-92deg) !important;
}
#BankRejectionModel {
    inset: 354px auto auto -15px;
    transform: translate(28px, 412px);
}
#ClientPhotoRejectionModel {
    inset: 973px auto auto 11px;
    transform: translate(0, 976px);
}
.inco2.common-bx p {
    font-size: 13px !important;
}

}










