:root {
  --customcolor1: var(--customColor1);
  --customcolor2: var(--customColor2);
  --secondcolor: var(--secondColor);
  --accentcolor: var(--accentColor);
}

/* 
 * @change:    Lokale ThemeDesigner-Schriften Poppins und Quicksand eingebunden; Poppins für Fließtext, Quicksand für Überschriften und Hyperlink-Extended-Elemente gesetzt
 * @page:      
 * @module:    Globale Schriftdefinition, ce_hyperlink-extended
 * @date:      2026-06-12
 * @author:    Steffi Petschnik
 */

@font-face {
    font-family: "Poppins";
    src: url("/files/cto_layout/fonts/googlefonts/poppins-v21-latin-300.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/files/cto_layout/fonts/googlefonts/poppins-v21-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/files/cto_layout/fonts/googlefonts/poppins-v21-latin-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/files/cto_layout/fonts/googlefonts/poppins-v21-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Quicksand";
    src: url("/files/cto_layout/fonts/googlefonts/quicksand-v31-latin-300.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Quicksand";
    src: url("/files/cto_layout/fonts/googlefonts/quicksand-v31-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Quicksand";
    src: url("/files/cto_layout/fonts/googlefonts/quicksand-v31-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ce_headline,
.ce_hyperlink-extended,
.ce_hyperlink-extended a,
.ce_hyperlink-extended span {
    font-family: "Quicksand", Arial, sans-serif;
}

/* 
 * @change:    Hyperlink-Extended-Buttons typografisch und in den Abständen an den Termin-buchen-Button im Hauptmenü angeglichen
 * @page:      
 * @module:    ce_hyperlink ce_hyperlink-extended / mod_navigation mainmenu
 * @date:      2026-06-12
 * @author:    Steffi Petschnik
 */

.ce_hyperlink.ce_hyperlink-extended a,
.ce_hyperlink.ce_hyperlink-extended a span {
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
}

.ce_hyperlink.ce_hyperlink-extended a {
    padding: 8px 30px;
}

/* 
 * @change:    Badge-Elemente global optisch an die Hyperlink-Extended-Buttons angeglichen
 * @page:      
 * @module:    ce_badge
 * @date:      2026-06-12
 * @author:    Steffi Petschnik
 */

.ce_badge[data-style] .ce_badge_inside {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.8;
}

.ce_badge[data-style] .ce_badge_inside p {
    margin: 0;
}

.ce_badge[data-style] .ce_badge_inside span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* 
 * @change:    Reduziert auf Mobilgeräten die Höhe der Badge-Outline für Badges mit der Klasse badge-mobil
 * @page:      
 * @module:    ce_badge
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 768px) {
    .ce_badge.badge-mobil[data-style] .ce_badge_inside {
        padding: 0px 15px 5px 15px;
        line-height: 1.2;
    }
}

/* 
 * @change:    Schatten beim Wrap reduzieren
 * @page:      Startseite
 * @module:    ce_wrap
 * @date:      2026-06-12
 * @author:    Steffi Petschnik
 */

.ce_wrap.shadow-5 {
  box-shadow: 0 0 10px 10px rgba(0,0,0,0.05);
}

/* 
 * @change:    AutoGrid-Karten als echtes Raster gesetzt, Kartenhöhe an der höchsten Karte ausgerichtet und Reihenabstand über Grid-Gap erhalten
 * @page:      Nasenchirurgie
 * @module:    AutoGrid / Wrap-Element
 * @date:      2026-06-09
 * @author:    Steffi Petschnik
 */

.autogrid_row.equal-height-card-grid,
.equal-height-card-grid .autogrid_row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  row-gap: 30px;
  column-gap: 0;
  align-items: stretch;
}

.autogrid_row.equal-height-card-grid::before,
.autogrid_row.equal-height-card-grid::after,
.equal-height-card-grid .autogrid_row::before,
.equal-height-card-grid .autogrid_row::after {
  content: none;
}

.autogrid_row.equal-height-card-grid > .column,
.equal-height-card-grid .autogrid_row > .column {
  float: none;
  width: auto;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: stretch;
}

.autogrid_row.equal-height-card-grid > .column > .attributes,
.equal-height-card-grid .autogrid_row > .column > .attributes {
  display: flex;
  width: 100%;
  height: 100%;
}

.equal-height-card-grid .equal-height-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 0 !important;
  box-sizing: border-box;
}

/* 
 * @change:    Ersetzt die Standard-Aufzählungszeichen in Text-, erweiterten Text- und Listenelementen durch bullet.svg, richtet umgebrochene Zeilen bündig aus und ergänzt Abstand zwischen den Listeneinträgen.
 * @page:      
 * @module:    Text, Text [Erweitert] und Aufzählung
 * @date:      2026-07-17
 * @author:    Steffi Petschnik
 */

.ce_text ul,
.ce_teambox_simple ul,
.ce_text_extented ul,
.ce_list ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.ce_text ul > li,
.ce_teambox_simple ul > li,
.ce_text_extented ul > li,
.ce_list ul > li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 32px;
  line-height: 1.4;
  list-style: none;
}

.ce_text ul > li:last-child,
.ce_teambox_simple ul > li:last-child,
.ce_text_extented ul > li:last-child,
.ce_list ul > li:last-child {
  margin-bottom: 0;
}

.ce_text ul > li::before,
.ce_teambox_simple ul > li::before,
.ce_text_extented ul > li::before,
.ce_list ul > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("/files/icons/bullet.svg") center / contain no-repeat;
  transform: translateY(-50%);
}


