@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeue-Roman.woff2") format("woff2"),
        url("../fonts/HelveticaNeue-Roman.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "helvetica_neuebold";
    src: url("../fonts/helveticaneuebold-webfont.woff2") format("woff2"),
        url("../fonts/helveticaneuebold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "helvetica_neueheavy";
    src: url("../fonts/helveticaneueheavy-webfont.woff2") format("woff2"),
        url("../fonts/helveticaneueheavy-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "helvetica_neuelight";
    src: url("../fonts/helveticaneuelight-webfont.woff2") format("woff2"),
        url("../fonts/helveticaneuelight-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "helvetica_neuemedium";
    src: url("../fonts/helveticaneuemedium-webfont.woff2") format("woff2"),
        url("../fonts/helveticaneuemedium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu.woff2") format("woff2"),
        url("../fonts/Ubuntu.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Medium.woff2") format("woff2"),
        url("../fonts/Ubuntu-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main_header_section {
    height: 60px;
    background-color: #fff;
    width: calc(100% - 240px);
    padding: 5px 20px;
    position: fixed;
    z-index: 999;
    right: 0;
    top: 0;
    box-shadow: 0px 0px 4px 0px #202b4726;
}

.logo {
    height: 50px;
}

button.header_drop_btn.dropdown-toggle {
    border: none;
    background-color: #e7e7eb;
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: end;
    float: right;
}

button.header_drop_btn.dropdown-toggle img {
    height: 16px;
    margin-right: 8px;
}

.header_drop_btn.dropdown-toggle::after {
    display: inline-block;
    margin-left: 1.255em;
}

/* .main_sidebar_section **************************/
.main_sidebar_section {
    position: fixed;
    width: 240px;
    background-color: #2ea54b;
    top: 0px;
    height: 100%;
    padding: 20px 0px;
    z-index: 999;
}

.sidebar_menu {
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.sidebar_menu li {
    list-style: none;
    padding: 15px 20px;
    border-bottom: 1px dashed #ffffff;
}

.hide_icon {
    display: none;
}

.sidebar_menu li:hover .hide_icon {
    display: block;
}

.sidebar_menu li:hover .show_icon {
    display: none;
}

.sidebar_menu .active .hide_icon {
    display: block;
}

.sidebar_menu .active .show_icon {
    display: none;
}

.sidebar_menu li:hover {
    background-color: #01994e;
}

.sidebar_menu .active {
    background-color: #01994e;
    border-right: 3px solid #ffffff;
}

.sidebar_menu li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: left;
    color: #ffffff;
    font-size: 15px;
    font-family: "Helvetica Neue";
}

.sidebar_menu li:hover a {
    color: #ffffff;
}

.sidebar_menu .active a {
    color: #ffffff;
}

.sidebar_menu li a img {
    height: 18px;
    margin-right: 10px;
}

.sidebar_menu li a:hover {
    text-decoration: none;
}

/* main_container_section ****************************/
.main_container_section {
    width: calc(100% - 240px);
    padding: 25px 5px;
    transition: all 0.3s;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #e7e7eb;
    height: calc(100% - 60px);
    overflow: auto;
}

.content-area {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 60px;
}

.content-area h1 {
    color: #000000;
    font-family: "helvetica_neuemedium";
    font-size: 26px;
}

.content-area h3 {
    color: #37385c;
    font-size: 15px;
    font-family: helveticaregular;
}

.form-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    column-gap: 16px;
    margin-top: 20px;
}

.field-col {
    width: 29%;
}

.btn-col {
    width: 13%;
}

.form-box .form-control {
    height: 40px;
    font-size: 14px;
    font-family: "helveticaregular";
}

.form-box .form-group {
    margin: 0px;
}

button.btn.org-btn {
    background-color: #ec743f;
    color: #fff;
    font-size: 16px;
    padding: 6px 20px 10px;
    width: 148px;
}

img.search-icon {
    margin-left: 10px;
    width: 13px;
}

label {
    font-size: 14px;
    font-family: "helveticaregular";
    color: #72738c;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem #ced4da !important;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ced4da !important;
    outline: 0;
    box-shadow: 0 0 0 0rem #ced4da !important;
}

.card_drop .btn.btn-header-link {
    padding: 0;
}

.sidebar_drop_body {
    padding: 0 !important;
}

.sidebar_drop_body li {
    border-bottom: none;
    padding-left: 45px !important;
}

#main .card_drop .btn-header-link:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
    margin-left: 30px;
    padding-top: 4px;
    font-size: 18px;
    line-height: 0;
}

#main .card_drop .btn-header-link.collapsed:after {
    content: "\f106";
}

.btn.focus,
.btn:focus {
    box-shadow: none !important;
}

a:-webkit-any-link:focus-visible {
    outline-offset: 0px;
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

.table-box {
    margin-top: 35px;
}

.table_main_section {
    background-color: #ffffff;
}

.table_thead {
    background-color: #37385c;
}

.table_thead th:first-child {
    border-top-left-radius: 0px;
}

.table_thead th:last-child {
    border-top-right-radius: 0px;
}

.table_thead th {
    color: #ffffff;
}

.table_main_section .table {
    border: 1px solid #72738c;
    border-bottom: 0px;
}

.table_main_section .table th {
    border-right: 2px solid #e7e7eb;
    border-bottom: none !important;
    font-family: "helveticaregular" !important;
    font-size: 14px;
    font-weight: 500;
}

.table_main_section .table td {
    border-top: 1px solid #72738c !important;
    color: #37385c;
    font-family: "helveticaregular";
    font-size: 14px;
    font-weight: 500;
}

.table_main_section .table {
    border-radius: 6px;
    box-shadow: 0 0 0 1px #666;
}

.td_know_btn a {
    background-color: #ec743f;
    padding: 7px 22px;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    font-family: "helveticaregular";
    width: 120px;
    display: block;
    margin: auto;
}

.td_know_btn a:hover {
    text-decoration: none;
    color: #fff;
}

.td_active_btn a {
    background-color: #77d43a;
    padding: 7px 22px;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    font-family: "helveticaregular";
    width: 80px;
    display: block;
    margin: auto;
}

.td_active_btn a:hover {
    text-decoration: none;
    color: #fff;
}

.table th {
    padding: 10px 12px !important;
    text-align: center;
}

.table td {
    padding: 15px 12px !important;
    text-align: center;
}

.web-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.mob-header {
    display: none;
}

.close-icon {
    display: none;
}

@media (max-width: 1380px) {
    button.btn.org-btn {
        width: 120px;
    }
    input.form-control.otp {
        text-align: center;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px;
        font-family: "helvetica_neuemedium";
        color: #000000;
    }
}

@media (max-width: 1300px) {
    .field-col {
        width: 31%;
    }

    .btn-col {
        width: 16%;
    }

    .form-box {
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .table_main_section .table th {
        min-width: 170px;
    }
}

@media (max-width: 900px) {
    .web-header {
        display: none;
    }

    .mob-header {
        display: block;
        width: 100%;
    }

    .main_header_section {
        padding: 10px 10px 10px 0px;
        display: flex;
        box-shadow: 0px 0px 7px 0px #00000042;
        width: 100%;
    }

    .mob-header .text-right {
        text-align: right !important;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .main_sidebar_section {
        display: none;
    }

    .main_container_section {
        width: 100%;
    }

    .form-box {
        flex-wrap: wrap;
    }

    section.main_sidebar_section.addsidebar {
        display: block !important;
        z-index: 999;
        top: 0;
        width: 100%;
        background-color: #00000078;
        padding: 0px 0px;
        transition: ease-in 2s;
    }

    .sidebar_menu {
        padding: 0;
        margin: 0;
        width: 240px;
        height: 100vh;
        background-color: #2ea54b;
        padding-top: 20px;
    }

    .close-icon {
        position: fixed;
        left: 240px;
        background-color: #ffffff;
        padding: 6px;
        top: 10px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        display: block;
        height: 40px;
        z-index: 99;
    }

    .field-col {
        width: 100%;
    }

    .btn-col {
        width: 100%;
    }

    .table_main_section .table th {
        min-width: 170px;
    }
}

/* Reli Css */

img.left-banner {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: left;
}

.LoginSec {
    overflow: hidden !important;
}

img.right-banner {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    object-position: right;
}

.login-box {
    position: relative;
}

h3.login-heading {
    font-size: 24px;
    font-family: "helvetica_neuebold";
    padding-top: 40px;
}

form.login-form {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

p.or-text {
    font-size: 20px;
    color: #000000;
    opacity: 0.7;
    font-family: "helvetica_neuemedium";
    position: relative;
}

p.or-text::before,
p.or-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: #91929e;
    margin: 0px;
}

p.or-text::before {
    left: 30px;
}

p.or-text::after {
    right: 30px;
}

h4.ls-heading {
    font-size: 20px;
    font-family: auto;
    padding-top: 10px;
    font-family: "helvetica_neuemedium";
}

a.pay-now-btn {
    background-color: #f26f24;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 7px;
    margin-top: 20px;
    font-family: "helvetica_neuemedium";
    font-size: 18px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.pay-now-btn:hover {
    background-color: #f26f24;
    text-decoration: none;
    color: #ffffff;
}

img.pay-icon {
    width: 26px;
    height: 26px;
    margin-left: 10px;
}

img.sidebar-logo {
    width: 172px;
    height: auto;
}

p.sl-back {
    background-color: #ffffff;
    margin: 10px 26px;
    border-radius: 7px;
    text-align: center;
}

.custom-hr {
    width: 200px;
    height: 2px;
    background-color: #333;
    border: none;
    margin: 20px auto;
}

.custom-hr {
    width: 68px;
    height: 3px;
    background-color: #c0b501;
    border: none;
    margin-left: 0px;
    border-radius: 7px;
}

.lb-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 1.5%;
    row-gap: 1.5%;
    flex-wrap: wrap;
}

.loan-box {
    width: 31.33%;
}

.loan-box {
    background-color: #f3faf4;
    padding: 16px 20px;
    border-radius: 7px;
    margin-bottom: 24px;
    display: flex;
    justify-content: start;
    align-items: flex-start;
}

img.menu_icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.lb-content h3 {
    color: #000000;
    font-size: 16px;
    font-family: "helvetica_neuemedium";
    margin: 0px;
    padding-bottom: 10px;
}

.lb-content h5 {
    color: #000000;
    font-family: "Ubuntu";
    margin: 18px 0 18px;
    font-weight: 500;
    opacity: 70%;
    margin: 0px;
    padding-bottom: 10px;
    font-size: 14px;
}

.lb-content a {
    background-color: #147341;
    color: #ffffff;
    padding: 6px 20px;
    font-size: 16px;
    font-family: "Helvetica Neue";
    border-radius: 7px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.lb-content a:hover {
    background-color: #147341;
    color: #ffffff;
    text-decoration: none;
}

button.use-menu {
    background-color: transparent !important;
    color: #000000;
    border: 0px !important;
}

img.user_icon {
    width: 35px;
    height: auto;
    margin-right: 10px;
}

.user-box {
    display: flex;
    justify-content: end;
    align-items: center;
}

span.number-text {
    color: #ff5d00;
    opacity: 1;
}

.form-group.otp-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0% 10%;
}

input.form-control.otp {
    text-align: center;
    width: 70px;
    height: 70px;
    font-size: 20px;
    font-family: "helvetica_neuemedium";
    color: #000000;
}

a.resend-otp {
    font-family: "Ubuntu";
    color: #f26f24;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    width: 50%;
}

a.reverify_pan {
    font-family: "Ubuntu";
    color: #f26f24;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    width: 50%;
}

a.update-no {
    font-family: "Ubuntu";
    color: #147341;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: right;
    width: 50%;
}

.resend-otp-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 12px;
}

.oc-box {
    width: 100%;
    padding: 10px 25px;
}

.oc-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.other-content h3 {
    font-size: 18px;
    color: #000000;
    font-family: "helvetica_neuemedium";
    background-color: #f3faf4;
    padding: 15px 25px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.other-content {
    margin-top: 25px;
    box-shadow: 0px 1px 12px #00000014;
    background-color: #ffffff;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    width: 100%;
}

.qcih-content {
    font-size: 16px;
    font-family: "Helvetica Neue";
    color: #000000;
    opacity: 0.7;
}

.qcin-content p {
    font-size: 15px;
    font-family: "helvetica_neuemedium";
    color: #000000;
    padding-left: 15px;
}

p.qcin-color {
    color: #f26f24;
}

.document-section {
    margin-top: 25px;
}
.oc-boxs {
    width: 100%;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
}

/* .dc-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 48%;
} */

img.v-icon {
    width: 21px;
    height: auto;
    margin: 0px 6px;
}

/* .view-inner {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 31.33%;
} */

.download-icon {
    margin-bottom: 1rem;
}

img.d-icon {
    width: 16px;
    height: auto;
    margin: 0px 6px;
    margin-top: -4px;
}

h3.pay-amount {
    font-family: "Ubuntu";
    font-size: 16px;
    font-weight: 500;
    color: #4c4c4c;
}

input.form-control {
    height: 48px;
    font-family: "Helvetica Neue";
}

p.notes {
    font-family: "Ubuntu";
    color: #979797;
    font-size: 13px;
    margin-bottom: 8px;
}

p.notes span {
    color: #f26f24;
    font-weight: 500;
}

.radio-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.radio-box h4 {
    font-family: "Ubuntu";
    font-size: 18px;
    font-weight: 500;
    color: #4c4c4c;
    padding-right: 20px;
    margin: 0px;
}

label.form-check-label {
    font-family: "Ubuntu";
    font-size: 16px;
    color: #4c4c4c;
    font-weight: 500;
    display: flex;
    align-items: center;
}

label.form-check-label.accept {
    font-weight: 400;
}

.form-check {
    margin-top: 10px;
    margin-bottom: 15px !important;
}

.religare-btn {
    background-color: #147341 !important;
    padding: 10px 20px !important;
    font-family: "Helvetica Neue" !important;
    color: #ffffff !important;
    font-size: 18px !important;
}

h3.pay-amount span {
    color: #f26f24;
}

span.link-color {
    color: #2ea54b;
    margin: 5px;
}

img.sucess_icon {
    width: 60px;
    height: auto;
}

h2.sucess {
    font-family: "helvetica_neuebold";
    color: #2ea54b;
    font-size: 30px;
    margin: 0px;
    padding-top: 20px;
}

h4.other-text {
    font-size: 20px;
    font-family: "Ubuntu";
    font-weight: 500;
    padding-top: 20px;
    margin: 0px;
    line-height: 26px;
}

h4.other-text span {
    color: #f26f24;
}

h4.tnx-text {
    font-size: 18px;
    font-family: "Helvetica Neue" !important;
    font-weight: 500;
    padding-top: 20px;
    margin: 0px;
}

h4.tnx-text span {
    color: #f26f24;
}

h2.faield {
    font-family: "helvetica_neuebold";
    color: #ff6666;
    font-size: 30px;
    margin: 0px;
    padding-top: 20px;
}

.other-field {
    margin-top: 20px;
}

.other-field input {
    margin-bottom: 25px;
}

.other-field select.form-control {
    height: 48px;
}

.rali-table thead.table_thead {
    background-color: #f3faf4 !important;
}

.rali-table.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
    color: #000000 !important;
    text-align: left !important;
    font-family: "Helvetica Neue";
    font-weight: 400;
}

.rali-table.table th {
    border-top: 0px solid #dee2e6 !important;
}

.rali-table.table td {
    text-align: left !important;
    font-family: "Helvetica Neue" !important;
    font-size: 15px;
}

span.mode-bar {
    background-color: #fff1e8;
    color: #f26f24;
    padding: 5px 20px;
    border-radius: 30px;
}

.table-responsive {
    margin-top: 10px;
    margin-bottom: 20px !important;
}

section.wl-container {
    background: linear-gradient(to bottom, #b9d5c6 35%, #ffffff 35%);
    height: 100vh;
    width: 100%;
}

.wl-inner {
    background-color: #ffffff;
    width: 680px;
    box-shadow: 0px 2px 20px 0px #00000017;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 20px 30px;
}

.wl-main-container {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

p.Captcha-code {
    background-color: #ecf7ef;
    color: #2ea54b;
    font-family: auto;
    width: 100px;
    text-align: center;
    padding: 10px 15px;
    border-radius: 7px;
    font-family: "Helvetica Neue" !important;
    font-size: 18px;
    user-select: none;
}

button.btn.btn-primary.login-btn {
    background-color: #147341;
    border: #147341;
    width: 100%;
    font-family: "Helvetica Neue";
    font-size: 18px;
    border-radius: 7px;
    margin-top: 5px;
    height: 48px;
}

h3.login-heading.wl {
    padding-top: 10px !important;
}

.back-icon {
    background-color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: fixed;
    top: 35px;
    left: 30px;
}

.oc-inner.wl1 {
    width: 60%;
}

.oc-inner.wl2 {
    width: 50%;
}

.duel-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
}

.duel-input .form-group {
    width: 100% !important;
}

select.form-control {
    height: 48px !important;
}

.wl-btn.religare-btn {
    width: 100%;
}

.wl-left-content {
    width: 100%;
}

.wl-inner.payment-page {
    text-align: center;
    padding-top: 100px;
}

.wl-inner.payment-page {
    text-align: center;
    padding-top: 100px;
}

.oc-inner.wl1 p {
    font-size: 14px !important;
    width: 184px;
}

.oc-inner.wl2 p {
    font-size: 14px !important;
    width: 184px;
}

.form-group.password-field {
    position: relative;
}

img.password-icon {
    position: absolute;
    right: 16px;
    top: 16px;
}

.table {
    border: 1px solid #e1e1e1;
}

a.export-btn {
    border: 1px solid #147341;
    padding: 8px 20px;
    font-family: "Helvetica Neue";
    font-size: 18px;
    color: #147341;
    border-radius: 5px;
    margin-right: 10px;
}

img.excel {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

a.export-btn:hover {
    border: 1px solid #147341;
    text-decoration: none;
    color: #147341;
    border-radius: 5px;
}

label.form-label {
    font-family: "Helvetica Neue";
    font-size: 16px;
    color: #000000;
    opacity: 0.7;
}

a.pay-btn {
    border: 1px solid #147341;
    padding: 10px 20px;
    height: 46px;
    font-family: "Helvetica Neue";
    font-size: 18px;
    color: #ffffff;
    background-color: #147341;
    border-radius: 5px;
}

a.pay-btn:hover {
    text-decoration: none;
    color: #ffffff;
}

.col-md-6.dual-btn {
    display: flex;
    justify-content: end;
    align-items: center;
}
@media all and (min-width: 767px) and (max-width: 1200px) {
    input.form-control.otp {
        width: 50px !important;
        height: 50px !important;
    }
    .form-group.otp-box {
        margin: 0px !important;
    }
}
@media (max-width: 900px) {
    .menu-icon {
        height: 35px;
        width: 35px;
        background-color: #147341;
        padding: 8px;
        border-radius: 50%;
        min-width: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    img#mob-menu {
        width: 100%;
    }
    .sidebar-logo img {
        display: none !important;
    }
    .content-area {
        padding: 15px;
    }
    .responsive-table tbody td {
        padding: 10px !important;
        font-size: 13px;
    }
    .table-responsive {
        margin-bottom: 0px !important;
    }
    .accept {
        display: block !important;
    }
    .oc-inner {
        width: 100%;
    }
    .table_main_section table .DocumentsName {
        min-width: 200px !important;
    }
    .LoginForm {
        padding: 40px;
    }
    input.form-control.otp {
        width: 50px !important;
        height: 50px !important;
    }
    .main_footer_section {
        width: 100% !important;
    }
}
@media (max-width: 766px) {
    img.left-banner {
        height: 250px;
    }
    .LoginForm {
        width: auto !important;
        right: 0px;
        border-radius: 50px;
        margin-top: -39px;
        background-color: #ffffff;
        z-index: 9999999;
        height: auto;
    }
    .form-group.otp-box {
        margin: 0% 10%;
    }
}
@media (max-width: 600px) {
    .main_footer_section p {
        font-size: 13px;
    }
    .qcih-content {
        width: 40%;
    }
    img.left-banner {
        height: 250px;
    }

    .LoginForm {
        height: auto;
    }

    img.right-banner {
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    img.login-logo {
        width: 250px;
        height: auto;
    }

    h3.login-heading {
        font-size: 24px;
        padding-top: 20px;
    }

    .LoginForm {
        width: auto !important;
        right: 0px;
        border-radius: 50px;
        margin-top: -39px;
        background-color: #ffffff;
        z-index: 9999999;
    }

    p.or-text {
        font-size: 20px;
        color: #000000;
        opacity: 0.7;
        font-family: "helvetica_neuemedium";
        position: relative;
        margin: 0px;
    }

    .LoginText {
        margin: 5px 0 5px;
    }

    input.form-control {
        height: 40px;
        font-family: "Helvetica Neue";
        font-size: 15px;
    }

    button.btn.btn-primary.login-btn {
        margin-top: 5px;
        height: 40px;
    }

    form.login-form {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    a.pay-now-btn {
        background-color: #f26f24;
        color: #ffffff;
        padding: 8px 20px;
        font-size: 16px;
    }

    img.mob-logo {
        width: 180px;
        height: auto;
    }

    .lb-inner {
        display: block;
    }

    .loan-box {
        padding: 16px 11px;
        width: 100%;
    }

    .content-area h1 {
        font-size: 22px;
    }

    a.pay-btn {
        border: 1px solid #147341;
        padding: 10px;
        height: 46px;
        font-size: 16px;
        color: #ffffff;
        background-color: #147341;
        border-radius: 5px;
        margin-left: 0px;
    }

    .custom-hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropdown-area select.form-control {
        padding: 8px 20px;
        outline: 0;
        width: 100%;
        background-color: #fff;
        border: 1px solid #cbcbcb;
        border-radius: 4px;
        height: 48px;
        font-family: "Helvetica Neue";
        font-size: 14px;
        margin-top: 25px;
    }

    .oc-box {
        display: block;
    }

    .oc-inner {
        width: 100%;
    }

    .qcih-content {
        font-size: 14px;
    }

    .qcin-content p {
        font-size: 15px;
    }

    .oc-box.document {
        display: flex;
    }

    .dc-inner {
        width: 100%;
    }

    .other-content h3 {
        font-size: 16px;
    }

    select {
        background-position-x: 96%;
    }

    .radio-box {
        display: block;
    }

    .radio-box h4 {
        padding-bottom: 12px;
    }

    .form-check {
        margin-top: 20px;
        margin-bottom: 20px !important;
    }

    h3.pay-amount {
        padding-top: 0px;
    }

    .dual-btn.mob {
        justify-content: flex-start;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    a.export-btn {
        margin-right: 20px;
    }

    .wl-main-container {
        display: flex;
        width: 90%;
        height: 100%;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .wl-inner {
        background-color: #ffffff;
        width: 680px;
        padding: 20px 10px;
        margin-top: 70px;
    }

    .back-icon {
        background-color: #ffffff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        position: fixed;
        top: 25px;
        left: 25px;
    }

    .oc-inner.wl1 {
        width: 100%;
    }

    .oc-inner.wl2 {
        width: 100%;
    }

    .duel-input {
        display: block;
    }
    .sidebar-logo img {
        display: none !important;
    }
    .responsive-table th {
        font-size: 14px;
    }
    .customer-name p:first-child {
        width: 44% !important;
    }
    .customer-name {
        padding: 0px 10px !important;
    }
    .oc-box {
        padding: 0px 10px !important;
    }
    .dataTables_wrapper .dataTables_length {
        text-align: left !important;
    }
    .dataTables_wrapper .dataTables_filter {
        text-align: left !important;
        margin-top: 0px !important;
    }
    .text-width {
        width: 100% !important;
    }
    .oc-inner {
        justify-content: flex-start;
    }
    input.form-control.otp {
        width: 40px !important;
        height: 40px !important;
    }
}
@media (max-width: 400px) {
    .oc-inner.wl1 p {
        font-size: 12px !important;
        width: 145px;
    }
    .oc-inner.wl2 p {
        font-size: 12px !important;
        width: 145px;
    }
    .customer-name p {
        font-size: 12px !important;
    }
    input.form-control.otp {
        width: 35px !important;
        height: 35px !important;
    }
}

.is-invalid {
    border-color: red;
    /* background-color: #ffe6e6; */
}

.password-field {
    position: relative;
}

.password-field .password_eye_icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.sidebar-logo img {
    width: 180px;
    height: auto;
    margin: 2px auto;
}

.sidebar-logo {
    width: 80%;
    background-color: #fff;
    margin: auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}
.header_left_box img {
    width: 150px;
    height: auto;
}
.form-check-inline .form-check-input {
    width: 20px;
    height: 20px;

    accent-color: green;
}
.form-check-input[type="checkbox"] {
    width: 18px; /*Desired width*/
    height: 18px; /*Desired height*/
    accent-color: Green;
}
.modal-width {
    max-width: 700px !important;
    width: 700px !important;
}
span.agree-text {
    margin-left: 10px;
}
.table-headings p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 6px;
    font-family: "Ubuntu";
}
.table-headings :nth-child(3) {
    font-weight: 600;
    color: #f26f24;
}
.table-responsive .table th {
    text-align: left;
}
.table-responsive .table td {
    text-align: left;
}
.tb-head {
    background-color: #147341;
    color: #fff;
}
.next-btn {
    background-color: #147341;
    width: 100%;
    padding: 10px 12px;
    text-align: center;
    color: #fff;
    font-family: "helvetica_neuebold";
    margin-top: 30px;
    border-radius: 4px;
}
.next-btn:hover {
    color: #fff;
    text-decoration: none;
}
.modal-body-gap {
    padding: 20px 40px !important;
}
.tb-body td {
    padding: 5px 10px !important;
    font-size: 14px;
}
.font-set {
    font-size: 14px;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #147341;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #147341;
    border-radius: 10px;
}
.over-flow {
    height: 80vh;
    overflow: auto;
}
.customer-name {
    padding: 0px 25px;
    display: flex;
    align-items: center;
}
.customer-name p {
    margin-bottom: 6px;
    font-size: 14px;
    font-family: "Helvetica Neue";
    color: #000000;
    opacity: 0.7;
}
.customer-name p:first-child {
    width: 35%;
}
.menu-icons-box {
    display: flex;
    justify-content: end;
    margin-top: 4px;
}
.from-date {
    font-family: "helvetica_neuemedium";
}
.filter-btns {
    margin-top: 20px;
}
.dataTables_wrapper .dataTables_paginate {
    margin-bottom: 10px !important;
}
.web-header h3 {
    font-size: 28px;
    font-family: "helvetica_neuemedium";
    margin-bottom: 0px;
}
.lan {
    font-size: 16px;
    font-family: "helvetica_neuemedium";
    color: #f26f24;
    margin-bottom: 0px;
    padding-top: 0px;
}
.profile-text-headings h5 {
    font-size: 16px;
    margin-bottom: 0px;
}
.text-aline {
    display: flex;
    align-items: center;
}
.main_footer_section {
    height: 60px;
    background-color: #fff;
    width: calc(100% - 240px);
    padding: 5px 20px;
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    box-shadow: 0px 0px 4px 0px #202b4726;
    display: flex;
    align-items: center;
}
.main_footer_section p {
    margin-bottom: 0px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 1px solid #f5f5f5 !important;
    background: linear-gradient(to bottom, #297417 0%, #2ea54b 100%) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: inherit !important;
    background: linear-gradient(
        to bottom,
        rgba(230, 230, 230, 0.05) 0%,
        rgba(0, 0, 0, 0.05) 100%
    ) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: default;
    color: #666 !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 12px !important;
}
.loan-content-box {
    display: flex;
    width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
    /* grid-template-columns: auto auto; */
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #147341 !important;
    border-color: #147341 !important;
}

.hb-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
 
