@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&display=swap');

/* General Css */

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    background-color: #f8f8f8;
    font-size: 18px;
    line-height: 24px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    color: #898989;
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none;
    margin: 0;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

img {
    max-width: 100%;
    transition: ease-in-out 0.4s;
}

::selection {
    color: #707070;
    background-color: #F2F2F2;
}

a {
    transition: ease-in-out 0.4s;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #0973ba;
}

button:focus,
a:focus {
    outline: none;
}

.form-control:focus,
.btn.focus,
.btn:focus {
    box-shadow: none
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    padding-right: 20px;
    padding-left: 20px;
}

a {
    transition: ease-in-out 0.4s;
    cursor: pointer;
}

button {
    transition: ease-in-out 0.6s;
    cursor: pointer;
}

.blue-btn {
    background: #0673BA;
    color: #fff;
    font-weight: 600;
    border: 1px solid #0673BA;
}

.blue-btn:hover {
    background: #1f81c1;
    border: 1px solid #1f81c1;
    color: #fff;
}

.grey-btn {
    background: #F5F5F5;
    color: #0673BA;
    font-weight: 600;
    border: 1px solid #F5F5F5;
}

.grey-btn:hover {
    color: #1f81c1;
}

.min-width-160 {
    min-width: 160px;
    padding: 0 12px;
}

.min-width-300 {
    min-width: 300px;
    padding: 0 12px;
}

.height-40 {
    height: 40px;
    line-height: 36px;
}

.signup-section,
.stepper-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
}

.main-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.10);
    padding: 90px 80px 60px 80px;
}

.logo {
    margin-bottom: 30px;
}

.signup-inner>p,
.stepper-top>p {
    margin-bottom: 30px;
    width: 410px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 18px;
    color: #898989;
}

.form-group input,
.form-group select {
    border: 1px solid #DCDCDC;
    border-radius: 4px;
    height: 42px;
    padding: 0 16px;
    color: #898989;
    font-size: 18px;
}

.form-group select {
    padding: 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: url('../images/dropdown-arrow.svg') calc(100% - 12px) center no-repeat;
    cursor: pointer;
}

.form-group select::-ms-expand {
    display: none;
}

.form-main .btn {
    margin-top: 10px;
}

.form-check {
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 10px;
}

.calendar-icon {
    background: url('../images/calendar-icon.svg') calc(100% - 14px) center no-repeat;
}

.otp-main {
    display: flex;
    align-items: center;
}

.otp-input {
    display: flex;
}

.otp-main .btn {
    margin: 0 0 0 20px;
}

.opt-expire {
    display: block;
    width: 100%;
    margin: 20px 0 10px;
}

.form-group .otp-input input {
    width: 42px;
    padding: 0;
    text-align: center;
    margin-right: 8px;
}

.control-checkbox {
    display: block;
    position: relative;
    padding-left: 42px;
    cursor: pointer;
    text-align: left;
}

.control-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control-indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 24px;
    width: 24px;
    background: #e6e6e6;
    cursor: pointer;
    text-align: left;
    border-radius: 4px;
}

.control-checkbox input:checked~.control-indicator {
    background: #0673BA;
}

