/** Shopify CDN: Minification failed

Line 1850:0 Unexpected "}"

**/
/* assets/lifeanalyse.css */

/* Allgemeine Container-Stile */
.lifeanalyse-container {
    width: 100%;
    max-width: 800px; /* Anpassbar nach Bedarf */
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 20px 35px; /* Oben/Unten: 20px, Links/Rechts: 35px */
    box-sizing: border-box;
}

/* Schritt-Container */
.lifeanalyse-step {
    display: none;
}

.lifeanalyse-step.active {
    display: block;
}

/* Header */
.lifeanalyse-header {
    display: flex;
    align-items: center;
    font-size: 14px; /* Verkleinerte Schriftgröße */
    font-weight: 300;
    margin-bottom: 5px;
}

.lifeanalyse-number {
    color: #000;
    margin-right: 10px;
    font-weight: bold; /* Nummern immer fett */
}

.lifeanalyse-text {
    color: #000;
    font-weight: normal; /* "Emri", "Methoda" nicht fett */
}

#customer-name-display {
    font-weight: bold; /* Name fett dargestellt */
}

/* Trennlinie */
.lifeanalyse-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 5px 0 20px 0;
}

/* Instruktionsbereich */
.lifeanalyse-instruction {
    background-color: #000;
    padding: 8px 0;
    text-align: center;
    margin-bottom: 20px;
}

.lifeanalyse-instruction-text {
    color: #fff;
    font-size: 12px; /* Angepasst für Konsistenz */
    font-weight: 300;
    margin: 0;
    width: 100%;
}



/* Eingabe und Button */
.lifeanalyse-input-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    height: 110px; /* Passe die Höhe nach Bedarf an */
    resize: vertical; /* Ermöglicht das vertikale Resizen durch den Benutzer */
}

.lifeanalyse-input {
    flex: 1;
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    height: 100px; /* Erhöhe die Höhe des Input-Felds */
    box-sizing: border-box;
}

.lifeanalyse-button {
    padding: 8px 20px;
    font-size: 14px;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.lifeanalyse-button .arrow {
    margin-left: 5px;
}

/* Entfernt Hover-Effekt */
.lifeanalyse-button:hover {
    background-color: transparent;
    color: #000;
}

/* Button-Container für den "Vazhdo"-Button nach den Optionen */
.lifeanalyse-button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 40%; /* Anpassbar */
}

/* Optionen-Container */
.lifeanalyse-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%; /* Volle Breite */
}

/* Einzelne Option */
.lifeanalyse-option {
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    width: 100%; /* Volle Breite */
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

/* Ausgewählte Option */
.lifeanalyse-option.selected {
    background-color: #f0f0f0; /* Leicht grauer Hintergrund */
}

/* Inhalt der Option */
.option-content {
    display: flex;
    align-items: center; /* Vertikale Zentrierung der Elemente */
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Linker Bereich der Option */
.option-left {
    display: flex;
    align-items: center;
    flex: 1;
}

/* Rechter Bereich der Option */
.option-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nummer */
.option-number {
    font-size: 14px; /* Kleinere Schriftgröße */
    font-weight: bold;
    color: #000;
    margin-right: 10px;
}

/* Auswahltext */
.option-text {
    font-size: 12px; /* Kleinere Schriftgröße */
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* "+"/"-" Button */
.lifeanalyse-toggle-button {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Feste Breite */
    height: 40px; /* Feste Höhe */
}

.lifeanalyse-toggle-button:focus {
    outline: none;
}

/* Erweiterter Bereich (versteckt) */
.extra-content {
    display: none;
    padding: 0 15px 15px 15px;
    font-size: 12px;
    color: #555;
}

.lifeanalyse-option.expanded .extra-content {
    display: block;
}

/* Responsives Design */
@media (max-width: 768px) {
    /* Allgemeine Anpassungen für kleinere Bildschirme */
    .lifeanalyse-container {
        padding: 15px 30px; /* Oben/Unten: 15px, Links/Rechts: 20px */
    }

    .lifeanalyse-header {
        flex-wrap: wrap;
        font-size: 14px;
    }

    .lifeanalyse-number {
        margin-right: 5px;
    }

    .lifeanalyse-text {
        margin-left: 0;
    }

    .lifeanalyse-instruction-text {
        font-size: 12px;
    }

    /* Eingabe und Button */
    .lifeanalyse-input-container {
        flex-direction: column;
        align-items: stretch;
    }

    .lifeanalyse-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .lifeanalyse-button {
        width: 100%;
        text-align: center;
    }

    /* Optionen */
    .lifeanalyse-options {
        gap: 10px;
    }

    .option-content {
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }

    .option-left {
        flex: 1;
        margin-bottom: 0;
    }

    .lifeanalyse-toggle-button {
        margin-left: auto;
    }

    .option-number {
        font-size: 14px;
    }

    .option-text {
        font-size: 14px;
    }

    .extra-content {
        font-size: 12px;
    }

    /* Button-Container nach den Optionen */
    .lifeanalyse-button-container {
        margin-top: 20px;
        justify-content: center;
    }

    .lifeanalyse-button-container .lifeanalyse-button {
        width: 100%;
    }
}

/* Kamera-Container */
#cameraContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1000;
}

/* Video und Overlay */
#cameraView,
#overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%) scaleX(-1);
    object-fit: contain;
}

/* Schwarze, halbtransparente Ränder oben und unten */
#topBorder,
#bottomBorder {
    position: absolute;
    left: 0;
    width: 100%;
    height: 15%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

#topBorder {
    top: 0;
}

