.status-bar {
    width: 100%;
    margin: 50px auto 0 auto;
}

.status-bar.mo {
    width: 100%;
    margin: 50px auto 0 auto;
}

.status-bar-inner {
    display: flex;
    justify-content: space-between;
    padding: 63px 0 62px 0;
}

.status-step-nubmer {
    text-align: center;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--brand-primary);
	color: var(--brand-on-primary);
    border-radius: 50%;
    margin: 0 auto;
}

.status-step-text {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
	margin-top: 10px;
	color: black;
}

.status-bar .status-step-text a {
    position: relative;
}

.status-bar img.stift {
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: 7px;
    top: -2px;
}

.active .status-step-nubmer {
    background: black;
    color: white;
}

.active .status-step-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-step {
    text-align: center;
}

.status-step:not(:first-child) {
	position: relative;
}

.status-line {
    content: "";
    background: black;
    width: 100px;
    height: 2px;
    margin: auto;
}

.status-bar .mo .status-line {
    width: 160px;
}


@media screen and (max-width: 1024px) and (min-width: 751px) {

    .status-bar {
        width: 100%;
    }

    .status-line {
        display: none;
    }

    .status-bar img.stift {
        width: 12px;
        height: 12px;
        right: -14px;
        top: 2px;
    }
}

@media screen and (max-width: 750px) {

    /* Status bar: normaler Flow, kein fixed/sticky */
    .status-bar {
        margin: 30px 0 16px 0;
    }

    .status-bar-inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: space-between;
        padding: 8px 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .status-bar-inner::-webkit-scrollbar {
        display: none;
    }

    /* Steps: Text immer unter der Nummer */
    .status-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 0 0 auto;
        min-width: 0;
        text-align: center;
    }

    .status-step-nubmer {
        width: 28px;
        height: 28px;
        font-size: 13px;
        margin: 0 0 4px 0;
    }

    .status-step-text {
        font-size: 10px;
        white-space: nowrap;
        line-height: 1.2;
        padding: 0 2px;
        margin-top: 0;
    }

    /* Stift-Icon auf Mobile ausblenden, stattdessen Unterstreichung */
    .status-bar img.stift {
        display: none;
    }

    .status-bar .status-step-text a {
        position: initial;
        text-decoration: underline;
        color: inherit;
    }

    .completed .status-step-text {
        cursor: pointer;
    }

    /* Connector-Linien: füllen Platz zwischen Kreisen */
    .status-line {
        flex: 1 1 0;
        height: 2px;
        background: #000;
        margin-top: 14px;
        align-self: flex-start;
        min-width: 8px;
    }
}