.control-indicator::after {
    content: '';
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 7px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.control-checkbox input:checked~.control-indicator::after {
    display: block;
}

.control-checkbox a {
    color: #0673BA;
    text-decoration: underline;
    font-weight: 600;
}

.stepper-tab ul {
    position: relative;
    padding: 5px 30px 20px 30px;
}

.stepper-tab ul::after {
    content: "";
    height: 1px;
    background-image: linear-gradient(90deg, #707070, #707070 50%, transparent 60%, transparent 100%);
    background-size: 24px 10px;
    border: none;
    position: absolute;
    top: 33px;
    width: 100%;
    left: 0;
    z-index: 0;
}

.stepper-tab li {
    position: relative;
    z-index: 1;
}

.stepper-tab li a {
    position: relative;
    display: inline-block;
}

.stepper-tab li a.active::after {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F0;
    border-radius: 50%;
}

.step-icon img {
    filter: grayscale(100%);
}

.step-single h4 {
    font-size: 16px;
    color: #898989;
    margin-top: 16px;
    font-weight: 400;
}

.stepper-tab a.completed .step-icon {
    background: #fff;
}

.stepper-tab a.completed .step-icon img {
    filter: none;
}

.stepper-tab a.active .step-icon {
    background: #0673BA;
}

.stepper-tab a.active .step-icon img {
    filter: brightness(0) invert(1);
}

.stepper-tab a.active .step-single h4 {
    color: #0673BA;
    font-weight: 600;
}

.stepper-tab a.disabled {
    pointer-events: none;
}

.stepper-content-main {
    margin-top: 5px;
}

.stepper-left h1,
.pan-info h5 {
    font-size: 24px;
    color: #696969;
    font-weight: 600;
    margin-bottom: 36px;
}

.pan-info h5 {
    margin-bottom: 16px;
}

.total-amount {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    margin: 30px 0;
}

.total-amount label,
.total-amount span {
    font-size: 20px;
    font-weight: 600;
    color: #696969;
}

.custom-radio {
    position: relative;
    margin-left: 0;
    width: 100%;
}

.payment-checkbox .custom-radio {
    width: 150px;
}

.custom-radio input[type="radio"] {
    /* opacity: 0; */
    position: absolute;
    left: 0;
    /* top: 40%; */
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    /* border-radius: 50%; */
}

.custom-radio label {
    cursor: pointer;
    width: 100%;
    padding-left: 36px;
    font-size: 18px;
    color: #898989;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
    position: relative;
    float: left;
}

.custom-radio label::before {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    /* content: ""; */
    display: inline-block;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 3px solid #CBCBCB;
    background: #fff;
    transform: translateY(-50%);
}

.custom-radio input[type=radio] {
    margin: 0px;
}

.custom-radio input[type=radio]:disabled+label {
    color: #898989;
}

.custom-radio input[type=radio]:disabled+label:before {
    background-color: #0673BA;
}

.custom-radio input[type=radio]:checked+label:before {
    border: 3px solid #0673BA;
}

.custom-radio input[type="radio"]:checked+label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 6px;
    display: inline-block;
    font-size: 11px;
    width: 11px;
    height: 11px;
    /* background-color: #0673BA; */
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    transform: translateY(-50%);
}

.stepper-form .btn {
    margin-top: 30px;
}

.plan-detail {
    border: 1px solid #EBEBEB;
    padding: 26px 26px 22px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.plan-detail h3 {
    font-weight: 700;
    font-size: 20px;
    color: #0673BA;
}

.short-desc {
    font-size: 14px;
}

.plan-detail ul {
    margin: 8px 0 20px;
}

.plan-detail li {
    font-size: 16px;
    background: url('../images/list-checkbox.svg') left 6px no-repeat;
    padding-left: 25px;
    margin-top: 24px;
}

.link-btn a {
    text-decoration: underline;
    font-size: 16px;
    color: #0673BA;
    font-weight: 600;
}

.select-plan-price {
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #EBEBEB;
    margin-top: 22px;
}

.select-plan-price .custom-radio {
    flex: 1;
}

.plan-price {
    text-align: right;
}

.plan-price span {
    font-size: 20px;
    color: #0673BA;
    font-weight: 600;
}

.plan-price small {
    font-size: 14px;
    line-height: 16px;
}

.sidebar-image {
    position: relative;
    right: 0;
    margin-top: -40px;
}

.sidebar-image img {
    max-width: calc(100% + 60px);
}

.pan-info {
    width: 305px;
    margin-left: 150px;
    margin-top: 40px;
}

.pan-info p a {
    color: #0673BA;
    font-weight: 600;
    text-decoration: underline;
}

.label-value {
    display: flex;
    flex-direction: column;
}

.single-label-value {
    display: flex;
    margin-bottom: 20px;
}

.single-label-value>label {
    width: 225px;
    font-weight: 600;
    font-size: 14px;
}

.single-label-value>span,
.single-label-value .form-check {
    flex: 1;
    margin: 0;
}

.infobox-single {
    margin-bottom: 30px;
}

.table-detail {
    max-width: 90%;
}

.upload-document th,
.proof {
    font-size: 18px;
    color: #898989;
    font-weight: 600;
}

.proof-detail {
    font-size: 18px;
    color: #898989;
    margin: 20px 0;
    max-width: 500px;
}

.upload-document tr {
    border-bottom: 1px solid #DCDCDC;
    padding: 1rem 0;
}

.b-none {
    border-bottom: unset !important;
}

.upload-document .table th,
.upload-document .table td {
    border-top: unset;
    border-bottom: unset;
    padding: 1rem 0;
}

.form-group small {
    font-size: 14px;
    color: #898989;
    margin-top: 5px;
    display: block;
}

.t-margin {
    vertical-align: bottom !important;
}

.t-margin .btn {
    margin-top: 0;
    margin-bottom: 46px;
}

.view-center,
.request-label {
    vertical-align: middle !important;
}

.view-center .btn {
    margin-top: 0;
}

.upload-documents-title,
.last-step,
.enquiry-form {
    font-size: 18px;
    color: #898989;
}

.image-unclear {
    display: flex;
    align-items: baseline;
    /* flex-wrap: wrap; */
    margin-top: 15px;
    font-size: 14px;
    color: #898989;
}

.image-unclear p {
    position: relative;
    top: -5px;
}

.image-unclear img {
    margin-right: 10px;
}

.image-unclear a {
    font-weight: 600;
    color: #0673BA;
    text-decoration: underline;
    margin-left: 5px;
}

.min-width-144 label {
    width: 144px;
    height: 24px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
}

.light-pink label {
    background: #FFF0F0;
    color: #E16666;
}

.light-orange label {
    background: #FFE7C8;
    color: #FF7701;
}

.light-green label {
    background: #EEFFF2;
    color: #18822E;
}

.v-middle {
    vertical-align: middle !important;
}

.last-step {
    margin-top: 20px;
}

.enquiry-form {
    max-width: 530px;
    margin-top: 20px;
}

.enquiry-form a {
    font-weight: 600;
    color: #0673BA;
}

.congratulation .container {
    max-width: 866px;
}

.congratulation .sidebar-image {
    right: 0;
    margin: 0;
    padding: 0 120px;
}

.congratulation .sidebar-image img {
    max-width: 100%;
}

.congratulation .main-box {
    padding: 30px 30px 40px 30px;
}

.cong-content {
    text-align: center;
}

.cong-content h1 {
    font-size: 24px;
    padding: 0 0 20px 0;
    font-weight: 600;
    color: #696969;
    margin-top: 20px;
}

.cong-content a {
    font-weight: 600;
    color: #0673BA;
    text-decoration: underline;
}

.cong-content a.btn {
    color: #fff;
    text-decoration: none;
}

.cong-content p {
    padding: 0 70px 30px;
}

.payment-checkbox .custom-radio2 {
    width: 50%;
}

.gray-btn {
    background: #F5F5F5;
    color: #0673BA;
    font-size: 16px;
    width: auto;
    margin-top: 30px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.gray-btn a {
    color: #0673BA;
    font-weight: bold;
}

.mt-zero {
    margin-top: 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.webcam-verification p {
    margin-bottom: 30px;
}

.random-number {
    width: 160px;
    height: 55px;
    line-height: 55px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 600;
    color: #0673BA;
    text-align: center;
    margin-bottom: 30px;
}

.face-camera {
    width: 300px;
    height: 300px;
    border: 1px solid #707070;
    background: #f5f5f5;
    margin-bottom: 10px;
}

.e-sign-btn .btn,
.verified-documents .btn,
.continue-btn .btn {
    margin-top: 30px;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-new2 {
    border: 2px solid #f1f1f1;
    cursor: pointer;
    color: #0673BA;
    background-color: #f1f1f1;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.payment-checkbox,
.payment-checkbox .custom-radio2 {
    width: 100%;
}

.payment-checkbox .custom-radio2 {
    padding-left: 6px;
}

.ml-2 {
    margin-left: -10px!important;
}

.ml-1 {
    margin-left: 8px!important;
}

.mb-11 {
    margin-bottom: 20px;
}
#go-back{
    display: none;
}

@media (max-width:600px) {
    .ml-2 {
        margin-left: 8px !important;
    }

    #go-back{
        display: block;
    }
}

.upload-title,
.bank-documents-detail {
    border-bottom: 1px solid #DCDCDC;
    padding: 1rem 0;
}

.upload-document span,
.upload-document th,
.proof {
    font-size: 18px;
    color: #898989;
    font-weight: 600;
}

.bank-documents-detail .table-detail {
    max-width: 100%;
    padding-right: 30px;
}

.btn-status {
    display: flex;
    align-items: center;
}

.btn-status .btn {
    margin-left: 30px;
}

.file-upload input {
    display: none;
}

.file-value {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.file-value:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.uploaded-files-name .file-value {
    border: solid 1px #f1f1f1!important;
    padding:10px 10px 10px 20px;
     
      background: #f9f9f9;
}

.file-value-text {
     
    font-size: 16px;
     
    line-height: 22px;
    flex: 1;
}

.file-value-remove {
    cursor: pointer;
}

.ml-auto {
    margin-left: auto;
}
.mt-20{margin-top:34px;display: inline-block;margin-right: 10px;}
.mt-20:hover{opacity: 0.5;}
#mtn-20{margin-top:80px;}
 
.form-control:disabled, .form-control[readonly] {
    background-color: transparent;
    opacity: 1;
    border: none;
    padding: 0;
    
     
}
.uploaded-files-name {
    width: 31.5%;
    float: right;
}
.bluebg-dark{background: #ffe1e1;}
.bluebg-light{background: #f2faff; margin-bottom: 2px;}
.bluebg-dark .form-group, .bluebg-light .form-group{margin-bottom: 0; margin-top: 10px;}