/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 04 2025 | 23:17:33 */
/* --- Basis / Desktop: horizontale Step-Leiste --- */

.cart-value-steps-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #f5f5f5;
}

.cart-value-steps-heading {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 16px;
}

/* Container der Steps – horizontal nebeneinander */
.cart-value-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
    padding-top: 26px;   /* Platz über der Linie (Top-Text) */
    padding-bottom: 12px;/* Platz unter der Linie (Bottom-Text) */
}

/* Grundlinie (grau) */
.cart-value-steps-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    height: 4px;
    background: #666;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 999px;
}

/* Rote Füllung */
.cart-value-steps-line-fill {
    height: 100%;
    width: 0;
    background: #e53935;
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Einzelner Step */
.cart-value-step {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 2; /* über der Linie */
}

/* Top-Text (statt Icons) */
.cart-value-step-top {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
}

/* Kreis in der Mitte */
.cart-value-step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #555;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 0 0 2px #111, 0 0 0 3px #666;
}

/* Häkchen / Nummer */
.cart-value-step-check,
.cart-value-step-number {
    line-height: 1;
}

/* Erreichte Steps -> rote Kreise mit Häkchen */
.cart-value-step.is-reached .cart-value-step-circle {
    background: #e53935;
    box-shadow: 0 0 0 2px #111, 0 0 0 3px #e53935;
}

/* Unterer Text – Benefit */
.cart-value-step-bottom {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* ----------------------------- */
/* Tablet & Mobile: vertikale Timeline */
/* ----------------------------- */

/* ----------------------------- */
/* Tablet & Mobile: vertikale Timeline */
/* ----------------------------- */
@media (max-width: 991px) {

    .cart-value-steps-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* Container wird vertikal, links Platz für Linie + Kreise */
    .cart-value-steps {
        position: relative;
        display: block;
        padding-left: 0px;   /* Abstand für Linie + Kreise links */
        margin-top: 8px;
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Vertikale Linie links */
    .cart-value-steps-line {
        position: absolute;
        left: 60px;           /* Position der Linienmitte */
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
        background: #666;
        border-radius: 999px;
        transform: none;
        z-index: 1;
    }

    .cart-value-steps-line-fill {
        width: 100%;
        height: 100%;
    }

    /* Jeder Step ist ein „Eintrag“ auf der Timeline */
    .cart-value-step {
        position: relative;
        margin-bottom: 22px;
        text-align: left;
		margin-left: 100px;
        z-index: 2;
    }

    /* Kreis sitzt exakt auf der Linie */
    .cart-value-step-circle {
        position: absolute;
        left: -52px;
        top: -4px;
        margin: 0;
    }

    /* Textbereich rechts vom Kreis */
    .cart-value-step-top,
    .cart-value-step-bottom {
        display: inline;
        font-size: 15px;
        margin: 0;
    }

    /* "ab 150 € Kostenloses Ladekabel" in einer Zeile */
    .cart-value-step-top {
        font-weight: 500;
        color: #fff;
    }

    .cart-value-step-top::after {
        content: " ";
    }

    .cart-value-step-bottom {
        font-weight: 600;
    }
}

@media (max-width: 575px) {
    .cart-value-steps-wrapper {
        font-size: 13px;
    }

    .cart-value-steps-heading {
        font-size: 18px;
    }

    .cart-value-step-top,
    .cart-value-step-bottom {
        font-size: 14px;
    }
}
