.rca-form-container {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.rca-form-stepper.wizard {
    position: relative;
    box-shadow: 0 0 14px rgba(82, 85, 90, 0.1);
    background-color: #eff6ff;
    margin: 50px 0;
    overflow: hidden;
    border-radius: 5px;
    font-family: 'Mulish', sans-serif;
}

.rca-form-stepper.wizard .steps > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
}

.rca-form-stepper.wizard .steps > ul > li {
    position: relative;
    flex: 0 0 50%;
}

.rca-form-stepper.wizard .steps > ul > li > a {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    gap: 10px;
    border-right: 1px solid  rgba(255,255,255,0.1);
    transition: 0.3s all ease;
}

.rca-form-stepper.wizard .steps > ul > li > a::before {
    position: absolute;
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: #00d258;
    transition: 0.3s all ease;
    left: 0;
    top: 0;
    right: auto;
}

.rca-form-stepper.wizard .steps > ul > li.current > a {
    background-color: #eff6ff;
    color: #000;
}

.rca-form-stepper.wizard .steps > ul > li.current > a::before {
    right: 0;
    width: 100%;
}

.rca-form-stepper.wizard .steps > ul > li.current > a::after {
    content: '';
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 24px;
    border: 12px solid #00d258;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.rca-form-stepper.wizard .steps > ul > li:last-child > a {
    border-right: 0;
}

.rca-form-stepper.wizard .steps > ul > li > a > .step {
    display: inline-flex;
    color: #00d258;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    /* background: #00d258; */
    font-weight: bold;
    font-size: 30px;
}

.rca-form-stepper.wizard .steps > ul > li > a > .step::before {
    content: '0';
}

.current-info {
    position: absolute;
    z-index: -100000;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.rca-form-stepper.wizard .content {
    padding: 24px;
}

.rca-form-stepper.wizard .content > main.title {
    display: none;
}

.rca-form-stepper.wizard .actions {
    padding: 24px 24px;
    border-top: 1px solid #dadae1;
}

.rca-form-stepper.wizard .actions > ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rca-form-stepper.wizard .actions ul > li > a[role="menuitem"] {
    border-radius: 45px;    
    padding: 8px 20px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rca-form-stepper.wizard .actions ul > li > a[role="menuitem"].butn-style1:hover, .rca-form-stepper.wizard .actions ul > li > a[role="menuitem"].butn-style1:focus, .rca-form-stepper.wizard .actions ul > li > a[role="menuitem"].butn-style1:active {
    background-color: #000;
    border-color: #000;
}

.rca-form-stepper.wizard .butn-style2 {
    z-index: 1;
}

.rca-form-stepper.wizard .butn-style2:after {
    z-index: -1;
}

.rca-form-stepper fieldset .form-control {
    border: 1px solid #eee;
}

.rca-form-stepper fieldset .form-control:focus {
    border-color: #00d258;
}

.rca-form-stepper fieldset .form-group label {
    color: #000;
}

.rca-form-stepper fieldset .form-group label .required {
    color: #f00;
}

.error-field {
    color: #f00;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .rca-form-stepper.wizard .steps > ul > li > a {font-size: 16px; height: 100%;align-items: center;}
    .rca-form-stepper.wizard .steps > ul > li > a > .step {font-size: 20px;}
    .rca-form-stepper.wizard .content {padding: 15px;}
}