.ce_image.border-radius-medium img {
  border-radius: 50px;
}

.font-size-1 p {
  font-size: 1.35rem;
}

/* 
 * @change:    Färbt Akkordeonüberschrift und Pfeil im geschlossenen Zustand lila und beim Hover hellblau
 * @page:      
 * @module:    ce_accordion
 * @date:      2026-07-17
 * @author:    Steffi Petschnik
 */

.ce_accordion {
  margin-bottom: 1px;
  border: none;
}

.ce_accordion .toggler {
  padding: 10px 12px 15px 0;
  font-family: Quicksand, Arial, sans-serif;
  font-size: 1.6rem !important;
  font-weight: 700;
  line-height: 1.3;
  color: #9587b8 !important;
  border-bottom: none !important;
}

.ce_accordion .toggler:hover {
  color: #98cbf1 !important;
}

.ce_accordion .toggler::before {
  display: inline-block;
  float: right;
  width: auto;
  height: auto;
  margin-top: 8px;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #9587b8 !important;
}

.ce_accordion .toggler:hover::before {
  color: #98cbf1 !important;
}

.ce_accordion .accordion {
  padding-left: 2px;
}

@media only screen and (max-width: 768px) {
  .ce_accordion .toggler {
    font-size: 20px !important;
  }
}

.ce_divider_extended.version5 {
  background: var(--accentColor);
  width: auto;
  height: 1px;
}

/* 
 * @change:    Gibt den durch die vertikale Verschiebung des Schmetterlings weiterhin reservierten Leerraum im AutoGrid wieder frei
 * @page:      Praxis
 * @module:    AutoGrid / Freie Positionierung / Bild
 * @date:      2026-07-24
 * @author:    Steffi Petschnik
 */

@media only screen and (min-width: 768px) {
  .butterfly-overlap {
    margin-bottom: -110px;
  }
}

/* 
 * @change:    Aktiviert die Sticky-Positionierung der markierten Grid-Spalte explizit und verhindert ihre vertikale Streckung innerhalb der Grid-Zeile
 * @page:      Praxis
 * @module:    Grid-Spalte / Sticky
 * @date:      2026-07-24
 * @author:    Steffi Petschnik
 */

@media only screen and (min-width: 768px) {
  body.page_5 .autogrid_row > .column.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    align-self: flex-start;
    height: auto;
  }
}

/* 
 * @change:    Teambox Fotos abgerundetete Ecken
 * @page:      Über uns
 * @module:    ce_teambox
 * @date:      2026-05-05
 * @author:    Steffi Petschnik
 */
.ce_teambox_simple .image_container {
  border-radius: 40px;
}

/* 
 * @change:    Reihenfolge von Name und Jobbezeichnung in der einfachen Teambox getauscht
 * @page:      
 * @module:    ce_teambox_simple
 * @date:      2026-05-05
 * @author:    Steffi Petschnik
 */

/* Parent als Flex-Container setzen, damit die Reihenfolge gezielt gesteuert werden kann. */
.ce_teambox_simple {
  display: flex;
  flex-direction: column;
}

