@charset "utf-8";
/* CSS Document */
@font-face {
	font-family: "Barlow";
	src: url("../../../fonts/Barlow/Barlow-Regular.ttf");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "BarlowSemiBold";
	src: url("../../../fonts/Barlow/Barlow-SemiBold.ttf");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Nagel';
	src: url('../../../fonts/Nagel/Nagel_Regular.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Nagel Medium';
	src: url('../../../fonts/Nagel/Nagel_Medium.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
:root
{
	/*** sizes ***/
	--max-content-width: 1200px;
	--default-font-size: 16px;
	--headerHeight: 6rem;
	--logoHeight: calc(var(--headerHeight) - 1.5rem);
	--teaserHeight: calc(100vh - 5rem - 6rem);
	--teaserWidth: var(--max-content-width);
	--teaserTop: var(--headerHeight);
	--teaserRadius: 2rem;
	--boxBorderRadius: 1rem;
	--boxPadding: 2rem;
	--contentWidth: min(98vw, 1320px);

	/*** colours ***/
	--pmBlue: #0E6FFE;
	--headerBackground: white;
	--primaryclr: #0F3979;
	--blueBG: #0E6FFE;
	--shadowclr: rgb(200,200,200);
	--scBlue: #5AB4FF;
	--pmRed: #cd3f30;
	--pmGrey: #EAEAEF;
	
	/*** fonts ***/
	--defaultFont: Barlow, Arial, Helvetica, sans-serif;
	--headerFont: "Nagel", Arial, Helvetica, sans-serif;
	--headerLightFont: "Nagel", Arial, Helvetica, sans-serif;
	--boldFont: BarlowSemiBold, Arial, Helvetica, sans-serif;
	--headerFontSize2: 3rem;
}

html
{
	font-size: var(--default-font-size);
	letter-spacing: 1px;
}

html *
{
	margin: 0;
	padding: 0;
}

body
{
	font-family: var(--defaultFont);
}

#page
{
	color: #606062;
	font-weight: 400;
	padding-top: 0;
}

#page.indexPage
{
	--headerBackground: rgba(255,255,255,0.9);
	--teaserWidth: 99vw;
	--teaserTop: calc(var(--headerHeight) + 1rem);
	--teaserHeight: calc(100vh - 10rem);
}

#page.scrolled-down
{
	--headerBackground: white;
}

/*** general formatting ***/

#outerWrapper
{
	width: 100vw;
	overflow: clip;
}

table th
{
	text-align: left;
}

.htmlarea-content-body table
{
	font-size: inherit;
}

a, a:visited
{
	color: var(--pmRed);
	text-decoration: none;
	font-weight: 400;
	
	transition: all 1s;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
}
.productOverviewPage a, .productOverviewPage a:visited
{
	color: var(--pmBlue);
}
a:hover
{
	text-decoration: none;
	color: var(--pmBlue);
}
.productOverviewPage a:hover
{
	color: var(--pmRed);
}

a img
{
	text-decoration: none;
	border: none;
}

.image-caption
{
	margin-top: 1rem;
	color: var(--pmBlue);
	font-size: 1.5rem;
}

.ce-gallery img
{
	border-radius: var(--boxBorderRadius);
}

h1,h2,h3
{
	/* text-transform: uppercase; */
	word-wrap: break-word;
}

.teaserText header h1
{
	font-size: clamp(1.4rem, 3.5vw + 0.8rem, 2.8rem);
}

main strong
{
	font-family: var(--boldFont);
}

h1,h2,h3
{
	font-weight: 400;
	color: var(--pmBlue);
	text-wrap: balance;
}

h1
{
	margin-bottom: 0.9em;
}

body:not(.indexPage) h1
{
	margin-bottom: unset;
}

article.contentItem h1.csc-firstHeader
{
	margin-top: 1em;
	margin-bottom: 1em;
}

h2
{
	margin-bottom: 1px;
	margin-top: 0.5em;
}

.contentItemheader h2
{
	margin-bottom: 0;
}

h1,
h2
{
	font-size: clamp(1.3em, 3vw + 0.8rem, 2.2rem);
	letter-spacing: 2px;
}

h2 em
{
	font-style: normal;
	color: black;
}

h3
{
	font-size: 1.2em;
	margin-bottom: 1px;
	margin-top: 0.5em;
}

p, ul, ol
{
	padding-top: 3px;
	padding-bottom: 1rem;
}

#mainContent p
{
	line-height: 140%;
}

ul,ol
{
	margin-left: 12px;
	padding-left: 5px;
}

ul
{
	list-style: square;
}

ul ul
{
	list-style: disc;
}

ul.menu,
ul.csc-uploads
{
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.twoCol,
ol.twoCol
{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}

.twoCol > li
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-block: var(--boxPadding);
	padding-inline: var(--boxPadding);
	background-color: #EaEAEF;
	border-radius: 1rem;
	text-align: center;
}

#outerWrapper,
#footerWrapper
{
	max-width: 100vw;
	height: auto;
	overflow: clip;
}

#footerWrapper,
#headerWrapper
{
	display: grid;
	grid-template-columns: auto min(var(--contentWidth),100vw) auto;
}

#footerWrapper > *,
#headerWrapper > *
{
	grid-column: 2;
}

a.moreLink,
a.moreLink:visited
{
	display: block;
	padding-right: 1.5em;
	padding-left: 1.5em;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	margin-top: -0.3em;
	width: fit-content;
	/* margin-inline: auto; */

	color: white;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #005199;
}

.blueBackground .normalTextpic .moreLink
{
	font-size: 1.3rem;
}

section
{
	margin-bottom: 2rem;
}

section.contentItemmenu_pages
{
	margin-bottom: unset;
}

section .articleInner .content
{
	border-top: 2px solid #000000;
	padding-top: 2rem;
}
.indexPage section.contentItemmask_marketing_numbers .articleInner .content,
.indexPage section.contentItemmask_link_elements .articleInner .content,
.indexPage .textpicWrapper.blueBackground,
section.contentItemimage .frameInner.content,
.contentItemlist:has(.fsndProductsListing) .frameInner.content,
section .articleInner .content:has(.border1),
.frameInner.content:has(.frameInner.content)
{
	border-top: unset;
	padding-top: unset;
}
.frame-type-menu_pages.frame-layout-0 .frameInner
{
	padding-bottom: unset;
}
.indexPage .frame-type-menu_pages header
{
	display: grid;
	grid-template-columns: 2fr 1fr;
}

main section:first-child .articleInner .content
main section:nth-child(5) .articleInner .content
{
	border: unset;
}

/*** Text ***/
#teaser h1
{
	color: var(--primaryclr);
}


.teaserText .bodyText
{
	font-family: var(--headerFont);
	font-size: 1.5rem;
}

/*** Text end ***/

/*** header ***/
#headerWrapper
{
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0.5rem 0.5rem 0.5rem rgba(0,0,0,0.5);

	transition: background-color 1s ease-in-out;
	z-index: 4;
}

#headerWrapper #cookieChoiceWrapper
{
   background: transparent;
}

#header
{
	align-items: center;
	gap: 2rem;
	z-index: 5;
}

/*** logo ***/
#logo
{
	position: unset;
	height: 100%;
	width: auto;
	border-bottom-right-radius: 1em;
}

a.logoLink
{
	height: fit-content;
}

#logo img
{
	height: 100%;
	max-height: var(--logoHeight);
	width: auto;
	padding-block: 0.3rem;

	-webkit-transition: all 1s; /* Safari */
	transition: all 1s;
}

div#logo:hover
{
	z-index: 101;
}

/*** search ***/
#search input.searchItem
{
	width: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 4px;
	padding-right: 4px;
	border-left: none;
	border-bottom: none;
	border-top: none;
	border-bottom: 2px #005098 solid;
	background: transparent;
}

#search input[type="submit"]
{
	background-color: transparent !important;
}

#search input.searchButton
{
	position: absolute;
	z-index: 10;
	top: 3px;
	right: 3px;
	border: none;
	background-color: transparent !important;
	background: url(/fileadmin/templates/images/lupe.png);
	width: 14px;
	height: 15px;
	cursor: pointer;
}

/*** language menu ***/
#langMenu
{
	display: flex;
	flex-direction: column;
	flex-shrink: 1;
	flex-grow: 0;
	gap: 0;
	margin-top: -0.35rem;
	background-color: var(--pmBlue);
	transform: translateY(50%);
	z-index: 20;
	transition: all 1s;
	border-radius: 1rem;
	padding-inline: 0.5rem;
}
#langMenu > div
{
	flex-grow: 1;
	flex-shrink: 0;
	max-height: 0;
	width: fit-content;
	overflow-y: clip;
	background-color: transparent;
}
#langMenu > div a
{
	width: auto;
	padding-left: 0.2rem;
	padding-right: 0.5rem;
	white-space: nowrap;
}
label.langMenuToggler
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.4rem;
	padding-block: 0.3rem;
	padding-left: 0.2rem;
	color: #fff;
	cursor: pointer;
}
#langMenu:hover label.langMenuToggler
{
	color: #000;
}
#langMenu > div.active
{
	max-height: 100px;
}

#langMenu:hover,
#langMenu:has(input:checked)
{
	gap: 0.2rem;
	padding-bottom: 0.2rem;
	border: 2px #eeecf0 solid;
	background-color: white;
	box-shadow: 1rem 1rem 1.2rem rgba(0,0,0,0.4);
	border-radius: 0.4rem;
}
#langMenu:hover > div,
#langMenu:has(input:checked) > div
{
	max-height: 100px;
	transition: all 1s;
}
#langMenu:hover > div:last-of-type,
#langMenu:has(input:checked) > div:last-of-type
{
	border-bottom: none;
}
#langMenu:hover > div a,
#langMenu:has(input:checked) a
{
	padding-block: 0.3rem;
	transition: all 1s;
}
#langMenu > div:hover a
{
	background-color: lightgray;
	font-weight: bold;
}
#langMenu img
{
	height: 16px;
	width: 28px;
	border: 1px black solid;
}
.langMenuItem
{
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: space-between;
}

.langMenu a, .langMenu a:visited
{
	color: inherit;
}

.langMenuItem > span,
.langMenuToggler > span
{
	min-width: 1.8rem;
	text-transform: uppercase;
}


.language-selector
{
	display: flex;
	flex-direction: row;
	margin-left: 10em;
	margin-top: 2em;
	position: relative; /* Positionierung für das absolute Positionieren des Dropdowns */
}

.flag-button
{
	cursor: pointer;
}

.flag-button img
{
	width: 48px;
	margin-right: 3px;
}

.current-language-name
{
	font-weight: 900;
}

.language-menu {
	display: none; /* Standardmäßig versteckt */
	position: absolute; /* Absolut positioniert relativ zum .language-selector */
	top: 100%; /* Direkt unter der .language-selector */
	left: 0;
	margin-top: 5px; /* Kleiner Abstand zur oberen Kante */
	background-color: white; /* Hintergrundfarbe des Dropdowns */
	border: 1px solid #ccc; /* Optional: eine leichte Umrandung */
	list-style: none; /* Entfernt Standard-Listensymbol */
	padding: 0; /* Entfernt Standard-Padding */
	z-index: 1000; /* Stellt sicher, dass es über anderen Elementen liegt */
}

.language-menu img
{
	width: 48px;
}

.language-menu li {
	padding: 10px; /* Abstand für die Einträge im Menü */
}

.language-menu li:hover
{
	background-color: #f0f0f0; /* Hintergrundfarbe bei Hover */
}

.language-selector:hover .language-menu
{
	display: block; /* Anzeige des Menüs bei Hover auf .language-selector */
}

/*** search on search page ***/
#mainContent .tx-indexedsearch-searchbox-sword,
#mainContent .tx-indexedsearch-searchbox-button
{
	padding-block: 0.3rem;
	padding-inline: 0.6rem;
}

#mainContent .tx-indexedsearch-searchbox-button
{
	cursor: pointer;
}

.tx-indexedsearch-searchbox fieldset
{
	margin-bottom: 0.6em;
}

.searchWordList
{
	margin-top: 1rem;
	font-size: 1.2rem;
}

.searchWordList .searchFor
{
	display: inline-block;
	padding-right: 0.5em;
	font-weight: 700;
}

.searchWordList .searchForWord
{
	font-style: italic;
}

/*** teaser ***/
/*** teaser ***/
#teaserWrapper
{
	display: flex;
	position: relative;
	top: -1rem;
	margin-top: var(--teaserTop);
	max-width: unset;
}

body:not(.indexPage) #teaserWrapper
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline: 5rem;
	height: calc(var(--headerHeight) * 4);
}

#teaser
{
	width: var(--teaserWidth);
	margin-inline: auto;
	border-bottom-left-radius: var(--teaserRadius);
	border-bottom-right-radius: var(--teaserRadius);
	overflow: clip;
}

body:not(.indexPage) #teaser
{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: var(--contentWidth);
	background-color: var(--pmBlue);
	border-radius: var(--boxBorderRadius);
}

body:not(.indexPage) .headerImg
{
	width: 100%;
	height: auto;
	right: 0;
	position: absolute;
}

.textInTeaser
{
	max-width: max(50% + 4rem, 380px);
	min-width: 30%;
	width: unset;
}

body:not(.indexPage) .textInTeaser
{
	left: 3rem;
	bottom: 3rem;
	display: flex;
	justify-content: center;
	top: unset;
	padding: 1em 1.5em;
	transform: unset;
}

.textInTeaser
{
	color: var(--primaryclr);
	background-color: rgba(255,255,255,0.75);
}

a.teaserMoreLink, a.teaserMoreLink:visited,
a.moreLink, a.moreLink:visited,
a.secondaryButton, a.secondaryButton:visited
{
	position: relative;
	display: flex;
	align-items: center;
	height: 3rem;
	padding-left: 1rem;
	padding-right: 4rem;
	padding-block: 1.75rem;
	color: white;
	background-color: var(--pmRed);
	text-transform: uppercase;
	border-radius: var(--teaserRadius);
}

a.secondaryButton
{
	width: fit-content;
}

a.teaserMoreLink:hover,
a.moreLink:hover,
a.secondaryButton:hover
{
	background-color: var(--pmBlue);
}

.teaserMoreLink:after,
a.moreLink:after,
a.secondaryButton:after
{
	content: "";
	position: absolute;
	top: 50%;
	right: 0.5rem;
	height: 2.5rem;
	width: 2.5rem;
	background-color: white;
	background-image: url("images/redArrow.png");
	background-position: center center;
	background-size: 0.75rem auto;
	background-repeat: no-repeat;
	border-radius: var(--teaserRadius);
	transform: translate(0,-50%);
}

#teaser .teaserMoreLink:hover:after,
#teaser a.moreLink:hover:after
{
	background-image: url("images/darkBlue.png");
}

.teaserMoreLink:hover:after,
a.moreLink:hover:after,
a.secondaryButton:hover:after
{
	background-image: url("images/arrow.png");
}

p:has(a.secondaryButton)
{
	display: flex;
	flex-direction: row;
	justify-content: center;
}

section:has(.secondaryButton),
.frameInner.content:has(.secondaryButton),
p:has(.secondaryButton)
{
	margin-block: unset;
	padding-block: unset;
}

p:has(.secondaryButton)
{
	margin-bottom: 2rem;
}

section:has(+ section .secondaryButton)
{
	margin-bottom: unset;
}

a.moreLink, a.moreLink:visited
{
	margin-left: unset;
}

.teaserImgWrap:has(.headerImg)
{
	height: 100%;
	max-width: 100dvw;
	border-radius: var(--boxBorderRadius);
	overflow: clip;
}

.teaserImgWrap:has(.headerImg) .headerImg
{
	object-fit: cover;
	border-radius: var(--boxBorderRadius);
}

/*** main content area ***/
#contentWrapper
{
	max-width: 100dvw;
	position: relative;
	padding-top: 3rem;
	overflow: clip;
}

#mainContent p,
#mainContent li
{
	line-height: 1.4;
	letter-spacing: 1px;
}

#contentWrapper
{
	max-width: 2000px;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}

article.contentItem
{
	padding-top: 0.5em;
	padding-bottom: 1.5em;
}

#mainContent .frame-ruler-after:after
{
	display: none;
}
#centreArea
{
	min-height: 200px;
}

/*** regular text pic ***/
.csc-textpic-intext-left div.csc-textpic-imagewrap
{
	float: left;
	margin-right: 20px;
	margin-bottom: 1px;
}

.csc-textpic-intext-right div.csc-textpic-imagewrap
{
	float: right;
	margin-left: 20px;
	margin-bottom: 1px;
}

/* to put header below low hanging logo */
.noHeader #mainContent article.contentItem .csc-header-n1 .csc-firstHeader
{
	margin-top: 30px;
}

.csc-textpic-intext-left-nowrap .csc-textpic-image
{
   float: left;
}

#centreArea .frame-rulerBefore div.csc-textpic-text
{
	padding-top: 25px;
}

/*** footer ***/
#footerWrapper
{
	background-color: #eeecf0;
	color: black;
}

#footer
{
	display: block;
	padding-bottom: 2rem;
}

.footerLevel
{
	display: flex;
	justify-content: space-between;
	column-gap: 4rem;
	row-gap: 2rem;
	width: 100%;
}

#footerLogoWrapper
{
	width: fit-content;
}

#footerComponents
{
	flex-grow: 1;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 2rem;
}

.footerMenuHeader
{
	font-weight: bold;
	text-transform: uppercase;
	padding-bottom: 1rem;
}

#footerComponents p
{
	padding-block: 0.1rem;
}

#copyright
{
	margin-top: 1rem;
}

#socialMenu
{
	display: flex;
	column-gap: 1.25rem;
	margin-top: 1.5rem;
}

#socialMenu img
{
	width: 22px;
	height: auto;
}

.groupContactItems a.contactDetailLink
{
	transition: all 1s;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
}

.kontaktWrapper
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	margin-bottom: 5rem;
	grid-gap: 1rem;
}

