:root {
    --pnb-red: #9f1945;
    --pnb-yellow: #fdbd30;
    --btn-green: #166f15;
    --bg-white-op: #ffffff;
    --div-pill-bg: #287cd1;
    --body-bg: #fff7e5;
    --btn-red: #dc3545;
    --btn-info: #178298;
    --btn-black: #000;
    --split-left-bg: #fae9de;
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-display: block;
    src: url("../fonts/Roboto-Regular.ttf") format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 600;
    font-display: block;
    src: url("../fonts/Roboto-Medium.ttf") format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../fonts/Roboto-Bold.ttf") format('truetype');
}
svg:not(:host).svg-inline--fa, svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}
.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}
html {
  font-size: 14px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.text-color-pnb
{
    color:var(--pnb-red);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
}

/*Main Area Start */
.body-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
}

.navbar-pnb {
    padding: 0.5rem;
    background: var(--bg-white-op);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Trac-bar {
    background-color: var(--pnb-red);
    color: var(--bg-white-op);
}

.Trac-bar-below::after {
    content: ' ';
    display: block;
    width: 100%;
    height: 0.7rem;
    background-color: var(--pnb-yellow);
}

.nav-Logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-Logo img {
    width: 25%;
}

.navbar-pnb > * {
    width: 30%;
}

.navbar-pnb .journey-name {
    font-size: 1.8rem;
}

/*.post-login-nav::after {
    content: " ";
    display: block;
    width: 100%;
    height: 0.6rem;
    background-color: var(--pnb-yellow);
}*/

.body-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer#footer {
    padding: 1rem;
    font-size: smaller;
}

.loader-box {
    display: flex;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2000;
    height: 100vh;
    justify-content: space-evenly;
    align-items: center;
    background-color: #00000059;
    transition: 0.3s ease;
    flex-direction: column;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

    .loader::before, .loader::after {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border: 5px solid #FFF;
        animation: prixClipFix 2s linear infinite;
    }

    .loader::before {
        border-color: var(--pnb-red);
    }

    .loader::after {
        inset: 8px;
        transform: rotate3d(90, 90, 0, 180deg );
        border-color: var(--pnb-yellow);
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    75%, 100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }
}

.logout-sec a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.logout-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    min-width: fit-content;
}

.sess-elements {
    padding: 0 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--bg-white-op);
}

.body-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    /*background-image: url('/images/loginstpccimg.jpg');
    background-position: center right;*/
    background-color: var(--body-bg);
    /* padding-bottom: 5rem; */
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*Login Area start*/
.login-container > div {
    flex: 1;
}

.login-container {
    display: flex;
    flex:1;
    flex-wrap: wrap-reverse;
}
.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-form-container {
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.heading-color {
    color: var(--pnb-red);
    font-weight: bold;
        margin-bottom: 2rem;
}
.custom-input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
}
.custom-input:focus {
    outline: none !important;
    box-shadow: none;
    background-color: transparent;
    border-color: var(--pnb-red);
    border-width: 2px;
}
.btn-custom {
    background: var(--pnb-red);
    /*background: var(--btn-black);*/
    color: white;
    /*font-weight: bold;*/
    padding: 0.6rem 0.2rem;
    border-width: 2px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
}
.btn-custom-rev {
    background: transparent;
    color: var(--pnb-red);
    /*color: (--var-black);*/
    /*font-weight: bold;*/
    padding: 0.6rem 0.2rem;
    border-width: 2px;
    border-radius: 5px;
    border-color: var(--pnb-red);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
}
.btn.btn-custom:hover, .btn.btn-custom:focus-visible, .btn.btn-custom:active {
    color: var(--pnb-red);
    border-color: var(--pnb-red);
    background-color: transparent;
}

.btn.btn-custom-rev:hover, .btn.btn-custom-rev:focus-visible, .btn.btn-custom-rev:active {
    color: var(--pnb-red);
    border-color: var(--pnb-red);
    background-color: transparent;
    text-decoration: underline;
}

.otp-holder > input {
    border: 1px solid black;
    border-radius: 4px;
    padding: 4px;
    width: 3rem;
    text-align: center;
}

.otp-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.input-disabled {
    background: #f2ebda;
}

    .input-disabled input[type=text], .input-disabled input[type=password], .input-disabled textarea {
        pointer-events: none;
        background: transparent;
    }

.input-holder:has(>.input-validation-error) {
    border-color: red;
}

.field-validation-error {
    color: red;
    font-size: small;
    font-weight: bold;
    padding-left: 1rem;
}

/*Login Area end*/

