.form-content.shadow-custom {
    z-index: 9;
}

#btn_step1 {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #fff;
    font-weight: 500;
    padding: 16px 32px;
}

section.multistep-application-section .form-container {
    padding: 0 16px;
    position: relative;
    /*max-width: 1536px;*/
    margin: 0 auto;
    max-width: 1150px;
}

section.multistep-application-section .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

section.multistep-application-section .step-indicator {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    /* gap: 30px; */
    padding: 16px;
    /* position: sticky;
    top: 150px;
    height: fit-content; */
}

section.multistep-application-section .step-indicator .step-indicator-number {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: end;
  
    gap: 8px;
}

section.multistep-application-section .step-indicator-number>span {
    font-size: 18px;
    color: #000000;
}

section.multistep-application-section .step-indicator .number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #d1d5db;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

section.multistep-application-section .step-indicator .number.active {
    background: #3b82f6;
}

section.multistep-application-section .step-indicator .number.completed {
    background: #3b82f6;
}

section.multistep-application-section .step-indicator .line {
    position: absolute;
    width: 2px;
    height: 50%;
    background: #d1d5db;
    right: 14px;
    top: 60px;
    z-index: 1;
}

section.multistep-application-section .step-indicator div:last-child .line {
    /* display: none; */
}

section.multistep-application-section .step-indicator .line.active {
    background: #3b82f6;
}

section.multistep-application-section .step-indicator .line.completed {
    background: #3b82f6;
}

section.multistep-application-section .form-content {
    /* max-width: calc(100% - 352px); */
    width: 100%;
    padding: 32px;
    padding-bottom:75px;
    background: #fff;
    border-radius: 8px;
    height: fit-content;
}

section.multistep-application-section .shadow-custom {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

section.multistep-application-section .step {
    display: none;
}

section.multistep-application-section .step.active {
    display: block;
}



section.multistep-application-section .form-navigation {
    display: flex;
    justify-content: space-between;
    line-height: unset;
}


section.multistep-application-section .form-navigation button {
    border-radius: 6px;
    box-shadow: none;
    padding: 11px 40px 11px;
}


section.multistep-application-section .form-navigation #nextBtn {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #fff;
    font-weight: 500;
}

section.multistep-application-section #prevBtn {
    color: #000000;
    border: 1px solid rgb(209, 213, 219);
    background-color: rgb(243, 244, 246);
    font-weight: 500;
}

#masthead.fixed {
    position: fixed;
    width: 100%;
}

section.multistep-application-section {
    padding: 60px 0;
    min-height: calc(100svh - 76px);
}

section.multistep-application-section form label {
    font-size: 16px;
    font-weight: 500 !important;
}

section.multistep-application-section input.form-control,
section.multistep-application-section .select2-container--default .select2-selection--single,
section.multistep-application-section select {
    border: 1px solid #ccc;
    height: 50px;
    background: rgb(249, 250, 251);
    border-radius: 4px;
    font-size: 16px;
}

section.multistep-application-section .gender-inline label span {
    border: 1px solid #ccc;
    height: 50px;
    background: rgb(249, 250, 251);
    border-radius: 4px;
}

section.multistep-application-section .gender-inline input:checked+label span {
    border-color: #00b352;
    color: #000;
    background-color: #e9fcf8;
}

section.multistep-application-section .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px;
    padding-left: 15px;
}

section.multistep-application-section .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#007bff calc(var(--value) * 1%), #e9ecef calc(var(--value) * 1%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #007bff;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.progress-circle .progress-value {
    position: relative;
    z-index: 1;
}


@media (min-width: 1024px) {
    section.multistep-application-section .form-row {

        gap: 16px;
        /*max-width: 980px;*/
        margin: 0 auto;
    }

    section.multistep-application-section .step-indicator .step-indicator-number {
   
        max-width: 360px;
        width: 100%;
        justify-content: flex-start;
        flex-direction: column;
    }
    
    section.multistep-application-section .step-indicator .line {
        position: absolute;
        width: 230px;
        height: 2px;
        background: #d1d5db;
        right: -116px;
        top: 15px;
        z-index: 1;
    }
    
}


@media (max-width: 1023px) {

 
    .progress-circle.active {
        display: block;
    }

    section.multistep-application-section .form-content {
        max-width: 100%;
        width: 100%;
    }



    section.multistep-application-section .step-indicator {
        max-width: 100%;
        position: static;
        align-items: flex-start;
        padding: 0px;
        height: auto;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    section.multistep-application-section .step-indicator .number.active {
        /* width: 80px; */
        /* height: 80px; */
        display: flex;
        /* font-size: 30px; */
        /* display: block; */
    }

    section.multistep-application-section .step-indicator .line {
        position: absolute;
        width: 70%;
        height: 2px;
        background: #d1d5db;
        right: auto;
        top: 16px;
        z-index: 1;
        left: 36px;
    }

    section.multistep-application-section .step-indicator .step-indicator-number {
        height: auto;
    }


    section.multistep-application-section .step-indicator-number>span {
        display: none;
    }

}

.heading-1 {
    text-align: start;
    font-size: 41px;
    display: flex;
    flex-direction: column;
    row-gap: 0;
    line-height: 76px;
    color: #000;
}

.heading-1::after {
    content: "";
    display: block;
    width: 15%;
    height: 5px;
    border-radius: 3px;
    background-color: #003A8F;
}



@media (max-width: 767px) {

    section.multistep-application-section input.form-control,
    section.multistep-application-section .select2-container--default .select2-selection--single,
    section.multistep-application-section select {
        height: 42px;
    }

    section.multistep-application-section .gender-inline label span {
        height: 42px;
    }

    section.multistep-application-section .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 42px;
        font-size: 15px;
        padding-left: 10px;
    }

    .blankSpace {
        display: none;
    }

    section.multistep-application-section .form-content {
        padding: 16px;
    }


    section.multistep-application-section .form-navigation button {
        padding: 10px 40px 10px;
    }
    
    .heading-1 {
      font-size: 20px;
      line-height: 27px;
    }
    
    .heading-1::after {
            margin-top: 8px;
    }
}



@media (max-width: 600px) {
    section.multistep-application-section .step-indicator .number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    section.multistep-application-section .step-indicator .line {
        width: 80%;
        top: 12px;
        left: 30px;
    }


}

