/* Progress Stepper Base Styles */
.progress-stepper-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding-bottom: 56px;
}

.progress-stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Individual step connector lines */
.step-connector {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: rgba(var(--lucida-hojicha));
    z-index: -1;
}

/* Hide connector on last step */
.step-item:last-child .step-connector {
    display: none !important;
}

.step-previous .step-connector {
    background-color: rgba(var(--lucida-hojicha));
}

.step-current .step-connector {
    background-color: rgba(var(--lucida-hojicha));
    /*background: linear-gradient(to right, #d81b60 50%, #e0e0e0 50%);*/
}

/* Step item */
.step-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

/* Step circle */
.step-circle {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: rgba(var(--lucida-golden));
    border: 6px solid rgba(var(--lucida-dark));
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Step label */
.step-label {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.48px;

    display: flex;
}
.step-label img {
    margin-left: 16px
}

/* Previous steps (completed) */
.step-previous .step-circle {
    background-color: rgba(var(--lucida-golden));
    border-color: rgba(var(--lucida-dark));
}

.step-previous .step-label {
    color: rgba(var(--lucida-beige));
}

/* Current step */
.step-current .step-circle {
    background-color: rgba(var(--lucida-golden));
    border-color: rgba(var(--lucida-dark));
}

.step-current .step-label {
    color: rgba(var(--lucida-beige));
    /*font-weight: 600;*/
}

/* Next step */
.step-next .step-label {
    color: rgba(var(--lucida-beige));
}

/* Upcoming steps */
.step-upcoming .step-label {
    color: rgba(var(--lucida-beige));
}

/* Mobile header */
.step-mobile-header {
    display: none;
    text-align: center;
    margin-bottom: 10px;
    color: rgba(var(--lucida-light));
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.96px;
}

/* Mobile empty space helper (hidden on desktop) */
.step-empty-mobile {
    display: none;
}

.step-empty-mobile .step-connector {
    display: none !important;
}

/* Mobile visibility helpers (hidden on desktop) */
.step-hide-mobile {
    display: flex;
}

.step-show-mobile {
    display: flex;
}

/* Mobile styles */
@media (max-width: 768px) {

}