#bottomBorder {
    bottom: 0;
}

/* Button- und Logo-Container */
#buttonLogoContainer {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 3;
}

/* Logo-Stil */
#logo {
    max-width: 100%;
    height: auto;
    margin-right: 30px;
}

/* Foto-Button */
#takePhotoButton {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 200px;
    height: 200px;
}

#takePhotoButton img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Button zum Schließen */
.close-button {
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: white;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 3;
}

/* Elemente standardmäßig ausblenden */
#cameraContainer,
#topBorder,
#bottomBorder,
#buttonLogoContainer,
.close-button {
    display: none;
}

/* Ladebildschirm */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loadingScreen .loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#loadingScreen .spinner {
    width: 50px;
    height: 50px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

#loadingScreen .loading-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

/* Schlüsselbilder für die Dreh-Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 600px) {
    #logo {
        width: 110px;
        height: auto;
        margin-top: 170px;
        margin-left: -90px;
        margin-right: 10px;
    }

    #takePhotoButton {
        width: 100px;
        height: 100px;
        margin-top: 170px;
    }

    #buttonLogoContainer {
        bottom: 40px;
    }

    #topBorder,
    #bottomBorder {
        height: 20%;
    }
}


/* Neue Styles für ClientID und Instruktionstext */
#clientInfo {
    align-self: flex-end; /* Rechts ausrichten */
    margin-top: 50px; /* Abstand vom oberen Rand */
    color: #ffffff;
    font-size: 1em; /* Relative Schriftgröße */
    font-weight: bold;
    z-index: 4;
}


#instructionText {
    position: absolute;
    top: 60%; /* Relativer Abstand vom oberen Rand des Containers */
    left: 2%;
    color: #ffffff;
    font-size: 0.875em; /* Relative Schriftgröße */
    z-index: 4;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    #clientInfo {
        font-size: 0.875em; /* Anpassung der Schriftgröße */
    margin-top: 50px; /* Abstand vom oberen Rand */
        margin-left: 5%;
    }

    #instructionText {
        font-size: 0.75em; /* Anpassung der Schriftgröße */
        top: 65%;
        left: 2.5%;
    }
}

/* Slider Container */
.lifeanalyse-slider-container {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.lifeanalyse-slider {
    width: 100%;
    -webkit-appearance: none;
    background: #ccc;
    height: 5px;
    border-radius: 5px;
    outline: none;
}

.lifeanalyse-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px; /* Breite des Schiebereglers */
    height: 25px; /* Höhe des Schiebereglers */
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.lifeanalyse-slider::-moz-range-thumb {
    width: 25px; /* Breite des Schiebereglers */
    height: 25px; /* Höhe des Schiebereglers */
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 10px;
}

/* Stile für ausgewählte Optionen bei Mehrfachauswahl */
.lifeanalyse-options.multiple-select .lifeanalyse-option.selected {
    background-color: #f0f0f0;
}


































/* Box mit Hintergrundfarbe #F6F6F7 */
.result-box {
    background-color: #F6F6F7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.result-header h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.result-content p {
    font-size: 14px;
    color: #333;
}

.result-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.result-content ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}



/* Stil für das Fettdrucken von Namen */
.result-content strong {
    font-weight: bold;
}



/* Collection Container Styles */
.collections-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen den Kollektionen */
}

/* Hidden section */
.section-hidden {
    display: none;
}

/* Visible section */
.section-visible {
    display: block;
}

/* Standard-Stil für jede Kollektion */
.collection-section {
    width: 100%;
    box-sizing: border-box;
}

/* Stil für mehrere Kollektionen: zwei pro Reihe */
.collections-container.multiple-collections .collection-section {
    width: calc(50% - 10px); /* Zwei Kollektionen pro Reihe mit Abstand */
}



















































/* Hidden section */
.section-hidden {
    display: none;
}

/* Visible section */
.section-visible {
    display: block;
}







/* Spezifische Abstände für neue Produktboxen auf der Ergebnisseite */
#lifeskin-bpo-box,
#lifeskin-pore-control-box,
#lifeskin-vitamin-c-boost-box,
#lifeskin-retinol-box,
#lifeskin-hydro-cleanser-box {
    margin-bottom: 20px; /* Abstand nach unten */
}