/* Jobbezeichnung wird vor dem Namen angezeigt. */
.ce_teambox_simple .job.default {
  order: 2;
  color: #e3a2c3;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Name wird nach der Jobbezeichnung angezeigt. */
.ce_teambox_simple .name.default {
  order: 1;
  color: #9587b8;
  margin-top: 20px;
}

.ce_teambox_simple .description {
  order: 3;
}

.ce_teambox_simple .link {
  display:none;
}


/* 
 * @change:    Teamfoto in der einfachen Teambox auf festes Hochformat gesetzt
 * @page:      
 * @module:    ce_teambox_simple
 * @date:      2026-05-05
 * @author:    Steffi Petschnik
 */

.ce_teambox_simple img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 
 * @change:    Gestaltet die Colorbox-Lightbox mit einem weicheren Hintergrund, abgerundeten Ecken, dezentem Schatten und einem gut sichtbaren Schließen-Button freundlicher
 * @page:      Websiteweit
 * @module:    j_colorbox / Galerie-Großansicht
 * @date:      2026-07-24
 * @author:    Steffi Petschnik
 */

#cboxOverlay {
  background: rgba(149, 135, 184, 0.72);
}

#colorbox {
  outline: none;
}

#cboxWrapper {
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(55, 45, 75, 0.28);
}

#cboxContent,
#cboxLoadedContent {
  border-radius: 18px;
  background: #fff;
}

#cboxLoadedContent {
  border-color: #fff;
}

#cboxLoadedContent {
  overflow: hidden;
}

#cboxLoadedContent img {
  display: block;
}

#cboxClose {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(55, 45, 75, 0.22);
  color: #9587b8;
  font-size: 0;
  text-indent: 0;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

#cboxClose::before {
  content: "×";
  display: block;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 38px;
  text-align: center;
}

#cboxClose:hover,
#cboxClose:focus-visible {
  background: #9587b8;
  color: #fff;
  transform: scale(1.06);
}

#cboxTitle {
  position: absolute;
  top: 20px;
  left: 30px;
  color: #fff;
}

/* 
 * @change:    Positioniert die Bildnummer der Colorbox oberhalb des Galeriebildes und stellt sie für eine bessere Lesbarkeit weiß dar
 * @page:      Praxis
 * @module:    j_colorbox / Galerie-Großansicht
 * @date:      2026-07-24
 * @author:    Steffi Petschnik
 */

#cboxCurrent {
  top: 18px;
  right: 72px;
  bottom: auto;
  left: auto;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 14px;
  background: rgba(149, 135, 184, 0.85);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: none;
}


.ce_gallery .image_container i.fa.fa-plus-circle {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  line-height: 0;
  transform: none;
}



/* 
 * @change:    Rundet die OpenStreetMap mit 50px ab und beschneidet auch die transformierten Leaflet-Kartenebenen zuverlässig innerhalb der Rundung
 * @page:      Kontakt
 * @module:    ce_leaflet_map
 * @date:      2026-07-27
 * @author:    Steffi Petschnik
 */


#leaflet_map_2181 {
  border-radius: 50px;
  overflow: hidden;
}

/* 
 * @change:    Dropdown-Menü der Hauptnavigation mit mehr Innenabstand, größerem Zeilenabstand und hervorgehobener Typografie formatieren
 * @page:      seitenübergreifend
 * @module:    mod_navigation / mainmenu
 * @date:      2026-07-27
 * @author:    Steffi Petschnik
 */
.header .mainmenu ul.level_2 {
  padding-top: 32px;
  padding-bottom: 32px;
  border-radius: 30px;
  margin-top: -50px;
  margin-left: -35px;
}


.header .mainmenu ul.level_2 a,
.header .mainmenu ul.level_2 a span {
  font-family: Quicksand, Arial, sans-serif !important;
  font-weight: 700 !important;
}

.mainmenu ul li a.a-level_1.active:not(.highlight) span {
  border-bottom: 2px solid #e3a2c3!important;
  padding-bottom: 5px;
}

/* 
 * @change:    Anpassungen Button Termin-buchen-Button mobile
 * @page:      seitenübergreifend
 * @module:    mod_navigation / mainmenu
 * @date:      2026-08-03
 * @author:    Thomas Cramer
 */
.terminButtonFooter {  
    display:none;
    position: fixed;
    bottom: 64px;
    left: 80px;
    right: 80px;
    z-index:999999;
    -webkit-transition: all 0.3s ease;
}

.fixed-header .terminButtonFooter {
    bottom: 90px;}

.terminButtonFooter a {
  
    background: rgb(149, 135, 184)!important;
    color: #fff !important;
    border-radius: 50px;
    height: auto;
    padding: 8px;
    position: absolute;
    font-size: 16px;
    width: 100%;
    text-align: center;
    border:1px solid rgba(255,255,255,.2);
}