/*Customer Details Area start*/
.split-container {
    display: flex;
    flex: 1;
}
.split-left {
    width: 15%;
    background-color: var(--split-left-bg);
    padding: 1rem;
    display: flex;
    position: relative;
}
.progress-holder {
    display: flex;
    flex-direction: column;
    height: 40vh;
    justify-content: space-between;
    width: auto;
    margin: 0 auto;
    font-size: 0.85rem;
    gap: 5px;
    position: sticky;
    top: 12rem;
}
.separator {
    flex: 1;
    border-left: 3px dashed;
    margin-left: 0.4rem;
    border-color: var(--pnb-red);
}
.progress-holder>div {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.p-indicator.active
{
    background-color: var(--pnb-yellow);
}
.p-indicator {
    display: inline-block;
    width: 15px;
    height: 15px;
    outline: 3px solid;
    outline-offset: 2px;
    border-radius: 1rem;
    outline-color: var(--pnb-red);
}
.split-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
}
.split-right p{
    text-align: justify;
}
.required-label::after {
    content: '*';
    color: red;
    vertical-align: super;
    font-size: 0.8rem;
}
/*Customer Details Area end*/
/*Variant Start*/
.carousel {
    display: flex;
    flex-direction: column-reverse;
}
.carousel-indicators {
    position: relative;
}
.carousel-indicators [data-bs-target] {
    background-color: var(--pnb-red);
}
.carousel-control-next, .carousel-control-prev
{
    position: relative;
    width: 10%;
}
.carousel-control-prev
{
    justify-content: flex-start;
}
.carousel-control-next
{
    justify-content: flex-end;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239f1945'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239f1945'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/*Variant end*/
/*KYC Detail start*/
.floating-label p {
    font-weight: bold;
    margin-top: -5px;
}

.floating-label span {
    font-size: 0.9rem;
    color: var(--bs-body-color);
    opacity: 0.65;
}
.addr-block {
    border: 1px solid #c9b3b3;
    padding: 1rem;
    border-radius: 6px;
    background-color: #0000000f;
}
.switch-holder {
    position: relative;
}
    .switch-holder input {
        width: 6rem !important;
        height: 2rem !important;
        margin: 0 !important;
        overflow: hidden;
    }
        .switch-holder input:checked {
            background-color: var(--pnb-yellow);
            border-color: var(--pnb-yellow);
        }
    .switch-holder > input::after {
        content: 'No';
        position: absolute;
        transform: translate(38px, 0);
        left: 0;
        vertical-align: middle;
        margin: 3px;
        transition: transform .15s ease-in-out;
    }
    .switch-holder > input:checked::after {
        content: 'Yes' !important;
        transform: translate(20px, 0);
    }
/*KYC Detail end*/
/*OTP Modal start*/
.otp-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    background: #0000006b;
    justify-content: center;
    align-items: center;
}
.OTP-cover {
    background: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    gap: 0.7rem;
    position: relative;
}
/*OTP Modal end*/
@media all and (max-width:780px) {
    html {
        font-size: 16px;
    }
    .navbar-pnb 
    {
        width: 100%;
    }
    .navbar-pnb .journey-name {
        font-size: 1.2rem;
    }
    .nav-Logo {
        flex-wrap: wrap;
    }
    .nav-Logo img {
        width: 20%;
    }
    .navbar-pnb > * {
        width: 100%;
    }
    .login-container{
        width: 100%;
    }
    .login-container>div{
        flex:auto;
    }

    .otp-holder > input
    {
        width: 2.4rem;
    }
       
    .split-container {
        flex-direction: column;
    }
    .split-left {
    width: auto;
    display: none;
}
.progress-holder {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: auto;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}
.separator {
    border-left: none;
    border-top: 3px dashed;
    height: 0;
}
.p-indicator {
    width: 8px;
    height: 8px;
}
}
.mitc-content {
    text-align: justify;
    line-height: 1.6;
    font-size: 0.95rem;
}
.mitc-content ol > li {
    margin-bottom: 12px;
}

.mitc-content ol[type="a"] > li,
.mitc-content ol[type="I"] > li {
    margin-bottom: 8px;
}

.mitc-content button {
    margin-top: 20px;
}
.check-success {
    background: var(--btn-green);
    color: white;
    font-size: 2rem;
    padding: 6px 14px;
    border-radius: 6rem;
    outline: 1px solid var(--btn-green);
    outline-offset: 5px;
}

    .check-success svg {
        -webkit-filter: drop-shadow(2px 7px 0px rgba(0, 0, 0, .7));
        filter: drop-shadow(2px 7px 0px rgba(0, 0, 0, .5));
    }

.check-reject {
    background: var(--btn-red);
    color: white;
    font-size: 2rem;
    padding: 6px 20px;
    border-radius: 6rem;
    outline: 1px solid var(--btn-green);
    outline-offset: 5px;
}

    .check-reject svg {
        -webkit-filter: drop-shadow(2px 7px 0px rgba(0, 0, 0, .7));
        filter: drop-shadow(2px 7px 0px rgba(0, 0, 0, .5));
    }
body {
    margin: 0;
}

.terms-container {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .terms-container ol {
        padding-left: 22px;
        margin-bottom: 15px;
    }

        .terms-container ol > li {
            margin-bottom: 12px;
            text-align: justify;
        }

        .terms-container ol[type="a"] {
            padding-left: 28px;
            margin-top: 10px;
        }

            .terms-container ol[type="a"] > li {
                margin-bottom: 10px;
                text-align: justify;
            }

#termsBox {
    overflow-y: auto;
    padding: 15px;
    max-height: calc(80vh - 60px);
}
.terms-note {
    font-weight: bold;
    margin-bottom: 15px;
    color: #9f1945;
}

.modal-header {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    text-align: center;
}
    .modal-header .modal-title {
        font-size: 1.5em;
        color: #9f1945;
        font-weight: bold;
        margin: 0;
    }