/*Author: f1Studioz.com */

* {
    margin: 0;
    padding: 0;
  }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=text], input[type=number],input[type=email],input[type=password],select,textarea {   
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

  body,
  html {
    height: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #000;
    letter-spacing: normal;
  }
  .color-blue {
    color: #003366 !important;
  }
  .gap-50{
      height: 50px;
  }

  a {
    font-size: 14px !important;
    line-height: 16px;
    color: #003366;
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  a:hover {
    font-size: 14px !important;
    line-height: 16px;
    color: #003366;
    outline: none;
    text-decoration: underline !important;
  }

/* Typography */
  .pl_typo h2{
      font-size: 20px;
      font-weight: 700;
      line-height: 24px;
      color: #000000;
      margin-bottom: 12px;
  }
  .pl_typo p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #6F6F6F;
    margin-bottom: 12px;
}
/* END Typography */


/* Option Button */
.option_heading{
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #101010;
    margin-bottom: 10px;
}
.option_button_container{
    margin-bottom: 40px;
}
/* Option Button END*/


/* Form Elements */
::-webkit-input-placeholder {
    color: rgba(16,16,16,0.5);
    letter-spacing: normal;
  }
  
  :-ms-input-placeholder {
    color: rgba(16,16,16,0.5);
    letter-spacing: normal;
  }
  
  ::placeholder {
    color: rgba(16,16,16,0.5);
    letter-spacing: normal;
  }
button{
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
button:focus, input:focus{
    outline: none;
    border: none;
}
button.disabled{
    opacity: 0.5;
}
button.btn-option{
    width: auto;
    height: auto;
    min-width: 60px;
    min-height: 32px;
    padding: 9px 16px 7px;
    border: 1px solid #9F9F9F;
    background-color: #ffffff;
    border-radius: 55px;
    color: #101010;
    margin-right: 8px !important;
    margin-bottom: 8px !important;
}
button.btn-option:hover, button.btn-option.selected{
    cursor: pointer;
    border: 1px solid #0070E0;
    background-color: #0070E0;
    color: #ffffff;
}
button.btn-option:last-child{
    margin-right: 0;
}
button.btn-pl-primary{
    padding: 10px 20px 8px;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    color: #ffffff !important;
    background-color: #EE1D24;
    border-radius: 3px;
}
button.btn-pl-link{
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: normal !important;
    color: #757575 !important;
    background-color: transparent;
    display: flex;
    align-items: center;
}
button.toggle-btn{
    width: 50%;
    height: 40px;
    border: 1px solid #CCCCCC;
    border-radius: 0px 2px 2px 0px;
    font-weight: 400px;
    line-height: 18px !important;
    color: #6F6F6F !important;
    background-color: #ffffff;
}
button.toggle-btn.selected{
    color: #ffffff !important;
    background-color: #0070E0;
}
button.toggle-btn:first-child{
    border-radius: 2px 0px 0px 2px;
}
button.toggle-btn:last-child{
    border-radius: 0px 2px 2px 0px;
}
button.add-insurance-btn{
    width: auto;
    min-width: 60px;
    height: 35px;
    border: 1px solid #0070E0 !important;
    color: #0070E0 !important;
    font-size: 14px !important;
    line-height: 22px !important;
    font-weight: 500 !important;
    background-color: #ffffff !important;
    border-radius: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form_row{
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    position: relative;
}
.form_row .inr, .form_row .mobile{
    position: relative;
}
.form_row .inr::before{
    content: '₹';
    position: absolute;
    width: 12px;
    height: 24px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #101010;
}
.form_row .inr-sm::before{
    font-size: 15px;
    color: #101010;
}
.form_row .inr input{
    padding: 10px 16px 10px 32px;
}

.form_row .mobile::before{
    content: '+91 - ';
    position: absolute;
    width: 40px;
    height: 20px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #101010;
}
.form_row .pan{
    position: relative;
}
.form_row .panVerfied::after{
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    right: 16px;
    z-index: 1;
    transform: translateY(-50%);
    background-image: url('/resource/greentickcon');
}
.form_row .panInvalid::after{
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    right: 16px;
    z-index: 1;
    transform: translateY(-50%);
    background-image: url('/resource/greentickcon');
}

.form_row .mobile input{
    padding: 10px 16px 10px 56px;
}
.form_row label{
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: #101010;
    display: block;
    margin-bottom: 10px;
}
.form_row.masking label{
    font-weight: 400;
    color: #6F6F6F;
    margin-bottom: 5px;
}
.form_row input, .form_row select, .form_row textarea{
    outline: none;
    border: none;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
    color: #101010 !important;
    width: 100%;
    height: auto;
    min-height: 48px;
    box-sizing: border-box;
    padding: 10px 16px;
    border: 1px solid #9F9F9F;
    background-color: #ffffff;
}
.form_row textarea{
    min-height: 95px;
}
.form_row input.error, .form_row input.error:focus{
    border: 1px solid #DF0F1B;
}
.form_row input:focus{
    border: 1px solid #0070E0;
}
.form_row select{
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url('/resource/DownArrowIcon');
    background-repeat: no-repeat;
    background-position: right 15px center;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    padding: 11px 35px 12px 20px;
}
.form_row p.input-info{
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 16px !important;
    color: #757575;
    margin: 8px 0 0;
}
.form_row p.countdown{
    padding-left: 25px;
    padding-top: 1px;
    background-image: url('/resource/alarmicon');
    background-repeat: no-repeat;
    background-position: center left;
}
.form_row a{
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
    color: #0070E0;
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}
.form_row a:first-child{
    padding-left: 0;
    margin-left: 0;
}
.form_row a:first-child::before{
    content: none;
}
.form_row a:hover{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #0070E0;
    text-decoration: underline;
}
.form_row a::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -5px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #757575;
}
.form_row p.error{
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #BF171F;
    margin: 8px 0 0;
}
.form_row.otp input{
    letter-spacing: 0.1500em;
}


.form_row input[type=range] {
    -webkit-appearance: none;
    margin: 0;
    width: 100%;
    outline: none;
    border: none;
    padding: 0;
    min-height: auto;
  }
.form_row input[type=range]:focus {
    outline: none;
}
.form_row input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #0070E0;
}

.form_row input[type=range]::-webkit-slider-thumb {
    height: 25px;
    width: 25px;
    border: 2px solid #ffffff;
    margin-top: -10px;
    border-radius: 25px;
    background: #0070E0;
    cursor: pointer;
    -webkit-appearance: none;
}

/* .form_row input[type=range]:focus-within::-webkit-slider-thumb{
    background-color: #0070E0!important;
}
.form_row input[type=range]:focus-within::-webkit-slider-runnable-track {
    background: #0070E0;
}
.form_row input[type=range]:focus::-webkit-slider-thumb{
    background-color: #0070E0!important;
}
.form_row input[type=range]:focus::-webkit-slider-runnable-track {
    background: #0070E0;
}
.form_row input[type=range]:hover::-webkit-slider-thumb{
    background-color: #0070E0!important;
}
.form_row input[type=range]:hover::-webkit-slider-runnable-track {
    background: #0070E0;
} */
.form_row input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #3071a9;
    border-radius: 1.3px;
}
.form_row input[type=range]::-moz-range-thumb {
    height: 25px;
    width: 25px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    background: #0070E0;
    cursor: pointer;
}
.form_row input[type=range]::-ms-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}
.form_row input[type=range]::-ms-fill-lower {
    background: #ccc;
}
.form_row input[type=range]::-ms-fill-upper {
    background: #3071a9;
}
.form_row input[type=range]::-ms-thumb {    
    height: 25px;
    width: 25px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    background: #0070E0;
    cursor: pointer;
}
.form_row input[type=range]:focus::-ms-fill-lower {
    background: #ccc;
}
.form_row input[type=range]:focus::-ms-fill-upper {
    background: #0070E0;
}
.form_row.lable-with-icon{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_row .invalid-otp{
    width: 100%;
    height: 32px;
    background: #FCD3CC;
    border-radius: 2px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #101010;
    display: none;
    margin: 10px 0;
}
.form_row .toggle-button_container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.verifiedEmail{
    position: relative;
}
.verifiedEmail::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 1;
    width: 18px;
    height: 18px;
    background-image: url('/resource/greentickcon');
    background-repeat: no-repeat;
}
.verifiedEmail.error::after{
    background-image: url('/resource/EmaliErrorIcon');
}
.verify_email_box{
    width: 100%;
    height: auto;
    background: #EAF3FD;
    border-radius: 4px;
    padding: 16px 22px 16px 16px;
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
}
/* radio and checkboxes */
.option_container {
    display: block;
}