/* Optional: Entfernen des unteren Abstands der letzten Box */
#lifeskin-hydro-cleanser-box {
    margin-bottom: 0;
}

/* Alternative Methode: Abstände nur innerhalb der Ergebnisseite */
#lifeanalyse-rezult-page .lifeanalyse-option {
    margin-bottom: 20px; /* Einheitlicher Abstand */
}

/* Optional: Kein Abstand nach der letzten Option */
#lifeanalyse-rezult-page .lifeanalyse-option:last-of-type {
    margin-bottom: 0;
}








/* Spinner-Animation */
#loadingScreen .spinner {

    border: 8px solid #f3f3f3; /* Hellgrauer Hintergrund */
    border-top: 8px solid #3498db; /* Blaue Farbe für den animierten Teil */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px; /* Abstand zum Logo */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/* Beispiel CSS für die Permbajtja-Box */
#permbajtja-box .extra-content p {
    margin: 10px 0;
    font-size: 12px;
    color: #333;
}

#permbajtja-box .extra-content p strong {
    color: #000;
}




































/* Verhindert das Scrollen der Seite, wenn das Modal geöffnet ist */
body.modal-open {
    overflow: hidden;
}

/* Allgemeine Container-Stile */
.lifeanalyse-container {
    width: 100%;
    max-width: 800px; /* Anpassbar nach Bedarf */
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 20px 35px; /* Oben/Unten: 20px, Links/Rechts: 35px */
    box-sizing: border-box;
}

/* Trennlinie */
.lifeanalyse-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 5px 0 20px 0;
}

/* Container für die Zähler */
.counters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 10px 0;
}

/* Einzelne Zähler */
.counter {
    font-size: 16px;
    color: #000;
}

/* Linker Zähler */
.left-counter {
    text-align: left;
}

/* Rechter Zähler */
.right-counter {
    text-align: right;
}

/* Styling für die Zahlen */
#live-visitors, #daily-sales {
    font-weight: bold;
    margin-right: 5px;
}

/* Slider Container */
.slider-container {
    width: 100%;
    overflow-x: auto; /* Ermöglicht horizontales Scrollen */
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px 0;
    scrollbar-width: none; /* Für Firefox */
}

.slider-container::-webkit-scrollbar {
    display: none; /* Für Chrome, Safari und Opera */
}

.image-slider {
    display: flex;
    gap: 10px;
}

/* Slider-Item mit 9:16 Verhältnis */
.slider-item {
    flex: 0 0 auto;
    width: 80px; /* Anpassbar nach Bedarf */
    padding-top: calc(80px * 16 / 9); /* Höhe basierend auf 9:16 Verhältnis */
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.slider-image:hover {
    transform: scale(1.05); /* Hover-Effekt */
}

/* Modal Styling */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1001; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; /* Verhindert Scrollen innerhalb des Modals */
    background-color: rgba(0,0,0,0.8); 
    box-sizing: border-box;
    padding: 20px; /* 20px Abstand an allen Seiten */

    align-items: center;
    justify-content: center;
}

/* Container für den Inhalt des Modals */
.modal-content-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Anpassbar nach Bedarf */
    max-height: 600px; /* Anpassbar nach Bedarf */
    background-color: #fff; /* Weißer Hintergrund */
    padding: 20px; /* 20px Abstand an allen Seiten */
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: slideIn 0.5s ease-out;
}

/* Animation für das Öffnen des Modals */
@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Großes Bild im Modal */
.modal-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    object-fit: contain; /* Verhindert Verzerrung des Bildes */
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

.modal-image.loaded {
    opacity: 1;
}

.modal-image.slide-up {
    transform: translateY(-20px);
}

.modal-image.slide-down {
    transform: translateY(20px);
}

/* Schließen-Button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000; /* Schwarz */
    font-size: 35px; /* Größer */
    font-weight: bold;
    cursor: pointer;
    z-index: 1003;
    background-color: transparent; /* Hintergrund transparent */
    border: none;
}

.close:hover,
.close:focus {
    color: #555; /* Dunkleres Grau beim Hover */
    text-decoration: none;
    cursor: pointer;
}

/* Hinweis-Overlay */
.scroll-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #555;
    font-size: 16px;
    display: none; /* Standardmäßig ausgeblendet */
    flex-direction: column;
    align-items: center;
}