@media (max-width: 768px) {
  .notMobile {
    display: none;
  }
  .terminButtonFooter, .terminButtonFooter .notMobile { display:block;}
}

/* 
 * @change:    Gestaltet den Accessibility-Trigger als runden rosa Icon-Button, zentriert das Original-Icon exakt und richtet den Button bündig über dem To-top-Button aus
 * @page:      Gesamte Website
 * @module:    Accessibility Widget
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

.accessibility_widget_trigger {
  position: fixed;
  top: auto;
  right: 15px;
  bottom: 105px;

  width: 50px;
  height: 50px;
  min-width: 0;
  padding: 0;

  background: #e3a2c3;
  border: 0;
  border-radius: 50%;
  box-sizing: border-box;

  line-height: normal;
}

.accessibility_widget_trigger .shortcut,
.accessibility_widget_trigger .close {
  display: none;
}

.accessibility_widget_trigger i {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  transform: translate(-50%, -50%);
}

/* 
 * @change:    Blendet die Tastaturhinweise und den Close-Text am Accessibility-Trigger auch im geöffneten Zustand dauerhaft aus
 * @page:      Gesamte Website
 * @module:    Accessibility Widget
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

.accessibility_widget_trigger .shortcut,
.accessibility_widget_trigger .close {
  display: none !important;
}

/* 
 * @change:    Verbreitert das Accessibility-Menü für einzeilige Optionsbeschriftungen und verwendet Quicksand für die Überschrift „Bedienungshilfen“
 * @page:      Gesamte Website
 * @module:    Accessibility Widget
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

#accessibility_widget {
  min-width: 0;
  width: 440px;
  max-width: calc(100vw - 40px);

  padding: 30px;

  background: #fff;
  border: 3px solid #fff;
  border-radius: 30px;
  outline: 0;

  font-family: 'Poppins', Arial, sans-serif;
  box-sizing: border-box;
}

#accessibility_widget div.h5 {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
}

/* 
 * @change:    Schiebt das geschlossene Accessibility-Menü unabhängig von seiner Breite vollständig aus dem sichtbaren Bereich
 * @page:      Gesamte Website
 * @module:    Accessibility Widget
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

#accessibility_widget {
  transform: translateX(100%);
}

/* 
 * @change:    Positioniert das geöffnete Accessibility-Menü näher oberhalb des Accessibility-Buttons
 * @page:      Gesamte Website
 * @module:    Accessibility Widget
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

#accessibility_widget {
  top: auto;
  bottom: 165px;
}

/* 
 * @change:    Ersetzt das Accessibility-Icon bei geöffnetem Menü durch ein weißes X und behält den Trigger als runden rosa Button bei
 * @page:      Gesamte Website
 * @module:    Accessibility Widget
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

/* Original-Icon im geöffneten Zustand ausblenden */
body.acc_show .accessibility_widget_trigger i {
  opacity: 0;
}

/* Weißes X aus zwei Linien aufbauen */
body.acc_show .accessibility_widget_trigger::before,
body.acc_show .accessibility_widget_trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 24px;
  height: 2px;

  background: #fff;
  border-radius: 2px;
  pointer-events: none;
}

body.acc_show .accessibility_widget_trigger::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.acc_show .accessibility_widget_trigger::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 
 * @change:    Behält den Accessibility-Trigger auch bei geöffnetem Menü als vollständig runden Button bei
 * @page:      Gesamte Website
 * @module:    Accessibility Widget
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

body.acc_show .accessibility_widget_trigger {
  border-radius: 50% !important;
}

/* 
 * @change:    Setzt farbige Accent-Hintergründe im aktivierten Hochkontrast-Modus auf Schwarz, damit weiße Texte den maximalen Kontrast erhalten
 * @page:      Gesamte Website
 * @module:    Accessibility Widget / Hochkontrast
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

html.acc_contrast .bg-accent {
  background-color: #000 !important;
}

/* 
 * @change:    Setzt Teamnamen und Funktionsbezeichnungen im Hochkontrast-Modus auf Schwarz, damit sie auf den weißen Teamflächen klar lesbar sind
 * @page:      Gesamte Website
 * @module:    Team-Box
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

html.acc_contrast .ce_teambox_simple .name,
html.acc_contrast .ce_teambox_simple .job {
  color: #000 !important;
}

/* 
 * @change:    Setzt individuell eingefärbte Texte im erweiterten Textelement sowie FAQ-Fragen im Hochkontrast-Modus auf Schwarz und überschreibt dabei Inline- und Zustandsfarben
 * @page:      Gesamte Website
 * @module:    .ce_text_extented / Accordion
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

/* Inline eingefärbte Texte innerhalb des erweiterten Textelements */
html.acc_contrast .ce_text_extented span[style*="color"] {
  color: #000 !important;
}