.kontaktBoxWrapper
{
	display: table-cell;
    height: 100%;
    width: 100%;
}

.kontaktBox
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    height: 100%;
    padding-block: var(--boxPadding);
    padding-inline: var(--boxPadding);
    background-color: var(--blueBG);
    border-radius: var(--boxBorderRadius);
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 40% auto;
    color: white;
}

.kontaktBoxWrapper:nth-of-type(2) .kontaktBox
{
	background-position: 110% center;
	background-size: auto 60%;
}

.kontaktBox > *
{
    margin-right: 30%;
}

.kontaktBox h3
{
    color: inherit;
	text-wrap: balance;
}

h3.kontaktHeader
{
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
	letter-spacing: 0.25rem;
}

.kontaktHeaderWrapper
{
	margin-bottom: 2rem;
}

.kontaktText
{
	font-size: 1.25rem;
	line-height: 1.75rem;
	letter-spacing: 0.25rem;
	font-weight: 400;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.kontaktButton
{
	text-transform: uppercase;
	margin-left: 1rem;
	font-weight: 500;
}

.arrowWrapper
{
	display: flex;
	flex-direction: row;
	align-items: center;
}

#footerComponents #footerFax div.footerComponentInner
{
	background-image: none;
}

#footerComponents #footerFax div.footerComponentInner:hover
{
	background-image: none;
}

#bottomMenu
{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	margin-bottom: 0.8em;
	padding-top: 15px;
	border-top: 1px #F0F0F0 solid;
}

#copyright
{
	display: block;
	float: right;
	margin-left: 20px;
	margin-right: 20px;
}

#bottom-menu li.level1
{
	display: inline-block;
	padding-left: 20px;
	padding-top: 3px;
	padding-bottom: 2px;
}

#bottom-menu li.level1 a,
#bottom-menu li.level1 a:visited
{
	color: #606062;
}

#bottom-menu li.level1 a:hover
{
	text-decoration: none;
	color: #CC2222;
}

/*** menus and sitemaps ***/
.frame-type-menu_abstract ul
{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-column-gap: 2.2em;
	grid-row-gap: 2.2em;
}
.frame-type-menu_abstract .pageInfo ul
{
	display: block;
}
.frame-type-menu_abstract ul > li a,
.frame-type-menu_abstract ul > li a:visited
{
	text-transform: none;
	color: var(--primaryclr);
	white-space: normal;
	border-radius: 0;
	background: none;
}

.twoColsItem
{
	display: table-cell;
	height: 100%;
}

.twoColsItem .csc-frame-greyContent
{
	height: 100%;
	padding-left: 2rem;
	padding-top: 1em;
}

.pagesList .pagesItemTitle
{
	background-color: unset;
}

.frame-type-menu_pages .headerItem
{
	margin-top: unset;
}

.frame-type-menu_pages .frameInner .headerItem
{
	margin-bottom: 2rem;
}

.menuPages.subPageList
{
	list-style: none;
	margin: unset;
	padding: unset;
}

.menuPages > li
{
	border-top: 2px solid #000;
}

.menuPages .menuItemInner
{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	height: clamp(12rem, 16rem, 20rem);
	padding-block: 2rem;
	color: #000000;
}

.menuPages .menuItemLink
{
	border-bottom: 1px solid var(--pmRed);
}

.menuPages .menuItemLink:after
{
	content: "\2794";
}

.menuPages .pagesImage img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--boxBorderRadius);
}