.scroll-hint svg {
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

/* Bounce-Animation für das Pfeilsymbol */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Anpassung */
@media only screen and (max-width: 700px){
    .modal-content-container {
        max-width: 90%;
        max-height: 90%;
    }

    .close {
        top: 5px;
        right: 10px;
        font-size: 45px;
    }

    .slider-item {
        width: 60px;
        padding-top: calc(60px * 16 / 9); /* Anpassung der Höhe für kleinere Breite */
    }

    .slider-image {
        aspect-ratio: 1 / 1; /* Beibehalten für quadratische Darstellung auf kleinen Bildschirmen */
    }
}





















.bundle-product {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}



.product-image img.rounded-image {
    border-radius: 8px;
    width: 100px; /* Anpassen nach Bedarf */
    height: auto;
}

.product-details {
    margin-left: 15px;
}

.product-details h3 {
    margin: 0;
    font-size: 1.1em;
}

.product-details p {
    margin: 5px 0;
    color: #555; /* Anpassbar nach Bedarf */
}

#add-bundle-to-cart {
    display: block;               /* Blockelement für volle Breite */
    width: 100%;                  /* Vollständig breit */
    padding: 16px 0;              /* Vertikales Padding für anpassbare Höhe */
    background-color: #007bff;    /* Blau, anpassbar */
    color: #fff;                  /* Textfarbe */
    border: none;                 /* Kein Rahmen */
    border-radius: 5px;           /* Abgerundete Ecken */
    cursor: pointer;              /* Zeigt an, dass es klickbar ist */
    box-sizing: border-box;       /* Padding in die Breite einbeziehen */
    text-align: center;           /* Text zentrieren */
    font-size: 1em;               /* Schriftgröße anpassbar */
    margin: 0;                    /* Kein Außenabstand */
}

#add-bundle-to-cart:hover {
    background-color: #0056b3;    /* Dunkleres Blau bei Hover */
}










































/* Container-Layout */
.chart-grid {
    display: grid; /* Grid-Layout */
    grid-template-columns: repeat(3, 1fr); /* Immer drei Spalten */
    gap: 20px; /* Abstand zwischen den Charts (horizontal und vertikal) */
    justify-items: center; /* Horizontale Zentrierung der Charts innerhalb der Zellen */
    align-items: center; /* Vertikale Zentrierung der Charts innerhalb der Zellen */
    width: 100%;
    max-width: 1200px; /* Begrenzung der maximalen Breite */
    margin: 0 auto; /* Zentriert innerhalb des Containers */
    box-sizing: border-box;
    padding: 20px 0; /* Gleichmäßiger Abstand oben und unten */
}

/* Donut-Container */
.custom-donut-container {
    width: 100%; /* Volle Breite innerhalb der Spalte */
    max-width: 160px; /* Maximale Breite des Containers */
    border: 1px solid #ccc; /* Äußerer Rand der Box */
    border-radius: 8px; /* Optionale Abrundung der Ecken */
    background-color: #fff; /* Hintergrundfarbe der Box */
    box-sizing: border-box; /* Einschließen des Rands im Box-Modell */
    display: flex; /* Flexbox für Zentrierung */
    flex-direction: column; /* Vertikale Anordnung */
    align-items: center; /* Horizontale Zentrierung */
    justify-content: center; /* Vertikale Zentrierung */
    padding: 10px 0; /* Gleichmäßiger Innenabstand oben und unten */
}

/* Donut-Styling */
.custom-donut {
    position: relative;
    width: 60%; /* Relative Breite zum Container */
    padding-bottom: 60%; /* Höhe basierend auf der Breite für ein quadratisches Verhältnis */
    border-radius: 50%; /* Runde Form */
    background: conic-gradient(
        #93c47d 0% 70%, /* Farbe für den prozentualen Wert */
        #f6f6f7 70% 100% /* Rest der Donut-Anzeige */
    );
    display: flex; /* Flexbox für Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    justify-content: center; /* Horizontale Zentrierung */
    margin-bottom: 10px; /* Abstand zwischen Donut und Label */
}

/* Overlay für den inneren Kreis */
.custom-donut-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%; /* Relative Breite des inneren Kreises */
    height: 60%; /* Relative Höhe des inneren Kreises */
    background-color: #fff; /* Weißer Innenkreis */
    border-radius: 50%; /* Runde Form */
    transform: translate(-50%, -50%); /* Zentriert das Overlay */
    display: flex; /* Flexbox für Zentrierung des Textes */
    align-items: center; /* Vertikale Zentrierung */
    justify-content: center; /* Horizontale Zentrierung */
}

/* Text im Donut */
.custom-donut-text {
    font-size: 1rem; /* Einheitliche Schriftgröße */
    font-weight: bold;
    color: #333;
}

/* Label für Charts */
.custom-chart-label {
    font-size: 1.2rem; /* Einheitliche Schriftgröße */
    color: #333;
    margin: 0; /* Kein zusätzlicher Abstand */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .chart-grid {
        gap: 15px; /* Weniger Abstand auf kleineren Bildschirmen */
        padding: 15px 0; /* Angepasster Abstand oben und unten */
    }

    .custom-donut-container {
        max-width: 130px; /* Kleinere maximale Breite */
    }

    .custom-donut {
        width: 50%; /* Angepasste relative Breite */
        padding-bottom: 50%; /* Angepasste relative Höhe */
        margin-bottom: 8px; /* Angepasster Abstand */
    }

    .custom-donut-overlay {
        width: 50%; /* Angepasste relative Breite */
        height: 50%; /* Angepasste relative Höhe */
    }

    .custom-donut-text {
        font-size: 0.9rem; /* Kleinere Schriftgröße im Donut */
    }

    .custom-chart-label {
        font-size: 1rem; /* Kleinere Schriftgröße für Labels */
    }
}