/* FAQ-Fragen in allen Zuständen */
html.acc_contrast .ce_accordion .toggler,
html.acc_contrast .ce_accordion .toggler:hover,
html.acc_contrast .ce_accordion .toggler:focus,
html.acc_contrast .ce_accordion .toggler.ui-state-active {
  color: #000 !important;
}

/* Icon/Pfeil der FAQ ebenfalls auf Schwarz setzen */
html.acc_contrast .ce_accordion .toggler::before,
html.acc_contrast .ce_accordion .toggler:hover::before,
html.acc_contrast .ce_accordion .toggler.ui-state-active::before {
  color: #000 !important;
}

/* 
 * @change:    Setzt Headlines innerhalb von Headerbereichen im Hochkontrast-Modus auf Schwarz, damit sie auf den sehr hellen Headerbildern gut lesbar bleiben
 * @page:      Gesamte Website
 * @module:    Artikel / Headerbereich
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

html.acc_contrast .mod_article.a11y-bg-dark .ce_headline,
html.acc_contrast .mod_article.a11y-bg-dark .font_headline {
  color: #000 !important;
}

/* 
 * @change:    Erhält alle derzeit verwendeten Header-Hintergrundbilder im Hochkontrast-Modus und setzt die darauf liegenden Headlines auf Schwarz
 * @page:      Gesamte Website
 * @module:    Artikel / Headerbereiche
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

/* Behandlung */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-behandlung2.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-behandlung2.jpg') !important;
}

/* Erster Besuch */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-erster-besuch.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-erster-besuch.jpg') !important;
}

/* Jobs – ZFA Azubi */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-jobs-zfa-azubi.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-jobs-zfa-azubi.jpg') !important;
}

/* Jobs – ZFA */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-jobs-zfa.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-jobs-zfa.jpg') !important;
}

/* Jobs */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-jobs.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-jobs.jpg') !important;
}

/* Kontakt */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-kontakt.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-kontakt.jpg') !important;
}

/* Kreidezähne */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-kreidezaehne.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-kreidezaehne.jpg') !important;
}

/* Leistungen */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-leistungen.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-leistungen.jpg') !important;
}

/* Praxis */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-praxis.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-praxis.jpg') !important;
}

/* Startseite */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-start.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-start.jpg') !important;
}

/* Stillprobleme */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-stillprobleme-01.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-stillprobleme-01.jpg') !important;
}

/* Vollnarkose */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-vollnarkose.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-vollnarkose.jpg') !important;
}

/* Zahnputzschule */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-zahnputzschule.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-zahnputzschule.jpg') !important;
}

/* Zauberluft */
html.acc_contrast .mod_article.a11y-bg-dark[style*="header-zahnzauberland-zauberluft.jpg"] {
  background-image: url('/files/header/header-zahnzauberland-zauberluft.jpg') !important;
}

/* Headlines auf den hellen Headerbildern */
html.acc_contrast .mod_article[style*="/files/header/"] h1,
html.acc_contrast .mod_article[style*="/files/header/"] h2,
html.acc_contrast .mod_article[style*="/files/header/"] h3,
html.acc_contrast .mod_article[style*="/files/header/"] .ce_headline,
html.acc_contrast .mod_article[style*="/files/header/"] .font_headline {
  color: #000 !important;
}

/* 
 * @change:    Stellt für Headerbilder im Hochkontrast-Modus die flächige Skalierung, Positionierung und Wiederholungsart wieder her; korrigiert dabei den Selektor auf die tatsächlich verwendeten Inline-Bildpfade
 * @page:      Gesamte Website
 * @module:    Artikel / Headerbereiche
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

html.acc_contrast .mod_article[style*="files/header/"] {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #fff !important;
}

/* 
 * @change:    terminButtonFooter deaktivieren
 * @page:      Gesamte Website
 * @module:    bottom
 * @date:      2026-09-08
 * @author:    Thomas Cramer
 */
@media (max-width: 768px) {
  .terminButtonFooter, .terminButtonFooter .notMobile { display:none;}
}