.menuPages .pagesImage
{
	flex: 2;
}

.menuPages .menuItemText
{
	flex: 3;
}

.menuPages .pagesItemTitle
{
	margin-bottom: 1rem;
}

.menuPages .menuItemLink
{
	display: block;
	width: fit-content;
}

/*** menu and sitemap end ***/

/* SitemapImageItem */

.pagesList .menuItemInner {
	display: grid;
	grid-template-columns: 70px auto;
}

.pagesList .pagesImage {
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-height: 90px;
	overflow: hidden;
}

.pagesList2 a.menuItemLink
{
	background-color: var(--primaryclr);
	border-radius: calc(var(--boxBorderRadius) - 25px);
}

.pagesList2 a.menuItemLink:hover
{
	background-color: var(--bg-clr);
}

.pagesList2 .menuItemInner
{
	padding-inline: 0.5rem;
}

.pagesList .pagesItemTitle
{
	text-align: center;
}

.pagesList .pagesItemTitle > *
{
	color: var(--pmRed);
}

.menuItemInner:hover .pagesItemTitle h4
{
	color: var(--pmBlue);
}

/*** sitemapImageItem end ***/

.frame-rulerAfter ul.csc-uploads
{
	margin-left: 40px;
}

.csc-uploads li.csc-uploads-element
{
	min-height: 60px;
	padding-left: 55px;
	margin-top: 0px;
	margin-bottom: 10px;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 35px auto;
	break-inside: avoid;
}

.csc-uploads li.csc-uploads-element-pdf
{
	background-image: url(/fileadmin/templates/images/pdf-icon.png);
}

.csc-uploads .csc-uploads-element a,
.csc-uploads .csc-uploads-element a:visited,
ul.csc-uploads span.csc-uploads-fileName
{
	color: #b13a29;
	text-decoration: none;
}

#tx-indexedsearch fieldset,
.tx-indexedsearch-searchbox fieldset
{
	border: none;
}

table input.tx-indexedsearch-searchbox-button,
.tx-indexedsearch-searchbox legend,
#isBrowseBoxTop
{
   display: none;
}

.tx-indexedsearch-browsebox ul.tx-indexedsearch-browsebox
{
   margin-top: 25px;
   margin-left: 0px;
   padding-left: 0px;
}

.tx-indexedsearch-browsebox .tx-indexedsearch-browsebox li
{
   display: inline-block;
   margin-right: 15px;
   list-style: none;
}

.tx-indexedsearch-browsebox
{
	min-height: 28px;
}

.tx-indexedsearch-searchbox .tx-indexedsearch-form,
.tx-indexedsearch-searchbox .tx-indexedsearch-search-submit
{
	display: block;
	position: relative;
	float: left;
	width: auto;
	max-width: 50%;
}

.tx-indexedsearch-searchbox p
{
	clear: both;
	float: none;
}

.tx-indexedsearch-whatis
{
	margin-bottom: 10px;
	margin-top: 10px;
	font-weight: 700;
}

ul.browsebox
{
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
	margin-top: 5px;
	height: 24px;
}

ul.browsebox li
{
	float: left;
	position: relative;
	display: block;
	margin-left: 10px;
	margin-right: 5px;
}

.tx-indexedsearch-res
{
	padding-top: 0.3em;
	clear: both;
	float: none;
}

dl.tx-indexedsearch-info
{
	display: none;
}

div.csc-sitemap
{
	margin-left: 2em;
}

.csc-sitemap h3
{
	padding-bottom: 2px;
	font-size: 1em;
	color: #3E3E3E;
	display: block;
	width: 80%;
	border-bottom: #3E3E3E 1px dotted;
}

.csc-sitemap ul.sitemap-level2
{
	list-style: none;
}

.csc-sitemap ul
{
	margin-top: 0px;
	margin-bottom: 5px;
	padding-top: 2px;
	margin-left: 10px;
	padding-left: 5px;
}

.csc-sitemap ul.sitemap-level2 li.level2
{
	font-size: 1em;
	padding-top: 4px;
	margin-left: 0px;
}

.csc-sitemap a,
.csc-sitemap a:visited
{
	color: #3E3E3E;
}

.csc-sitemap ul.sitemap-level3
{
	font-size: 0.9em;
	margin-left: 12px;
}

.csc-sitemap a:hover
{
	color: #000;
}

.pagesList .pagesImage .sitemapImage
{
	border-radius: 0.5rem;
}

.csc-textpic-imagewrap[data-csc-cols='2'] div.csc-textpic-imagecolumn
{
	max-width: 48%;
}

.csc-textpic-imagewrap[data-csc-cols='3'] div.csc-textpic-imagecolumn
{
	max-width: 30%;
}

.csc-textpic-imagewrap[data-csc-cols='4'] div.csc-textpic-imagecolumn
{
	max-width: 22%;
}

.csc-textpic-imagewrap .csc-textpic-imagecolumn figure
{
	display: inline-block !important;
	max-width: 100%;
}

.csc-textpic-imagewrap .csc-textpic-imagecolumn figure img
{
	max-width: 100%;
	height: auto;
}

.googleMap iframe
{
	max-width: 98%;
}

div.googleMapCentred
{
	margin-left: auto;
	margin-right: auto;
}

.pagesMenu div.menuItem
{
	display: inline-block;
	width: 20%;
	margin-bottom: 20px;
	vertical-align:  top;
}

.pagesMenu .menuItem div.menuItemInner
{
	margin-left: 5px;
	margin-right: 5px;
}

.pagesMenu .menuItem div.pagesItemTitle
{
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	background: #FFFFFF;
}

.pagesMenu .menuItem .pagesItemTitle h3
{
	margin-left: 10px;
	margin-right: 10px;
	font-size: 15px;
	font-weight: normal;
	text-transform: uppercase;
}

.pagesMenu .menuItem a .pagesItemTitle h3
{
	color: #005098;
}

