﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
    /* für den Bundesverban deutscher Banken */
    --company: #7b071a;
    --deactive: #dca8b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 90vh;
    align-items: center;
    justify-content: center;
    background: #f6f7fb;
}

.progress-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 100vw;
    width: 100%;
}

    .progress-box .steps {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

.progress-box,
.steps,
.table {
    width: 100%;
}

.steps .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: #999;
    font-size: 22px;
    font-weight: 500;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #e0e0e0;
    transition: all 200ms ease;
    transition-delay: 0;
}

    .steps .circle.active {
        transition-delay: 100ms;
        border-color: var(--company);
        color: var(--company);
    }

.steps .progress-bar {
    position: absolute;
    height: 4px;
    width: 100%;
    background: #e0e0e0;
    z-index: -1;
}

.progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--company);
    transition: all 300ms ease;
}

.progress-box .buttons {
    display: flex;
    gap: 20px;
}
/*.buttons button {
    padding: 8px 25px;
    background: var(--company);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    transition: all 200ms linear;
}
        .buttons button:active{
            transform: scale(0.97);
        }
        .buttons button:disabled{
            background: var(--deactive);
            cursor:not-allowed;
        }*/

/* === Responsive Anpassung für Progressbar === */

/* Kleine Bildschirme: Progressbar vertikal anzeigen */
/*@media (max-width: 600px) {
    .progress-box .steps {*/
/*        flex-direction: column;
*/        /*align-items: flex-start;
        gap: 1.5rem;
    }

    .steps .progress-bar {
        width: 4px;
        height: 100%;
        left: 24px;
        top: 0;
        transform: none;
    }

    .progress-bar .indicator {
        width: 4px;
        height: 0%;
    }

    .steps .circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .progress-box .buttons {
        flex-direction: column;
        width: 100%;
    }

        .progress-box .buttons button {
            width: 100%;
        }
}*/









/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
:root {*/
/* für den Bundesverban deutscher Banken */
    /*--company: #7b071a;
    --deactive: #dca8b0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 90vh;
    align-items:center;
    justify-content:center;
    background: #f6f7fb;
}

.progress-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 100vw; 
    width: 100%;
}
    .progress-box .steps {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
        .steps .circle {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: 50px;
            color: #999;
            font-size: 22px;
            font-weight: 500;
            border-radius: 50%;
            background: #fff;
            border: 4px solid #e0e0e0;
            transition: all 200ms ease;
            transition-delay: 0;
        }
            .steps .circle.active {
                transition-delay: 100ms;
                border-color: var(--company);
                color: var(--company);
            }
        .steps .progress-bar {
            position: absolute;
            height: 4px;
            width: 100%;
            background: #e0e0e0;
            z-index: -1;
        }
.progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--company);
    transition: all 300ms ease;
}
    .progress-box .buttons {
        display: flex;
        gap: 20px;
    }*/
/*.buttons button {
    padding: 8px 25px;
    background: var(--company);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    transition: all 200ms linear;
}
        .buttons button:active{
            transform: scale(0.97);
        }
        .buttons button:disabled{
            background: var(--deactive);
            cursor:not-allowed;
        }*/