/* 
 * @change:    Link-Buttons mit der Klasse link-button-mobil auf mobilen Geräten kompakter dargestellt und Schriftgröße an Fließtext angepasst
 * @page:      
 * @module:    ce_hyperlink / ce_hyperlink-extended
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 767px) {
    .ce_hyperlink.ce_hyperlink-extended.link-button-mobil a {
        padding: 8px 24px;
        font-size: 1.0rem;
    }

    .ce_hyperlink.ce_hyperlink-extended.link-button-mobil a span {
        font-size: inherit;
    }
}

/* 
 * @change:    Hintergrundbilder ausgewählter Artikel mobil ausgeblendet und die jeweils gesetzte Hintergrundfarbe auf 60 % Farbwirkung aufgehellt
 * @page:      Startseite
 * @module:    mod_article
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 768px) {
    #article-44,
    #article-53,
    #article-62,
    #article-69,
    #article-76{
        background-image: linear-gradient(
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.7)
        ) !important;
    }
}

@media (max-width: 768px) {
    #article-3 {
        background-image: linear-gradient(
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.2)
        ) !important;
    }
}

/* 
 * @change:    Stellt die Equal-Height-Karten im AutoGrid auf mobilen Geräten einspaltig dar und hebt die erzwungene gleiche Kartenhöhe auf
 * @page:      Leistungen
 * @module:    AutoGrid (Grid-Reihe) / Wrap
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media only screen and (max-width: 767px) {
  .autogrid_row.equal-height-card-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

@media only screen and (max-width: 767px) {
  .equal-height-card-grid .ce_wrap.equal-height-card {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

/* 
 * @change:    Bild-Text-Kombinationen auf Mobilgeräten einheitlich mit Bild vor Text anordnen, unabhängig von der Desktop-Reihenfolge
 * @page:      
 * @module:    ce_image / ce_text_extented
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 768px) {

    .autogrid_row:has(> .column.col_5 .ce_image):has(> .column.col_6 .ce_text_extented) > .column.col_5 {
        order: 1;
    }

    .autogrid_row:has(> .column.col_5 .ce_image):has(> .column.col_6 .ce_text_extented) > .column.col_1 {
        order: 2;
    }

    .autogrid_row:has(> .column.col_5 .ce_image):has(> .column.col_6 .ce_text_extented) > .column.col_6 {
        order: 3;
    }
}
/* 
 * @change:    Vertikales Innenpadding der Artikel auf Mobilgeräten reduziert, um die Abstände zwischen aufeinanderfolgenden Artikeln zu verkleinern
 * @page:      
 * @module:    mod_article
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 767px) {

    #main .mod_article:not(.fullwidth) > .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
  .column[class*="col_"]:not([class*="_m"]), .autogrid_grid .column:not([class*="_m"]) {
    margin-bottom: 15px;
  }
}

/* 
 * @change:    Scribble-Headline im Praxisbild mobil verkleinert und in der Breite begrenzt, damit der Text nicht über das Gesicht im Bild läuft
 * @page:      
 * @module:    ce_scribble_animation
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 767px) {

    .ce_scribble_animation_322 {
        max-width: 68%;
        padding-right: 0;
        font-size: 20px;
        line-height: 1.15;
    }
}

/* 
 * @change:    Innenabstand und Fließtextgröße der Info-Box in der mobilen Ansicht reduziert
 * @page:      
 * @module:    ce_wrap
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 768px) {
    .ce_wrap {
        padding: 30px 24px !important;
    }

    .ce_wrap p {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* 
 * @change:    Schmetterlingsgrafik im Infoelement auf den Leistungs-Unterseiten mobil verkleinert
 * @page:      Leistungen – Unterseiten
 * @module:    ce_image_extended
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 768px) {
    .ce_wrap .ce_image_extended img[src*="schmetterling.svg"] {
        width: 50%;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 
 * @change:    Außenabstand des Info-Wraps auf den Leistungs-Unterseiten mobil oben und unten vergrößert
 * @page:      Leistungen – Unterseiten
 * @module:    ce_wrap
 * @date:      2026-09-08
 * @author:    Steffi Petschnik
 */

@media (max-width: 768px) {
    .ce_wrap {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

/* 
 * @change:    Boxed-Artikel mit Info-Wraps mobil verbreitert und zusätzliches seitliches Container-Padding reduziert
 * @page:      Leistungen – Unterseiten
 * @module:    mod_article / ce_wrap
 * @date:      2026-09-10
 * @author:    Steffi Petschnik
 */

@media (max-width: 768px) {
    #main .mod_article.boxed:has(.ce_wrap) {
        max-width: var(--contentBoxedWidth);
    }

    #main .mod_article.boxed:has(.ce_wrap) > .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}