

@font-face {
    font-family: "Nunito";
    src: url('{{ asset("assets/font/Nunito/Nunito-VariableFont_wght.ttf") }}')
        format("truetype");
}

body {
    font-family: "Nunito", sans-serif;
}

.menu-top {
    /* Layout Properties */
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    /* UI Properties */
    background: var(--unnamed-color-263238) 0% 0% no-repeat padding-box;
    background: #263238 0% 0% no-repeat padding-box;
    opacity: 1;
}

.menu-text-left {
    /* Layout Properties */
    top: 20px;
    left: 284px;
    width: 164px;
    height: 21px;
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / 21px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal 300 18px/21px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
}

.menu-text-right {
    /* Layout Properties */
    top: 21px;
    left: 1490px;
    width: 190px;
    height: 21px;
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / 21px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal 300 18px/21px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
}

.navigation-menu {
    /* Layout Properties */
    top: 60px;
    left: 0px;
    height: 125px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 1;
}

.navigation-menu a {
    text-decoration: none;
    color: #000; /* Set the text color to black */
}

.logo-text-column {
    font: normal normal bold 25px/25px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #000000;
    text-align: left;
    opacity: 1;
}

a.nav-link {
    color: #000;
}

.navbar-nav .nav-item {
    margin-right: 20px; /* Adjust the value as needed */
     font-family: 'Unbounded', Arial, sans-serif;
     font-size: 16px;
}

