/********************
*      Modules      *
********************/

body {
	opacity: 0;
}

*, :after, :before {
	box-sizing: border-box;
}

section{
	position: relative;
	width:100%;
}

.opacity_0{
	opacity: 0;
}

/* link / button */
.button{
	letter-spacing: 0.035rem;
	padding: 22px 30px 22px 40px;
	cursor:pointer;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.button svg {
	width: 15px;
	min-width: 15px;
	height: 12px;
	min-height: 12px;
	margin-left: 10px;
}

.button.primary{
	background-color:var(--primarbutton_background_color);
	color: var(--primarbutton_font_color);
}

.button.primary svg {
	fill: var(--primarbutton_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.button.primary:not(:disabled):hover {
	background-color:var(--primarbutton_hover_background_color);
	color:var(--primarbutton_hover_font_color);
}

.button.primary:not(:disabled):hover svg {
	fill: var(--primarbutton_hover_font_color);
}

.button.secondary{
	background-color:var(--sekundarbutton_background_color);
	color:var(--sekundarbutton_font_color);
}

.button.secondary svg {
	fill: var(--sekundarbutton_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.button.secondary:not(:disabled):hover {
	background-color:var(--sekundarbutton_hover_background_color);
	color:var(--sekundarbutton_hover_font_color);
}

.button.secondary:not(:disabled):hover svg {
	fill: var(--sekundarbutton_hover_font_color);
}

.link{
	cursor:pointer;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.link.primary{
	color:var(--primarlink_font_color);
}

.link.primary svg {
	fill: var(--primarlink_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.link.primary:hover{
	color:var(--primarlink_hover_font_color);
}

.link.primary:hover svg {
	fill: var(--primarlink_hover_font_color);
}

.link.secondary{
	color:var(--sekundarlink_font_color);
}

.link.secondary svg {
	fill: var(--sekundarlink_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.link.secondary:hover{
	color:var(--sekundarlink_hover_font_color);
}

.link.secondary:hover svg {
	fill: var(--sekundarlink_hover_font_color);
}

@media screen and (max-width: 575px) {
	.button {
		padding: 15px 28px 15px 32px;
	}
}

@media screen and (max-width: 330px) {
	.button {
		padding: 14px 15px 16px;
	}
}
/* end link / button */

/* edit post link */

a.mM_edit_post {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 99999;
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0056a1;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #f67939;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

a.mM_edit_post_global {
	position: fixed;
	top: 150px;
	left: 40px;
}

a.mM_edit_post svg {
	width: 24px;
	fill: #f67939;
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

a.mM_edit_post:hover svg {
	fill: #0056a1
}

a.mM_edit_post:hover {
	background: #f67939;
	color: #0056a1;
}

/* end edit post link */

/* form */

.cf7_formular input,
.cf7_formular textarea {
	font-family: "work-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.375;
	letter-spacing: 1px;
	outline: 0;
}

.wpcf7 form .wpcf7-not-valid-tip{
	margin-top: 5px;
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    /* border-radius: 5px; */
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    margin-bottom:0;
}

.wpcf7 form .wpcf7-response-output{
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    /* border-radius: 5px; */
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
    margin: 0;
    margin-top: 10px;
}

.wpcf7 form.sent .wpcf7-response-output{
	color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.wpcf7-form{
	display: block; /* table */
	width: 100%;
}

:-ms-input-placeholder,
::-ms-input-placeholder{
	color: var(--font_color);
	font-family: "work-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.375;
	letter-spacing: 1px;
	opacity: 1;
}

.wpcf7-form *::placeholder{
	color: var(--font_color);
	font-family: "work-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.375;
	letter-spacing: 1px;
	opacity: 1;
}

.cf7_text_top_main {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.cf7_text_top_main .cf7_pflichtfelder {
	font-size: 0.875rem;
}

.cf7_pflichtfelder.mobile {
	display: none;
}

.form_container,
.form_fields {
	display:flex;
	gap: 23px;
	margin-bottom: 23px;
}

.form_fields {
	margin-bottom: 0;
}

.form_container.form_textarea{
	margin-bottom: 17px;
}

.form_item,
.wpcf7-form-control{
	width: 100%;
}

.form_item{
	display: flex;
	flex-direction: column;
}

.wpcf7-form-control {
	background-color: transparent;
}

.form_acceptance{
	margin-top: 20px;
}

.form_textarea .wpcf7-form-control-wrap {
	width: 100%;
}

.form_accept .wpcf7-list-item-label {
	font-size: 0.875rem;
}

.wpcf7-list-item-label a {
	text-decoration: underline;
}

.wpcf7-form-control,
.form_container .mM_select_selected {
	padding: 22px 40px;
	border-radius: 0;
	border: 1px solid rgba(4, 36, 56, 0.5);
	transition: background-color .4s, border-color .4s;
}

.wpcf7-form-control.filled,
.wpcf7-form-control:focus,
.form_container .mM_select_selected.mM_select_arrow_active,
.form_container .mM_custom_select:has(.mM_same_as_selected) .mM_select_selected{
	background-color: #dde1e4;
}

.form_container .mM_custom_select:has(.mM_same_as_selected) .mM_select_selected {
	/* color: var(--white); */
}

.form_container .mM_select_selected.mM_select_arrow_active {
	border-bottom-color: transparent;
}

.form_container .mM_custom_select .mM_select_items.mM_select_hide {
	background-color: transparent;
	border-color: transparent;
	transition: background-color .4s, border-color .4s;
}

.form_container .mM_custom_select .mM_select_items {
	background-color: #dde1e4;
	border-right: 1px solid rgba(4, 36, 56, 0.5);
	border-left: 1px solid rgba(4, 36, 56, 0.5);
	border-bottom: 1px solid rgba(4, 36, 56, 0.5);
}

.form_container .mM_select_item {
	background-color: transparent;
	margin: 0 30px;
	padding: 5px 10px;
	border-top: 1px solid var(--dark_blue);
	transition: background-color .4s, color .4s, border-color .4s;
}

.form_container .mM_select_hide .mM_select_item {
	background-color: transparent !important;
}

.form_container .mM_custom_select .mM_select_items.mM_select_hide .mM_select_item {
	color: transparent;
	border-color: transparent;
}

.form_container .mM_select_item:first-child {
	margin-top: 10px;
	border-top: 0;
}

.form_container .mM_select_item:last-child {
	margin-bottom: 10px;
}

.form_container .mM_select_item:hover,
.form_container .mM_select_item.mM_same_as_selected {
	background-color: #abb5bc;
}

.form_container .mM_custom_select {
	width: 100%;
}

textarea.wpcf7-form-control {
	resize: none;
}

.form_item [data-name="nachricht"] .wpcf7-not-valid-tip{
	margin-top: -5px;
}

.form_submit{
	position: relative;
}

.submit_accept_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px 40px;
}

.wpcf7-form .form_submit .wpcf7-spinner{
	position: absolute;
    left: calc(50% - 12px);
	top: calc(50% - 12px);
    margin: 0;
}

.wpcf7-list-item{
	margin:0;
}

.wpcf7-acceptance{
	padding:0 !important;
	border:none !important;
}

.wpcf7-submit:not([disabled]) {
	cursor: pointer;
}

.wpcf7-submit[disabled],
.form_submit:has(.wpcf7-submit[disabled]):after {
	opacity: .5;
}

.wpcf7-form-control.wpcf7-radio {
	padding: 0 !important;
	border: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wpcf7-form-control.wpcf7-radio input {
	display: none;
}

.wpcf7-form-control.wpcf7-radio label{
	display: block;
	padding: 9px 20px;
	border: 1px solid var(--dark_blue);
	cursor: pointer;
	transition: background-color .4s;
}

.wpcf7-form-control.wpcf7-radio label:hover,
.wpcf7-form-control.wpcf7-radio label:has(input:checked) {
	background-color: var(--dark_blue);
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
	transition: color .4s
}

.wpcf7-form-control.wpcf7-radio label:hover .wpcf7-list-item-label,
.wpcf7-form-control.wpcf7-radio label:has(input:checked) .wpcf7-list-item-label {
	color: var(--white);
}

/* input checked */
.wpcf7-acceptance input {
	display: none;
}

.wpcf7-acceptance label {
	position: relative;
	padding-left: 39px;
}

.wpcf7-acceptance label:before,
.wpcf7-acceptance label:after {
	content: '';
	position: absolute;
}

.wpcf7-acceptance label:before {
	width: 21px;
	height: 21px;
	top: 1px;
	left: 0;
	background-color: transparent;
	border: 1.5px solid #8c9ba2;
}

.wpcf7-acceptance label:has(input.checked):before {
	background-color: #8c9ba2;
}

.wpcf7-acceptance label:after {
	opacity: 0;
	top: 7px;
	left: 5px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Isolationsmodus' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 359.22 255.12'%3E%3Cpath class='cls-1' d='M351.86,7.58c-9.93-9.99-26.12-10.12-36.2-.28L126.43,193.31,44.17,108.61c-9.81-10.17-26.05-10.5-36.28-.75-10.23,9.76-10.56,25.91-.75,36.08.04.05.09.09.13.14l100.3,103.38c4.8,4.87,11.36,7.63,18.22,7.66h.28c6.73-.02,13.18-2.67,17.96-7.38L351.63,43.58c10.03-9.89,10.13-25.99.23-36.01Z' style='fill:%23fff'/%3E%3C/svg%3E");
	background-size: 12px 9px;
	width: 12px;
	height: 9px;
}

.wpcf7-acceptance label:has(input.checked):after {
	opacity: 1;
}

.submit_btn {
	padding: 20px 70px 20px 40px;
}

.form_submit:after {
	content: '';
	position: absolute;
	top: 24px;
	right: 43px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='svg1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' style='fill: %23fff'%3E%3Cg id='layer1'%3E%3Cpath id='path335' d='M.71,0l-.71.71s6.7,6.73,10.05,10.1c-2.03.07-6.08.2-6.08.2l.03,1s4.82-.15,7.23-.23c.26,0,.47-.22.48-.48.09-2.41.28-7.22.28-7.22l-1-.04s-.16,4.05-.23,6.07C7.41,6.74.71,0,.71,0h0Z'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 12px 17px;
	width: 12px;
	height: 17px;
	rotate: -45deg;
	pointer-events: none;
}

/* end input checked */

@media screen and (max-width: 1599px) {
	.submit_accept_container {
		flex-direction: column;
		align-items: start;
	}
}

@media screen and (max-width: 1399px) {
	.wpcf7-form-control:not(.submit_btn), 
	.form_container .mM_select_selected {
		padding: 22px 25px;
	}
	
	.form_container .mM_custom_select .mM_select_arrows {
		right: 25px;
	}
}

@media screen and (max-width: 767px) {
	.form_container{
	    flex-direction: column;
		gap: 23px 0;
	}
	
	.form_fields{
		flex-direction: column;
		gap: 23px 0;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 575px) {
	.cf7_text_top_main {
		flex-direction: column-reverse;
	}
	
	.cf7_pflichtfelder.mobile {
		display: inline-block;
	}
	
	.cf7_pflichtfelder.desktop {
		display: none;
	}
	
	.submit_btn {
		padding: 14px 55px 16px 15px;
	}
	
	.form_submit:after {
		top: 19px;
		right: 28px;
	}
}

/* end form */




/************************************************************************************************************************************/

/****************************
*       Custom Styles       *
****************************/

:root {
	/* scroll-behavior: unset; */
	scroll-behavior: smooth;
	
	--yellow: #fab127;
	--white: #fff;
	--dark_blue: #042438;
	
	--desktop_padding: 120px;
	--tablet_padding: 81px;
	--mobile_padding: 43px;
}

html,
body{
	font-family: "work-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.375;
	letter-spacing: 0.04rem;
	background-color: var(--background_color);
	scroll-padding-top: 77px; /* header height */
}

body {
	margin: 0;
	/* background-image: url("../img/HintergrundGrid.png"); */
}

body.single-produkte section.m28_zitate {
	padding-top:var(--desktop_padding);
	padding-bottom:var(--desktop_padding);
}

body[data-title="Montage"] section.m28_zitate {
	padding-top:var(--desktop_padding);
}

body[data-title="Montage"] section.m25_kontaktstorer {
	padding-top:0;
}

/* das element vor kontaktstörer mit auskragung */
section:has( + section.m25_kontaktstorer[data-variante="v2"][data-auskragung="1"] ) {
	padding-bottom: 240px;
}

/* das element nach kontaktstörer mit auskragung */
section.m25_kontaktstorer[data-variante="v2"][data-auskragung="1"] + section {
	padding-top: calc(var(--desktop_padding) / 2);
}

/* das element vor text_und_bild mit auskragung */
section:has( + section.m2_text_und_bild[data-bild-auskragung="true"] ) {
	padding-bottom: calc(var(--desktop_padding) + 60px);
}

@media screen and (max-width: 1199px) {
	html,
	body{
		scroll-padding-top: 95px; /* header height */
	}
}
	
@media screen and (max-width: 991px) {
	body.single-produkte section.m28_zitate {
		padding-top:var(--tablet_padding);
		padding-bottom:var(--tablet_padding);
	}
	
	body[data-title="Montage"] section.m28_zitate {
		padding-top:var(--tablet_padding);
	}
	
	section:has( + section.m25_kontaktstorer[data-variante="v2"][data-auskragung="1"] ) {
		padding-bottom: 162px;
	}
	
	section.m25_kontaktstorer[data-variante="v2"][data-auskragung="1"] + section {
		padding-top: calc(var(--tablet_padding) / 2);
	}
	
	section:has( + section.m2_text_und_bild[data-bild-auskragung="true"] ) {
		padding-bottom: calc(var(--tablet_padding) + 60px);
	}
}

@media screen and (max-width: 767px) {
	section:has( + section.m25_kontaktstorer[data-variante="v2"][data-auskragung="1"] ) {
		padding-bottom: var(--tablet_padding);
	}
}

@media screen and (max-width: 575px) {
	body.single-produkte section.m28_zitate {
		padding-top:var(--mobile_padding);
		padding-bottom:var(--mobile_padding);
	}
	
	body[data-title="Montage"] section.m28_zitate {
		padding-top:var(--mobile_padding);
	}
	
	section:has( + section.m25_kontaktstorer[data-variante="v2"][data-auskragung="1"] ) {
		padding-bottom: var(--mobile_padding);
	}
	
	section.m25_kontaktstorer[data-variante="v2"][data-auskragung="1"] + section {
		padding-top: calc(var(--mobile_padding) / 2);
	}
	
	section:has( + section.m2_text_und_bild[data-bild-auskragung="true"] ) {
		padding-bottom: var(--mobile_padding);
	}
}

*{
	color:var(--font_color);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
	font-family: "space-grotesk-variable", sans-serif;
	font-variation-settings: "wght" 500;
	margin: 0;
	line-height: 1.2;
	letter-spacing: 0.02rem;
}

h1,
.h1 {
	font-size: 4.0625rem;
	margin-left: -4px;
	color: #fff;
}

h2,
.h2 {
	font-size: 2.8125rem;
	margin-bottom: 27px;
}

h3,
.h3 {
	font-size: 1.875rem;
}

h4,
.h4 {
	/* font-size: 1.5625rem; */
	font-size: 1.375rem;
}

.subheadline {
	color: #fab127;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 0.035rem;
}

.h1_subheadline {
	font-size: 1.375rem;
	margin-bottom: 12px;
}

.h2_subheadline {
	font-size: 1.0625rem;
	margin-bottom: 8px;
}

.h3_subheadline {
	margin-bottom: 8px;
}

.opacity_05 {
	opacity: .5;
}

.white {
	color: var(--white);
	fill: var(--white);
}

.yellow {
	color: var(--yellow);
	fill: var(--yellow);
}

.dark_blue {
	color: var(--dark_blue);
	fill: var(--dark_blue);
}

a.legal_link {
	position: relative;
	color: #fab12a !important;
	transition: opacity .4s;
}

a.legal_link:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: #fab12a;
	transform-origin: right;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: transform .4sease-out;
	-moz-transition: transform .4s ease-out;
	-ms-transition: transform .4s ease-out;
	-o-transition: transform .4s ease-out;
	transition: transform .4s ease-out;
}

a.legal_link:hover:after {
	transform-origin: left;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

@media screen and (max-width: 991px) {
	h1,
	.h1 {
		font-size: 2.8125rem;
	}
	
	.h1_subheadline,
	.h2_subheadline {
		font-size: 1rem;
	}
}

@media screen and (max-width: 575px) {
	h1, .h1,
	h2, .h2 {
		font-size: 2.1875rem;
	}
	
	h3, .h3 {
		font-size: 1.375rem;
	}
}

@media screen and (max-width: 369px) {
	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4 {
		hyphens: auto;
	}
}



p {
	margin-top: 0;
}

p:last-child {
	margin-bottom: 0;
}

a,
a:focus,
a:hover,
a:active,
a:visited {
	color: inherit;
	text-decoration: none;
	outline: none;
}

a {
	display: inline-block;
}

img,
svg {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.coverimg {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

img.coverimg {
	font-family: 'object-fit: cover; object-position: center;';
}

.overflow_x_hidden{
	overflow-x: hidden !important;
}

.overflow_y_hidden{
	overflow-y: hidden !important;
}

.wpgmza-filter-widgets {
	display: none !important;
}

.mM_container {
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
}

.mM_row {
	display: flex;
	flex-wrap: wrap;
	gap: 0 23px;
}

[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
	padding-top:var(--desktop_padding);
	padding-bottom:var(--desktop_padding);
}

[data-innerer-abstand="innerer_abstand_nur_oben"]{
	padding-top:var(--desktop_padding);
	padding-bottom:0;
}

[data-innerer-abstand="innerer_abstand_nur_unten"]{
	padding-top:0;
	padding-bottom:var(--desktop_padding);
}

[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
	margin-top:var(--desktop_padding);
	margin-bottom:var(--desktop_padding);
}

[data-auserer-abstand="auserer_abstand_nur_oben"]{
	margin-top:var(--desktop_padding);
	margin-bottom:0;
}

[data-auserer-abstand="auserer_abstand_nur_unten"]{
	margin-top:0;
	margin-bottom:var(--desktop_padding);
}

.mM_container[data-ausrichtung="links"]{
	padding-left: 0;
	margin-left: 0;
}

.mM_container[data-ausrichtung="rechts"]{
	padding-right: 0;
	margin-right:0;
}

.mM_container[data-ausrichtung="zentriert_ausfuellung_rechts"]{
	/* padding-right: 0;
	margin-right: 0; */
}

.mM_container[data-ausrichtung="zentriert_ausfuellung_links"]{
	/* padding-left: 0;
	margin-left: 0; */
}

.mM_container[data-container="container_full"] {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

[data-appearance="fade"]{
	opacity: 0;
}

.mM_d_flex {
	display: flex;
}

.mM_d_none {
	display: none;
}

.mM_d_block {
	display: block;
}

.mM_d_inlineblock {
	display: inline-block;
}

.mM_links {
	margin-top: 48px;
}

@media screen and (max-width: 575px) {
	.mM_links {
		margin-top: 36px;
	}
}

[class*="mM_col_"] {
	flex: 0 0 auto;
	max-width: 100%;
}

.mM_col_100,
[class*="mM_col_"] {
	width: 100%;
}



/* start search page */
section.search_header {
	height: 520px;
	padding: 120px 0px 60px;
	background: #f5f5f7; 
}

section.search_header .mM_container,
section.search_header .search_header_container {
	height: 100%;
}

section.search_header .search_header_container {
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 0 220px;
}

section.search_header .header_search_button_bar_container {
	display: flex;
	align-items: center;
	border: 1px solid #385461;
	position: relative;
}

section.search_header .header_search_button {
	height: 100%;
	display: flex;
}

section.search_header .header_search_button,
section.search_header .header_search_close_button {
	cursor: pointer;
	width: 67px;
	min-width: 67px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 201;
}

section.search_header .header_search_button {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--yellow);
}

section.search_header .header_search_close_button {
	position: absolute;
	top: 0;
	left: 0;
}

section.search_header .header_search_button svg,
section.search_header .header_search_close_button svg {
	width: 24px;
	min-width: 24px;
	fill: var(--dark_blue);
	
	transition: fill .4s;
}

section.search_header .header_search_close_button svg {
	width: 20px;
	min-width: 20px;
}



section.search_header .header_search_bar_container {
	width: 100%;
}

section.search_header .asl_w_container>div[id^="ajaxsearchlite"],
section.search_header .asl_w_container .probox {
	background: var(--white) !important;
	height: 100% !important;
}

section.search_header .asl_w_container div.asl_w .probox .proinput {
	margin: 0 !important;
	padding: 0 70px !important;
}

section.search_header .asl_w_container #ajaxsearchlite3 .probox *::placeholder,
section.search_header .asl_w_container #ajaxsearchlite3 .probox .proinput input {
	color: var(--font_color) !important;
	font-family: "work-sans", sans-serif !important;
	font-weight: 400 !important;
	font-style: normal !important;
	font-size: var(--font_size) !important;
	line-height: 1.375 !important;
	letter-spacing: 1px !important;
	opacity: 1 !important;
	
	transition: color .4s;
}

div.asl_r .results .item .asl_content h3, 
div.asl_r .results .item .asl_content h3 a {
	color: var(--font_color) !important;
}

section.search_header .asl_w_container #ajaxsearchlite3 .probox .proinput input.orig {
	height: 100%;
	padding: 22px 0 26px !important;
}

section.search_header .asl_w_container .proloading,
section.search_header .asl_w_container .promagnifier,
section.search_header .asl_w_container .proclose {
	display: none !important;
}


section.search_section {
	padding-top: 60px;
}

section.search_section .search_section_main {
	padding: 0 220px;
}

section.search_section .search_result_items_container {
	display: flex;
	flex-direction: column;
	gap: 23px;
}

section.search_section .search_result_item {
	padding: 43px 110px 40px 45px;
	background: var(--white);
	display: none;
}

section.search_section .search_result_item.show {
	display: block;
}

section.search_section .search_result_title {
	font-size: 1rem;
	font-weight: 600;
}

section.search_section .search_check_more {
	display: inline-flex;
	align-items: center;
	margin-top: 28px;
}

section.search_section .search_check_more svg {
	width: 17px;
	margin-left: 13px;
}

section.search_section .search_check_more span {
	font-weight: 600;
}

section.search_section .search_load_more_container {
	margin-top: 60px;
}

section.search_section .search_load_more_container_inner {
	display: flex;
	justify-content: center;
}

section.search_section .search_section_main {
	padding-left: 220px;
	padding-right: 220px;
}

@media screen and (max-width: 1399px) {
	section.search_section .search_section_main,
	section.search_header .search_header_container {
		padding: 0 100px;
	}
}

@media screen and (max-width: 991px) {
	section.search_section .search_section_main,
	section.search_header .search_header_container {
		padding: 0;
	}
	
	section.search_header {
		height: 491px;
	}
}

@media screen and (max-width: 575px) {
	section.search_header {
		height: 421px;
		padding: 0 0 var(--mobile_padding);
	}
	
	section.search_section .search_result_item {
		padding: 23px 30px 23px;
	}
	
	section.search_header .asl_w_container #ajaxsearchlite3 .probox .proinput input.orig {
		padding: 16px 0px 19px !important;
	}
	
	section.search_header .header_search_button, 
	section.search_header .header_search_close_button {
		width: 52px;
		min-width: 52px;
	}
	
	section.search_header .asl_w_container div.asl_w .probox .proinput {
		padding: 0 57px !important;
	}
}
/* *** */

.mM_footer_top_main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 120px 0 60px;
}

.mM_footer_top {
	background: #042639;
}

footer .header_desktop_burger_menu_wrapper {
	position: relative;
	top: auto;
	left: auto;
	display: block !important;
	padding-top: 0;
	z-index: auto;
}

footer .header_desktop_burger_menu_content {
	margin-top: 0;
}

footer .header_desktop_burger_menu_col,
footer .header_desktop_burger_menu_middle.header_desktop_burger_menu_col {
	padding-bottom: 116px;
}

footer .header_desktop_burger_menu_right.mobil {
	display: none;
}

.mM_footer_bottom {
	background: #fff;
}

.mM_footer_bottom_main {
	display: flex;
	justify-content: space-between;
	border-top: 4px solid #fab128;
	padding: 26px 0 23px;
}

.mM_footer_bottom_main * {
	font-size: .9rem;
	letter-spacing: 0;
}

p.footer_copyright_text {
	display: flex;
	align-items: center;
}

span#copyright_text_year {
	margin: 0 7px;
}

span.serarator {
	display: block;
	width: 3px;
	height: 3px;
	background: #042438;
	border-radius: 50%;
	margin: 0 10px;
}

span.half_opacity,
.mM_footer_bottom_main_right > p *:not(a),
.mM_footer_bottom_main_right > p a {
	opacity: .5;
}

.mM_footer_scrolltop_container {
	margin-left: 80px;
}

.mM_scrolltop_button {
	cursor: pointer;
	white-space: nowrap;
}

.mM_scrolltop_button svg {
	fill: #042437;
	width: 13px;
	min-width: 13px;
	height: 17px;
	min-height: 17px;
	transform: rotate(-90deg);
	margin-left: 8px;
}

.mM_footer_bottom_main_right {
	display: flex;
	align-items: center;
}

.mM_footer_bottom_main_right p {
	margin-bottom: 0;
}

[data-background-color="lightgrey"] {
	background-color: #f5f5f7;
}

[data-background-color="grey"] {
	background-color: transparent;
}

[data-background-color="blue"] {
	background-color: #0a3954;
}

[data-background-color="white"] {
	background-color: #fff;
}

.pattern_container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/dotted_pattern.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	opacity: .15;
	z-index: -1;
}

@media screen and (max-width: 575px) {
	.pattern_container {
		background-attachment: scroll;
	}
}

.BorlabsCookie,
._brlbs-content-blocker,
._brlbs-embed,
._brlbs-thumbnail {
	height: 100%;
}

._brlbs-thumbnail {
	object-fit: cover;
}

._brlbs-embed {
	width: 100%;
}

@media all and (min-width: 576px) {
	.mM_container {
		max-width: 540px;
	}
	
	.mM_col_25,
	.mM_col_33 {
		width: calc(50% - 11.5px);
	}
}

@media all and (min-width: 768px) {
	.mM_container {
		max-width: 720px;
	}
}

@media all and (min-width: 992px) {
	.mM_container {
		max-width: 960px;
	}
	
	.mM_col_50 {
		width: calc(50% - 11.5px);
	}
	
	.mM_col_33 {
		width: calc(33.3333% - 15.3333333px);
	}
}

@media all and (min-width: 1200px) {
	.mM_container {
		max-width: 1140px;
	}
	
	.mM_col_25 {
		width: calc(25% - 17.25px);
	}
}

@media all and (min-width: 1400px) {
	.mM_container {
		max-width: 1320px;
	}
}

@media all and (min-width: 1600px) {
	.mM_container {
		max-width: 1520px;
	}
}

@media all and (min-width: 1800px) {
	.mM_container {
		max-width: 1720px;
	}
}

@media all and (min-width: 1921px) {
	.mM_container {
		max-width: 1841px;
	}
}

@media all and (min-width: 2200px) {
	.mM_container {
		max-width: 2120px;
	}
}

@media all and (max-width: 1199px) {
	p.footer_copyright_text {
		flex-wrap: wrap;
	}
}

@media all and (max-width: 991px) {
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:var(--tablet_padding);
		padding-bottom:var(--tablet_padding);
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:var(--tablet_padding);
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom:var(--tablet_padding);
	}
	
	[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
		margin-top:var(--tablet_padding);
		margin-bottom:var(--tablet_padding);
	}
	
	[data-auserer-abstand="auserer_abstand_nur_oben"]{
		margin-top:var(--tablet_padding);
		margin-bottom:0;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_unten"]{
		margin-top:0;
		margin-bottom:var(--tablet_padding);
	}
	
	.mM_footer_bottom_main {
		flex-wrap: wrap;
	}
	
	.mM_footer_bottom_main_right {
		justify-content: space-between;
		width: 100%;
		margin-top: 20px;
	}
	
	footer .header_desktop_burger_menu_right.mobil {
		display: block;
		padding: 0;
		border: none;
	}
	
	footer .header_desktop_burger_menu_right.desktop {
		display: none;
	}
}

@media all and (max-width: 575px) {
	.mM_container {
		padding: 0 20px;
	}
	
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:var(--mobile_padding);
		padding-bottom:43px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:var(--mobile_padding);
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom:var(--mobile_padding);
	}
	
	[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
		margin-top:var(--mobile_padding);
		margin-bottom:var(--mobile_padding);
	}
	
	[data-auserer-abstand="auserer_abstand_nur_oben"]{
		margin-top:var(--mobile_padding);
		margin-bottom:0;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_unten"]{
		margin-top:0;
		margin-bottom:var(--mobile_padding);
	}
	
	.mM_footer_top_main {
		padding: 43px 0 60px;
	}
}

/* @media all and (max-width: 475px) { */
@media all and (max-width: 415px) {
	.footer_copyright_text {
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		-ms-hyphens: auto;
		-o-hyphens: auto;
		hyphens: auto;
		word-break: break-word;
	}
	
	.mM_footer_bottom_main_right > p *:not(a),
	.mM_footer_bottom_main_right > p a {
		opacity: 1;
	}
	
	p.footer_copyright_text {
		padding: 0 14px;
	}
	
	.mM_footer_top_main {
		padding: 43px 0 32px;
	}
	
	footer .header_desktop_burger_menu_left.header_desktop_burger_menu_col {
		padding: 0;
		padding-bottom: 0;
	}
	
	footer .header_desktop_burger_legal_menu {
		margin-top: 22px;
	}
	
	footer .header_desktop_burger_menu_right.mobil {
		margin-top: 0;
	}
}