@media (max-width: 800px) {
    .chart-grid {
        gap: 10px; /* Minimaler Abstand */
        padding: 10px 0; /* Angepasster Abstand oben und unten */
    }

    .custom-donut-container {
        max-width: 110px; /* Noch kleinere maximale Breite */
    }

    .custom-donut {
        width: 80%; /* Weitere angepasste relative Breite */
        padding-bottom: 80%; /* Weitere angepasste relative Höhe */
        margin-bottom: 5px; /* Angepasster Abstand */
    }

    .custom-donut-overlay {
        width: 80%; /* Weitere angepasste relative Breite */
        height: 80%; /* Weitere angepasste relative Höhe */
    }

    .custom-donut-text {
        font-size: 0.8rem; /* Noch kleinere Schriftgröße im Donut */
    }

    .custom-chart-label {
        font-size: 0.9rem; /* Noch kleinere Schriftgröße für Labels */
      margin-bottom: 10px;
    }
}








        .container {
            width: 100%;
            margin: 20px auto;
        }
        .label {
            font-size: 1em;
            margin-bottom: 15px;
            margin-top:20px,
        }
        .bar {
            width: 100%;
            background-color: #e0e0e0;
            border-radius: 8px;
            margin-bottom: 40px;
            margin-top:20px,
            position: relative;
            height: 20px;
        }
        .bar1 {
            width: 100%;
            background-color: #e0e0e0;
            border-radius: 8px;
            margin-bottom: 40px;
            margin-top:20px,
            position: relative;
            height: 20px;
        }
        .fill {
            height: 100%;
            border-radius: 8px;
            background-color: #93c47d;
            text-align: right;
            padding-right: 10px;
            line-height: 20px;
            color: white;
            font-weight: bold;
        }
.fill1 {
            height: 100%;
            border-radius: 8px;
            background-color: #ea9999;
            text-align: right;
            padding-right: 10px;
            line-height: 20px;
            color: white;
            font-weight: bold;
        }


.lifeanalyse-option .extra-content {
    display: none;
}

.lifeanalyse-option.expanded .extra-content {
    display: block;
}


.compare-at-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.sale-price {
    color: #e60000; /* Beispielhafte Farbe für den Angebotspreis */
    font-weight: bold;
}

.countdown-box {
    background-color: #000;
    color: #fff;

    padding: 5px 10px; /* Weniger Padding für eine dünnere Box */
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
    font-size: 12px; /* Schriftgröße auf 12px reduziert */
}

.countdown-box p {
    margin: 0;
}

.countdown-box #countdown-timer {
    font-weight: bold;
    font-size: 12px; /* Schriftgröße des Timers auf 12px */
    color: red; /* Countdown in Rot */
}


.icon-row {
    display: flex;
    flex-wrap: wrap; /* Damit die Elemente umbrechen können, falls der Platz nicht ausreicht */
    justify-content: center; /* Zentriert die gesamte Reihe horizontal */
    align-items: center; /* Vertikale Ausrichtung in der Mitte */
    gap: 100px; /* Abstand zwischen den Icon-Items */
    margin: 20px 0;
}

.icon-item {
    display: flex;
    align-items: center;
}

.icon-item .icon {
    width: 20px; /* Passen Sie die Größe der Icons hier an */
    height: auto;
    margin-right: 6px; /* Abstand zwischen Icon und Text */
}

.icon-text {
    font-size: 10px; /* Schriftgröße des Textes */
    color: #000; /* Textfarbe */
}

/* Responsive Anpassungen */
@media (max-width: 400px) {
    .icon-row {
        gap: 20px; /* Deutlich geringerer Abstand zwischen den Icon-Items */
    }
    
    .icon-text {
        font-size: 8px; /* Optional: Schriftgröße für kleinere Bildschirme anpassen */
    }
}
















/* Neue Styles für ClientID und Instruktionstext */
#clientInfo {
    align-self: flex-end; /* Rechts ausrichten */
    margin-top: 50px; /* Abstand vom oberen Rand */
    color: #ffffff;
    font-size: 1em; /* Relative Schriftgröße */
    font-weight: bold;
    z-index: 4;
}


