/* Step Progress */
.step-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1.5px;
    background: #e9ecef;
    z-index: 0;
}

.step-progress-lg::before {
    top: 1.3rem;
}

.step-progress-md::before {
    top: 1rem;
}

.step-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 10px;
}

.step-progress .step .step-circle {

    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.step-progress .step .step-circle-lg {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem
}

.step-progress .step .step-circle-md {
    width: 2rem;
    height: 2rem;
    font-size: .9rem
}



.step-progress .step.active .step-circle {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.step-progress .step.completed .step-circle {
    background: #00C667;
    color: #fff;
}

.step-progress .step.completed .step-circle::after {
    content: '✓';
    font-size: 18px;
}

.step-progress .step .step-label {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

.step-progress .step.active .step-label {
    color: #000;
    font-weight: 500;
}

.state-success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    background-color: rgb(220 252 231 / 1);
}