.pagesMenu .menuItem a:hover .pagesItemTitle h3
{
	color: #b13a29;
	
        -webkit-transition: all 0.5s linear;
        -moz-transition: all 0.5s linear;
        -ms-transition: all 0.5s linear;
        -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

.pagesMenu .menuItem img.pagesImage
{
	width: 100%;
	height: auto;
	
        -webkit-transition: all 0.5s linear;
        -moz-transition: all 0.5s linear;
        -ms-transition: all 0.5s linear;
        -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

.pagesMenu .menuItem a:hover img.pagesImage
{
	opacity: 0.8;
}

.faqPagesMenu .pagesItemTitle
{
	position: relative;
	padding-left: 2.5em;
	padding-right: 3em;
	padding-top: 0.9em;
	padding-bottom: 1.1em;
	margin-bottom: 1.5em;
	background-color: var(--pmBlue);
	border-radius: 0.3em;
}

.faqPagesMenu .pagesItemTitle:before
{
	content: "?";
	position: absolute;
	left: 0.7em;
	top: 50%;
	color: #ffffff;
	font-size: 1.3em;
	transform: translate(0,-50%);
}

.faqPagesMenu .pagesItemTitle:after
{
	content: ">";
	position: absolute;
	right: 1em;
	top: 50%;
	color: #ffffff;
	font-size: 1.3em;
	transform: translate(0,-50%);
}

.faqPagesMenu .pagesItemTitle:hover
{
	opacity: 0.9;
}

.faqPagesMenu h3
{
	text-transform: none;
	color: #ffffff;
}

article.contentItemLayout7
{
	background-color: #F0F0F9;
}

#centreArea article.contentItemLayout7 div.articleInnerWrapper
{
	padding-top: 20px;
	padding-bottom: 15px;
	padding-left: 5px;
	padding-right: 5px;
}

.layout7Page #contentWrapper
{
	position: unset;
}
.layout7Page .teaserImgWrap
{
	position: unset;
	align-items: unset;
	border-radius: var(--boxBorderRadius);
}
.layout7Page #teaserWrapper
{
	width: var(--contentWidth) !important;
	height: 30dvh;
	display: block;
	margin-top: calc(var(--teaserTop) + 2rem);
}
.layout7Page .textInTeaser
{
	width: calc(var(--contentWidth) / 2 - var(--boxPadding) * 2 );
}
.layout7Page h1
{
	text-transform: uppercase !important;
}
.layout7Page .textInTeaser header
{
	width: 100%;
}
.layout7Page .teaserMoreLinkWrapper .teaserMoreLink
{
	justify-content: center;
	padding-right: 1rem;
	padding-left: 3rem;
	width: fit-content;
}

.lexiconBacklink
{
	display: inline-block;
}
.lexiconBacklinkWrapper
{
	display: flex;
	flex-direction: row-reverse;
	grid-column-gap: calc(var(--contentWidth) * 0.01);
}
.lexiconBacklink .teaserMoreLink:after
{
	right: 0;
	left: 0.5rem;
	rotate: -180deg;
	transform: translate(0, 50%);
}

#teaserImgWrap4.active ~ .teaserText.textInTeaser,
#teaserImgWrap5.active ~ .teaserText.textInTeaser,
#teaserImgWrap6.active ~ .teaserText.textInTeaser
{
	display: none
}


/*
.contentItemLayout7 div.articleInner::after
{
	position: absolute;
	content: "";
	top: calc(-1 * var(--border-width));
	left: calc(-1 * var(--border-width));
	z-index: -1;
	width: calc(100% + var(--border-width) * 2);
	height: calc(100% + var(--border-width) * 2);
	background: linear-gradient(
			60deg,
			hsl(224, 85%, 66%),
			hsl(269, 85%, 66%),
			hsl(314, 85%, 66%),
			hsl(359, 85%, 66%),
			hsl(44, 85%, 66%),
			hsl(89, 85%, 66%),
			hsl(134, 85%, 66%),
			hsl(179, 85%, 66%)
	);
	background-size: 300% 300%;
	background-position: 0 50%;
	border-radius: calc(2 * var(--border-width));
	animation: moveGradient 4s alternate infinite;
}

@keyframes moveGradient
{
	50%
	{
		background-position: 100% 50%;
	}
}
*/
a.blinkLink
{
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-left: 10px;
	margin-right: 10px;
	color: #FFF;
	background: var(--pmBlue);
	border: 2px #88A outset;
	white-space: nowrap;
	line-height: 3;
	cursor: pointer;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;

	animation: blink-animation 1s steps(5, start) infinite;
	-webkit-animation: blink-animation 1s steps(5, start) infinite;
}
.contentItemLayout7 a.blinkLink
{
	background: #b13a29;
}
.contentItemLayout7 a.blinkLink:hover
{
	background: var(--pmBlue);
}
@keyframes blink-animation
{
	to {
		visibility: hidden;
	}
}
@-webkit-keyframes blink-animation
{
	to {
		visibility: hidden;
	}
}

a.buttonLink
{
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 4px;
	padding-bottom: 4px;
	color: #FFF;
	background: var(--pmBlue);
	border: 2px #88A outset;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

a.buttonLink:hover
{
	text-decoration: none;
	border-color: #3E3E3E;
	
	-webkit-box-shadow: 5px 5px 3px 0px rgba(170,170,170,1);
	-moz-box-shadow: 5px 5px 3px 0px rgba(170,170,170,1);
	box-shadow: 5px 5px 3px 0px rgba(170,170,170,1);
	
	-webkit-transition-delay: 0.1s; /* Safari */
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
	
	-webkit-transition-duration: 0.5s; /* Safari */
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.phone,
.fax,
.email
{
	margin-left: 10px;
	padding-left: 22px;
	background-repeat: no-repeat; 
	background-position: 0% 2px;
}

.phone
{
	/*background-image: url(/fileadmin/templates/images/tel.png);*/
}

.phone
{
	font-size: 140%;
	background-position: 0% 6px
}

p.fax
{
	/*background-image: url(/fileadmin/templates/images/fax.png);*/
}

.email
{
	/*background-image: url(/fileadmin/templates/images/email.png);*/
}

.important,
.important
{
	font-weight: 600;
	font-size: 18px;
	text-align: center;
}

/*** powermail ***/
.tx-powermail .layout3 legend.powermail_legend
{
	display: none;
}

.tx-powermail form.layout2
{
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
}

.tx-powermail fieldset
{
	border: none;
}

.tx-powermail form.layout1 fieldset
{
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	background: #F0F0F0;
	background: rgba( 240, 240, 240, 0.9 );
}

.tx-powermail .layout1 .powermail_fieldset .powermail_legend,
.tx-powermail .layout2 .powermail_fieldset .powermail_legend
{
	display: none;
}

.tx-powermail .powermail_form_3 .powermail_fieldset .powermail_legend
{
	margin-bottom: 15px;
	font-size: inherit;
}

.tx-powermail .powermail_fieldset .parsley-errors-list
{
	width: 100% !important;	
}

.tx-powermail form.layout3
{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 20px;
    background: #C2C2CE;
}

.tx-powermail .layout3 label
{
	text-transform: uppercase;
	color: #005098;
	font-weight: 400;
}

.tx-powermail form.layout1 h3,
.tx-powermail form.layout3 h3,
.tx-powermail form.powermail_form_3 h3,
.tx-powermail .layout3 .nolabel label
{
	display: none;
}

.tx-powermail form .layout3 .radio label
{
	display: inline-block;
}

.tx-powermail form .layout3 .powermail_fieldwrap_type_check label
{
	display: block;
}

.tx-powermail .layout3 div.powermail_fieldwrap_type_check
{
	width: 88%;
	margin-top: 5px;
	padding-top: 8px;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
    /* border: 1px solid #CCCCCC; */
    box-sizing: border-box;
}

.tx-powermail form .layout3 .powermail_fieldwrap_type_check div.powermail_field
{
	margin-top: 5px;
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
	
    -webkit-column-gap: 25px; /* Chrome, Safari, Opera */
    -moz-column-gap: 25px; /* Firefox */
    column-gap: 25px;
}

.tx-powermail form .layout3 .powermail_fieldwrap_type_check.layout3 div.powermail_field
{
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
	
    -webkit-column-gap: 0px; /* Chrome, Safari, Opera */
    -moz-column-gap: 0px; /* Firefox */
    column-gap: 0px;
}

.tx-powermail form.layout1 input.powermail_input,
.tx-powermail form.layout1 textarea.powermail_textarea
{
	width: 99%;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 1%;
	padding-right: 1%;
}

.tx-powermail form.layout1 label.powermail_label
{
	display: inline-block;
	width: 20%;
}

.tx-powermail form.layout1 div.powermail_field
{
	display: inline-block;
	float: right;
	width: 78%;
	margin-bottom: 5px;
}

.tx-powermail div.powermail_fieldwrap
{
	position: relative;
}

.tx-powermail label.powermail_label
{
	position: absolute;
	transform: translateY(-50%);
	color: #000000;
	opacity: 0.8;
}

.tx-powermail form.layout1 .powermail_fieldwrap_type_textarea div.powermail_field
{
	display: block;
	width: 100%;
	float: none;
	margin-top: 3px;
	margin-bottom: 10px;
}

.tx-powermail div.powermail_fieldwrap_type_submit
{
	margin-top: 25px;
}

.tx-powermail form.layout1 .powermail_fieldwrap_type_submit div.powermail_field
{
	display: block;
	width: 95%;
	float: none;
	text-align: right;
}

.tx-powermail form.layout1 div.powermail_fieldwrap
{
	display: block;
	clear: both;
}

.tx-powermail form.layout1 input.powermail_input
{
}

.tx-powermail form.layout1 textarea.powermail_textarea
{
}

.tx-powermail .layout3 div.radio
{
	display: inline-block;
}

.tx-powermail div.powermail_fieldwrap
{
	margin-bottom: 10px;
}

.tx-powermail .layout3 div.powermail_fieldwrap_type_input,
.tx-powermail .layout3 div.powermail_fieldwrap_type_country
{
	display: inline-block;
}

.tx-powermail .layout3 div.powermail_fieldwrap_type_input.layout1,
.tx-powermail .layout3 div.powermail_fieldwrap_type_input.nolabel,
.tx-powermail .layout3 div.powermail_fieldwrap_type_country
{
	width: 45%;
	margin-right: 2%;
}

.tx-powermail .layout3 div.powermail_fieldwrap_type_input.layout3
{
	width: 13%;
	margin-right: 1%;
}

.tx-powermail .layout3 div.powermail_fieldwrap_type_input.layout2
{
	width: 29%;
	margin-right: 3.54%;
}

.tx-powermail .layout3 div.powermail_fieldwrap_type_textarea
{
	width: 97.7%;
}

.tx-powermail .layout3 .powermail_fieldwrap div.powermail_field
{
	width: 90%;
}

.tx-powermail .layout3 .powermail_fieldwrap .powermail_field input.powermail_input,
.tx-powermail .layout3 .powermail_fieldwrap .powermail_field select.powermail_country
{
	height: 25px;
}

.tx-powermail .layout3 .powermail_fieldwrap .powermail_field input.powermail_input,
.tx-powermail .layout3 .powermail_fieldwrap .powermail_field select.powermail_country,
.tx-powermail .layout3 .powermail_fieldwrap .powermail_field textarea.powermail_textarea
{
	width: 100%;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
}

.tx-powermail span.select
{
    display: block;
    position: absolute;
    width: 100%;
    height: 25px;
    top: 0;
    left: 0;
    padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 10px;
    line-height: 25px;
    overflow: hidden;
    cursor: pointer;
}

.tx-powermail select,
.tx-powermail select option
{
	font-size: inherit;
	color: inherit;
}

.tx-powermail span.select:after
{
    position: absolute;
    right: 10px;
    top: 40%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #333;
    content: " ";
}

.tx-powermail .layout3 .powermail_fieldwrap .powermail_field input.powermail_input,
.tx-powermail .layout3 .powermail_fieldwrap .powermail_field select.powermail_country,
.tx-powermail .layout3 .powermail_fieldwrap .powermail_field textarea.powermail_textarea,
.tx-powermail span.select
{
	font-size: inherit;
	color: inherit;
	background-color: #fbfbfb;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
}

section.contentItempowermail_pi1 .articleInner .content
{
	border-top: unset;
	padding-top: unset;
}

.tx-powermail .kontaktWrapper
{
	/***
	background-image:
	url("images/smIcons/linkedInBlue.png"),
	url("images/smIcons/xBlue.png"),
	url("images/smIcons/instagramBlue.png"),
	url("images/smIcons/facebookBlue.png"),
	url("images/smIcons/youtubeBlue.png");
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
	background-position: bottom left 0px, bottom left 40px, bottom left 80px, bottom left 120px, bottom left 160px;
	background-size: 20px auto, 20px auto, 20px auto, 20px auto, 20px auto;
	***/
	margin-bottom: unset;
}

#powermailKontakt .frameInner,
#powermailKontakt .frameInner .contentBody,
#powermailKontakt .frameInner .contentBody .ce-textpic
{
	height: 100%;
	padding-bottom: unset;
}

.ce-textpic h1,
.ce-textpic h2,
.ce-textpic h3
{
	color: var(--pmBlue);
}

.ce-textpic h1:first-line,
.ce-textpic h2:first-line,
.ce-textpic h3:first-line
{
	color: #000;
}

.ce-textpic .ceBodyTextInner
{
	display: flex;
	flex-direction: row;
}

.ce-textpic .ce-gallery img
{
	width: 100%;
	height: auto;
	max-height: 15rem;
}

#powermailKontakt .frameInner .contentBody .ce-textpic
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

#powermailKontakt .frameInner .contentBody .ce-textpic .ce-gallery
{
	width: 100%;
}

#powermailKontakt .frameInner .contentBody .ce-textpic .ce-gallery .ce-inner
{
	flex-direction: row;
	gap: 1rem;
}

#powermailKontakt .frameInner .contentBody .ce-textpic .ce-gallery .ce-inner .ce-row
{
	margin-bottom: unset;
}

#powermailKontakt .frameInner .contentBody .ce-textpic .ce-gallery .ce-inner img
{
	border-radius: unset;
}

.tx-powermail span.select.selectHidden
{
	display: none;
}

.powermail_fieldwrap_type_submit
{
	position: relative;
	width: 88%;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.powermail_fieldwrap_type_submit .powermail_field
{
	width: fit-content !important;
	background-color: var(--pmRed);
	padding-right: 2.5rem;
	padding-block: 0.5rem;
	border-radius: 2rem;
}

.powermail_fieldwrap_type_submit:after
{
	content: "";
	position: absolute;
	top: 41%;
	right: 0.5rem;
	height: 2.5rem;
	width: 2.5rem;
	background-color: white;
	background-image: url("images/redArrow.png");
	background-position: center center;
	background-size: 0.75rem auto;
	background-repeat: no-repeat;
	border-radius: var(--teaserRadius);
	transform: translate(0, -50%);
	pointer-events: none;
}

.powermail_fieldwrap_type_check.powermail_fieldwrap_marker .powermail_field .checkbox label
{
	display: flex;
	align-items: flex-start;
	font-size: 0.8rem;
	text-transform: unset;
	color: #000000;
}

.powermail_fieldwrap_type_check.powermail_fieldwrap_marker .powermail_field .checkbox label input
{
	margin-top: 0.1rem;
	margin-right: 1rem;
}

.powermail_fieldwrap.powermail_fieldwrap_type_check.powermail_fieldwrap_marker label[title]
{
	display: none;
}

.powermail_fieldwrap.powermail_fieldwrap_type_check.powermail_fieldwrap_marker
{
	display: block;
}

form.powermail_form_4.layout3 fieldset.powermail_fieldset_4.layout3 div:nth-last-child(-n+2)
{
	display: inline-block;
	vertical-align: top;
}

form.powermail_form_4.layout3 fieldset.powermail_fieldset_4.layout3 > div:nth-last-child(2)
{
	width: 80%;
}

form.powermail_form_4.layout3 fieldset.powermail_fieldset_4.layout3 > div:nth-last-child(1)
{
	width: 20%;
}

.indexPage section.contentItempowermail_pi1 .frame-type-powermail_pi1 > .frameInner.content
{
	border-top: 2px solid #000;
}

.indexPage section.contentItempowermail_pi1
{
	margin-bottom: unset;
}

.tx-rssdisplay .tx-rssdisplay-item-title
{
	margin-bottom: 10px;
}
.tx-rssdisplay p.date
{
	display: inline-block;
	position: absolute;
	top: 0px;
	right: 20px;
	font-size: 80%;
}
.tx-rssdisplay ul.tx-rssdisplay-list
{
	list-style: none;
}

.tx-rssdisplay .tx-rssdisplay-list li
{
	display: inline-block;
	width: 45%;
	height: 180px;
	padding-right: 3%;
	padding-bottom: 15px;
	margin-bottom: 20px;
	clear: both;
	vertical-align: top;
	break-inside: avoid;
}

.tx-rssdisplay .tx-rssdisplay-list li h3
{
	height: 45px;
}

.tx-rssdisplay h2
{
	display: none;
}

.tx-rssdisplay .news-img-wrap
{
	max-width: 18%;
	display: inline-block;
	text-align: right;
	clear: right;
	margin-bottom: 10px;
	margin-right: 3%;
}
	
	.tx-rssdisplay .news-img-wrap img
	{
		max-width: 100%;
		height: auto;
	}
	
.tx-rssdisplay-item-description img
{
	display: block;
	max-width: 22%;
	height: auto;
	float: left;
	margin-right: 3%;
}

p.tx-rssdisplay-item-description
{
	clear: both;
}

.tx-rssdisplay .news-list-view .teaser-text
{
	display: inline-block;
	max-width: 74%;
	vertical-align: top;
}

.parallaxBody div.tx-powermail
{
	width: 460px;
	max-width: 95%;
	margin-left: auto;
	margin-right: auto;
}

.parallaxBody .tx-powermail .powermail_fieldset .powermail_legend
{
	display: inline-block;
	float: none;
	clear: both;
	padding-top: 45px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 18px;
}

.tx-powermail form .layout3 input.powermail_submit
{
    padding: 8px 20px;
    font-size: inherit;
    color: #fff;
    background-color: #b13a29;
    border: 0;
    cursor: pointer;
	
    -webkit-appearance: button;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.tx-powermail .layout3 div.powermail_fieldwrap_type_submit
{
	text-align: right;
}

.style5 .tx-powermail form .layout3 input.powermail_submit
{
	margin-right: 40px;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #005098;
	text-transform: uppercase;
	background: #FFF;
	border: 1px #005098 solid;
	cursor: pointer;
}

.style5 .tx-powermail form .layout3 input.powermail_submit:hover
{
	border-style: outset;
}

.frame-type-powermail_pi1 .headerItem
{
	margin-bottom: 2rem;
	color: var(--pmRed);
}

.frame-type-powermail_pi1 .headerItem span
{
	color: var(--pmBlue);
}

.tx-powermail
{
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.tx-powermail .container-fluid
{
	color: #000000;
}

.tx-powermail .container-fluid form
{
	border-radius: var(--boxBorderRadius);
	background: var(--greyBG);
}

.powermail_submit
{
	background-color: var(--pmRed) !important;
	border-radius: var(--boxBorderRadius) !important;
}

.powermail_input,
.powermail_country,
.powermail_textarea
{
	background-color: unset !important;
	border: unset !important;
	border-radius: unset !important;
	border-bottom: 2px solid #000000 !important;
}

.powermail_fieldwrap label
{
	display: none;
}

/*** powermail end ***/

#footerComponents #footerPhone div.footerComponentInner
{
   top: 00px;
}

.footerComponentInner .callbackWrapper div.callbackButton 
{
    margin-top: -10px;
}

.csc-space-before-extra-small
{
   margin-top: 10px;
}

.csc-space-before-small
{
   margin-top: 20px;
}

.csc-space-before-medium
{
   margin-top: 30px;
}

.csc-space-before-large
{
   margin-top: 40px;
}

.csc-space-before-extra-large
{
   margin-top: 55px;
}

.csc-space-after-extra-small
{
   margin-bottom: 10px;
}

.csc-space-after-small
{
   margin-bottom: 20px;
}

.csc-space-after-medium
{
   margin-bottom: 30px;
}


.csc-space-after-large
{
   margin-bottom: 40px;
}

.csc-space-after-extra-large
{
   margin-bottom: 55px;
}

.ce-intext .ce-gallery
{
	z-index: 10;
}

a.buttonLink
{
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 4px;
	padding-bottom: 4px;
	color: #FFF;
	background: var(--pmBlue);
	border: 2px #88A outset;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}


.align-right,
.csc-header-alignment-right
{
	text-align: right;
}

.align-center,
.text-center,
.csc-header-alignment-center
{
	text-align: center;
}

.clear
{
	float: none !important;
	clear: both !important;
	height: 0px;
	width: 0px;
}

div.csc-textpic-intext-left-nowrap .csc-textpic-imagewrap
{
	max-width: 65%;
}

div.csc-textpic .csc-textpic-imagewrap img
{
	max-width: 100%;
	height: auto;
}

.rssFeedNewsShortTeaser div.news-list-view
{
   
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
	
    -webkit-column-gap: 25px; /* Chrome, Safari, Opera */
    -moz-column-gap: 25px; /* Firefox */
    column-gap: 25px;
}

.rssFeedNewsShortTeaser .news-list-view div.article
{
   break-inside: avoid;
}

.rssFeedNewsShortTeaser .news-list-view .article h3::before
{
   content: ' ';
   width: 130px;
   float: right;
   height: 14px;
}

.rssFeedNewsShortTeaser .news-list-view .article p.date
{
   
}

div.tx-om-cookie-consent
{
	z-index: 140;
}

.om-cookie-panel .cookie-panel__button--color--green
{
	background: #b13a29;
}

.om-cookie-panel .cookie-panel__checkbox+label::before
{
	border-color: var(--pmBlue);
}

div.cookie-panel__attribution
{
	display: none;
}

.accordionContent
{
	display: none;
}

.news-list-view
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-gap: 2rem;
}

.news-list-view .article
{
	display: flex;
	flex-direction: column;
	max-width: calc(100dvw - 1rem);
}

.news-list-view .article .news-img-wrap
{
	order: 1;
}

.news-list-view .article .footer
{
	order: 2;
}

.news-list-view .article .header
{
	order: 3;
}

.news-list-view .article .teaser-text
{
	order: 4;
}

.news .article .news-img-wrap
{
	min-width: 100%;
	margin: unset !important;
}

.news .article .news-img-wrap a
{
	border: unset !important;
	width: 100%;
	padding: unset !important;
}

.news .article .news-img-wrap a img
{
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1;
	border-radius: 2rem;
}

.news-list-view .header
{
	margin-bottom: 1rem;
}

.news-list-view .header a
{
	font-weight: 600;
	color: #000000;
}

.news .footer
{
	border: unset !important;
	margin-top: unset !important;
	color: var(--pmBlue) !important;
}

.news .footer .news-list-date
{
	border-right: unset !important;
}

.news .footer .news-list-category
{
	display: none;
}

.news .teaser-text a
{
	border-bottom: 1px solid var(--pmRed);
}

.news .teaser-text [itemprop="description"] a
{
	border-bottom: unset;
}

.newsContentWrapper > .content
{
	width: var(--contentWidth) !important;
}

.news h1
{
	font-size: 2.5rem;
	text-transform: unset;
}

.news h2
{
	font-size: 2rem;
}

.news-single #teaser
{
	margin-top: 2rem;
}

.news-single .newsImageWrapper
{
	width: 100%;
}

.news-single .newsImageWrapper img
{
	object-fit: cover;
	height: auto;
}

/*** PDF Item ***/

section:has(.pdfItemWrapper),
article:has(.pdfItemWrapper),
div:has(.pdfItemWrapper)
{
	margin-block: 0;
	padding-block: 0;
}

.pdfItemWrapper
{
	display: grid;
	grid-template-columns: 2fr 1fr;
	background-color: var(--scBlue);
	border-radius: var(--boxBorderRadius);
}

.pdfHeader
{
	display: flex;
	justify-content: center;
	align-items: center;
}

.pdfHeader header
{
	padding: 2rem;
}

.pdfHeader header h3
{
	font-size: 2rem;
	margin: unset;
	color: #ffffff;
}

.pdfItemWrapper .ce-gallery
{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--blueBG);
	height: 100%;
	padding-block: 2rem;
	border-radius: 0 var(--boxBorderRadius) var(--boxBorderRadius) 0;
}

.pdfItemWrapper figure
{
	background-image: url("images/pdfDownload.png");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: auto;
}

.pdfItemWrapper figure a
{
	margin-bottom: 3rem;
}

.pdfItemWrapper img
{

}

section:has(.pdfItemWrapper)
{
	margin-top: 1rem;
}

/*** PDF end ***/

/*** menuSectionPages ***/

/* Wrapper für das FAQ-Menü – wie .productCategoryMenuWrapper */
.contentBody:has(.msp-menu-section)
{
	display: grid;
	grid-template-columns: 1fr;
}

/* Hauptliste – entspricht .productCategoryMenu */
.msp-menu-section {
	width: 100%;
	margin-left: 0;
	margin-top: 0;
	padding-left: 0;
	padding-top: 0;
	list-style: none;
}

/* Hauptpunkte – entspricht .productCategoryMenuItem */
.msp-menu-item {
	position: relative;
	padding-block: 1rem;
	break-inside: avoid;
	vertical-align: top;
	border-top: 2px solid #000000;
}

/* Überschrift der Hauptpunkte – entspricht .categoryTitle */
.msp-menu-link {
	margin-bottom: 0;
	margin-top: 0;
	padding-bottom: 0;
	padding-top: 0;
	text-decoration: none;
	color: inherit;
	display: block;
}

/* Untermenü – entspricht .catProductListMenu */
.msp-submenu {
	break-inside: avoid;
	display: none;
	margin-block: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
	color: var(--pmBlue);
	list-style: disc;
	margin-left: 18px;
}

/* Unterpunkte – entspricht .catProductMenuItem */
.msp-submenu-item {
	font-size: 90%;
	break-inside: avoid;
}

/* Beschreibung – nur relevant, wenn du später Texte einfügst */
/* (im FAQ-Menü aktuell nicht vorhanden, aber für Konsistenz) */
.msp-submenu-description h1,
.msp-submenu-description h2 {
	text-transform: none;
}

/* Alternativer Wrapper-Style (falls Grid gewünscht) – kann mit Column kombiniert werden */
.contentBody#contentBody2616 {
	display: grid;
	grid-template-columns: 1fr;
}

/* Hauptliste (zusätzliche Regel) */
.msp-menu-section {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Schrift der Hauptpunkte – entspricht .productCategoryMenu h3 */
.msp-menu-item > .msp-menu-link {
	margin-block: 0.5em;
	font-size: 2.25rem;
	letter-spacing: 0.125rem;
	line-height: 3.75rem;
	font-weight: 400;
	color: #000000;
	text-decoration: none;
	position: relative;
}

/* Pfeil-Icon nach dem Hauptpunkt (für Toggle) */
.msp-menu-item .msg-Button::after {
	content: "";
	background-image: url("/typo3conf/ext/fsnd_settings/Resources/Public/theme/petermann/Css/images/whiteArrowBlueBg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: block;
	width: 3rem;
	height: 3rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* Toggle-Button – entspricht .productButton */
.msg-Button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 3rem;
	height: 100%;
	cursor: pointer;
	z-index: 2;
}

/* Geöffneter Zustand des Buttons */
.msg-Button.open {
	transform: rotate(180deg);
	margin-top: 3rem;
	height: unset;
}

/* Optional: wenn .open auf dem Button sitzt und :after angepasst werden soll */
.msg-Button.open::after {
	position: absolute;
	right: 0;
	transform: translateY(-100%);
}

/*** menuSectionPages end ***/

/*** menu Pages ***/

.contentItemmenu_pages header > *:first-line
{
	color: #000000 !important;
}

/*** faq page - dropdowns ***/

section:has(.dropdownWrapper),
.dropdownWrapper .frameInner,
.dropdownWrapper .headerItem
{
	margin-block: unset !important;
}

.dropdownWrapper .frame-type-text,
.dropdownWrapper .frame-type-textpic,
.dropdownWrapper .dropdownContentWrapper
{
	display: none;
}

.dropdownWrapper.open .frame-type-text,
.dropdownWrapper.open .frame-type-textpic,
.dropdownWrapper.open .dropdownContentWrapper
{
	display: block;
}

.dropdownWrapper .headerItem
{
	display: flex;
	align-items: center;
	position: relative;
	font-size: 1.5rem;
	text-transform: unset;
}

.dropdownWrapper .headerItem:after
{
	content: "";
	background-image: url("images/Vector.png");
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 1rem;
	background-color: var(--pmBlue);
	height: 3rem;
	width: 3rem;
	border-radius: 2rem;
}

.dropdownWrapper.open .headerItem:after
{
	transform: scaleY(-1);
}

.dropdownWrapper .frameInner
{
	padding-block: 2rem;
}

.dropdownWrapper h2
{
	color: #000;
}

.headerImg {
	position: absolute;
	/* top: 0; */
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: auto;
	will-change: transform;
}

/*** Buttons ***/

a.primaryButton,
a:visited.primaryButton
{
	display: flex;
	align-items: center;
	width: fit-content;
	background-color: var(--pmRed);
	color: #fff !important;
	padding: 1rem;
	border-radius: 2rem;
}
a.primaryButton:after
{
	content: "";
	background-image: url("images/whiteArrow.png");
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 20px;
	height: 15px;
	margin-left: 0.5rem;
}
a.primaryButton:hover
{
	background-color: var(--pmBlue);
}

/*** breadcrumbs ***/
#breadCrumbWrapper
{
	position: relative;
	z-index: 10;
	margin-block: 1rem;
}

#outerWrapper:has(#teaserBox) #breadCrumb
{
	position: absolute;
	right: 0;
	top: 1rem;
}
#breadCrumb
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 0.5rem;
	position: relative;
	padding-top: calc(var(--boxPadding) / 2);
	font-size: max(12px, 0.8em);
	color: black;
}

#breadCrumb > span
{
	white-space: nowrap;
}

nav[aria-label="Breadcrumb"] ol
{
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	padding: 0;
	margin-left: 0;
	list-style: none;
}

nav[aria-label="Breadcrumb"] li::after
{
	content: "›";
	margin: 0 0.5rem;
}

nav[aria-label="Breadcrumb"] li:last-child::after
{
	content: "";
}

/*** breadcrumb end ***/

@media only screen and (max-width: 2000px)
{
   div#contentWrapper
   {
      max-width: 100vw;
      overflow: hidden;
   }
}

@media only screen and (max-width: 1800px)
{
	body
	{
		--logoHeight: var(--headerHeight);
	}
	div#header
	{
		max-width: 100vw;
		font-size: 16px;
	}
	#mainMenuWrapper a,
	#mainMenuWrapper a:visited
	{
		padding-left: 13px;
		padding-right: 13px;
	}
}

@media only screen and (max-width: 1730px)
{
	body
	{
		--logoHeight: var(--headerHeight);
	}

	#mainMenuWrapper a,
	#mainMenuWrapper a:visited
	{
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media only screen and (max-width: 1650px)
{
	body
	{
		--logoHeight: var(--headerHeight);
	}

	#mainMenuWrapper a,
	#mainMenuWrapper a:visited
	{
		padding-left: 5px;
		padding-right: 5px;
	}
}

@media only screen and (max-width: 1500px)
{
	body
	{
		--logoHeight: var(--headerHeight);
	}

	#mainMenuWrapper a,
	#mainMenuWrapper a:visited
	{
		padding-left: 5px;
		padding-right: 5px;
	}

	div#header,
	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 14px;
	}
}

@media only screen and (max-width: 1300px)
{
	#langMenu
	{
		margin-right: 2em;
		right: 0;
		position: absolute;
	}
}

@media only screen and (max-width: 1160px)
{
	div#header,
	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 12px;
	}
}

@media only screen and (max-width: 1120px) 
{
	body
	{
		--max-content-width: 98vw;
	}
	div#logo
	{
		/*height: 50px;*/
	}
	a.logoLink
	{
		background: #ffffff;
	}
	/*
	#logo img
	{
		width: 100%;
		height: auto;
	}

	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 17px;
	}
	 */
	.parallax-container div.fsndRespImageTitleWrapper
	{
		max-width: 100%;
	}
   .multiColumn .tx-powermail .layout3 div.powermail_fieldwrap_type_input.layout1, 
   .multiColumn .tx-powermail .layout3 div.powermail_fieldwrap_type_input.nolabel, 
   .multiColumn .tx-powermail .layout3 div.powermail_fieldwrap_type_country 
   {
      width: 98%;
      margin-right: auto;
      margin-left: auto;
   }
   #langMenu
   {
	   margin-bottom: 4rem;
	   margin-right: 1rem;
   }
}

@media only screen and (max-width: 1060px) 
{
	body
	{
		--logoHeight: var(--headerHeight);
	}
	:root
	{
		--default-font-size: 14px;
	}
	div#header
	{
		max-width: 100vw;
	}
	/*
	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 16px;
	}

	#mainMenuWrapper a, 
	#mainMenuWrapper a:visited
	{
		padding-left: 13px;
		padding-right: 13px;
	}
	*/
	div.csc-textpic-intext-left-nowrap .csc-textpic-imagewrap
	{
		max-width: 55%;
	}
	.csc-textpic-intext-left-nowrap-760 .csc-textpic-text
	{
		margin-left: 58%;
	}
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		min-height: 100px;
		margin-right: 15px;
	}
	#logo img
	{
		width: 250px;
	}
}


@media only screen and (max-width: 990px) 
{
	body
	{
		--logoHeight: calc(var(--headerHeight) - 1em);
	}
	/*
	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 15px;
	}
	#mainMenuWrapper a, 
	#mainMenuWrapper a:visited
	{
		padding-left: 12px;
		padding-right: 12px;
	}

	*/
}

@media only screen and (max-width: 980px)
{
	div#header,
	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 10px;
	}
}

@media only screen and (max-width: 960px)
{
	/*
	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 14px;
	}

	 */
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		min-height: 100px;
		margin-right: 10px;
	}
}


@media only screen and (max-width: 900px) 
{
	div#headerWrapper
	{
		z-index: 21;
	}

	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 13px;
	}
	#mainMenuWrapper a, 
	#mainMenuWrapper a:visited
	{
		padding-left: 10px;
		padding-right: 10px;
	}
	#footerComponents
	{
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		grid-column-gap: 1em;
		font-size: 1.2rem;
	}
	#footerComponents div.footerComponentsElement
	{
		width: auto;
		height: auto;
	}
	#footerComponents div.footerComponentInner
	{
		height: auto;
		font-size: 1em;
	}
}

@media only screen and (max-width: 800px)
{
	:root
	{
		--default-font-size: 12px;
	}
	#mainMenuWrapper ul.level1 li.level1
	{
		font-size: 12px;
	}
   .parallaxItemGroup div.textElementsBelowImage
   {
      background: #FFF;
   }
}

@media only screen and (max-width: 800px) and (orientation: landscape)
{
	#mainMenuWrapper a, 
	#mainMenuWrapper a:visited
	{
		padding-left: 6px;
		padding-right: 6px;
	}
}

@media only screen and (max-width: 770px)
{
	div#headerWrapper
	{
		z-index: 21;
	}
	#mainMenuWrapper a, 
	#mainMenuWrapper a:visited
	{
		padding-left: 4px;
		padding-right: 4px;
	}
	#mainContent h1
	{
		font-size: 24px;
	}
	div#bottomMenu
	{
		display: block;
	}
	div#copyright
	{
		float: none;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.csc-textpic-intext-left-nowrap-760 .csc-textpic-text
	{
		margin-left: 0px;
	}
	div.csc-textpic-intext-left-nowrap div.csc-textpic-imagewrap
	{
      display: block;
		max-width: 60%;
		margin-right: 15px !important;
		float: left;
	}
   #stoererItem4 div.csc-textpic-intext-left-nowrap div.csc-textpic-imagewrap
   {
      max-width: 50%;
      display: inline-block;
      float: left;
   }
   #contentWrapper div.csc-textpic-intext-left-nowrap .csc-textpic-text
   {
      margin-left: 0px;
   }
   div.csc-textpic-intext-left-nowrap .csc-textpic-text ul,
   div.csc-textpic-intext-left-nowrap .csc-textpic-text ol
   {
      display: table;
      break-inside: avoid;
   }
   div.csc-textpic .csc-textpic-imagewrap figure, 
   div.csc-textpic figure.csc-textpic-imagewrap
   {
      float: none;
   }
	.elMagrListCount3.fsndElMgrImageList li.listElement
	{
		display: block;
		float: none;
		width: 100%;
		min-height: 120px;
		margin-left: auto;
		margin-right: auto;
	}
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		min-height: 110px;
		margin-top: 15px;
		/*background-size: auto 100% !important;*/
	}
	.pagesMenu div.menuItem
	{
		width: 25%;
	}
	#centreArea div.frame-ruler-after,
	#centreArea .contentItemuploads div.frame-rulerAfter ul.csc-uploads,
   #centreArea div.frame-indent
	{
		margin-bottom: 15px;
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
   
   .rssFeedNewsShortTeaser div.news-list-view
   {

       -webkit-column-count: 1; /* Chrome, Safari, Opera */
       -moz-column-count: 1; /* Firefox */
       column-count: 1;

       -webkit-column-gap: 0px; /* Chrome, Safari, Opera */
       -moz-column-gap: 0px; /* Firefox */
       column-gap: 0px;
   }

}
@media only screen and (max-width: 760px)
{
	/*
	#mainMenuWrapper
	{
		display:  none;
	}
	div#header
	{
		display: flex;
		justify-content: space-between;
		max-width: 100vw;
	}

	div#logo
	{
		right: auto;
		left: 0px;
	}

	#mainMenuMobile
	{
		position: relative;
		height: auto;
		top: revert;
		right: revert;
		text-align: right;
	}
	#mainMenuMobile.active
	{
		width: 440px;
		max-width: 99vw;
		text-align: left;
	}
	#mainMenuMobile .menu-button .touch-button
	{
		position: relative;
		top: unset;
		right: unset;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		flex-flow: column;
		margin-top: -0.5em;
	}
	#mainMenuMobile .menu-button .touch-button .navicon
	{
		top: unset;
		right: unset;
		padding-right: 0.5rem;
		font-size: 3rem;
	}
	#mainMenuMobile.active .menu-button .touch-button .navicon
	{
		font-size: 1.4rem;
	}
	#mainMenuMobile div.menu-button
	{
		width: auto;
		float: none;
		display: flex;
		justify-content: flex-end;
		margin: 0;
		transition: all 0.8s ease-in-out;
	}
	#mainMenuMobile.active div.menu-button
	{
		justify-content: space-between;
		transform: revert;
	}
	#mainMenuNav
	{
		max-height: calc(100vh - 5em);
		overflow-y: auto;
		overflow-x: hidden;
	}
	ul.flexnav
	{
		text-align: left;
	}
	.pagesMenu div.menuItem
	{
		width: 33%;
	}
	*/


	#stoererRechts .stoererClosed div.stoererHeader
	{
		width: 40px;
	}
	#stoererRechts .stoererItem img
	{
		width: 20px;
	}
	div.csc-textpic .csc-textpic-imagewrap figure, 
	div.csc-textpic figure.csc-textpic-imagewrap
	{
		display: block;
	}
   div.callbackWrapper
   {
      display: block;
      text-align: center;
   }
   .footerComponentInner .callbackWrapper div.callbackButton
   {
      margin-top: 20px;
   }

   #langMenu
   {
	   margin-right: 5rem;
   }
}

@media only screen and (max-width: 740px) and (orientation: landscape)
{
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		top: 0px;
		margin-top: 0px;
	}
	#mainContent .fsndRespImageItemTitle h1, 
	#mainContent .fsndRespImageItemTitle h2
	{
		font-size: 20px;
		white-space: normal;
	}
	.parallax-container .fsndRespImageTitleWrapper.titleHasBG div.fsndRespImageItemTitle
	{
		padding-top: 18px;
		padding-bottom: 18px;
	}
}
@media only screen and (max-width: 740px) and (orientation: portrait)
{
	#mainMenuMobile.active
	{
		top: -40px;
	}
}

@media only screen and (max-width: 700px) and (orientation: landscape)
{
	body
	{
		--headerHeight: 4em;
	}
	.parallax-container .fsndRespImageTitleWrapper.titleHasBG div.fsndRespImageItemTitle
	{
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#mainContent .fsndRespImageItemTitle h1, 
	#mainContent .fsndRespImageItemTitle h2
	{
		font-size: 18px;
	}
}

@media only screen and (max-width: 640px)
{
	body#page
	{
		font-size: 14px;
	}
	div#websiteSlogan
	{
		font-size: 20px;
	}
	#mainContent h1
	{
		font-size: 22px;
	}
	div#websiteSlogan
	{
		max-width: 60%;
		left: 56%;
		white-space: normal;
	}
	#teaser .teaserImageSlogan div.teaserImageSloganInner
	{
		max-width: 90%;
	}
	#teaser .teaserImageSlogan div.teaserImageSloganInner h1,
	#teaser .teaserImageSlogan div.teaserImageSloganInner h2
	{
		font-size: 18px;
	}
	#centreArea article.contentItem div.articleInner
	{
		padding-top: 20px;
		margin-left: 15px;
		margin-right: 15px;
	}
	#mainContent .fsndRespImageItemTitle h1, 
	#mainContent .fsndRespImageItemTitle h2
	{
		white-space: normal;
		font-size: 16px;
	}
	#centreArea .frame-rulerBefore p,
	#centreArea .frame-rulerBefore ul,
	#centreArea .frame-rulerBefore ol
	{
		font-size: 16px;
	}
	#centreArea article.contentItem div.articleInner
	{
		margin-left: 0px;
		margin-right: 0px;
		padding-left: 15px;
		padding-right: 15px;
	}
	div.csc-textpic .csc-textpic-imagewrap img
	{
		width: 100%;
	}
	#centreArea .frame-rulerBefore ul,
	#centreArea .frame-rulerBefore ol
	{
		padding-left: 15px;
		padding-right: 15px;
	}
	.csc-firstHeader
	{
		padding-top: 15px;
	}
   #stoererRechts .csc-firstHeader
   {
      padding-top: 0px;
   }
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		margin-right: 15px;
		/*background-size: auto 80% !important;*/
	}
   article.contentItemlist div.articleInnerWrapper
   {
      max-width: 100%;
   }
   article.contentItemlist .articleInnerWrapper div.articleInner
   {
      padding-left: 0px !important;
      padding-right: 0px !important;
   }
   article.contentItemlist .articleInnerWrapper .articleInner div.detailHeader
   {
      padding-left: 15px;
      padding-right: 15px;
   }
   iframe
   {
      max-width: 98%;
      margin-left: 1%;
   }
	#footerComponents
	{
		grid-template-columns: 1fr;
	}
	.tx-powermail
	{
		flex-direction: column;
	}
	form.powermail_form_4.layout3 fieldset.powermail_fieldset_4.layout3 div:nth-last-child(-n+2)
	{
		display: block;
	}
	form.powermail_form_4.layout3 fieldset.powermail_fieldset_4.layout3 > div:nth-last-child(1)
	{
		width: fit-content;
	}
	.footerLevel
	{
		flex-direction: column;
	}
	#footerLevel2
	{
		align-items: center;
	}
	#footerLogoWrapper
	{
		align-self: center;
	}
	.menuPages .menuItemInner
	{
		flex-direction: column-reverse;
	}
	.menuItemText .menuItemLink
	{
		margin-bottom: 1rem;
	}
	.pdfItemWrapper
	{
		flex-direction: column;
	}
	.pdfItemWrapper .ce-gallery
	{
		border-radius: 0 0 var(--boxBorderRadius) var(--boxBorderRadius);
		width: 100%;
	}
	.pdfItemWrapper .ce-outer
	{
		display: flex;
		justify-content: center;
	}
	body:not(.indexPage) .textInTeaser
	{
		max-width: min(85dvw,380px);
		transform: translate(-10%, -80%);
	}
	.menuPages .menuItemInner
	{
		height: unset;
	}
	.pdfItemWrapper
	{
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 480px)
{
	body
	{
		--headerHeight: 5em;
	}
	body#page
	{
		font-size: 13px;
	}
	div#websiteSlogan
	{
		font-size: 18px;
		left: 62%;
	}
	div#stoererRechts
	{
		max-width: 99%;
	}
	#stoererRechts .stoererItem div.stoererHeader
	{
		min-width: 320px;
		max-width: 100%;
	}
	
	#stoererRechts .stoererClosed div.stoererHeader
	{
		min-width: 0px;
		width: 35px;
	}
	#stoererRechts .stoererItem img
	{
		width: 18px;
	}
	#stoererRechts .stoererItem .stoererHeader .csc-header h2, 
	#stoererRechts .stoererItem .stoererHeader .csc-header h3, 
	#stoererRechts .stoererItem .stoererHeader .csc-header a.intStoererLink, 
	#stoererRechts .stoererItem .stoererHeader .csc-header a.intStoererLink:visited
	{
		font-size: 14px;
	}
	.parallax-container .fsndRespImageTitleWrapper.titleHasBG div.fsndRespImageItemTitle
	{
		margin-left: auto;
		margin-right: auto;
	}
	#teaser .teaserImageSlogan div.teaserImageSloganInner
	{
		max-width: 98%;
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 20px;
		padding-bottom: 10px;
	}
	#centreArea .frame-rulerBefore p,
	#centreArea .frame-rulerBefore ul,
	#centreArea .frame-rulerBefore ol
	{
		font-size: 13px;
	}
	#centreArea .frame-rulerBefore ul,
	#centreArea .frame-rulerBefore ol
	{
		padding-left: 10px;
		padding-right: 10px;
	}
	.csc-firstHeader
	{
		padding-top: 25px;
	}
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		background-size: auto 65% !important;
	}

   #stoererRechts #stoererItem4.stoererOpened div.stoererHeader
   {
      width: auto;
   }
}
@media only screen and (max-width: 420px)
{
   .tx-powermail .layout3 div.powermail_fieldwrap_type_input.layout1, 
   .tx-powermail .layout3 div.powermail_fieldwrap_type_input.nolabel, 
   .tx-powermail .layout3 div.powermail_fieldwrap_type_country 
   {
      width: 98%;
      margin-right: auto;
      margin-left: auto;
   }
   #stoererItem4
   {
      max-width: 390px;
   }
}
@media only screen and (max-width: 400px)
{
	div.csc-textpic-intext-left-nowrap div.csc-textpic-imagewrap
	{
		max-width: 100%;
		margin-right: 0px !important;
		float: none;
	}
   #stoererItem4
   {
      max-width: 360px;
   }
}
@media only screen and (max-width: 380px)
{
	.pagesMenu div.menuItem
	{
		width: 50%;
	}
	#stoererRechts .stoererClosed div.stoererHeader
	{
		width: 25px;
      padding-right: 15px;
	}
   #stoererRechts #stoererItem0.stoererClosed div.stoererHeader
   {
      width: 40px;
      padding-right: 0px;
   }
	#stoererRechts .stoererItem img
	{
		width: 18px;
	}
   #stoererRechts #stoererItem0 .stoererItem img
   {
      width: 30px;
   }
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		min-height: 100px;
		margin-right: 10px;
		background-size: auto 75% !important;
	}
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		background-size: auto 50% !important;
	}
   #stoererItem4
   {
      max-width: 320px;
   }
}

