.icba-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    width: auto;
    max-width: 800px;
}
.icba-form .step-navigation{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.icba-form .step-navigation .step-indicator.active{
    background-color: #545454;
}
.icba-form .step-navigation .step-indicator{
    padding: 10px;
    background-color: #BE0B0B;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.icba-form .row {
    display: flex;
    flex-wrap: wrap;
}
.icba-form .col-sm-4 {
    width: 33.33333%;
}
.icba-form .form-group {
    margin-bottom: 1rem;
}
.icba-form .row label
{
    font-size: 18px;
}
.icba-form .row span.input_desc
{
    font-size: 14px;
    width: 100%;
    display: inline-block;
} 
.icba-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.icba-form button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.icba-form button:hover {
    background-color: #005177;
}
.icba-form .form-group.row .astrik{
    color: #ff0000;
}
.icba-form .form-control.error {
    border: 1px solid red;
    background-color: #ffecec;
}
.icba-form .error_cls{
    /*background: #ff0000;*/
    color: #ff0000;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
}
.icba-form .error_cls span{
    display: inline-block;
    width: 100%;
}
.icba-form .col-sm-8{
    width: 50%;
}
.icba-form input[type="number"] {
    width: 50%;
}
.icba-form input[readonly] {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

/*form hidden & display css*/
#choose_plan,#tcap_v_submit{
    display: none;
}

/*step 2 choose plan*/
.loan-section {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: -webkit-fill-available;
    margin-bottom: 20px;
}
.loan-header {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}
.loan-term {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    line-height: 1em;
}
.installment {
    font-weight: bold;
}
.loan-footer {
    margin-top: 10px;
    font-size: 12px;
    color: #777;
}
.loan-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}
.succ_submit span{
    background: #ddffdd;
}