.elementor-kit-17061{--e-global-color-primary:#1D1D1F;--e-global-color-secondary:#F50000;--e-global-color-text:#707070;--e-global-color-accent:#F50000;--e-global-color-0f11670:#E5E5E5;--e-global-typography-primary-font-family:"neue haas";--e-global-typography-primary-font-weight:800;--e-global-typography-secondary-font-family:"neue haas";--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"neue haas";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-weight:100;}.elementor-kit-17061 button,.elementor-kit-17061 input[type="button"],.elementor-kit-17061 input[type="submit"],.elementor-kit-17061 .elementor-button{background-color:#000000;color:#000000;}.elementor-kit-17061 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:100%;}.e-con{--container-max-width:100%;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:540px;}.e-con{--container-max-width:540px;}}/* Start custom CSS */@media screen and (max-width: 767px) {
  #content .container.cf {
    margin-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  html,
  body {
    overflow-x: hidden !important;
  }




/* CSS Code um "Ratenzahlung" automatisch durch "Finanzierung" zu ersetzen */

/* Verstecke Text der "Ratenzahlung" enthält und ersetze durch "Finanzierung" */
*:not(script):not(style) {
  /* Prüfe auf Ratenzahlung (case-insensitive wird schwierig in CSS) */
}

/* Spezifische Lösung für Elemente die "Ratenzahlung" enthalten */
[data-text*="Ratenzahlung"], 
[title*="Ratenzahlung"],
[alt*="Ratenzahlung"] {
  position: relative;
}

[data-text*="Ratenzahlung"]::before, 
[title*="Ratenzahlung"]::before,
[alt*="Ratenzahlung"]::before {
  content: "Finanzierung";
  position: absolute;
  left: 0;
  top: 0;
  background: inherit;
  color: inherit;
  font: inherit;
}

[data-text*="Ratenzahlung"], 
[title*="Ratenzahlung"],
[alt*="Ratenzahlung"] {
  color: transparent !important;
}

/* Alternative: JavaScript-basierte Lösung (CSS allein kann nicht direkt Text ersetzen) */
/* Diese CSS-Regel funktioniert nur mit entsprechenden HTML-Attributen */

/* Bessere Lösung: Verwende data-replace Attribut */
[data-replace="Ratenzahlung"] {
  font-size: 0 !important;
  position: relative !important;
}

[data-replace="Ratenzahlung"]::after {
  content: "Finanzierung" !important;
  font-size: 14px !important; /* Anpassen nach Bedarf */
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
}

/* Für bestimmte Klassen */
.ratenzahlung-text {
  font-size: 0 !important;
  position: relative !important;
}

.ratenzahlung-text::after {
  content: "Finanzierung" !important;
  font-size: 14px !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
}

/* WICHTIGER HINWEIS: 
CSS allein kann nicht automatisch Text im DOM ersetzen.
Für eine vollständige Lösung ist JavaScript erforderlich:

document.addEventListener('DOMContentLoaded', function() {
    function replaceText(node) {
        if (node.nodeType === Node.TEXT_NODE) {
            node.textContent = node.textContent.replace(/Ratenzahlung/gi, 'Finanzierung');
        } else {
            for (let child of node.childNodes) {
                replaceText(child);
            }
        }
    }
    replaceText(document.body);
});

Füge dieses JavaScript in deine HTML-Datei ein für automatische Textersetzung.
*/




/* FORCE Override für Lightbox Navigation */
div[id*="mystilGallery_"] + div[style*="position:fixed"] .nav-controls,
div[id*="mystil"] + div .nav-controls,
div[style*="z-index:999999"] div[style*="bottom"] {
    bottom: 80px !important;
}

/* Zoom Controls Force */
div[id*="mystilGallery_"] + div .zoomControls,
div[style*="z-index:999999"] .zoomControls {
    bottom: 70px !important;
    right: 40px !important;
}

/* Direkte Selektion über Style-Attribute */
div[style*="bottom:40px"][style*="gap:40px"] {
    bottom: 80px !important;
}

div[style*="bottom:40px"][style*="right:40px"] {
    bottom: 70px !important;
}/* End custom CSS */