#instructionText {
    position: absolute;
    top: 60%; /* Relativer Abstand vom oberen Rand des Containers */
    left: 2%;
    color: #ffffff;
    font-size: 0.875em; /* Relative Schriftgröße */
    z-index: 4;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    #clientInfo {
        font-size: 0.875em; /* Anpassung der Schriftgröße */
    margin-top: 50px; /* Abstand vom oberen Rand */
        margin-left: 5%;
    }

    #instructionText {
        font-size: 0.75em; /* Anpassung der Schriftgröße */
        top: 72%;
        left: 5.2%;
    }
}

























/* Container für jede Porosia-Sektion */
.porosia-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Beibehaltung der Zentrierung der gesamten Box */
    margin-bottom: 20px; /* Abstand zwischen den Sektionen */
}

/* Styling für die Bilder mit abgerundeten oberen Ecken */
.porosia-image {
    width: 100%; /* Passt die Bildbreite an den Container an */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    border-top-left-radius: 15px; /* Abgerundete obere linke Ecke */
    border-top-right-radius: 15px; /* Abgerundete obere rechte Ecke */
    border-bottom-left-radius: 0; /* Keine abgerundeten unteren Ecken */
    border-bottom-right-radius: 0; /* Keine abgerundeten unteren Ecken */
}

/* Styling für die Textbox mit abgerundeten unteren Ecken */
.porosia-text-box {
    width: 100%;
    background-color: #F6F6F7; /* Hintergrundfarbe der Box */
    padding: 15px; /* Innenabstand */
    border-bottom-left-radius: 15px; /* Abgerundete untere linke Ecke */
    border-bottom-right-radius: 15px; /* Abgerundete untere rechte Ecke */
    border-top-left-radius: 0; /* Keine abgerundeten oberen Ecken */
    border-top-right-radius: 0; /* Keine abgerundeten oberen Ecken */
    box-sizing: border-box; /* Stellt sicher, dass Padding zur Gesamtbreite gehört */
}

/* Anpassung des Textes innerhalb der Box */
.porosia-text-box p {
    margin: 0;
    font-size: 16px;
    color: #333;
    text-align: left; /* Text linksbündig */
    /* Entfernen oder Anpassen der Zentrierung, falls vorhanden */
}

/* Optional: Responsive Anpassungen */
@media (max-width: 768px) {
    .porosia-text-box {
        padding: 10px;
    }

    .porosia-text-box p {
        font-size: 14px;
    }
}



























.bundle-product {
    padding: 20px 10px !important; /* 20px oben/unten, 10px links/rechts */
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}














.bundle-product .product-info {
    display: flex;
    align-items: center; /* Vertikale Zentrierung innerhalb des Info-Bereichs */
    flex: 1; /* Nimmt den verfügbaren Platz ein */
}

/* 🔵 Vergrößern des Produktbildes */
.bundle-product .product-info img {
    width: 150px; /* Vergrößerte Breite (z.B. von 100px auf 120px) */
    height: 150px; /* Vergrößerte Höhe (z.B. von 100px auf 120px) */
    object-fit: cover; /* Zuschneiden der Bilder */
    border-radius: 4px;
    margin-right: 20px; /* Erhöhter Abstand zum Text */
}

.bundle-product .product-details {
    display: flex;
    flex-direction: column;
}

/* 🟢 Anpassen der Abstände und Schriftgrößen */
.bundle-product .product-details .product-title {
    font-size: 18px; /* Größere Schriftgröße (z.B. von 16px auf 18px) */
    font-weight: bold;
    color: #000;
    margin-bottom: 12px; /* Größerer Abstand zu den Metadaten (z.B. von 8px auf 12px) */
}

/* Stile für die Produkt-Metadaten */
.bundle-product .product-details .product-meta {
    margin-top: 6px; /* Anpassung des oberen Abstands (z.B. von 4px auf 6px) */
    display: flex;
    flex-direction: column;
}

.bundle-product .product-details .product-meta .product-volume {
    font-weight: bold;
    font-size: 16px; /* Anpassbare Schriftgröße (z.B. von 14px auf 16px) */
}

.bundle-product .product-details .product-meta .product-origin {
    font-weight: normal;
    font-size: 14px; /* Dünnere Schriftgröße (z.B. von 12px auf 14px) */
    color: #777; /* Graue Farbe für einen subtileren Look */
}

.bundle-product .product-details .product-price {
    font-size: 16px; /* Größere Schriftgröße (z.B. von 14px auf 16px) */
    color: #555;
    margin-top: 10px; /* Abstand zur Metadaten (z.B. von 8px auf 10px) */
}

.bundle-product .product-details .product-price .compare-at-price {
    text-decoration: line-through;
    color: #999; /* Graue Farbe für den durchgestrichenen Preis */
    margin-right: 8px;
}

.bundle-product .product-details .product-price .sale-price {
    color: red; /* Rote Farbe für den aktuellen Preis */
    font-weight: bold;
}

