

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Sans-serif;
}

body {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-image: radial-gradient(at center center, #A3BCD594 36%, #3E68898F 100%);
}

#header {
    font-size: large;
    padding: 0.3em;
    background: #ffffff;
    margin-bottom: 90px;
}

.headerinner {
    position: relative;
    margin: auto;
    max-width: 1200px;
    width: 100%;
    background: #fff;
    padding: 20px;
}

.logo {
    max-width: 250px;
}

.logo-right {
    max-width: 250px;
    float: right;
}

#footer {
    font-size: large;
    padding: 0em;
    background: #595961;
    bottom: 0;
    width: 100%;
    margin-top: 90px;
}

.footerinner {
    margin: auto;
    max-width: 1200px;
    width: 100%;
    padding: 0px;
}

.logo-footer {
    max-width: 150px;
    display: block;
    margin: auto;
    width: 50%;
}

.container {
    position: relative;
    margin: auto;
    max-width: 1200px;
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

    .container header {
        font-size: 1.5rem;
        color: #333;
        font-weight: 500;
        text-align: center;
    }

    .container .form {
        margin-top: 30px;
    }

.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 0 auto;
    width: 800px;
}

    .progressbar::before, .progress {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 4px;
        width: 100%;
        background-color: #dcdcdc;
        z-index: 1;
    }

.progress {
    background-color: rgb(0 128 0);
    width: 0%;
    transition: 0.3s;
}

.progress-step-active {
    background-color: var(--primary-color);
    color: #f3f3f3;
}

.progress-step {
    width: 50px;
    height: 50px;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-family: "Poppins", Sans-serif;
    font-family: "Poppins", Sans-serif;
}

    .progress-step::before {
        counter-increment: step;
        content: counter(step);
    }

    .progress-step::after {
        content: attr(data-title);
        position: absolute;
        top: calc(100% + 0.5rem);
        font-size: 0.85rem;
        color: #666;
    }

.form .input-box {
    width: 100%;
    margin-top: 20px;
}

.input-box label {
    color: #333;
}

.input-box input, .select-box {
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #707070;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    background-color: #fff;
}

.select-box {
    border: 1px solid #ccc;
    background-color: white;
    transition: all 0.3s ease;
}

    .select-box:hover {
        border-color: #007bff;
        background-color: #f9f9f9;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

input[type="submit"] {
    color: #045B90;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid #ccc;
    background: rgb(171, 214, 222);
    transition: all 0.3s ease;
    padding: 10px 20px;
    cursor: pointer;
}


    input[type="submit"]:hover {
        border-color: #007bff;
        background-color: #f9f9f9;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.more:hover {
    border-color: #007bff;
    background-color: #f9f9f9;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}



.input-box input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form .column {
    display: flex;
    column-gap: 15px;
}

.form .gender-box {
    margin-top: 20px;
}

.gender-box h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.form :where(.gender-option, .gender) {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
}

.form .gender {
    column-gap: 5px;
}

.gender input {
    accent-color: rgb(130, 106, 251);
}

.form :where(.gender input, .gender label) {
    cursor: pointer;
}

.gender label {
    color: #707070;
}

.address :where(input, .select-box) {
    margin-top: 15px;
}

.select-box select {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    color: #707070;
    font-size: 1rem;
}

.form button {
    height: 35px;
    width: 100%;
    color: #045B90;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgb(171, 214, 222);
    border-radius: 15px;
}

    .form button:hover {
        background: rgb(141, 254, 242);
    }



[type="checkbox"] {
    position: relative;
    left: 30px;
    top: 0px;
    z-index: 0;
    -webkit-appearance: none;
}

    [type="checkbox"] + label {
        position: relative;
        display: block;
        cursor: pointer;
        font-family: "Poppins", Sans-serif;
        font-size: 14px;
        line-height: 1.3;
        padding-left: 50px;
        position: relative;
        margin-top: 0px;
    }

        [type="checkbox"] + label:before {
            width: 30px;
            height: 15px;
            border-radius: 30px;
            border: 2px solid #ddd;
            background-color: #EEE;
            content: "";
            margin-right: 15px;
            transition: background-color 0.5s linear;
            z-index: 5;
            position: absolute;
            left: 0px;
        }

        [type="checkbox"] + label:after {
            width: 15px;
            height: 15px;
            border-radius: 30px;
            background-color: #fff;
            content: "";
            transition: margin 0.3s linear;
            box-shadow: 0px 0px 5px #aaa;
            position: absolute;
            left: 2px;
            top: 2px;
            z-index: 10;
        }

    [type="checkbox"]:checked + label:before {
        background-color: #2b8718;
    }

    [type="checkbox"]:checked + label:after {
        margin: 0 0 0 15px;
    }

.footer {
}

p.graue-box-up {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #045B90;
}

p.graue-box-down {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #045B90;
}

h1 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #045B90;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 10px;
}

h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #045B90;
    text-align: center;
}

h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #045B90;
}


h1.sektor {
    padding-top: 50px;
    color: rgb(5, 88, 165);
}

h2.branche {
    text-align: left;
}

h2.sektor {
    margin-top: 40px;
    text-align: left;
}



h3.sektor {
    padding-top: 30px;
}

.pos {
    padding-top: 60px;
    padding-bottom: 30px;
}

.about {
    padding-top: 20px;
    padding-bottom: 20px;
}