.option_container.option-inline {
    display: inline-block;
    margin-right: 28px;
}
.option_container.option-inline:last-child {
    margin-right: 0;
}
.option_container label {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.option_container label span.caption {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #6F6F6F;
}
.option_container label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.option_container label span.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid #0070E0;
    border-radius: 2px;
    overflow: hidden;
}
.option_container label input:checked ~ span.checkmark {
    background-image: url("/resource/CheckboxCheckedIcon");
    background-position: center center;
}
.option_container label span.dotmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid #0070E0;
    border-radius: 16px;
    overflow: hidden;
}
.option_container label input:checked ~ span.dotmark {
    background-image: url("/resource/RadioCheckedIcon");
    background-position: center center;
}
.option_container label input:checked ~ span.caption {
    font-weight: 400;
}
/* Form Elements END */

/* Progress Bar */
.progress_container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.progress_container .progress-status{
    width: 105px;
    height: 24px;
    background-color: #DAE0E7;
    border-radius: 2px;
    font-size: 12px;
    line-height: 22px;
    color: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.progress_container .progress-status::before{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 10px solid #DAE0E7;
    border-bottom: 6px solid transparent;
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
}
.progress_container .progress-bar{
    width: calc(100% - 120px);
    height: 6px;
    background-color: #10356627;
    position: relative;   
}
.progress_container .progress-bar .progress-block{
    width: 0;
    height: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:0;
    opacity: 1;
    background-color: #103566;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
/* Progress Bar END*/





/* City Select */
.select_city_container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 15px;
}
.select_city_container .city_container{
    width: 70px;
    height: 75px;
    border: 1px solid #DDDDDD;
    background-color: #ffffff;
    background-position: top 4px right 4px;
    border-radius: 3px;
    padding: 18px 0 8px;
    font-size: 11px;
    line-height: 13px;
    color: #939393;
    text-align: center;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.select_city_container .city_container.selected{
    background-color: #0070E0;
    background-image: url('/resource/cityselecticon');
    background-repeat: no-repeat;
    background-position: top 4px right 4px;
    color: #ffffff;
}
.select_city_container .city_container:last-child{
    margin-right:0; 
}
.select_city_container .city_container .city-icon{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 6px;
}
/* City Select END*/


/* Custom Bootstrap */
.modal-header {
    justify-content: flex-end !important;
    border-bottom: none !important;    
}
.modal-header .modal-close{
    width: 16px;
    height: 16px;
    line-height: 0;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 10;    
}
.modal-content {
    background: #FFFFFF;
    border-radius: 5px;
}
.modal-footer {
    box-shadow: 0px 0px 3px #00000029;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.modal-footer.flex-center {
    justify-content: center;
}
.modal-footer.flex-between {
    justify-content: space-between;
}
.modal-body{
    padding: 0 1rem 1rem;
    margin-top: -24px;
}
.modal-body h2{
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
    color: #101010;
    margin: 25px 0 0;
}
.modal-body h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #101010;
    margin-bottom: 15px;
}
.modal-body h4{
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 30px;
    color: #101010;
    margin-bottom: 5px !important;
}
.modal-body h6{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #101010;
    margin-bottom: 5px;
}

.modal-body p{
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
    color: #2D2D2D !important;
}
@media (min-width: 440px){
    .modal-dialog {
        max-width: 400px;
        margin: 1.75rem auto;
    }
    .center_grid_footer {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}


/* Layout */
.center_grid {
    width: 1280px;
    height: auto;
    margin: 0 auto;
}
.center_grid_footer {
    width: 806px;
    height: auto;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .center_grid {
        width: 100%;
        margin: 0;
    }
}
header{
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0px 1px 0px #00000014;
    padding: 0 5px;
    display: flex;
    align-items: center;
    z-index: 100;
}
header .logo{
    width: auto;
    height: 24px;
}
header .dropdown{
    text-align: right;
}
header .dropdown .dropdown-menu {
    top: 20px!important;
    min-width: 270px!important;
    padding: 25px 15px 15px;
    margin: .125rem 0 0;
    font-size: 12px;
    color: #212529;
    border: none;
    text-align: left;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

header .dropdown .dropdown-menu p {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    margin: 0;
}
header .dropdown .dropdown-menu .dropdown_row {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 15px 0;
}
header .dropdown .dropdown-menu .dropdown_row .dropdown_col {
    width: 50%;
    font-size: 12px;
    color: #000;
    font-weight: 400;
}
header .dropdown a {
    color: #0070E0;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}
header .dropdown .dropdown-menu .dropdown_row .dropdown_col a {
    text-transform: lowercase;
    color: #0070E0;
}
header .dropdown .dropdown-menu .dropdown_row:last-child {
    border-top: 1px solid #ddd;
}
header .dropdown .dropdown-menu .dropdown_row .dropdown_col.col_lg {
    width: 150px;
}
header .dropdown .dropdown-toggle::after {
    content: none;
}

footer{
    width: 100%;
    height: 75px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 3px #00000029;
    padding: 0 5px;
    display: flex;
    align-items: center;
    z-index: 100;
}
section{
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 50px 0 75px;
}
section.no-footer{
    padding: 50px 0 25px;
}
.progress_outer_container{
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px #0000001A;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.main_container{
    width: 100%;
    height: auto;
    margin-top: 25px;
    padding: 0 5px;
}
.main_container.iAccept{
    background-color: transparent;
    border: none;
    padding: 32px 0 16px;
}
.form_inner_container{
    width: 100%;
    height: auto;
    margin-top: 25px;
}
.already_account_form .form-container{
    display: none;
}

.typography h3{
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    color: #000000 !important;
    margin-bottom: 8px;
}
.typography h5{
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    color: #000000 !important;
}
.typography h6{
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    color: #6F6F6F !important;
    margin-bottom: 12px;
}
.typography h6 strong{
    font-weight: 500 !important;
    color: #000000 !important;
}
.typography p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #6F6F6F;
}
.typography p strong{
    font-weight: 600 !important;
    color: #000000 !important;
}
.typography p.sm{
    font-size: 12px !important;
    color: #757575 !important;
    margin-bottom: 0 !important;
}
.typography p.lg{
    font-size: 16px !important;
    line-height: 24px !important;
    color: #6F6F6F !important;
    margin-bottom: 0 !important;
}
.typography p span{
    color: #000000 !important;
}
.resendLink,.notRecieved{
    display: none;
}

.page_title_container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.page_title_container .page-title-icon{
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.income_verification_box{
    width: 100%;
    height: auto;
    background: #FFFFFF;
    box-shadow: 0px 0px 5px #00000029;
    border-radius: 5px;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
}
.income_verification_box .recommended{
    width: auto;
    max-width: 100px;
    background: transparent radial-gradient(closest-side at 1% 4%, #2668BF 0%, #15417C 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #497CB5;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    color: #FFFFFF;
    position:absolute;
    top: 12px;
    right: 12px;
}
.income_verification_box .title_container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.income_verification_box .title_container .icon-container{
    width: 60px;
    height: 60px;
}
.income_verification_box ul{  
    list-style: none;
    padding: 0;
    margin: 0;
}
.income_verification_box ul li{
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 16px;
    padding-left: 20px;
    color: #101010;
    position: relative;
}
.income_verification_box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #CFCFCF;
}
.income_verification_box p{
    color: #101010;
}

.landing_already_account{
    width: 100%;
    height: 70px;
    background-color: #D4E1F7;
    padding: 16px;
    cursor: pointer;
}
.landing_already_account p{
    font-size: 14px;
    line-height: 22px;
    color: #0070E0;
    font-weight: 400;
}
.landing_already_account p strong{
    font-weight: 700;
}
.landing_apply_now{
    width: 100%;
    height: auto;
    text-align: center;
    color: #161616;
}
.landing_apply_now h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 0;
}
.landing_apply_now h5{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0;
}
.landing_banner{
    width: 100%;
    height: auto;
    margin-top: 24px;
    position: relative;
}
.landing_banner .amount_animate{
    width: 160px;
    height: 25px;
    border: 1px solid #DFE8E4;
    border-radius: 5px;
    background-color: #ffffff;
    position: absolute;
    top: 30px;
    right: 8px;
    z-index: 1;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #0070E0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing_banner .amount_animate.animateTop{
    z-index: 2;
}
.landing_pointers{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0 15px;
    margin-top: 24px;
}

@media (min-width : 1120px){
    .landing_pointers {
        display: flex;
        flex-wrap: wrap-reverse;
    }
    .landing_pointers .landing-pointer-row{
        max-width: 50%;
    }
    .landing_banner .amount_animate{
        left: 176px;
        right: unset;
    }
    .landing_already_account p{
        margin-bottom: 0;
    }
    .landing_already_account{
        align-items: center;
        display: flex;
    }
    .right_loan_container{
        background-color: #E3EFFD26;
        padding: 46px;
        border: 1px solid #EAEAEA;
    }
    .landing_already_account{
        height: 40px;
        margin-bottom: 40px;
    }
    .landing_apply_now h5{
        font-size: 24px;
        letter-spacing: 0;
        line-height: 36px;
    }
    .right_loan_container .form_row input{
        background-color: #E3EFFD26;
    }
    .lable-with-icon{
        margin-bottom: 8px!important;
    }
}








.landing_pointers span{
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: #6F6F6F;
}
.landing_pointers .landing-pointer-row{
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #000000;
    margin-bottom: 24px;
}
.landing_pointers .landing-pointer-row .pointer-row-icon{
    width: 30px;
    height: 30px;
}
.landing_pointers .landing-pointer-row .pointer-row-content{
    width: calc(100% - 40px);
    height: auto;
}
.landing_pointers .landing-pointer-row .pointer-row-content h6{
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.landing_pointers .landing-pointer-row .pointer-row-content p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: #4D4D4D;
}

.landing_footer{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.landing_footer .footer-left{
    width: calc(100% - 110px);
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.landing_footer .footer-left .footer-left-icon{
    width: 50px;
    height: 50px;
    margin-right: 20px;
}
.landing_footer .footer-left .footer-left-content{
    width: calc(100% - 70px);
    height: auto;
}
.landing_footer .footer-left .footer-left-content p{
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: #101010;
    margin-bottom: 0;
}
.landing_footer .footer-left .footer-left-content h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: #103566;
    margin-bottom: 0;
}
.landing_footer .footer-right{
    width: 110px;
    height: auto;
    text-align: right;
}

.upload_container{
    width: 100%;
    height: auto;
    margin-top: 24px;
}
.upload_container .upload_btn_container .upload_btn{
    width: 100%;
    height: 54px;
    background: #F6FAFF;
    border: 1px dashed #0070E0;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20p;
    color: #0070E0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.upload_container .upload_btn_container .upload_btn input{
    opacity: 0;
    position: absolute;
    z-index: 1;
}
.upload_container .upload_btn_container p{
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #6F6F6F;
    margin-bottom: 0;
    margin-top: 8px;
}
.upload_container .upload_details_container{
    width: 33.33%;
    height: auto;
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 15px;
    margin-top: 24px!important;
}
.salarySlip, .addressProof, .kycProof {
    display: flex;
    overflow-x: hidden;
    white-space: nowrap;
}

@media (max-width:767px){
    .upload_container .upload_details_container{
        width: 100%;
    }
    .salarySlip {
        display: block;
    }
}
.upload_container .upload_details_container .file-icon{
    width: 40px;
    height: 40px;
}
.upload_container .upload_details_container .image-icon{
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.upload_container .upload_details_container .file-details{
    width: calc(100% - 90px);
    height: auto;
    color: #6F6F6F;
    font-weight: 400;
    line-height: 20px;
}
.upload_container .upload_details_container .file-details h5{
    font-size: 14px;
    font-weight: 400;    
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.upload_container .upload_details_container .file-details h5.fileBold{
    font-weight: 600;
    color: #222222;
}
.upload_container .upload_details_container .file-details h6{
    font-size: 12px;
    margin-bottom: 0;
}
.upload_container .upload_details_container .file-delete{
    width: 15px;
    height: 15px;
    line-height: 0;
}
.upload_container .upload_details_container .file-details p.fileRemove{
    font-size: 14px;
    line-height: 14px;
    color: #FF0000;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 8px;
    cursor: pointer;
}
.upload_container .upload_progress_container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    display: none;
}
.upload_container .upload_progress_container .upload-progress-bar{
    width: calc(100% - 50px);
    height: 4px;
    background: #DDDDDD;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.upload_container .upload_progress_container .upload-progress-bar .blue-bar{
    width: 90%;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #0070E0;
    border-radius: 5px;
}
.range_value_container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.range_value_container .range_value{
    width: auto;
    min-width: 50px;
    height: auto;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #111111;
}
.range_value_container .range_value.max{
    width: auto;
    min-width: 62px;
    height: auto;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #111111;
    margin-left: 4px;
}
.range_value_container .range_value_block{
    width: calc(100% - 120px);
    height: 24px;
    line-height: 17px;
}
.choose_blue_box{
    width: 100%;
    height: auto;
    min-height: 125px;
    padding: 20px;
    background: #EAF3FD;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 12px;
}
.choose_blue_box p{
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #757575;
    margin-bottom: 8px;
}
.choose_blue_box p strong{
    color: #000000;
    font-weight: 600;
}
.choose_blue_box h4{
    font-size: 24px !important;
    line-height: 22px;
    font-weight: 700 !important;
    color: #000000;
    margin-bottom: 16px;
}

.load_details_container{
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}
.load_details_container .loan-detail-row{
    width: 100%;
    height: auto;
    padding: 22px 0;
    font-size: 14px;
    line-height: 20px;
    color: #6F6F6F;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ECECEC;
}
.load_details_container .loan-detail-row:last-child{
    border-bottom: 1px solid #ECECEC;
}
.load_details_container .loan-detail-row .loan-detail-left{
    width: 60%;
    height: auto;
}
.load_details_container .loan-detail-row .loan-detail-right{
    width: 40%;
    height: auto;
    text-align: right;
    color: #101010;
    font-weight: 500;
}

.multi_bullet{
    width: 100%;
    height: auto;
    margin-top: 24px;
    text-align: left;
}
.multi_bullet ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.multi_bullet ul li{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 24px;
    background-image: url('/resource/greentickcon');
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 25px;
}
.multi_bullet ul li span{
    color: #111111;
}
.multi_bullet ul li ul{
    padding: 20px 0 0 5px;
}
.multi_bullet ul li ul li{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #6F6F6F;
    margin-bottom: 16px;
    background-image: none;
    position: relative;
    padding-left: 20px;
}
.multi_bullet ul li ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #CFCFCF;
}
#crn, #dateBirth, #debitCard{
    display: none;
}
.color-grey{
    color: #757575 !important;
}
.add_insurance_container{
    width: 100%;
    height: auto;
    border: 1px solid #0A3E781A;
    border-radius: 3px;
    padding: 16px;    
    margin-bottom: 24px;
    background-color: #E3EFFD26;
}

.add_insurance_container .insurance-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.add_insurance_container .add-icon{
    width: 45px;
    height: auto;
}
.add_insurance_container .add-content{
    width: calc(100% - 120px);
    height: auto;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #101010;
}
.add_insurance_container .add-btn{
    width: 60px;
    height: auto;
}
.textareaInput{
    position: relative;
}
.textareaInput .character-container{
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: rgba(0,0,0,0.5);
}
.add-insurance-form{
    margin-top: 24px;
}
.deleteIcon{
    cursor: pointer;
}
.balanceTransfer{
    display: none;
}
.ui-widget.ui-widget-content {
    max-height: 150px;
    overflow-y: auto;
    font-size: 14px;
    padding: 5px;
}
.ui-menu .ui-menu-item {
    margin-bottom: 5px;
}
.footer-right-container{
    display: flex;
    align-items: center;
}
.firstLoanContainer img{
    display: none;
}
#emailField label.error{
    color: #DF0F1B;
    margin-top: 5px;
}

.congrats_process_box{
    width: 100%;
    height: auto;
    border: 1px solid #ECECEC;
    padding: 0 24px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.congrats_process_box .congrats_process_left{
    width: calc(100% - 140px);
    height: auto;
    padding-right: 40px;
    border-right: 1px solid #ECECEC;
}
.congrats_process_box .congrats_process_right {
    width: 140px;
    height: auto;    
    box-sizing: border-box;
    padding-left: 40px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.congrats_process_box .congrats_process_left .box_row{
    padding: 20px 0;
    border-bottom: 1px solid #ECECEC;
    display: flex;
    justify-content: space-between;
}
.congrats_process_box .congrats_process_left .box_row:last-child{
    border-bottom: none;
}
.congrats_process_box .congrats_process_left .box_row p, .congrats_process_box .congrats_process_right p{
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #6F6F6F;
}
.congrats_process_box .congrats_process_left .box_row p strong, .congrats_process_box .congrats_process_right p strong{
    font-weight: 700;
    color: #101010;
}

p.footerTerms{
    text-align: right;
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: #6F6F6F;
}

.thankyou-block{
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 2px;
    text-align: center;
    padding: 32px;
    margin-top: 40px;
}