/* 🔴 Verschieben des Toggle-Buttons */
.bundle-product .toggle-button {
    background: none;
    border: none;
    font-size: 24px; /* Größere Schriftgröße für den "+" Button */
    font-weight: bold;
    cursor: pointer;
    color: #000;
    padding: 0;
    width: 40px; /* Größere Breite */
    height: 40px; /* Größere Höhe */
    display: flex;
    align-items: center; /* Vertikale Zentrierung des Inhalts */
    justify-content: center; /* Horizontale Zentrierung des Inhalts */
    margin-left: 50px; /* Abstand zum rechten Rand */
    flex-shrink: 0; /* Verhindert, dass der Button schrumpft */
    transform: translateY(-70px); /* Verschiebt den Button um 70px nach oben */

    /* Anpassungen für weitere Links/Rechts Verschiebung */
    /* Beispiel: Mehr nach rechts verschieben */
    /* margin-left: 70px; */

    /* Beispiel: Mehr nach links verschieben */
    /* margin-left: 30px; */
}

.bundle-product .toggle-button:focus {
    outline: none;
}

/* Erweiterte Inhaltssektion */
.product-extra-content {
    display: none;
    padding: 10px 15px;
    border-top: 1px solid #eee;
    font-size: 14px; /* Etwas größere Schriftgröße für bessere Lesbarkeit */
    color: #555;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.bundle-product.expanded .product-extra-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Produkt-Galerie */
.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* Bilder in der Produkt-Galerie */
.product-gallery img.gallery-image {
    width: 80px; /* Maximale Breite */
    height: 80px; /* Maximale Höhe */
    object-fit: cover; /* Zuschneiden der Bilder */
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-gallery img.gallery-image:hover {
    transform: scale(1.05);
}








/* Responsives Design für Bundle-Produkte */
@media (max-width: 768px) {
    .bundle-product {
        flex-direction: column;
        align-items: flex-start;


    }

.bundle-product .toggle-button {
    position: absolute;
    right: 10px; /* Abstand vom rechten Rand */
    bottom: 5px; /* Abstand vom unteren Rand */
    margin: 0;
          /* Optional: Entferne die vertikale Verschiebung */
        /* transform: none; */

}


    .bundle-product .product-info img {
        width: 120px;
        height: 120px;
        margin-right: 15px;

    }

    .bundle-product .product-details .product-title {
        font-size: 12px;

    }

    .bundle-product .product-details .product-meta .product-volume {
        font-size: 13px; /* Kleinere Schriftgröße für kleinere Bildschirme */

    }

    .bundle-product .product-details .product-meta .product-origin {
        font-size: 11px;

    }

    .bundle-product .product-details .product-price {
        font-size: 12px;

    }
}


/* Responsives Design für Bundle-Produkte */
@media (max-width: 370px) {
    .bundle-product {
        flex-direction: column;
        align-items: flex-start;
    }

    .bundle-product .toggle-button {
        align-self: flex-end; /* Platziert den Button am rechten Rand im Spaltenlayout */
        margin-left: 0;
        margin-top: 10px; /* Abstand nach oben */
        /* Optional: Entferne die vertikale Verschiebung */
        /* transform: none; */
    }

    .bundle-product .product-info img {
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }

    .bundle-product .product-details .product-title {
        font-size: 12px;
    }

    .bundle-product .product-details .product-meta .product-volume {
        font-size: 13px; /* Kleinere Schriftgröße für kleinere Bildschirme */
    }

    .bundle-product .product-details .product-meta .product-origin {
        font-size: 11px;
    }

    .bundle-product .product-details .product-price {
        font-size: 12px;
    }
}


    .bundle-product .product-details .product-meta .product-volume,
    .bundle-product .product-details .product-meta .product-origin {
        font-size: 12px;
    }
}

/* Weitere Responsive Anpassungen für die Produkt-Galerie */
@media (max-width: 768px) {
    .product-gallery img.gallery-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .product-gallery img.gallery-image {
        width: 100px;
        height: 100px;
    }
}

/* Optional: Begrenzung der Gesamtbreite der erweiterten Sektion */
.product-extra-content {
    max-width: 600px; /* Anpassbar nach Bedarf */
    margin: 0 auto; /* Zentriert die erweiterte Sektion */
}































/* Großes Bild im ersten Modal */
.modal-image {
    width: 90%; /* Maximale Breite */
    height: auto; /* Automatische Höhe */
    border-radius: 10px;
    object-fit: contain; /* Verhindert Verzerrung */
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

.modal-image.loaded {
    opacity: 1;
}

/* Popup Styling für erstes Modal */
.modal-content-container {
    position: relative;
    width: 95%;
    max-width: 1000px; /* Maximale Breite */
    max-height: 90%; /* Maximale Höhe */
    background-color: #fff; 
    padding: 20px; 
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: slideIn 0.5s ease-out;
}

@media (max-width: 600px) {
    .modal-content-container {
        width: 95%;
        max-width: 700px; /* Kleinere Maximalbreite für mobile Geräte */
        max-height: 80%;
    }

    .modal-image {
        width: 100%; /* Bild passt sich an die Breite an */
        height: auto;
    }
}

/* Styling für das Modal */
.modal-2 {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dunkler Hintergrund */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content-container-2 {
    position: relative;
    width: 90%;
    max-width: 800px; /* Maximalbreite für größere Bildschirme */
    max-height: 90%; /* Maximalhöhe */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-image-2 {
    max-width: 100%; /* Bild nimmt maximale Breite ein */
    max-height: 100%; /* Höhe passt sich an */
    object-fit: contain; /* Verhindert Verzerrung */
    border-radius: 10px; /* Abgerundete Ecken */
    transition: transform 0.3s, opacity 0.3s;
}

/* Schließen-Button für Modal */
.modal-2 .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #000000;
    cursor: pointer;
}

.modal-2 .close:hover {
    color: #000000;
}

/* Responsive Design für Modal */
@media (max-width: 600px) {
    .modal-content-container-2 {
        width: 95%;
        max-width: 600px; /* Kleinere Maximalbreite für mobile Geräte */
        max-height: 80%;
    }

    .modal-image-2 {
        width: 100%; /* Bild passt sich an die Breite an */
        height: auto;
    }
}



/* sorgt dafür, dass die Start-Sektion selbst flex-zentriert ist */
.lifeanalyse-start-step  {
  display:flex;              /* neu  */
  align-items:center;        /* vertikal zentrieren   */
  justify-content:center;    /* horizontal zentrieren */
  padding:0;                 /* kein zusätzlicher Abstand */
}


 /* lifeanalyse.css */
/* responsives, zentriertes Quadrat über dem Video */
/* mit 20px Abstand oben/unten und 2vw Abstand links/rechts */
#faceFrame {
  display: none;           /* erst anzeigen, wenn openCamera() aufruft */
  position: absolute;
  top: 20px;               /* 20px Abstand zum oberen schwarzen Rand */
  bottom: 20px;            /* 20px Abstand zum unteren schwarzen Rand */
  left: 2vw;               /* 2vw Abstand zum linken Rand */
  right: 2vw;              /* 2vw Abstand zum rechten Rand */
  margin: auto;            /* zentriert in diesem Kasten */
  aspect-ratio: 1 / 1;     /* immer quadratisch */
  border: 2px solid white; /* weißer Rahmen */
  box-sizing: border-box;
  pointer-events: none;
  z-index: 11;             /* über Video & Ladebalken, unter UI-Buttons */
}














































/* ── Weißes, zentriertes Quadrat ─────────────────────────────── */
#faceFrame {
  position: absolute !important;
  top: 20px;             /* 20px Abstand oben */
  bottom: 20px;          /* 20px Abstand unten */
  left: 2vw;             /* 2vw Abstand links */
  right: 2vw;            /* 2vw Abstand rechts */
  margin: auto;          /* sorgt für perfekte H/V-Zentrierung */
  aspect-ratio: 1 / 1;   /* Quadrat-Form */
  border: 2px solid white;
  box-sizing: border-box;
  z-index: 2;
}

/* Blitz, Countdown & Alert liegen nun automatisch über dem Quadrat */
#faceFrame #flashOverlay,
#faceFrame #scanCountdown,
#faceFrame #scanAlert {
  position: absolute;
  left: 0; top: 0;       /* Flash füllt das Quadrat komplett */
  width: 100%; height: 100%;
}


