@charset "UTF-8";
:root {
  --sticky-header-height: 147px; /* Fallback-Wert, an Header-Höhe anpassen.  Wird von JS aktualisiert */
}

@font-face {
    font-family: 'Fira Sans Condensed';
    src: url('/style/font/hinted-subset-FiraSansCondensed-Regular.eot');
    src: url('/style/font/hinted-subset-FiraSansCondensed-Regular.eot?#iefix') format('embedded-opentype'),
        url('/style/font/hinted-subset-FiraSansCondensed-Regular.woff2') format('woff2'),
        url('/style/font/hinted-subset-FiraSansCondensed-Regular.woff') format('woff'),
        url('/style/font/hinted-subset-FiraSansCondensed-Regular.ttf') format('truetype'),
        url('/style/font/hinted-subset-FiraSansCondensed-Regular.svg#FiraSansCondensed-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fira Sans Condensed';
    src: url('/style/font/hinted-subset-FiraSansCondensed-Italic.eot');
    src: url('/style/font/hinted-subset-FiraSansCondensed-Italic.eot?#iefix') format('embedded-opentype'),
        url('/style/font/hinted-subset-FiraSansCondensed-Italic.woff2') format('woff2'),
        url('/style/font/hinted-subset-FiraSansCondensed-Italic.woff') format('woff'),
        url('/style/font/hinted-subset-FiraSansCondensed-Italic.ttf') format('truetype'),
        url('/style/font/hinted-subset-FiraSansCondensed-Italic.svg#FiraSansCondensed-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Fira Sans Condensed';
    src: url('/style/font/hinted-subset-FiraSansCondensed-Medium.eot');
    src: url('/style/font/hinted-subset-FiraSansCondensed-Medium.eot?#iefix') format('embedded-opentype'),
        url('/style/font/hinted-subset-FiraSansCondensed-Medium.woff2') format('woff2'),
        url('/style/font/hinted-subset-FiraSansCondensed-Medium.woff') format('woff'),
        url('/style/font/hinted-subset-FiraSansCondensed-Medium.ttf') format('truetype'),
        url('/style/font/hinted-subset-FiraSansCondensed-Medium.svg#FiraSansCondensed-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans Condensed';
    src: url('/style/font/hinted-subset-FiraSansCondensed-MediumItalic.eot');
    src: url('/style/font/hinted-subset-FiraSansCondensed-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('/style/font/hinted-subset-FiraSansCondensed-MediumItalic.woff2') format('woff2'),
        url('/style/font/hinted-subset-FiraSansCondensed-MediumItalic.woff') format('woff'),
        url('/style/font/hinted-subset-FiraSansCondensed-MediumItalic.ttf') format('truetype'),
        url('/style/font/hinted-subset-FiraSansCondensed-MediumItalic.svg#FiraSansCondensed-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

body {
	-webkit-text-size-adjust: none; /* 100% Oder none für ältere. Autom.-Anpassung Schriftgrösse im Browser deaktiviert: wie im CSS definiert angezeigt */
  	/* -webkit-user-select: none;    text copy inactiv Safari, Chrome, Opera */
  	/* -moz-user-select: none;       text copy inactiv Firefox */
  	/* -ms-user-select: none;        text copy inactiv Internet Explorer/Edge */
  	/* user-select: none;            text copy inactiv Standard */
									/* For object copy use .js */
    font-family: 'Fira Sans Condensed', Arial, Helvetica;
	letter-spacing: 0.2px;
	font-weight: normal;
	font-size: 17px;
	color: #12151B;
    line-height: 180%;
    margin: 0;
    padding: 0;
    overflow-x: auto; /* horizontaler Scroll bei Bedarf anzeigen */
}
p {
	margin: 0;
	padding-bottom: 15px;
}

p a {
	text-decoration: none;
	font-weight: normal;
	color: #935800;
}

p a:hover {
	color: #999;
}
p a span {
	text-decoration: none;
	font-weight: normal;
	color: #935800;
}
p a:hover span {
	color: #999;
}
li {
	font-size: 1em;
}

li a {
	text-decoration: none;
	font-weight: normal;
	color: #935800;
}

li a:hover {
	color: #999;
}

/* breadcrumb start */

nav[aria-label="Breadcrumb"] {
  position: relative;
  top: 5px;
  right: 0;
  width: calc(100% - 25px);
  max-width: 1400px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 8px 0;
  margin: 0 auto;
  text-align: left;
  font-size: 0.75em;

  /* Scrollbalken standard verstecken */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

nav[aria-label="Breadcrumb"]::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

/* Scrollbalken bei Hover */
nav[aria-label="Breadcrumb"]:hover {
  scrollbar-width: thin; /* Firefox */
  -ms-overflow-style: auto; /* IE 10+ */
}

nav[aria-label="Breadcrumb"]:hover::-webkit-scrollbar {
  display: block; /* Chrome, Safari, Edge */
  height: 6px; /* Höhe Balken */
}

nav[aria-label="Breadcrumb"] ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

nav[aria-label="Breadcrumb"] li {
  display: flex;
  align-items: center;
}

nav[aria-label="Breadcrumb"] li:not(:last-child)::after {
  content: '>';
  margin: 0 8px;
  color: #000;
  font-size: inherit;
  font-family: inherit;
}

nav[aria-label="Breadcrumb"] a {
  text-decoration: none;
  color: #12151B;
  font-family: inherit;
}

nav[aria-label="Breadcrumb"] a:hover {
  text-decoration: underline;
}

nav[aria-label="Breadcrumb"] span {
  color: #333;
}

/* breadcrumb end */

.sitemaplogoposition {
	width: 17px;
	vertical-align: -3px;
}

.sitemaplogoposition:hover {
	opacity: 0.6;
	transition: opacity 0.3s ease;
}
.impressum-inhalttitel {
	padding-bottom: 20px;
	font-weight: 500;
	letter-spacing: 0.6px;	
/*	text-decoration: underline;*/
/*	text-underline-offset: 8px; */
}
.art-compblockheadingbalk {
	border-radius: 4px;
	margin: 40px 0 20px;
	font-size: 20px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 140%;
	padding: 10px;
	background-color: #EAEEF4;
	position: relative;
	clear: both;
}
.toptiteltextcompsuppundnetzwerkzwei {
	width: calc(100% - 20px);
	padding: 35px 10px 0;

}
.menutoprightrightr {
	width: 50%;
	float: left;
 	min-width: 280px;
}
@media (max-width: 740px) {
.menutoprightrightr {
	width: 100%;
	float: left;
}
}
.impressum-inhalt {
	padding: 20px 0;
	clear: both;
}
.impressum-inhalt a {
	color: #935800;
	text-decoration: none;
}
.impressum-inhalt a:hover {
	color: #999;
	text-decoration: none;
}
.menutoprightrightr2 { width: 100% !important; float: left; margin: 0; padding: 0; clear: both; }

/* --------------- Dropdownliste ------------*/
.dropdown-navigation {
    position: relative;
    width: 100%;
    /* display: inline-block; */ /* Auskommentiert, falls volle Breite gewünscht ist */
    padding-bottom: 30px; /* Beibehaltung des ursprünglichen Paddings */
    z-index: 999;
}

.dropdown-toggle {
    width: 100%;
    background-color: #ffffff;
    padding: 5px 0;
    text-align: left;
    font-size: inherit;
    border-bottom: thin solid #D8E0E7;
    border-top: thin solid #D8E0E7;
    border-right: none;
    border-left: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
    background-color: #E6E8EC;
}

.dropdown-menu {
    list-style: none; /* Entfernt die Standard-Listensymbole */
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    width: 100%;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: solid 1px #CCC;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s ease-out;
    position: absolute; /* Positioniert Dropdown relativ zu Elternelement */
    left: 0;
    top: calc(100% - 18px); /* Positioniert das Dropdown unter dem Button */
    z-index: 10000;
}

.dropdown-menu.show {
    max-height: 270px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    color: black;
    padding: 10px 10px 10px 5px;
    text-decoration: none;
    display: block;
    line-height: inherit;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #E6E8EC;
	color: black;
}

/* ----------- spcial color start ---------*/ 

p a.colored-green {
    text-decoration: none;
    font-weight: normal;
    color: #007570;
}

p a.colored-green:hover {
    color: #999;
}

p a.colored-green span {
    text-decoration: none;
    font-weight: normal;
    color: #007570;
}

p a.colored-green:hover span {
    color: #999;
}

p a.colored-blue {
    text-decoration: none;
    font-weight: normal;
    color: #33C;
}

p a.colored-blue:hover {
    color: #999;
}

p a.colored-blue span {
    text-decoration: none;
    font-weight: normal;
    color: #33C;
}

p a.colored-blue:hover span {
    color: #999;
}
p a.colored-red {
    text-decoration: none;
    font-weight: normal;
    color: #993333;
}

p a.colored-red:hover {
    color: #999;
}

p a.colored-red span {
    text-decoration: none;
    font-weight: normal;
    color: #993333;
}

p a.colored-red:hover span {
    color: #999; 
}
	
/* ----------- spcial color end ---------*/

.title-h1b-div {
	padding: 40px 10px 20px;
	width: calc(100% - 20px);
}
.title-h1c-div {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 10px;
	  padding-bottom: 40px;
    }

    .bild-text-upper {
      display: inline-flex;
      align-items: flex-start;
      margin-top: 5px;
      white-space: nowrap;
    }
    .upper-text {
      font-size: 17px;
      margin-left: 8px;
      position: relative;
      top: -8px;
    }
/* --------------- neu end ------*/	
.title-h1 {
	color: #12151B;
	font-size: 2.2em;
	letter-spacing: 0.6px;
	line-height: 130%;
    word-break: break-word;
    margin: 0;
	font-weight: normal;
}
.title-h1::first-letter {
	font-size: 1.4em;
	vertical-align: -3px;
}

.title-h1::first-letter {
	font-size: 1.4em;
	vertical-align: -3px;
}

.title-h2 {
	font-size: 1.5em;
	letter-spacing: 0.6px;
	line-height: 130%;
    word-break: break-word;
    padding: 40px 0 20px; /* padding auch im Container (.main > :nth-child(2)) */
    box-sizing: border-box;
    margin-top: 0;
	font-weight: normal;
}
.title-h2::first-letter {
	font-size: 1.5em;
	vertical-align: -3px;
}

.title-h3 {
    font-size: 1.3em;
	letter-spacing: 0.6px;
	line-height: 130%;
    font-weight: normal;
	word-break: break-word;
	
}
.caption1 {
	font-size: 1.5em;
	letter-spacing: 0.6px;
	line-height: 130%;
    word-break: normal;
    padding: 40px 0 20px; /* padding auch im Container (.main > :nth-child(2)) */
    box-sizing: border-box;
    margin-top: 0;
	font-weight: normal;
}
.caption1-gruen {
    color: #363;
    padding: 35px 0 15px;
}

.caption1-rot {
    color: #900;
    padding: 35px 0 15px;
}

.caption1-blau {
    color: #33C;
    padding: 35px 0 15px;
}

.text-unten {
    font-size: 1em;
    color: #12151B;
    text-align: center;
}

/* ----------- h1 part start -------- */

.main1-panel {
    display: flex;
    flex-wrap: wrap; /* Erlaubt das Umbrechen der Elemente */
    width: 100%;
    max-width: 1400px; /* Optional: Maximale Breite des main1-panels */
    gap: 0; /* Abstand zwischen Spalten respektive Panels */
}

.left-panelh1, .right-panelh1 {
    flex: 1; /* Nimmt verfügbaren Platz gleichmäßig ein */
    box-sizing: border-box;
}

.left-panelh1 {
    min-width: 300px;
	padding-left: 10px;
}

.right-panelh1 {
    display: flex;
/*	display: flex;  und  flex-direction: column; = Bilder vertikal untereinander anordnen, row; nebeneinander = standard */
    justify-content: center; /* flex-start;  Bild nach oben ausrichten */
    align-items: center;
 /*    min-width: 300px;  9.7.25 */
	padding-left: 0;
}

.right-panelh1 img {
    max-width: 600px;
    max-height: 400px;
    display: block; /* Entfernt zusätzlichen Platz unter dem Bild */
	margin-top: -40px;
}

@media (max-width: 1100px) {
    .left-panelh1, .right-panelh1 {
        flex-basis: 0; /* Setzt die Basis flexibler, um gleichmäßige Verkleinerung zu ermöglichen */
        min-width: unset; /* Setzt min-width zurück, um Flexibilität zu ermöglichen */
    }

    .left-panelh1 {
        flex-grow: 1; /* Erlaubt Textbereich, sich zu vergrößern und zu verkleinern */
    }

    .right-panelh1 {
        flex-grow: 1; /* Erlaubt Bildbereich, sich zu vergrößern und zu verkleinern */
    }

    .right-panelh1 img {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 850px) {
    .main1-panel {
        flex-direction: column; /* Stapelt vertikal */
    }

    .left-panelh1, .right-panelh1 {
        width: 100%;
    }
	.right-panelh1 img {
		margin-top: 0;
    }
	.imgbackgroundh1 {
        width: 100%;
        margin-top: 0;
        padding: 30px 0;
        background-image: linear-gradient(rgba(114,130,154,1) 0,rgba(245,246,254,0.0) 100%);
        display: flex; /* Flex-Container */
        justify-content: center;
    }
}
/* ----------- h1 part end -------- */

/* ----------- accordion start -------- */
.zwei-panels {
    display: flex;
    flex-wrap: wrap; /* Erlaubt das Umbrechen der Elemente */
    width: 100%;
    max-width: 1400px; /* Optional: Maximale Breite des main1-panels */
    gap: 0; /* Abstand zwischen Spalten respektive Panels */
    align-items: stretch; /* Stellt sicher, dass die Panels bei nebeneinanderliegender Anordnung die gleiche Höhe haben */
}

.zwei-panel-left, .zwei-panel-right {
    flex: 1; /* Nimmt verfügbaren Platz gleichmäßig ein */
    box-sizing: border-box;
    /* Standard für nebeneinanderliegendes Layout (größere Bildschirme) */
    display: flex; /* Macht sie selbst zu Flex-Containern */
    flex-direction: column; /* Inhalt vertikal ausrichten */
    justify-content: center; /* Inhalt vertikal innerhalb des Panels zentrieren */
    align-items: center; /* Inhalt horizontal innerhalb des Panels zentrieren (für Text und Bild) */
    text-align: center; /* Text zentrieren, falls er nicht die volle Breite einnimmt */
    padding: 10px; /* Fügt etwas Polsterung hinzu */
}

.zwei-panel-left {
    min-width: 300px;
}

.zwei-panel-right {
    min-width: 300px;
}
.zwei-panel-right img {
    max-height: 400px;
}
@media (min-width: 1101px) {
    .zwei-panel-right img {
        height: 300px; /* Höhe automatisch, um Proportionen zu erhalten */
    }
}
@media (max-width: 1100px) {
    .zwei-panel-left, .zwei-panel-right {
        flex-basis: 0; /* Setzt die Basis flexibler, um gleichmäßige Verkleinerung zu ermöglichen */
        min-width: unset; /* Setzt min-width zurück, um Flexibilität zu ermöglichen */
    }

    .zwei-panel-left {
        flex-grow: 1; /* Erlaubt dem Textbereich, sich zu vergrößern und zu verkleinern */
    }

    .zwei-panel-right {
        flex-grow: 1; /* Erlaubt dem Bildbereich, sich zu vergrößern und zu verkleinern */
    }

    .zwei-panel-right img {
        max-height: 300px;
    }
}

@media (max-width: 850px) {
    .zwei-panels {
        flex-direction: column; /* Stapelt Elemente vertikal */
        align-items: stretch; /* Stellt sicher, dass sie im gestapelten Zustand die volle Breite einnehmen */
    }

    .zwei-panel-left, .zwei-panel-right {
        width: 100%;
        flex-grow: 0; /* Höhe soll sich dem Inhalt anpassen, wenn gestapelt */
        flex-shrink: 0; /* Verhindert das Schrumpfen */
        flex-basis: auto; /* Höhe soll sich dem Inhalt anpassen, wenn gestapelt */
        /* Vertikale Ausrichtung für gestapeltes Layout zurücksetzen, horizontale Zentrierung beibehalten */
        justify-content: flex-start; /* Inhalt oben ausrichten */
        align-items: center; /* Inhalt horizontal innerhalb des Panels zentrieren */
        text-align: center; /* Text horizontal zentrieren */
        padding: 30px 0 0; /* Fügt etwas Polsterung hinzu */
    }
    .zwei-panel-left p, .zwei-panel-right p {
		padding-left: 10px;
		padding-right: 10px;
    }
    .zwei-panel-image {
        width: 100%;
        margin-top: 0;
        padding: 30px 0;
        background-image: linear-gradient(rgba(114,130,154,0.7) 0,rgba(255,255,255,0) 60%);
        display: flex; /* Flex-Container */
        justify-content: center; /* Bild horizontal zentrieren */
        align-items: center; /* Bild vertikal zentrieren (falls nötig, aber Höhe ist inhaltsbasiert) */
    }
    .zwei-panel-right img {
		width: auto;
        max-height: 250px;
    }
}
/* -----------  accordion end -------- */

/* --------- smal image --------------*/

.logomanufacture4rowspart {
	width: 100%; 
	float: left; 
	padding-bottom: 35px;
	margin-right: 30px;
}

.logomanufacture4rows {
	width: 25%; 
	float: left;
	height: 70px;
}
@media (max-width: 1000px) {
	.logomanufacture4rows {
	width: 33%; 
}
}
@media (max-width: 800px) {
	.logomanufacture4rows {
	width: 50%; 
}
}
@media (max-width: 600px) {
	.logomanufacture4rows {
	width: 50%;
}
	.logomanufacture4rows img { 
	max-width: 200px;
}
}
@media (max-width: 430px) {
	.logomanufacture4rows {
	width: 100%;
}
	.logomanufacture4rows img { 
	max-width: 300px;
}
}
.logoimages2rowspart {
	max-width: 400px; 
	float: left; 
	min-width: 160px;
	padding-bottom: 35px;
}
.logoimages2rows {
	width: 50%; 
	float: left; 
	min-width: 160px;
}
.logoimages2rows img {
	width: 150px;
}
.logoimages4rows {
	width: 25%; 
	float: left; 
	min-width: 160px;
}
.logoimages4rows img {
	width: 150px;
}

.logoimages-cms {
	width: 8%;
	min-width: 150px;
	float: left;
	padding-left: 10px;
}
.logoimages-cms img {
	width: 20px;

}
/* ----------- 2 teilig start -------- */

.twopanelh2 {
	padding: 0 10px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

.twopanelh2 ul {
  	list-style: url(../images/grafik/postbullet-wgrau.jpg);
  	padding: 0;
  	margin: 0;
  	line-height: 180%;
}

.twopanelh2 ul li {
    margin-bottom: 8px;
	padding-left: 15px;
	margin-left: 20px;
}
.twopanelh2 ul.colored-green li,
.twopanelh2 ul.colored-red li,
.twopanelh2 ul.colored-blue li {
    margin-bottom: 8px;
    padding-left: 15px;
    margin-left: 20px;
}
.twopanelh2 ul.colored-green {
    list-style: url(../images/grafik/postbullets-green.png);
    padding: 0;
    margin: 0;
    line-height: 180%;
}

.twopanelh2 ul.colored-red {
    list-style: url(../images/grafik/postbullets-red.png);
    padding: 0;
    margin: 0;
    line-height: 180%;
}
.twopanelh2 ul.colored-blue {
    list-style: url(../images/grafik/postbullets-blue.png);
    padding: 0;
    margin: 0;
    line-height: 180%;
}
.twopanelh2 ul.colored-green li a {
    color: #007570;
    text-decoration: none;
}

.twopanelh2 ul.colored-green li a:hover {
    color: #999;
    text-decoration: underline;
}
.twopanelh2 ul.colored-blue li a {
    color: #0033FF;
    text-decoration: none;
}

.twopanelh2 ul.colored-blue li a:hover {
    color: #999;
    text-decoration: underline;
}
.twopanelh2 ul.colored-red li a {
    color: #d32f2f;
    text-decoration: none;
}

.twopanelh2 ul.colored-red li a:hover {
    color: #999;
    text-decoration: underline;
}

.buttonframe-green {
	border: 5px solid #00918B;
	color: #007570;
 	border-radius: 14px;
	margin: 0;
	padding: 6px 13px;
	line-height: 350%;
}

.buttonframe-green:hover {
	border: 5px solid #999;
}
.buttonframe-blue {
	border: 5px solid #285DBF;
	color: #285DBF;
 	border-radius: 14px;
	margin: 0;
	padding: 6px 13px;
	line-height: 350%;
}

.buttonframe-blue:hover {
	border: 5px solid #999;
}
.buttonframe-red {
	border: 5px solid #993333;
	color: #993333;
 	border-radius: 14px;
	margin: 0;
	padding: 6px 13px;
	line-height: 350%;
}

.buttonframe-red:hover {
	border: 5px solid #999;
}
.symbollleftabove {
	width: 60px;
	padding: 7px 0 20px;
	margin: 0;
}
.symboltextposition {
	vertical-align: 40px;
	padding-left: 10px;
	font-size: 130%;
}

.twopanelh2-content {
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 20px;
	clear: both;
}
.image02 {
	float: left;
	top: -5px;
	padding: 0 60px 30px 0;
	clear: both;
	display: block;
	width: 550px;
}
.list-container2 {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
}
.list-column2 {
      width: 50%;
      box-sizing: border-box;
      padding: 0;
}

@media (max-width: 630px) {
      .list-column2 {
        width: 100%;
      }
    }


.list1-li {
	width: 50%;
	float: left;
	background: none;
}

.list1-li li {
	padding-bottom: 15px;
	padding-right: 10px;
}

@media all and (max-width: 630px) {
	.list1-li {
		width: 100%;
		float: left;
	}
	.image02 {
		float: none;
		margin: 0 auto;
		padding: 0 0 35px;
		width: calc(100% - 50px);
		max-width: 500px;
	}
}
@media all and (max-width: 400px) {
	.image02 {
		width: calc(100% - 50px);
	}
}


/* --------- 2 teilig END  ----------------------- */
/* --------- 4 teilig with frames START ------------- */
@media all and (max-width: 550px) {
	.picture4-column {
		width: 100%;
	}
}
@media (min-width: 551px) {
	.picture4-column {
		width: 49.5%;
	}
}
@media (min-width: 850px) {
	.picture4-column {
		width: 24.6%;
	}
}

.picture4-column {
	margin: 0;
	min-width: 120px;
	float: left;
	border: solid 1px #E9E9E9;
	text-align: center;
	font-size: 1em;
	text-transform: none;
	padding-top: 15px;
	padding-bottom: 20px;
}

.picture4-column figure {
    margin: 0;
    padding: 0;
	justify-content: center;
}

.picture4-column figcaption {
	padding: 5px 10px 0;
}

.picture4-image {
	max-width: 240px;
	width: 90%;
	text-align: center;
}

.picture4-title {
	text-align: center;
	font-size: 1.2em;
	font-weight: normal;
	text-transform: none;
	text-transform: uppercase;
	padding: 20px;
}

.picture4-wrapper {
	padding: 15px;
	clear: both;
	margin-left: auto;
	margin-right: auto;
}

/* Für Titel (p.picture4-title) */
.picture4-wrapper .picture4-title {
    color: #12151B;
}

.picture4-wrapper figcaption,
.picture4-wrapper a {
    color: #12151B;
}

.picture4-wrapper a:hover figcaption {
    color: #999;
}

.bottomtext02 {
	padding: 30px 10px;
	margin: 0;
	clear: both;
	font-size: 1em;
	text-align: center;
}

/* ----------4 teilig with frames END ----------- */

.bottomtext {
	padding: 30px 0;
	margin: 0;
	clear: both;
	font-size: 1em;
}

.list-part1 {
	clear: both;
	padding: 0 0 20px;
	display: inline-block;
}

.symbolleftabove {
    width: 60px;
    padding: 7px 0 0 0;
    margin: 0;
}

/* Container für fixierte Elemente */
.sticky-header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* Wichtig, damit Inhalt nicht durchscheint */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Schatten */
}

.top-bar {
    display: flex;
    flex-direction: row; /* Standard für Desktop */
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    background-color: white; /* Sicherstellen, dass die Top-Bar ihren eigenen Hintergrund hat */
}

.top-bar-column {
    padding: 10px 20px 10px 0; /* top logo abstand mobile button */
}

@media (max-width: 530px) {
    .logotopdimension {
        width: 100%;
    }
	.image-container {
        text-align: left;
		margin-right: 70px;
	}
}

@media (min-width: 531px) {
    .logotopdimension {
        width: 400px;
    }
	.image-container {
		text-align: left;
        margin-right: 10px;
	}
}

@media (max-width: 849px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 10px;
        padding-right: 10px;
		border-bottom: solid #999 1px;
		min-height: 110px;
    }

    .top-bar-merged {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        padding-top: 10px;
        padding-bottom: 20px;
        box-sizing: border-box;
        justify-content: flex-start; /* Links ausrichten ausrichtung */
    }

    .top-bar-column.links {
        margin-left: 0;
    }
}

@media (min-width: 501px) {
    .top-bar-merged {
        padding-top: 10px;
        padding-bottom: 15px;
    }
}

@media (max-width: 500px) {
    .logotopdimension {
        width: 100%;
    }

    .top-bar-merged {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 850px) {
    .top-bar-merged {
        display: flex;
        flex-direction: row;
        margin-left: auto; /* Schiebt es nach rechts */
        margin-top: 0;
        padding-top: 20px;
        padding-right: 0;
    }
}

.top-bar-column.links {
    text-align: center;
    white-space: nowrap;
    display: flex; /* Verwende Flexbox, um Spans nebeneinander anzuordnen */
    align-items: center;
    justify-content: center;
}

.top-bar-column.links span {
    display: flex; /* Flexbox für den Span, damit der Link und der Separator korrekt ausgerichtet sind */
    align-items: center;
}

.top-bar-column.links a {
    text-decoration: none;
    color: #12151B;
    padding: 0;
    transition: color 0.5s ease;
}

.top-bar-column.links a:hover {
    text-decoration: none;
    color: #999;
}

.top-bar-column.links span:not(:last-child)::after {
    content: "|";
    color: #999;
    margin: 0 15px;
    font-size: 1em;
}

@media (max-width: 500px) {
    .top-bar-column.links {
        flex-direction: row; /* Elemente in einer Reihe lassen */
        overflow-x: auto; /* Horizontal Scrollbalken wenn nötig */
        padding: 10px 0;
        justify-content: flex-start; /* Links ausrichten */
    }

    .top-bar-column.links span {
        flex-shrink: 0; /* Verhindert, dass Spans schrumpfen */
    }

    .top-bar-column.links a {
        padding: 0;
    }

    .top-bar-column.links span:not(:last-child)::after {
        content: "|";
        margin: 0 7px;
    }
}

/* Header innerhalb des sticky Containers */
header {
    background-color: #62728A;
    display: flex; /* Wichtig für Menü-Zentrierung */
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.desktop-menu {
    display: none;
    padding: 10px 20px;
    max-width: 1400px; /* Zentriert Menü effektiv */
    margin: 0 auto;
    width: fit-content; /* Lässt Menü nur so breit sein wie nötig */
}

@media (min-width: 850px) {
    .desktop-menu {
        display: block; /* Anzeigen  */
    }
}

.desktop-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-menu .menu-item {
    position: relative;
    display: flex; /* Anordnen Links Separators nebeneinander */
    align-items: center;
}

.desktop-menu .menu-item:not(:last-child)::after {
    content: "|";
    color: #fff;
    margin: 0 15px;
    font-size: 1.2em;
    /* Kein display: flex; hier, da es den Separator in eine neue Zeile zwingen würde */
    transition: none; /* Keine Transition, damit Farbe nicht beim Hovern mitwechselt */
}

.desktop-menu .menu-item a {
    display: block;
    padding: 5px 15px;
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.desktop-menu .menu-item a:hover {
    color: #333;
}

.desktop-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1010; /* über sticky container */
    /* display: none; */ /* durch opacity/visibility ersetzt */
    min-width: 100%;
    box-sizing: border-box;
	opacity: 0; /* Standard unsichtbar - Für transition einbendeffekt */
    visibility: hidden; /* Standard nicht interaktiv - Für transition einbendeffekt  */
    transition: opacity 0.4s ease-out, visibility 0.1s ease-out; /* Standard nicht interaktiv - Für transition einbendeffekt  */
}

.desktop-menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.desktop-menu .sub-menu li a {
    padding: 15px 40px;
    display: block;
    white-space: nowrap;
    box-sizing: border-box;
    color: #333;
}

.desktop-menu .sub-menu li a:hover {
    background-color: #D0D6DD;
}

.mobile-menu-button {
    display: block; /* Standard anzeigen, per Media Query ausgeblendet */
    cursor: pointer;
    padding: 10px;
    position: fixed; /*  absolute; für relativ zum nächsten positionierten Vorfahren (header) */
    top: 15px;
    /* transform: translateY(-50%);   nur benötigt wenn position absolute ist. Für genaue vertikale Zentrierung */
    right: 20px;
    z-index: 1200; /* Über Menü, aber unter offenen Menü-Overlay */
}

@media (min-width: 850px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu-button .bar {
    width: 30px;
    height: 0;
    margin: 5px 0;
    transition: 0.4s;
	border: #333 solid 2px;
}

.mobile-menu-button.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-button.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Startet ausserhalb des Bildschirms */
    width: auto;
    max-width: 80%;
    height: 100%;
    background-color: #62728A;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    z-index: 1020; /* Über sticky container, aber unter Button */
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
}

.mobile-menu.open {
    right: 0;
    z-index: 1040;
}

.mobile-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .menu-item {
    border-bottom: 1px solid #ddd;
}

.mobile-menu .menu-item:last-child {
    border-bottom: none;
}

.mobile-menu .menu-item > a {
    display: block;
    padding: 15px 40px;
	font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    box-sizing: border-box;
}

.mobile-menu .menu-item > a:hover {
    background-color: #8392A7;
}

.mobile-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #eee;
    display: none;
    box-sizing: border-box;
}

.mobile-menu .sub-menu.open {
    display: block;
}

.mobile-menu .sub-menu li a {
    display: block;
    padding: 15px 40px;
    text-decoration: none;
    color: #555;
    white-space: nowrap;
    box-sizing: border-box;
}

.mobile-menu .sub-menu li a:hover {
    background-color: #D0D6DD;
}

.desktop-menu .sub-menu .has-sub-menu {
    position: relative;
}

.desktop-menu .sub-menu .has-sub-menu:hover .sub-sub-menu {
    display: block;
}

.desktop-menu .sub-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #F3F4F5;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1011; /* Über ersten Submenu */
    display: none;
    min-width: 100%;
    box-sizing: border-box;
}

.desktop-menu .sub-sub-menu li a {
    padding: 15px 40px;
    display: block;
    white-space: nowrap;
    box-sizing: border-box;
}

.desktop-menu .sub-sub-menu li a:hover {
    background-color: #D0D6DD;
}

/* Mobiles Menu mit zweitem Untermenu */
.mobile-menu .has-sub-menu > a::after { /* Gilt für alle Ebenen */
    content: '+';
    float: right;
    margin-left: 10px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out; /* Für Rotation */
}
/* Ändert '+' zu '-' wenn direktes Submenu offen */
.mobile-menu .has-sub-menu > a:has(+ .open)::after {
    /*funktioniert in modernen Browsern, prüft, ob das NÄCHSTE Geschwister .open hat */
    content: '-'; /* Oder transformiere das Plus */
    /* transform: rotate(45deg); */
}
/* Alternative, falls :has nicht unterstützt wird, braucht JS zum Hinzufügen einer Klasse zum Link selbst */
.mobile-menu .has-sub-menu > a.open::after {
    content: '-';
    /* transform: rotate(45deg); */
}

body.mobile-view header {
    justify-content: flex-end; /* Richtet Button rechts aus */
    padding-right: 60px;
    position: relative;
    min-height: 0; /* Mindesthöhe für Header Mobile. Wird als Balken relativ zum Kontaktmenu unterhalb angezeigt und wird mobile nicht benötigt */
}

body.mobile-view .desktop-menu {
    display: none;
}

@media (min-width: 1400px) {
    header {
        background-color: #62728A;
        display: flex;
        justify-content: center;
        padding: 0;
        min-height: 0;
    }

    .desktop-menu {
        display: block;
    }
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 849px) {
    header {
        padding: 0;
        height: 0;
    }
}

main {
    display: block;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
	padding-bottom: 30px;
    overflow-x: auto;
    padding-top: var(--sticky-header-height, 130px); /* ", 130px" = als Fallback. Ohne ", 130px" = Nur mit JS gesteuert */
}
/* Padding-Top für den fixierten Header HINZUFÜGEN */

/* Falls .main2-container direkt nach main kommt und auch gepadded werden muss */
/* .main2-container { padding-top: 20px; } */

.main1-container {
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	background-image: none;

	background: transparent;
	text-align: center;
}
.main3-container {
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	background-image: none;
	background: transparent;
}

.main1-container ul {
  	list-style: url(../images/grafik/postbullets-green.png);
  	padding: 0;
  	margin: 0;
  	line-height: 180%;
}

.main1-container ul li {
    margin-bottom: 8px;
	padding-left: 15px;
	margin-left: 20px;
}

@media (max-width: 1399px) {
    main {
        width: 100%;
        max-width: none; /* Entferne die maximale Breite, um responsive zu sein */
        padding-left: 0;
        padding-right: 0;
        padding-top: var(--sticky-header-height);
    }
}

.columnwrapper2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Spalten Desktop */
    gap: 20px;
    box-sizing: border-box;
}

.columnwrapper2-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
	padding-bottom: 20px;
	padding-top: 15px;
	background-color: rgba(245, 248, 250, 1); /* #F5F8FA mit 20% Deckkraft */
	border-radius: 2px;
}

.columnwrapper2-title {
    margin-bottom: 15px;
    color: #12151B;
	font-weight: normal;
	font-size: 1.3em;
}

.columnwrapper2-image {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.columnwrapper2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.columnwrapper2 ul li {
    margin-bottom: 8px;
}

.columnwrapper2 ul li a {
    color: #935800;
	text-decoration: none;
}

.columnwrapper2 ul li a:hover {
    color: #999;
}
@media (max-width: 1399px) {
    .columnwrapper2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .columnwrapper2 {
        grid-template-columns: 1fr; /* 1 Spalte Mobile */
    }
    .columnwrapper2-column:last-child {
        margin-bottom: 0;
    }
}

.columnwrapper1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}


@media (max-width: 600px) {
    .columnwrapper1-column {
        margin-bottom: 30px;
    }

    .columnwrapper1-column:last-child {
        margin-bottom: 0;
    }
}

.columnwrapper1-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	padding: 25px 0;
	margin-top: 30px;
    box-sizing: border-box;
	background-color: #F5F8FA;
	border-radius: 2px;
}

.columnwrapper1-title {
    margin-bottom: 15px;
    color: #12151B;
	font-weight: normal;
	font-size: 1.3em;
}

.columnwrapper1-image {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.columnwrapper1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.columnwrapper1 ul li {
    margin-bottom: 8px;
}

.columnwrapper1 ul li a {
    color: #935800;
	text-decoration: none;
}

.columnwrapper1 ul li a:hover {
    color: #999;
}

.columnwrapper22 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten Desktop */
    gap: 20px;
    box-sizing: border-box;
}

.columnwrapper22-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;	
	padding: 15px 10px 20px;
	margin-top: 20px;
	background-color: rgba(245, 248, 250, 1); /* #F5F8FA mit 20% Deckkraft */
	border-radius: 2px;
}

.columnwrapper22-title {
    margin-bottom: 15px;
    color: #12151B;
	font-weight: normal;
	font-size: 1.3em;
}

.columnwrapper22-image {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.columnwrapper22 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.columnwrapper22 ul li {
    margin-bottom: 8px;
}

.columnwrapper22 ul li a {
    color: #935800;
	text-decoration: none;
}

.columnwrapper22 ul li a:hover {
    color: #999;
}
@media (max-width: 1399px) {
    .columnwrapper22 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .columnwrapper22 {
        grid-template-columns: 1fr;
    }
    .columnwrapper22-column:last-child {
        margin-bottom: 0;
		margin-top: 0;
    }
}

footer {
    background-color: #62728A;
    border-top: 1px solid #eee;
    padding: 35px 0 10px;
    box-sizing: border-box;
    margin-top: 0;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-sizing: border-box;
	color: #fff;
}

@media (max-width: 1399px) {
    .footer-wrapper {
        padding-left: 10px;
        padding-right: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-column a {
    text-decoration: none;
}
.footer-column:hover {
	background: #7A89A0;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.footer-column:hover .footer-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.footer-title {
    margin-bottom: 15px;
	font-size: 1.2em;
    color: #fff;
	font-weight: normal;
	display: block;      
}

.footer-links {
	margin: 20px 10px 0;
   	padding-top: 20px;
	padding-bottom: 20px;
   	border-top: 1px solid #ddd;
    text-align: center;
   	color: #fff;
	text-transform: uppercase; 

}
.footer-links ul {
	text-align: center;
	padding: 0;
	margin: 0;
	color: #fff;
	display: flex;
	list-style: none;
	justify-content: center;
    gap: 10px;
}
@media (max-width: 400px) {
.footer-links ul {
	display: block;
}
}
.footer-links ul li a {
	text-decoration: none;
	line-height: 200%;
	color: #fff;
}
.footer-links ul li a:hover {
	text-decoration: none;
	color: #333;
}

.footer-image {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.footer-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-wrapper ul li {
    margin-bottom: 8px;
}

.footer-wrapper ul li a {
    color: #fff;
	text-decoration: none;
}

.footer-wrapper ul li a:hover {
    color: #333;
}

.copyright-section {
  	margin: 30px 10px 0;
   	padding-top: 40px;
	padding-bottom: 25px;
   	border-top: 1px solid #ddd;
    text-align: center;
   	color: #fff;
}

.copyright-section a {
    color: #fff;
    text-decoration: none;
}

.copyright-section a:hover {
    color: #333;
}

.copyright-section span {
    color: #fff;
    text-decoration: none;
}

.copyright-section a span {
    color: #fff;
    text-decoration: none;
}

.copyright-section a:hover span {
    color: #333;
}
    .copyright-section-responsive {
      display: inline;
    }

    .group {
      display: inline;
    }

    .separator {
      display: inline;
    }

    @media (max-width: 800px) {
      .break-dash-4 {
        display: block;
        margin-top: 0.3em;
      }
      .break-dash-4 .separator {
        display: none;
      }
    }

    @media (max-width: 700px) {
      .break-dash-3 {
        display: block;
        margin-top: 0.3em;
      }
      .break-dash-3 .separator {
        display: none;
      }
    }

    @media (max-width: 500px) {
      .break-dash-2 {
        display: block;
        margin-top: 0.3em;
      }
      .break-dash-2 .separator {
        display: none;
      }
    }
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    background-color: #000;
    color: white;
    border: 2px solid #000;
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    text-align: center;
    /* line-height: 50px;   vertical position pfeil */
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

#scrollToTopBtn:hover {
    background-color: #000000;
    opacity: 0.8;
}

.main-menu a.active {
    background-color: #D0D6DD;
}

.mobile-menu a.active {
    background-color: #D0D6DD;
    font-weight: bold;
}

.download-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.download-btn {
    width: 250px;
    height: 70px;
	border: solid 6px #935800;
    background: #fff;
    color: #12151B;
    text-decoration: none;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 18px;
    padding: 0 25px;
    margin-bottom: 30px;
    margin-top: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .download-btn img {
        width: 60px;
        height: 60px;
        margin-right: 30px;
    }

    .download-btn:hover {
        background: #A6B0BF;
        transform: translateY(-3px);
		border: solid 6px #A6B0BF;
    }

@media (max-width: 750px) {
    .download-btn {
        width: 100%;
        max-width: 250px;
    }
}

.container-map-balken {
      width: calc(100% - 20px);
      height: 30px;
	  background-color: black;
	  color: #CCC;
	  font-size: 70%;
	  padding: 10px;
    }
.container-mapframe {
      width: 100%;
      height: 370px;
      position: relative;
      overflow: hidden;
      background-color: #f0f0f0; /* Optionaler Hintergrund */
    }

.container-mapframe-background {
      position: absolute;
	  top: calc(50% + 85px);
      left: 50%;
	  transform: translate(-50%, -50%);
      width: 1431px;
      height: 569px;
    
      background-image: url('/images/office/map.jpg');
      background-size: cover;
      background-repeat: no-repeat;
    }

/* --------------- Map JPG  Bild-Modal  START  ----- */

.image-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto; /* Zentriert vertikal, etwas Abstand oben */
    padding: 0;
    border: 1px solid #888;
    width: auto;
    max-width: 1200px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    display: flex;
    flex-direction: column;
}

/* Schliess- Druck-Button */

.modal-buttons {
    display: flex;
    justify-content: space-between; /* Druckbutton links, Schliessbutton rechts. */
    align-items: center;
    padding: 10px;
    background-color: #fefefe;
    border-bottom: 1px solid #eee;
}
/* Druck-Button */
.modal-btn {
    background: #A35F21;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: 0.6px;
    transition: background-color 0.3s;
}

.modal-btn:hover {
    background-color: #999;
}

.modal-close-btn {
    background: none;
    color: #000;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    border: none;
    padding: 0 5px;
    margin-left: 10px;
}

.modal-close-btn:hover {
    color: #999;
}

/* FensterHöhe der Bildhöhe anpasst, Breite max 100% des Containers */
.image-modal-img {
    display: block;
    width: 100%;
    height: auto; /* Höhe proportional an Bildbreite */
}

@media print {
	/* 0. Rand u Ausricht */
    @page {
		size: landscape; /* querformat */
        margin: 0; 
    }
    /* 1. Alles ausblenden, was nicht #imageModal ist */
    body.print-image-only > *:not(#imageModal) {
        display: none !important;
    }

    /* 2. #imageModal für Druck optimieren */
    body.print-image-only #imageModal {
        display: block !important; 
        position: absolute !important; /* dass es ganz oben ist */
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        overflow: visible;
        background: none;
    }

    /* 3. Inhalt optimieren */
    body.print-image-only .image-modal-content {
        /* Entfernt Layout-Stile, die auf Bildschirm gut, aber beim Druck stören */
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        max-width: 100% !important;
    }
    
    /* 4. Buttons Schließen u Drucken im Druckmodus ausblenden */
    body.print-image-only .modal-buttons {
        display: none !important;
    }

    /* 5. Optimierungen für Bild */
    body.print-image-only .image-modal-img {
        max-width: 100%;
        height: auto;
    }
}
/* ------------Map JPG Bild-Modal ---- end--------------- */

.logo-square {
	text-align: center;
	padding-bottom: 20px;
}
.logo-square img {
	width: 200px;
	height: 200px;
	border: solid 1px #fff;
}

/* ----------------- dropdon not overwritable START ------------------ */ 
    .dropdown-nav-noteditable {
      height: 30px;
      overflow: hidden;
      border-top: 1px solid #ccc;
	  border-bottom: 1px solid #ccc;
      transition: height 0.3s ease;
      background-color: #f8f8f8;
    }

    .dropdown-nav-noteditable.open {
      height: 220px;
    }

    .dropdown-nav-noteditable-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 10px;
      cursor: pointer;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .dropdown-nav-noteditable.open .arrow {
      transform: rotate(180deg);
    }

    .dropdown-nav-noteditable-content {
      max-height: 190px;
      overflow-y: auto;
    }

    .dropdown-nav-noteditable-content ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .dropdown-nav-noteditable-content li a {
      display: block;
      height: 50px;
      line-height: 50px;
      padding: 0 10px;
      text-decoration: none;
      color: #333;
      border-top: 1px solid #ddd;
      background-color: #fff;
    }

    .dropdown-nav-noteditable-content li a:hover,
    .dropdown-nav-noteditable-content li a:focus {
      background-color: #d0e0f0;
    }