@media only screen and (max-width: 380px)
{
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		background-size: auto 65% !important;
	}
}

@media only screen and (max-width: 320px)
{
	body
	{
		--headerHeight: 6em;
	}
	div#contentWrapper
	{
		/*top: 70px;*/
	}
	div#logo
	{
		/*height: 45px;*/
	}
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		min-height: 70px;
		margin-right: 5px;
		background-size: auto 55% !important;
	}
	.fsndElMgrImageList .listElement div.imageLinkInner
	{
		background-size: auto 50% !important;
	}
   #stoererItem4
   {
      zoom: 0.8;
   }
}

@media only screen and (max-height: 600px)
{
   div#stoererRechts
   {
      top: 130px;
   }
}

@media only screen and (max-width: 480px) and (max-height: 520px)
{
	body
	{
		--headerHeight: 3em;
	}
   /* android keyboard open */
   div#topBarWrapper,
   div#stoererRechts
   {
      display: none;
   }
   div#logo
   {
      /*height: 25px;*/
   }
   .menu-button .touch-button .navicon
   {
      top: -5px;
   }
}

@media only screen and (max-height: 900px)
{
   .fsndRespImageWrap
   {
      height: 450px;
   }
}

@media only screen and (max-height: 520px)
{
   div#stoererRechts
   {
      zoom: 0.8;
   }
   .fsndRespImageWrap
   {
      height: 350px;
   }
}

@media only screen and (max-height: 440px)
{
	body
	{
		--headerHeight: 5.5rem;
	}
   /* small landscape */
   div#topBarWrapper
   {
      display: none;
   }
   #mainMenuWrapper a, 
   #mainMenuWrapper a:visited
   {
      padding-bottom: 15px;
   }
   #mainMenuWrapper ul.level1 li.level1 ul.level2
   {
      padding-top: 15px;
   }
   div#logo
   {
      /*height: 25px;*/
   }
   #mainMenuMobile.active
   {
      top: 0;
   }
   .menu-button .touch-button .navicon
   {
      top: 5px;
   }
   div#stoererRechts
   {
      top: 100px;
      zoom: 0.7;
   }
   .fsndRespImageWrap
   {
      height: 280px;
   }
}