.navigation-menu-text-1 {
    /* Layout Properties */
    top: 95px;
    left: 366px;
    width: 124px;
    height: 55px;
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 25px/25px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    font: normal normal bold 25px/25px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.navigation-menu-btn {
    display: inline-block;
    padding: 10px 20px; /* Adjust the padding to your desired button size */
    color: #fff; /* Text color */
    text-decoration: none;
    border: 1px solid #000000; /* Button border */
    border-radius: 5px; /* Rounded corners for the button */
    opacity: 1;
}

.navigation-menu-link {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal 600
        var(--unnamed-font-size-20) / var(--unnamed-line-spacing-24)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    font: normal normal 600 20px/24px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.chip {
    display: flex;
    align-items: center;
}

.text-chip {
    flex-grow: 1;
    margin-right: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.fachberatung {
    font: normal normal bold 18px/21px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #000;
}

.phone {
    /* UI Properties for "0711/894951–20" */
    font: normal normal bold 18px/21px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #263238;
    text-align: left;
    opacity: 1;
}

/* Additional styles for the play button container */
.position-relative {
    position: relative;
    z-index: 0;
}
/* Styles for the hero image */
.hero-image {
    width: 100%; /* Adjust if necessary to fit your design */
    height: auto;
    position: relative; /* Add this to ensure the stacking context is correct */
    /* Remove the z-index from the hero image */
}

/* Styles for the play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 1; /* Ensure the play button is above the hero image */
}

@keyframes jumpAnimation {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.play-button {
    animation: jumpAnimation 1s ease infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add animation delays for staggered effect */
.fade-in:nth-child(1) {
    transition-delay: 0.3s; /* Delay for the first child (p element) */
}

.fade-in:nth-child(3) {
    transition-delay: 1s; /* Delay for the third child (image) */
}

/* Styles for the play icon */
.play-icon {
    width: 80px; /* Adjust the width as needed */
    height: auto;
    /* The z-index is not required here because the button itself has a higher z-index */
}

.footer {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 452px;
    background-color: #333; /* Adjust the background color as needed */
    color: #fff; /* Adjust the text color as needed */
    padding: 10px;
    /* UI Properties */
    background: transparent
        linear-gradient(
            180deg,
            var(--unnamed-color-e8f1f5) 0%,
            var(--unnamed-color-ffffff) 100%
        )
        0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #e8f1f5 0%, #ffffff 100%) 0%
        0% no-repeat padding-box;
    opacity: 1;
}

.footer-heading {
    font: normal normal bold 55px/28px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #263238;
    text-align: left;
    opacity: 1;
    line-height: normal;
}

.footer-description {
    font: normal normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #263238;
    text-align: left;
    opacity: 1;
}

.footer-link {
    font: normal normal 600 20px/24px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #263238;
    text-align: left;
    opacity: 1;
}

.footer-text {
    font: normal normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #263238;
    text-align: left;
    opacity: 1;
    padding-left: 30px;
}

.footer-social {
    font: normal normal 600 22px/26px BlinkMacSystemFont;
    letter-spacing: 0;
    color: #263238;
    text-align: left;
    opacity: 1;
}

.social-icons {
    display: flex;
}

.social-icons a {
    text-decoration: none;
    color: inherit;
    padding: 10px;
}

.horizontal-line {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 10px 0;
}

.footer-login-btn {
    display: inline-block;
    padding: 10px; /* Adjust the padding to your desired button size */
    color: #fff; /* Text color */
    text-decoration: none;
    border: 1px solid #000000; /* Button border */
    border-radius: 5px; /* Rounded corners for the button */
    opacity: 1;
}

.flip {
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.card {
    transition: transform 0.5s, opacity 0.5s;
    transform-style: flat; /* Don't use preserve-3d */
    position: relative;
    z-index: 0;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* For browsers where it works */
    display: flex; /* Use flexbox to center content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.front {
    z-index: 2;
}

.back {
    transform: rotateY(180deg);
    z-index: 1;
    opacity: 0;
    pointer-events: none; /* Ensures the back isn't clickable when it's not visible */
}

.flip:hover .front {
    opacity: 0;
    pointer-events: none; /* Ensures the front isn't clickable when it's not visible */
}

.flip:hover .back {
    opacity: 1;
    pointer-events: auto; /* Ensures the back is clickable when it's visible */
    z-index: 3; /* Make sure it's above the front when visible */
}

.highlightsHero {
    height: 967px;
    /* UI Properties */
    background: transparent
        radial-gradient(
            closest-side at 50% 50%,
            var(--unnamed-color-f5f7fe) 0%,
            var(--unnamed-color-ffffff) 52%,
            var(--unnamed-color-f5f7fe) 100%
        )
        0% 0% no-repeat padding-box;
    background: transparent
        radial-gradient(
            closest-side at 50% 50%,
            #f5f7fe 0%,
            #ffffff 52%,
            #f5f7fe 100%
        )
        0% 0% no-repeat padding-box;
    opacity: 0.95;
}

.highlightsHero-textLeft h1 span {
    font-size: 90px;
    /* UI Properties */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal bold 90px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.highlightsHero-textLeft h1 {
    font-size: 90px;
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal 100 90px/90px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal 100 90px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.highlightsHero-textLeft p {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-normal) var(--unnamed-font-size-18) / 27px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal normal 18px/27px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.button-konfigurieren {
    width: 225px;
    height: 65px;
    /* UI Properties */
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    opacity: 1;
    margin-right: 30px;
    border: 2px solid transparent; /* Add a transparent border */
    color: #ffffff; /* Set text color to white */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Add transition for a smooth effect */
}

.button-konfigurator {
    width: 225px;
    height: 65px;
    /* UI Properties */
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    opacity: 1;
    margin-right: 30px;
    border: 2px solid transparent; /* Add a transparent border */
    color: #ffffff; /* Set text color to white */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Add transition for a smooth effect */
}

.button-konfigurieren-a {
    text-decoration: none;
    color: #fff;
}

.button-konfigurieren:hover {
    background-color: #ffffff; /* Change background color to white on hover */
    color: #000000 !important; /* Change text color to black on hover */
    border-color: #000000 !important; /* Change border color to black on hover */
}

/* Style the video popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
}

/* Style the close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.accordion {
    max-width: 100%; /* Set a suitable width for your accordion */
    margin: 0 auto; /* Center the accordion */
}

.accordion-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;

}

.accordion-header {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #cdcdcd;
}

.accordion-question {
    flex: 1;
    margin: 0;
}

.accordion-icon {
    font-weight: bold;
}

.accordion-content {
    display: none;
    padding: 10px;
}

/* Custom CSS to remove blue color from Bootstrap accordion */
button.accordion-button {
    color: black !important; /* Change the text color to black */
    background-color: transparent !important; /* Remove background color */
    border-color: #ccc; /* Change border color to a neutral color */
    box-shadow: none !important;
}

.accordion-button:hover {
    background-color: transparent !important; /* Remove background color on hover */
}

.accordion-button:focus {
    box-shadow: none; /* Remove focus box shadow */
}

.accordion-body {
    color: black; /* Change the text color of the content */
    background-color: #f8f9fa; /* Change the background color of the content to a light gray */
}

.button-funktioniert {
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 5px 10px;
    text-decoration: underline;
}

.flip {
    -webkit-perspective: 800;
    perspective: 800;
    position: relative;
    text-align: center;
}
.flip .card.flipped {
    -webkit-transform: rotatey(-180deg);
    transform: rotatey(-180deg);
}
.flip .card {
    width: 329px;
    max-width: 100%;
    height: 247px;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: 0.5s;
    transform-style: preserve-3d;
    transition: 0.5s;
    background-color: #fff;
}
.flip .card .face {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 2;
}
.flip .card .front {
    position: absolute;
    width: 270px;
    z-index: 1;
}
.flip .card .front img {
    width: 270px;
    height: 100%;
}
.flip .card .img {
    position: relaitve;
    width: 270px;
    height: 178px;
    z-index: 1;
    border: 2px solid #000;
}
.flip .card .back {
    -webkit-transform: rotatey(-180deg);
    transform: rotatey(-180deg);
    position: absolute;
}
.inner {
    margin: 0px !important;
    width: 270px;
}

.flip1 {
    perspective: 800px;
    position: relative;
    text-align: center;
}

.flip1 .card {
    width: 100%; /* Adjust as necessary, or set to a fixed width */
    height: 232px; /* Adjust as necessary */
    transform-style: preserve-3d;
    transition: transform 0.5s;
    background-color: #fff;
    position: relative;
}

/* When flipped class is added, rotate the card */
.flip1 .card.flipped {
    transform: rotateY(-180deg);
}

.flip1 .card .face {
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.flip1 .card .front {
    z-index: 2;
}

.flip1 .card .back {
    transform: rotateY(
        180deg
    ); /* Make sure this is 180deg to mirror the front */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Ensure the .img class has the correct properties */
.flip1 .card .img {
    position: relative;
    width: 100%; /* Adjust as necessary, or set to a fixed width */
    height: 178px; /* Adjust as necessary */
    z-index: 1;
    border: 2px solid #000;
}

/* Add transitions and backface visibility with vendor prefixes */
.flip1 .card .face {
    -moz-backface-visibility: hidden; /* Firefox */
    -webkit-backface-visibility: hidden; /* Chrome/Safari */
}

/* Use vendor prefixes for the transform property to ensure compatibility */
.flip1 .card.flipped {
    -webkit-transform: rotateY(-180deg); /* Chrome/Safari */
    -moz-transform: rotateY(-180deg); /* Firefox */
}

.boxes {
    margin-top: -90px;
    position: relative;
}

.box-1 {
    width: 360px;
    height: 247px;
    /* UI Properties */
    background: var(--main) 0% 0% no-repeat padding-box;
    background: #004a7c 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 39px #00000038;
    opacity: 1;
}

.box-2 {
    width: 360px;
    height: 247px;
    /* UI Properties */
    background: var(--unnamed-color-006cb7) 0% 0% no-repeat padding-box;
    background: #006cb7 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 30px #00000000;
    opacity: 1;
}

.box-3 {
    width: 360px;
    height: 247px;
    /* UI Properties */
    background: var(--unnamed-color-006cb7) 0% 0% no-repeat padding-box;
    background: #1aa6de 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 30px #00000000;
    opacity: 1;
}

.box-4 {
    width: 360px;
    height: 247px;
    /* UI Properties */
    background: var(--unnamed-color-003b78) 0% 0% no-repeat padding-box;
    background: #003b78 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 30px #00000000;
    opacity: 1;
}

.btn-einfach {
    max-width: 420px;
    width: 100%;
    height: 57px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #00000029;
    opacity: 1;
}

.konfigurator-starten h2 {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        60px/71px var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: center;
    font: normal normal 300 60px/71px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.konfigurator-starten h2 span {
    /* UI Properties */
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 60px/71px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: center;
    text-decoration: underline;
    font: normal normal bold 60px/71px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.konfigurator-starten header {
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 30px/36px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    font: normal normal bold 30px/36px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.konfigurator-starten p {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

/* Style for active step */
.active-step {
    /* UI Properties */
    background: #f5f5f5; /* or specify a different background color */
    opacity: 1;
}
.disabled-step {
    position: relative;
    pointer-events: none;
    opacity: 70%;
}

.disabled-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(
        255,
        255,
        255,
        0.1
    ); /* Adjust the alpha value to make it almost transparent */
    z-index: 1; /* Ensure the overlay is above the content */
}

.starten {

    letter-spacing: 0px;
    color: var(--primary-dark);
    opacity: 1;
}

.arrow-right-image {
    width: 25px;
    height: 16px;
    /* UI Properties */
    background: var(--unnamed-color-263238) 0% 0% no-repeat padding-box;
    opacity: 1;
}

.circle-1 {
    width: 72px;
    height: 72px;
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 38px #00000026;
    opacity: 1;
    border-radius: 50%; /* Makes the element a circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-2 {
    width: 72px;
    height: 72px;
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #006cb7 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 38px #00000026;
    opacity: 1;
    border-radius: 50%; /* Makes the element a circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-3 {
    width: 72px;
    height: 72px;
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #1aa6de 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 38px #00000026;
    opacity: 1;
    border-radius: 50%; /* Makes the element a circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-4 {
    width: 72px;
    height: 72px;
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #003b78 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 38px #00000026;
    opacity: 1;
    border-radius: 50%; /* Makes the element a circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-5 {
    width: 72px;
    height: 72px;
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #000000 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 38px #00000026;
    opacity: 1;
    border-radius: 50%; /* Makes the element a circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-container-1 {
    position: relative;
}

.circle-container-1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    margin-top: 60px;
    height: 123%; /* Set the height to the full height of the container */
    border-left: 2px dashed #000000;
    z-index: -1;
}

.push-print {
    /* UI Properties */
    background: var(--unnamed-color-f5f7fe) 0% 0% no-repeat padding-box;
    background: #f5f7fe 0% 0% no-repeat padding-box;
    opacity: 1;
}

.push-print h3 {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        45px/60px var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal 300 45px/60px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.push-print span {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 45px/60px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal bold 35px/60px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.push-print p {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.btn-print-push {
    width: 290px;
    height: 65px;
    /* UI Properties */
    border: 2px solid var(--unnamed-color-000000);
    box-shadow: 0px -1px 41px #0000000d;
    border: 2px solid #000000;
    opacity: 1;
    background-color: transparent;
}

.certificat {
    height: 221px;
    /* UI Properties */
    background: var(--unnamed-color-263238) 0% 0% no-repeat padding-box;
    background: #263238 0% 0% no-repeat padding-box;
    opacity: 1;
}

.certificat h4 span {
    /* UI Properties */
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 45px/54px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-ffffff);
    text-align: left;
    text-decoration: underline;
    font: normal normal bold 45px/54px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
}

.certificat h4 {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        45px/54px var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal 300 45px/54px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #ffffff;
}

.certificat p {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
}

/*LOGIN*/
.logoCard {
    /* UI Properties */
    background: var(--unnamed-color-e8f1f5) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #e8f1f5 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.blueContainer {
    height: 145px;
    width: 100%;
    /* UI Properties */
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blueContainer {
    --bs-gutter-x: 0 !important;
}

.blueContainer p {
    font: normal normal 300 50px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center; /* Center the text horizontally */
}

.blueContainer p span {
    font: normal normal bold 50px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #ffffff;
}

.konfiguratorSteps {
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 0.95;
}

.konfiguratorImage {
    width: 163px;
    height: 131px;
    /* UI Properties */
    opacity: 1;
}

.circle-konfigurator {
    width: 50px;
    height: 50px;
    /* UI Properties */
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 38px #00000026;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.konfiguratorText {
    /* UI Properties */
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 16px/19px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: center;
    text-decoration: underline;
    font: normal normal bold 16px/19px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.konfiguratorChoose {
    /* UI Properties */

}

.konfiguratorChooseContent1 {
    height: 658px;
    /* UI Properties */
    background: var(--main-background-configurator) 0% 0% no-repeat padding-box;
    background: #f1f4f5 0% 0% no-repeat padding-box;
    opacity: 1;
}

.konfiguratorCard {
    height: 300px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #cdcdcd;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.konfiguratorCard {
    margin-right: 10px; /* Adjust the margin as needed */
}

.konfiguratorCard:last-child {
    margin-right: 0;
}

.card.konfiguratorCard {
    height: 250px;
    border-radius: 0;
}

.konfiguratorButton {

}

.konfiguratorCard p {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal 600 22px/26px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: center;
    font: normal normal 600 22px/26px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.konfiguratorCard img {
    width: 111px;
    height: 111px;
    /* UI Properties */

    opacity: 1;
}

.kontakt {
    /* UI Properties */
    background: transparent
        radial-gradient(
            closest-side at 50% 50%,
            var(--unnamed-color-f5f7fe) 0%,
            var(--unnamed-color-ffffff) 52%,
            var(--unnamed-color-f5f7fe) 100%
        )
        0% 0% no-repeat padding-box;
    background: transparent
        radial-gradient(
            closest-side at 50% 50%,
            #f5f7fe 0%,
            #ffffff 52%,
            #f5f7fe 100%
        )
        0% 0% no-repeat padding-box;
    opacity: 0.95;
}

#kontaktForma {
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.kontaktContainer h2 {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal 100 90px/90px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal 100 90px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.kontaktContainer h2 span {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 90px/90px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal bold 90px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.kontaktBtn {
    width: 225px;
    height: 65px;
    /* UI Properties */
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    opacity: 1;
}

.kontaktHero {
    width: 386px;
    height: 377px;
    /* UI Properties */
    opacity: 1;
}

.kontaktForm {
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 1;
}

.form {
    height: 610px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.kontaktForm p {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 40px / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal bold 40px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.kontaktForm input {
    height: 54px;
    /* UI Properties */
    background: var(--main-background-configurator) 0% 0% no-repeat padding-box;
    border: 1px solid var(--unnamed-color-000000);
    background: #f1f4f5 0% 0% no-repeat padding-box;
    border: 1px solid #000000;
    opacity: 1;
}

.kontaktHeader {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 40px / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal bold 40px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.kontaktHeader p {
    line-height: 1;
}

.kontaktP {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.kontaktEmail {
    width: 378px;
    height: 89px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    opacity: 1;
    padding-left: 20px;
}

.kontaktPhone {
    width: 378px;
    height: 89px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    opacity: 1;
    padding-left: 20px;
}

/* Style the custom round checkbox */
.round-checkbox {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

/* Style the inner circle when the checkbox is checked */
input[type="checkbox"]:checked + .round-checkbox::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kontaktFormContainer {
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.faqTextHeading {
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 30px/44px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal bold 30px/44px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.faqTextHeading span {
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 30px/44px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    text-decoration: underline;
    font: normal normal bold 30px/44px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.faqQuestions {
    height: 87px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
    /* Add a left border */
    border-left: 5px solid #0081c9;
}

.faqPlus {
    width: 30px;
    height: 30px;
    /* UI Properties */
    opacity: 1;
}

.sectionHeader {
    height: 631px;
    /* UI Properties */
    background: transparent
        radial-gradient(
            closest-side at 50% 50%,
            var(--unnamed-color-f5f7fe) 0%,
            var(--unnamed-color-ffffff) 52%,
            var(--unnamed-color-f5f7fe) 100%
        )
        0% 0% no-repeat padding-box;
    background: transparent
        radial-gradient(
            closest-side at 50% 50%,
            #f5f7fe 0%,
            #ffffff 52%,
            #f5f7fe 100%
        )
        0% 0% no-repeat padding-box;
    opacity: 0.95;
}

.sectionHeaderContainer h2 {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal 100 90px/90px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal 100 90px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.sectionHeaderContainer h2 span {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 90px/90px
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    font: normal normal bold 90px/90px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
}

.sectionHeaderBtn {
    width: 225px;
    height: 65px;
    /* UI Properties */
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    opacity: 1;
}

.sectionContainerHero {
    width: 386px;
    height: 377px;
    /* UI Properties */
    opacity: 1;
}

.contentSection2Header {
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 25px / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    text-decoration: underline;
    font: normal normal bold 25px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.contentSection2FirstBox {
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.questionMark {
    width: 30px;
    height: 30px;
}

.contentSection2SecondBox {
    width: 265px;
    height: 198px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.questionMarkImage {
    width: 50px;
    height: 50px;
    /* UI Properties */
    opacity: 1;
}

.contentSectionSecondHeader span {

}

.contentSectionSecondHeader {

}

.contentSectionSecondBox {

}

.questionmarkBox {
    height: 198px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.contentSection3Header {
    /* UI Properties */
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 26px / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    text-decoration: underline;
    font: normal normal bold 26px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.contentSection3Container {
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.konfiguratorButtonStep3 {
    width: 170px;
    height: 65px;
    /* UI Properties */
    border: 2px solid var(--unnamed-color-000000);
    box-shadow: 0px -1px 41px #0000000d;
    border: 2px solid #000000;
    opacity: 1;
    background-color: transparent;
}

.konfigurator-step {
    transition: opacity 0.3s;
}

.selected {
    opacity: 1;
}

.unselected {
    opacity: 0.5;
}

.contentSection4Container {
    /* UI Properties */
   background: var(--primary-dark);
    border: 1px solid var(--primary-dark);
  color: #fff;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.contentSection4Header {
    /* UI Properties */
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-bold) 25px / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-263238);
    text-align: left;
    text-decoration: underline;
    font: normal normal bold 25px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #263238;
    opacity: 1;
}

.optionStep1 {
    /* UI Properties */
   font-family: 'Unbounded', Arial, sans-serif;
    text-align: left;
    letter-spacing: 0px;
    color: var(--primary-pink);
    opacity: 1;
}

.tickImage {
    width: 27px;
    height: 27px;
    /* UI Properties */
    opacity: 1;
}

.round-checkbox-konfigurator {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.checkbox-text {
    display: inline-block;
    vertical-align: middle;
}

.konfigurator-price p {
    font-size: 30px;
    /* UI Properties */
    text-align: right;
    margin-bottom: 0px;

    opacity: 1;
}

.pdfHerunterladen {
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.pdfHerunterladen img {
    width: 30px;
    height: 30px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 1;
}

.contentSection4 {
    background: var(--main-background-configurator) 0% 0% no-repeat padding-box;
    background: #f1f4f5 0% 0% no-repeat padding-box;
    opacity: 1;
}

.inputKonfigurator {
    height: 60px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    border: 2px solid var(--unnamed-color-000000);
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #000000;
    opacity: 1;
}

.acceptTermsKonfigurator {
    /* UI Properties */
    background: #fff 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.acceptTermsKonfigurator span {
    /* UI Properties */
    text-align: left;
    text-decoration: underline;
    letter-spacing: 0px;
    color: #000000;
}

.konfiguratorButtonBestellen {
    width: 294px;
    height: 65px;
    /* UI Properties */
    background: var(--unnamed-color-0081c9) 0% 0% no-repeat padding-box;
    background: #0081c9 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    opacity: 1;
}

.konfiguratorButtonBestellen[disabled] {
    background-color: #999;
    color: #fff;
    cursor: not-allowed;
}

.userDashboard {
    /* UI Properties */
    background: var(--main-background-configurator) 0% 0% no-repeat padding-box;
    border: 1px solid var(--border);
    background: #f1f4f5 0% 0% no-repeat padding-box;
    box-shadow: 0px -1px 41px #0000000d;
    border: 1px solid #cdcdcd;
    opacity: 1;
}

.userDashboardHeader {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal medium
        var(--unnamed-font-size-18) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    font: normal normal medium 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.userDashboardText {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal 600
        var(--unnamed-font-size-20) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-0081c9);
    text-align: left;
    font: normal normal 600 20px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #0081c9;
    opacity: 1;
}

.userDashboardP span {
    /* UI Properties */
    text-decoration: var(--unnamed-decoration-underline);
    font: var(--unnamed-font-style-normal) normal
        var(--unnamed-font-weight-normal) var(--unnamed-font-size-18) /
        var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    text-decoration: underline;
    font: normal normal normal 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
}

.userDashboard {
    font: italic normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    font: italic normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
}

.userDashboardAddressen {
    font: var(--unnamed-font-style-normal) normal 600 25px /
        var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    font: normal normal 600 25px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.userDashboardAddressenText {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-300)
        var(--unnamed-font-size-18) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    font: normal normal 300 18px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.userDashboardAddressenHeader {
    /* UI Properties */
    font: var(--unnamed-font-style-normal) normal 600 25px /
        var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: left;
    font: normal normal 600 25px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.tableHeading {
    font: var(--unnamed-font-style-normal) normal 600
        var(--unnamed-font-size-20) / var(--unnamed-line-spacing-28)
        var(--unnamed-font-family-blinkmacsystemfont);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-000000);
    text-align: center;
    font: normal normal 600 20px/28px BlinkMacSystemFont;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.konfiguratorButtonStep3.active {
    background-color: #0081c9;
    color: #fff;
    border: 0px;
}

.submitBtnKonfigurator, .submitBtnKonfiguratorMulti {
    width: 120px;
    height: 66px;
    background-color: #0081c9;
    color: #fff;
    border: 0px;
    margin-left: 20px;
}

.konfigurator-price {
    text-align: right;

}
.konfigurator-price span {
    font-size: 14px;
    /* UI Properties */

    text-align: right;
    letter-spacing: 0px;

}
.konfiguratorRadioButton {
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 170px;
    height: 65px;
    background-color: #fff; /* Default background color */
    margin: 0px; /* Spacing between each radio button */
    color: var(--primary-dark); /* Default text color */
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #ddd; /* Optional border */
    position: static !important; /* Set position context for pseudo-element */
    border-radius: 30px;
}

.konfiguratorRadioButton input[type="radio"] {
    opacity: 0; /* Hide the radio button */
    position: absolute;
}

.konfiguratorRadioButton input[type="radio"]:checked + span {
    background-color: var(--primary-dark); /* Blue background for checked state */
    color: white; /* White text color for checked state */
    border-radius: 30px;
}

.konfiguratorRadioButton input[type="radio"]:checked + span:after {
    content: "";
    position: absolute;
    bottom: -15px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid; /* Triangle color */
}

.konfiguratorRadioButton span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.disabled-button {
    background-color: #999 !important; /* Grey color */
    cursor: not-allowed;
}

#weiterButton {
    /*position: fixed;
    bottom: 0;
    left: 94%; /* Adjust the left position as needed */
   /* transform: translateX(-50%);
    background-color: #0081c9;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    z-index: 999;
    margin-bottom: 30px;
    max-width: 120px;
    width: 100%;*/
    display: inline-block;
    width: 120px;
}

#zuruckButton {
    max-width: 120px;
    width: 100%;
    color: var(--primary-dark);
    border-color: var(--primary-pink);
    display: inline-block;
}

#zuruckButton.last-step {

}

.konfiguratorButtonBestellen {
    /*position: fixed;
    bottom: 0;
    left: 90%; /* Adjust the left position as needed */
    /*transform: translateX(-50%);
    background-color: #0081c9;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    z-index: 999;
    margin-bottom: 30px;*/
}

button.btn.btn-link.anzeigen-btn {
    text-decoration: none;
    color: black;
}
.input-group {
    position: static !important;
}

input#postcodes, #multipostcodes {
    position: static !important;
    height: 66px;
    border-radius: 30px 0px 0px 30px;
}

.cards-dropdown {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .highlightsHero-textLeft h1 {
        font-size: 70px;
    }
    .highlightsHero-textLeft p {

    }
    .hero-image {
        width: 430px;
        height: 430px;
    }
    .konfigurator-starten h2 {
        font: normal normal 300 36px/51px BlinkMacSystemFont;
    }

    .konfigurator-starten h2 span {
        font: normal normal bold 40px/71px BlinkMacSystemFont;
    }
    .kontaktHero {
        width: 360px;
        height: 360px;
    }
    .cta-man-image {
        width: 360px;
        height: 360px;
    }
}

.success-image {
    width: 80%; /* Adjust if necessary to fit your design */
    height: auto;
    position: relative; /* Add this to ensure the stacking context is correct */
    /* Remove the z-index from the hero image */
}

@media only screen and (max-width: 1268px) {
    .highlightsHero {
        height: 1267px;
        /* UI Properties */
        background: transparent
            radial-gradient(
                closest-side at 50% 50%,
                var(--unnamed-color-f5f7fe) 0%,
                var(--unnamed-color-ffffff) 52%,
                var(--unnamed-color-f5f7fe) 100%
            )
            0% 0% no-repeat padding-box;
        background: transparent
            radial-gradient(
                closest-side at 50% 50%,
                #f5f7fe 0%,
                #ffffff 52%,
                #f5f7fe 100%
            )
            0% 0% no-repeat padding-box;
        opacity: 0.95;
    }
}


@media only screen and (max-width: 768px) {
    .cta-man-image {
        display: none;
    }
    .certificat {
        height: 320px;
    }

    .certificat h4 span {
        font-size: 15px;
    }

    .certificat h4 {
        font-size: 18px;
    }

    .certificat p {
        font-size: 15px;
    }
    .hero-image {
        display: none;
    }
    .kontaktHero {
        width: 300px;
        height: 300px;
    }
    .kontaktHero {
        display: none;
    }
    .mobile-ps-0 {
        padding-left: 0;
    }
    .kontaktContainer h2 {
        font-size: 50px;
    }
    .kontaktContainer h2 span {
        font-size: 60px;
    }
    .play-button {
        display: none;
    }

    #weiterButton {
        position: fixed;
        bottom: 0;
        left:unset;
        right: 20px; /* Adjust the left position as needed */
        transform: unset!important;
        background-color: #0081c9;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        z-index: 999;
        margin-bottom: 30px;
        max-width: 120px;
        width: 100%;
    }

    input#postcodes, #multipostcodes {
        display: block;
        width: 100%;
        margin-bottom: 10px;
      }

      .input-group-append{
        display: block;
        width: 100%;
      }
      .submitBtnKonfigurator, .submitBtnKonfiguratorMulti {
        margin-left: 0px;
        width: 100%;
      }

    #zuruckButton {
        position: unset;
        bottom: 0;
        left:80px;
        transform: unset!important;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        z-index: 999;
        margin-bottom: 30px;
        max-width: 120px;
        width: 100%;
    }
    .konfiguratorRadioButton{
        width:100%;
        margin-bottom: 10px;
    }

    .konfiguratorImage {
        width: 80px;
      }
    .konfiguratorText{
        font-size: 14px;
    }
    .konfiguratorCard img {
        width: 60px;
        height: 60px;
        opacity: 1;
      }

      .card.konfiguratorCard {
        height: unset;
        margin-bottom: 10px;

      }

    .blueText {
        font-size: 26px !important;
        line-height: 26px !important;
    }

    .blueText span {
        font-size: 26px !important;
        line-height: 26px !important;
    }

    .contentSection3Row {
        padding: 7px;
    }

    .contentSection4Container {
        margin-top: 15px !important;
    }

    .konfiguratorButtonBestellen {
        position: fixed;
        bottom: 0;
        left: 50%; /* Adjust the left position as needed */
        transform: translateX(-50%);
        background-color: #0081c9;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        z-index: 999;
        margin-bottom: 30px;
    }

    .highlightsHero {
        height: 1145px;
        /* UI Properties */
        background: transparent
            radial-gradient(
                closest-side at 50% 50%,
                var(--unnamed-color-f5f7fe) 0%,
                var(--unnamed-color-ffffff) 52%,
                var(--unnamed-color-f5f7fe) 100%
            )
            0% 0% no-repeat padding-box;
        background: transparent
            radial-gradient(
                closest-side at 50% 50%,
                #f5f7fe 0%,
                #ffffff 52%,
                #f5f7fe 100%
            )
            0% 0% no-repeat padding-box;
        opacity: 0.95;
    }
}

@media only screen and (max-width: 425px) {
    .certificat {
        height: 420px;
    }
    p.blueText {
        font-size: 30px;
    }
    p.blueText span {
        font-size: 30px;
    }
}

@media only screen and (max-width: 370px) {
    .navbar-brand img {
        height: 90px;
        width: 200px;
    }
}

@media only screen and (max-width: 330px) {
    .highlightsHero-textLeft h1 {
        font-size: 50px;
    }
    .highlightsHero-textLeft h1 span {
        font-size: 40px;
    }
}

.form-check-input:checked[type="checkbox"]{
    background-image: unset!important;
}

.cta-button{
    text-decoration: none;
    padding:15px 25px;
    color: #fff;
    background-color: crimson;
    font-weight: bold;
}
.cta-button:hover{
    color: #000;
    background-color: #fff;
}


/* NEW REDESIGN */

        :root {
            --primary-pink: #ff3366;
            --primary-dark: #050A3B;
            --secondary-bg: #f5f7fa;
            --timeline-green: #2ecc71;
            --text-muted: #6c757d;
            --circle-bg: #cecece;

        }

        body {
            font-family: 'Roboto Condensed', Arial, sans-serif;
            overflow-x: hidden;
        }

        @font-face {
            font-family: "Roboto Condensed";
            src: url('../fonts/RobotoCondensed.ttf') format("truetype");
            font-style: normal;
            font-display: auto;
            }

        @font-face {
            font-family: "Unbounded";
            src: url('../fonts/Unbounded.ttf') format("truetype");
            font-style: normal;
            font-weight: 400;
            font-display: auto;
            }

        h1,h2,h3,h4,h5,h6 {
            font-family: 'Unbounded', Arial, sans-serif;
        }
        /* --- Buttons & Typography --- */
        .btn-custom-pink {
            background-color: var(--primary-pink);
            color: white;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 500;
            border: none;
            transition: all 0.3s;
            text-transform: unset;
        }
        .rounded-pill{
            padding: 10px 25px!important;
        }
        .btn-custom-pink:hover {
            background-color: #d61c4e;
            color: white;
            transform: translateY(-2px);
        }
        .section-title {
            font-weight: 800;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 3rem;
        }

        /* --- Dropdowns --- */
        /* white rounded dropdown on dark navbar */
        .dropdown-menu-white{
        background:#fff;
        border: 1px solid rgba(0,0,0,.08);
        border-radius: 16px;
        padding: .5rem;
        box-shadow: 0 18px 40px rgba(0,0,0,.18);
        }

        .dropdown-menu-white .dropdown-item{
        border-radius: 12px;
        padding: .6rem .85rem;
        font-weight: 600;
        }

        .dropdown-menu-white .dropdown-item:hover,
        .dropdown-menu-white .dropdown-item:focus{
        background: rgba(255,47,109,.10); /* optional: your pink tint */
        color: #111827;

        }
        /* --- Hero Section --- */
        .hero-section {
            background-image:
                radial-gradient(75.87% 106.69% at 100% 50%,
                rgba(5, 10, 59, 0.9) 0%,
                rgba(4, 8, 50, 0.9) 0%,
                rgba(1, 1, 6, 0.9) 84.75%,
                rgba(0, 0, 0, 0.9) 85%
                ),
                url("../images/hero-bg.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero-nav {
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 10;
            padding-top: 20px;
        }
        .hero-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border-radius: 15px;

            overflow: hidden;
            transition: transform 0.3s;
            height:180px;
            background-image: linear-gradient(180deg, rgba(10, 11, 23, 0) 0%, #0A0B17 91.34%), var(--card-bg);

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .hero-card:hover { transform: translateY(-5px); }

        .hero-card h6{
            position: absolute;
            left: 10px;
            right: 0;
            bottom: 10px;     /* your requirement */
            margin: 0;
            }

        /* --- Products Section --- */
        .product-card {
            border: none;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s;
            background-color: var(--primary-dark);
            color: #fff;
        }
        .product-card:hover { transform: translateY(-10px); }
        .product-header {
            height: 150px;
            background-size: cover;
            background-position: center;
        }
        .product-card .check-list li {
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #fff;
        }
        .check-list i { color: var(--primary-pink); margin-right: 8px; }

        /* --- Video Section --- */
        .video-thumb {
        position: relative;
        cursor: pointer;
        display: inline-block;
    }

    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(0,0,0,0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .play-btn i {
        color: #fff;
        font-size: 32px;
        margin-left: 4px;
    }

    .video-wrapper {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.8);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    .video-wrapper.active {
        display: flex;
    }

    .popup-content {

        max-width: 800px;
        width: 90%;
    }

    .popup-content video {
        width: 100%;
    }

    .close {
        position: absolute;
        top: -40px;
        right: 0;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
    }

        /* --- Timeline Section --- */
        .timeline-wrapper {
            position: relative;
            padding: 20px 0;
        }
        /* Vertical Line */
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: #e9ecef;
            transform: translateX(-2px);
        }
        .timeline-step {
            margin-bottom: 60px;
            position: relative;
        }
        .timeline-number {
            width: 40px;
            height: 40px;
            background: var(--timeline-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            z-index: 2;
            border: 4px solid white;
        }
        .timeline-content { padding: 0 40px; }
        .timeline-img {
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            width: 100%;
        }

        /* --- Expertise & Cert --- */
        .cert-banner {
            background: var(--primary-pink);
            color: white;
            padding: 40px 0;
            transform: skewY(-2deg);
            margin: 60px 0;
        }
        .cert-content { transform: skewY(2deg); }

        .expertise-card {
            background: #1a253a;
            color: white;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }
        .expertise-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
        }

        /* --- Konfigurator Section --- */
        /* container */
        .pw-stepper{
        position:relative;
        padding-top: 6px;
        }

        /* dashed line behind circles */
        .pw-stepper::before{
        content:"";
        position:absolute;
        left: 24px;
        right: 24px;
        top: 26px;              /* aligns to circle center */
        border-top: 2px dashed var(--circle-bg);
        z-index: 0;
        }

        .pw-step{
        position:relative;
        z-index: 1;             /* above dashed line */
        text-align:center;
        padding: 0 10px;
        min-width: 180px;
        }

        .pw-circle{
        width: 52px;
        height: 52px;
        border-radius: 999px;
        background: var(--circle-bg);
        display:flex;
        align-items:center;
        justify-content:center;
        margin: 0 auto 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
        }

        .pw-step.is-active .pw-circle{
        background: var(--primary-pink);
        color:#fff;
        }

        .pw-step-title{
        font-weight: 800;
        color:#111827;
        line-height: 1.1;
        }

        .pw-step-sub{
        color: var(--text-muted);
        font-family: 'unbounded', Arial, sans-serif;
        font-weight: lighter;
        font-size: .75rem;
        line-height: 1.2;
        }

        .form-check-input[type="radio"]:checked{
        border-color: var(--primary-pink);
        }

        .pws_group{
            justify-content: center;
            align-items: center;
            width: 170px;
            height: 40px;
            background-color: #fff;
            margin: 0px;
            color: var(--primary-dark);
            cursor: pointer;
            transition: background-color 0.3s ease;
            border: 1px solid var(--text-muted);
            position: static !important;
            border-radius: 30px;
            display: flex;
            margin: 5px 0px;
        }
        .pws_group.active{
            background-color: var(--primary-dark);
            color: white;
            border-radius: 30px;
        }
        /* responsive: allow wrapping */
        @media (max-width: 992px){
        .pw-stepper::before{ display:none; }
        .pw-step{ min-width: auto; }
        }

        /* --- Login Form Colors --- */
        .text-pink{ color:var(--primary-pink)!important; }
        .btn-pink{
        background:var(--primary-pink); border-color:var(--primary-pink); color:#fff;
        box-shadow: 0 12px 24px rgba(255,47,109,.25);
        }
        .btn-pink:hover{ background:#e81f5d; border-color:#e81f5d; color:#fff; }

        .input-soft{
        border:1px solid var(--text-muted);
        border-radius: .75rem;
        padding: .85rem 1rem;
        }
        .input-soft:focus{
        border-color: rgba(255,47,109,.55);
        box-shadow: 0 0 0 .25rem rgba(255,47,109,.12);
        }


        .login label, .login h1{ font-family: 'Unbounded', Arial, sans-serif; color:var(--primary-dark); }

        /* --- Footer & Contact --- */
        .contact-box {
            background: var(--primary-pink);
            border-radius: 20px;
            padding: 40px;
            color: white;
        }
        .form-control-custom {
            border-radius: 30px;
            border: none;
            padding: 12px 20px;
            margin-bottom: 15px;
        }
        .footer-dark {
            background: #000;
            color: #888;
            padding: 50px 0 20px;
            font-size: 1.1rem;
        }
        .footer-dark a { color: #888; text-decoration: none; margin-right: 15px; }
        .footer-dark a:hover { color: white; }

        /* Responsive Timeline Adjustment */
        @media (max-width: 768px) {
            .timeline-wrapper::before { left: 20px; }
            .timeline-number { left: 20px; }
            .timeline-content { padding-left: 60px; padding-right: 0; text-align: left !important; }
            .order-md-2 { order: 1 !important; } /* Fix image order on mobile */
            .order-md-1 { order: 2 !important; }
        }

        .modal-body p{color: #000}
        .modal-header h5{color: #000}