#faceFrame #scanCountdown {
  width: auto; height: auto;
  bottom: 10px; right: 10px;
  background: none !important;
}

#faceFrame #scanAlert {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; max-width: 300px;
  height: auto;
}

/* ── Neu: Mehr Padding in der Alert-Box ─────────────────────── */
#faceFrame #scanAlert .ios-alert-box {
  padding-top:    15px !important;  /* vorher 12px → jetzt +3px */
}

/* ── Gleichmäßiger Abstand über und unter dem Alert-Button ───── */
#faceFrame #scanAlert .ios-alert-button {
  margin-top:    8px !important;
  margin-bottom: 8px !important;
}


/* Overlay-Elemente dürfen pointer-events haben */
#scanAlert,
#scanAlert * {
  pointer-events: auto !important;
}




/* 1) Foto-Button komplett verstecken */
#takePhotoButton {
  display: none !important;
}

/* 2) Logo nach unten holen, vertikal an gleicher Höhe wie der Button, und horizontal zentrieren */
#buttonLogoContainer {
  justify-content: center !important; /* Logo mittig statt links */
}

#logo {
  margin: 0;             /* alle Außenabstände zurücksetzen */
  height: 55px;         /* gleiche Höhe wie dein Button (oder anpassen) */
  width: auto;           /* Breite proportional */
  display: block;        /* damit margin:0 auto; wirken kann */
}