.meter {
    width: 360px;
    display: block;
    margin: auto;
    padding-top: 8px;
}

.meter-echt {
    width: 450px;
    display: block;
    margin: auto;
}

.chart {
    width: 500px;
    display: block;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 58px;
}

.chart2 {
    width: 350px;
    display: block;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 16px;
}

.more {
    margin-top: 30px;
    border: 1px solid;
    border-color: darkgrey;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #045B90;
    text-align: center;
    padding: 15px 15px;
    margin-left: auto;
    margin-right: auto;
}

.graue-linie {
    border: none; /* Entfernt den browserspezifischen 3D-Effekt */
    height: 1px; /* Bestimmt die Dicke der Linie */
    background-color: #cccccc; /* Setzt die Farbe auf ein mittleres Grau */
    margin: 30px 0; /* Sorgt für 20px Abstand nach oben und unten */
}

.divider-container {
    display: flex;
    align-items: center; /* Zentriert Text und Linien vertikal */
    color: #1a3e6f; /* Das Dunkelblau aus deinem Screenshot */
    font-family: "Poppins", Sans-serif; /* Passende Schriftart wählen */
    font-size: 16px;
    width: 100%; /* Nimmt die volle Breite ein */
    margin: 20px 0;
}

    /* Erstellt die Linien vor und nach dem Text */
    .divider-container::before,
    .divider-container::after {
        content: ""; /* Wichtig: Generiert ein leeres Element */
        flex: 1; /* Sagt den Linien: "Nehmt den restlichen Platz ein" */
        border-bottom: 1px solid #dcdcdc; /* Farbe und Dicke der Linie */
    }

    /* Abstand zwischen linker Linie und Text */
    .divider-container::before {
        margin-right: 15px;
    }

    /* Abstand zwischen Text und rechter Linie */
    .divider-container::after {
        margin-left: 15px;
    }

.graue-box-kpi {
    background-color: #F1F1F1; /* Ein schönes, neutrales Grau */
    border-radius: 15px; /* Sorgt für die runden Ecken */
    padding: 20px; /* Innenabstand, damit der Text nicht am Rand klebt */
    width: 100%; /* Die Breite der Box (kannst du beliebig anpassen) */
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #045B90;
}

.graue-box-top {
    background-color: #F1F1F1; /* Ein schönes, neutrales Grau */
    border-radius: 15px; /* Sorgt für die runden Ecken */
    padding: 20px; /* Innenabstand, damit der Text nicht am Rand klebt */
    width: 100%; /* Die Breite der Box (kannst du beliebig anpassen) */
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #045B90;
}

.graue-box {
    background-color: #F1F1F1; /* Ein schönes, neutrales Grau */
    border-radius: 15px; /* Sorgt für die runden Ecken */
    padding: 20px; /* Innenabstand, damit der Text nicht am Rand klebt */
    width: 100%; /* Die Breite der Box (kannst du beliebig anpassen) */
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #045B90;
}

.branche-box {
    border: 1px solid;
    border-color: darkgrey;
    border-radius: 15px; /* Sorgt für die runden Ecken */
    padding: 20px; /* Innenabstand, damit der Text nicht am Rand klebt */
    width: 100%; /* Die Breite der Box (kannst du beliebig anpassen) */
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #045B90;
    margin-top: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Erstellt zwei exakt gleich große Spalten (1 fraction) */
    gap: 32px; /* Abstand zwischen den beiden Spalten */
    margin-top: 40px;
}

/* Container für das einzelne Element (Flexbox-Layout wie vorher) */
.icon-text-container {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "Poppins", Sans-serif;
    color: #17365d;
}

/* Styling für das Icon */
.icon {
    width: auto;
    height: 42px;
    flex-shrink: 0;
}

/* Text Styling */
.text {
    font-size: 16px;
    font-weight: 300;
    color: #045B90;
}

/* --- NEU: Responsiv für Smartphones --- */
/* Bei Bildschirmen schmaler als 768px wird das Raster auf 1 Spalte geändert */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.dpx {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

label {
    display: block;
    line-height: 40px;
}

.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 4.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}

    .option-input:hover {
        background: #9faab7;
    }

    .option-input:checked {
        background: rgb(5, 88, 165);
    }

        .option-input:checked::before {
            width: 40px;
            height: 40px;
            display: flex;
            content: '\f00c';
            font-size: 25px;
            font-weight: bold;
            position: absolute;
            align-items: center;
            justify-content: center;
            font-family: 'Font Awesome 5 Free';
        }

        .option-input:checked::after {
            -webkit-animation: click-wave 0.65s;
            -moz-animation: click-wave 0.65s;
            animation: click-wave 0.65s;
            background: #40e0d0;
            content: '';
            display: block;
            position: relative;
            z-index: 100;
        }

    .option-input.radio {
        border-radius: 50%;
    }

        .option-input.radio::after {
            border-radius: 50%;
        }

.p-block {
    margin-top: -33px;
    margin-left: 30px;
    line-height: 24px;
}


p.copyright {
    text-align: center;
    padding-top: 30px;
}

@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }

    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

/*Responsive*/
@media screen and (max-width: 500px) {
    .form .column {
        flex-wrap: wrap;
    }

    .form :where(.gender-option, .gender) {
        row-gap: 15px;
    }
}
