html {
	scroll-behavior: smooth;
	color-scheme: light;
	height: 100%;
}
body {
	width: 100%;
	margin: 0;
	overflow-x: hidden;
	height: 100%;
}
body.navOpen {
	overflow-y: hidden;
	position: relative;
}
.hiddenelement {
	display: none;
}

.logged-in .hiddenelement {
	display: block;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
iframe {
	width: 100%;
	max-width: 100%;
	display: block;
}
span.flag {
	display: flex;
	align-items: center;
}
img.flag {
	display: inline-block;
	height: 1em;
	width: auto;
	margin-right: .25em;
	border: 1px solid #DCDCDC;
	align-self: start;
	margin-top: .25em;
}
.hidden {
	display: none !important;
}
.hk-csv-instantsearch {
	display: block;
	margin-top: 1rem;
	width: 100%;
}
.hk-csv-search-wrapper li {
	margin: 0;
	padding: 0;
	display: block;
}
.hk-csv-search-wrapper li::before {
	content: '' !important;
}
.hk-csv-search-wrapper .hk-csv-button {
	display: none;
}
.hk-csv-instant-list {
	display: block !important;
	border: none !important;
}

/* -------------------- Header -------------------- */
.site-header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 9rem;
	transition: all 0.1s ease-in-out;
	z-index: 1000;
	width: 100%;
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.5);
	background-color: #fff;
}
#page.hasAnkermenu .site-header {
	box-shadow: none;
}
.site-header-inner {
	margin: 0 auto;
	max-width: 1280px;
	display: flex;
	padding: 2rem;
	background-color: #fff;
}
body.isScrolled .site-header {
	height: 7rem;
}
body.navOpen .site-header {
	height: 100%;
}
.site-branding {
	margin-right: auto
}
.site-branding a {
	transition: all 0.1s ease-in-out;
	display: block;
	height: 5rem;
}
body.isScrolled .site-branding a {
	height: 3rem;
}
.site-branding img {
	display: block;
	height: 100%;
	width: auto;
}
.site-menu {
	margin-left: auto;
}
a#mobile-menu-trigger {
	display: block;
	width: 3rem;
	height: 3rem;
}
a#mobile-menu-trigger::before {
	right: 2rem;
	top: 2rem;
	position: fixed;
	width: 3rem;
	height: 3rem;
	font-size: 	3rem;
	line-height: 1;
	color: #2b3c7f;
	font-family: 'Material Icons';
	content: '\e5d2';
}
body.navOpen a#mobile-menu-trigger::before {
	content: '\e5cd';
}
a#mobile-menu-trigger:hover,
a#mobile-menu-trigger:hover::before {
	text-decoration: none;
}
.main-menu {
	position: absolute;
	top: 9rem;
	left: 0;
	right: 0;
	display: none;
	height: calc(100% - 9rem);
}
body.isScrolled .main-menu {
	top: 7rem;
	height: calc(100% - 7rem);
}
body.navOpen .main-menu {
	display: block;
	background-color: #2b3c7f;
	overflow-y: auto;
}
.main-menu ul.menu {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	margin: 0;
}
.main-menu ul.menu > li {
	margin-bottom: 1rem;
}
.main-menu ul.menu > li:last-child {
	margin-bottom: 0;
}
.main-menu ul.sub-menu > li {
	border-bottom: 1px solid #fff;
}
.main-menu ul.sub-menu > li:last-child {
	border-bottom: none;
}
.main-menu ul.menu > li > a {
	text-transform: uppercase;
}
.main-menu a {
	display: block;
	color: #fff;
	padding: .25em 0;
	font-family: 'Hind', Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 1.25em;
}
.main-menu a:hover {
	text-decoration-color: transparent;
	-webkit-text-decoration-color: transparent;
	-moz-text-decoration-color: transparent;
}
.main-menu ul.sub-menu {
	margin: 0;
	transition: all 0.2s ease-in-out;
	overflow: hidden;
}
@media only screen and (min-width: 960px) {
	a#mobile-menu-trigger {
		display: none;
	}
	.main-menu {
		display: block;
		position: relative;
		top: auto;
		right: auto;
		left: auto;
		background-color: transparent;
		overflow: visible;
		height: auto;
	}
	body.isScrolled .main-menu {
		top: auto;
		height: auto;
	}
	.main-menu ul.menu {
		margin: 2rem;
		padding: 0;
	}
	.main-menu ul.menu {
		-ms-flex-direction: row; flex-direction: row;
		margin: 0 -.5em;
	}
	.main-menu ul.menu > li {
		position: relative;
		padding: 0;
		margin: 0;
	}
	.main-menu ul.menu > li > a {
		padding: 0 .5em 1em .5em;
		text-transform: none;
	}
	.main-menu ul.sub-menu {
		position: absolute;
		left: .5em;
		top: 2em;
		padding: .25em 1rem;
		max-height: 0;
		opacity: 0;
		background-color: #2b3c7f;
		width: min-content;
	}
	.main-menu ul.menu > li:hover > ul.sub-menu {
		max-height: 99999px;
		opacity: 1;
	}
	.main-menu a {
		color: #2b3c7f;
		padding: 0;
	}
	.main-menu ul.sub-menu a {
		color: #fff;
		padding: .5em 0;
		font-size: 1em;
		hyphens: manual;
	}
	.main-menu ul.menu > li.current_page_item > a,
	.main-menu ul.menu > li.current_page_ancestor > a,
	.main-menu ul.menu > li > a:hover {
		text-decoration-color: #2b3c7f;
		-webkit-text-decoration-color: #2b3c7f;
		-moz-text-decoration-color: #2b3c7f;
	}
	.main-menu ul.sub-menu > li.current_page_item > a,
	.main-menu ul.sub-menu > li > a:hover {
		text-decoration-color: #fff;
		-webkit-text-decoration-color: #fff;
		-moz-text-decoration-color: #fff;
	}
}
/* -------------------- Navigation -------------------- */
@media only screen and (max-width: 959px) {
	.site-menu li.current-menu-parent > a,
	.site-menu li.current-menu-item > a {
		padding-left: 1.4em;
		color: #fff;
		position: relative;
	}
	.site-menu li.current-menu-parent > a::before,
	.site-menu li.current-menu-item > a::before {
		position: absolute;
		left: 0;
		width: 1.4em;
		top: calc(.25em + 1px);
		content: '\e8e4';
		text-decoration: none;
		font-family: 'Material Icons';
		font-weight: normal;
		font-style: normal;
		font-size: 1.2em;  /* Preferred icon size */
		display: inline-block;
		line-height: 1;
		text-transform: none;
		letter-spacing: normal;
		word-wrap: normal;
		white-space: nowrap;
		direction: ltr;	
		/* Support for all WebKit browsers. */
		-webkit-font-smoothing: antialiased;
		/* Support for Safari and Chrome. */
		text-rendering: optimizeLegibility;	
		/* Support for Firefox. */
		-moz-osx-font-smoothing: grayscale;	
		/* Support for IE. */
		font-feature-settings: 'liga';
	}
}
/* -------------------- Mobile Navigation -------------------- */
/* -------------------- Footer -------------------- */
.site-footer {
	margin: auto 0 0 0;	
	background-color: #2b3c7f;
	color: #fff;
	width: 100%;
	position: relative;
}

#page.hasAnkermenu .site-footer,
#page.hasAnkermenu .site-footer-sub {
	transform: translateY(2.5em);
}
.site-footer-zierstreifen {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1em;
}
.site-footer-inner {
	margin: 0 auto;
	max-width: 1280px;
	display: -ms-flexbox; display: flex;
	padding: 4rem 2rem;
}
.site-footer ul {
	display: -ms-flexbox; display: flex;
	-ms-flex-direction: column; flex-direction: column;
	margin: 0 -.75em;
}
.site-footer li {
	padding: 0 .75em;
}
.site-footer li.current_page_item  a,
.site-footer li.current-page-parent a {
	text-decoration-color: #fff;
	-webkit-text-decoration-color: #fff;
	-moz-text-decoration-color: #fff;
}
/* -------------------- Footer -------------------- */
.site-footer-sub {
	width: 100%;
}
.site-footer-sub-inner {
	margin: 0 auto;
	max-width: 1280px;
	display: -ms-flexbox; display: flex;
	padding: 2rem 2rem;
}
.site-footer-sub-admin {
	margin-top: auto;
	background-color: #2b3c7f;
	color: #fff;
}
/* -------------------- Back to Top -------------------- */
a#back-to-top {
	position: fixed;
	right: 2rem;
	bottom: -2rem;
	z-index: 999;
	mix-blend-mode: multiply;
	background-blend-mode: multiply;
}
a#back-to-top.isVisible {
	bottom: 2rem;
}
a#back-to-top::before {
	color: #2b3c7f;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 2rem;
	height: 2rem;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 2rem;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;	
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;	
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;	
	/* Support for IE. */
	font-feature-settings: 'liga';
}
a#back-to-top::before {
	content: '\e5d8';
}
a#back-to-top::before {
	text-decoration: none;
}
/* -------------------- Ankermenü -------------------- */
::-webkit-scrollbar {
    display: none;
}
a.anchor {
	display: block;
	position: relative;
	visibility: hidden;
	top: -9rem;
}
a.anchor-inner {
	top: -13rem;
}
#page.hasAnkermenu a.anchor {
	top: calc(-9rem - 2.5em);
}
#page.hasAnkermenu a.anchor-inner {
	top: calc(-13rem - 2.5em);
}
body.isScrolled a.anchor {
	top: -7rem;
}
body.isScrolled a.anchor-inner {
	top: -11rem;
}
body.isScrolled #page.hasAnkermenu a.anchor {
	top: calc(-7rem - 2.5em);
}
body.isScrolled #page.hasAnkermenu a.anchor-inner {
	top: calc(-11rem - 2.5em);
}
.anker-menu {
	display: none;
	position: fixed;
	top: 9rem;
	left: 0;
	right: 0;
	height: 2.5em;
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.5);
	transition: all 0.1s ease-in-out;
	background-color: rgba(247,247,250,1.00);
	z-index: 999;
}
.anker-menu::before {
	bottom: 0;
	content: '';
	height: .75em;
	position: absolute;
	left: 0;
	right: 0;
	background-color: rgba(247,247,250,1.00);
	z-index: 1;
	pointer-events: all;
}
body.isScrolled .anker-menu {
	top: 7rem;	
}
.anker-menu-i {
	margin: 0 auto;
	max-width: 100%;
	padding: 0;
}
.anker-menu-i::before, .anker-menu-i::after {
    top: 0;
    content: '';
    width: 2rem;
    position: absolute;
    height: 2.5em;
    z-index: 2;
}
.anker-menu-i::before {
    left: 0;
    background: linear-gradient(to right, rgba(247,247,250, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.anker-menu-i::after {
    right: 0;
    background: linear-gradient(to left, rgba(247,247,250, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.anker-menu-c {  
	overflow-y: hidden;
	overflow-x: auto;
	will-change: transform;
	user-select: none;
	transition: all 0.1s ease-in-out;
}
#page.hasAnkermenu .anker-menu {
	display: block;
}
.anker-menu ul {
	display: flex;
	width: max-content;
}
.anker-menu li {
	line-height: 2.5em;
	padding-right: 1em;
	white-space: nowrap;
	opacity: .6;
	color: #2b3c7f;
}
.anker-menu li:first-child {
	padding-left: 2rem;
}
.anker-menu li:last-child {
	padding-right: 2rem;
}
.anker-menu a {
	text-decoration: none;
	color: #2b3c7f;
	font-size: .9em;
}
.anker-menu li:has(a.isActive) {
	opacity: 1;
}
.anker-menu a:hover,
.anker-menu a.isActive {
	text-decoration: underline;
}
@media only screen and (min-width: 960px) {
	.anker-menu-i {
		max-width: 1280px;
		padding: 0 2rem;
	}
	.anker-menu li:first-child {
		padding-left: 0;
	}
	.anker-menu li:last-child {
		padding-right: 0;
	}
}
/* -------------------- Struktur -------------------- */
.site {
	display: -ms-flexbox; display: flex;
	-ms-flex-direction: column; flex-direction: column;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}
.site-main {
	padding-top: 9rem;
	transition: all 0.1s ease-in-out;
	position: relative;
	z-index: 500;
}
body.isScrolled .site-main {
	padding-top: 7rem;
}
#page.hasAnkermenu .site-main {
	transform: translateY(2.5em);
}
.site-content {
	width: 100%;
}
.site-content-inner {
	display: -ms-flexbox; display: flex;
	-ms-flex-direction: column; flex-direction: column;
}
section {
	width: 100%;
	overflow: hidden;
}
section.modul-weiss {
	background-color: #fff;
}
section.modul-grau {
	background-color: rgba(247,247,250,1.00);
}
.section-inner {
	padding: 4rem 2rem;
	max-width: 1280px;
	margin: 0 auto;
}
.row {
	display: -ms-flexbox; display: flex;
	width: 100%;
}
.row-inner {
	margin: -1rem;
	display: -ms-flexbox; display: flex;
	-ms-flex-wrap: wrap; flex-wrap: wrap;
	width: calc(100% + 2rem);
}
.col {
	width: calc(100% - 2rem);
	padding: 1rem;
}
.col-inner {
	width: 100%;
	height: 100%;
}
.col-content {
	width: 100%;
	height: 100%;
}
/* -------------------- Content -------------------- */
.content-header-inner {
	position: relative;
	padding-top: 100%;
}
.content-header-inner img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	left: 0;
	top: 0;
}
/* -------------------- Textboxen -------------------- */
.textbox a,
.textbox a.link,
.textbox a.link-back,
.textbox a.link-view,
.textbox a.link-extern,
.textbox a.link-download,
.textbox a.link-mail,
.textbox a.link-phone,
.textbox a.link-fax,
.textbox a.link-mobile,
.textbox a.link-edit,
.textbox a.link-home,
.textbox a.link-logout  {
	color: #3366ff;
}
.textbox a.link-delete {
	color: red;
}
.site-footer .textbox a,
.site-footer .textbox a.link,
.site-footer .textbox a.link-back,
.site-footer .textbox a.link-view,
.site-footer .textbox a.link-extern,
.site-footer .textbox a.link-download,
.site-footer .textbox a.link-mail,
.site-footer .textbox a.link-phone,
.site-footer .textbox a.link-fax,
.site-footer .textbox a.link-mobile,
.site-footer .textbox a.link-home,
.site-footer .textbox a.link-edit,
.site-footer .textbox a.link-logout,
.site-footer .textbox a.link-delete {
	color: #fff;
}
.textbox li,
.textbox a.link,
.textbox a.link-back,
.textbox a.link-view,
.textbox a.link-extern,
.textbox a.link-download,
.textbox a.link-mail,
.textbox a.link-phone,
.textbox a.link-fax,
.textbox a.link-mobile,
.textbox a.link-home,
.textbox a.link-logout,
.textbox span.link-fax {
	padding-left: 1.4em;
	position: relative;
}
.textbox li::before,
.textbox a.link::before,
.textbox a.link-back::before,
.textbox a.link-view::before,
.textbox a.link-extern::before,
.textbox a.link-download::before,
.textbox a.link-mail::before,
.textbox a.link-phone::before,
.textbox a.link-fax::before,
.textbox a.link-mobile::before,
.textbox a.link-home::before,
.textbox a.link-logout::before,
.textbox span.link-fax::before {
	position: absolute;
	left: 0;
	top: 1px;
	width: 1.4em;
	font-family: 'Material Icons Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 1em;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;	
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;	
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;	
	/* Support for IE. */
	font-feature-settings: 'liga';
}
.textbox a.link-edit::before,
.textbox a.link-delete::before {
	font-family: 'Material Icons Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 1em;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;	
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;	
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;	
	/* Support for IE. */
	font-feature-settings: 'liga';
}
.textbox li::before {
	content: '\e15b';
	line-height: 1.6;
	top: 0;
}
.textbox a.link::before {
	content: '\f1df';
}
.textbox a.link-back::before {
	content: '\e5c4';
}
.textbox a.link-view::before {
	content: '\e8f4';
}
.textbox a.link-extern::before {
	content: '\f1e1';
}
.textbox a.link-download::before {
	content: '\f1e3';
}
.textbox a.link-mail::before {
	content: '\e0be';
}
.textbox a.link-phone::before {
	content: '\e0cd';
}
.textbox a.link-fax::before,
.textbox span.link-fax::before {
	content: '\e8ad';
}
.textbox a.link-mobile::before {
	content: '\e32c';
}
.textbox a.link-home::before {
	content: '\e88a';
}
.textbox a.link-logout::before {
	content: '\e9ba';
}
.textbox a.link-edit::before {
	content: '\e3c9';
}
.textbox a.link-delete::before {
	content: '\e872';
}
.textbox a.link:hover::before,
.textbox a.link-back:hover::before,
.textbox a.link-view:hover::before,
.textbox a.link-extern:hover::before,
.textbox a.link-download:hover::before,
.textbox a.link-mail:hover::before,
.textbox a.link-phone:hover::before,
.textbox a.link-fax:hover::before,
.textbox a.link-fax:mobile::before,
.textbox a.link-home:mobile::before,
.textbox a.link-logout:mobile::before {
	text-decoration: none;
}
.textbox a.button::before,
.textbox a.button:hover::before,
.textbox a.button-invers::before,
.textbox a.button-invers:hover::before {
	content: '';
}
/* -------------------- Blog -------------------- */
.post-col {
	display: none;
}
.post-col.isActive {
	display: block;
}
.filterbox {
	display: -ms-flexbox; display: flex;
	margin: -.25em -.5em;
}
.filterbox-inner {
	display: -ms-flexbox; display: flex;
	-ms-flex-wrap: wrap; flex-wrap: wrap;
}
a.filter-item {
	padding: .25em .5em;
	color: #3366ff;
}
span.filter-item-sep {
	color: #3366ff;
	padding: .25em 0;
}
a.filter-item.isActive {
	text-decoration: underline;
}
.post-box {
	height: 100%;
	display: -ms-flexbox; display: flex;
	-ms-flex-direction: column; flex-direction: column;
	background-color: rgba(247,247,250,1.00);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.5);
}
section.modul-grau .post-box {
	background-color: #fff;
}
.post-box h3 {
	margin-top: 0;
}
.post-box img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
}
.post-box-image a {
	display: block;
	position: relative;
	padding-bottom: calc(100%/3*2);
}
.post-box-content {
	padding: 1.5rem 1.5rem 1em 1.5rem;
}
.post-box .textbox {
	margin: auto 0 0 0;
	padding: 0 1.5rem 1.5rem 1.5rem;
}
/* -------------------- Modul Kacheln -------------------- */
.kachel {
	background-color: rgba(247,247,250,1.00);
	padding: 1.5rem;
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.5);
	height: calc(100% - 3rem);
}
section.modul-grau .kachel {
	background-color: #fff;
}
.modul-texteditor .col-content,
.kachel-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
.modul-texteditor .textbox-unten,
.kachel-inner .textbox-unten {
	margin-top: auto;
	padding-top: 1.5em;
}
/* -------------------- Login -------------------- */
.frak-login .login-remember,
.frak-login > a {
	display: none;
}
.frak-login p {
	width: 100%;
}
.frak-login > form {
	-ms-flex-direction: column; flex-direction: column;
}
/* -------------------- Modul Bild / Text -------------------- */
.modul-bild-text .bild-text-bild {
	position: relative;
	padding-top: calc(100%/16*9);
}
.modul-bild-text .bild-text-bild img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.modul-bild-text .bild-text-bild.c-1 img {
	object-fit: cover;
}
.modul-bild-text .bild-text {
	background-color: rgba(247,247,250,1.00);
}
.modul-bild-text.modul-grau .bild-text {
	background-color: #fff;
}
.modul-bild-text .bild-text-text .textbox {
	padding: 1.5rem;
}
.modul-bild-text .bild-text-text .textbox-unten {
	margin-top: auto;
	padding-top: 0;
}
.modul-bild-text .bild-text-text {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
.bild-text ~ .bild-text {
	border-top: 1px solid #dedede;
}
@media only screen and (min-width: 960px) {
	.modul-bild-text .bild-text-bild {
		padding-top: 0;
	}
	.modul-bild-text .bild-text-bild img {
		object-fit: contain;
	}
	.modul-bild-text .bild-text-bild.c-1 img {
		object-fit: cover;
	}
	.modul-bild-text .bild-text {
		display: -ms-flexbox; display: flex;
	}
	.modul-bild-text.typ-0 .bild-text:nth-child(2n) {
		-ms-flex-direction: row-reverse; flex-direction: row-reverse;
	}
	.modul-bild-text.typ-1 .bild-text:nth-child(2n-1) {
		-ms-flex-direction: row-reverse; flex-direction: row-reverse;
	}
	.modul-bild-text .bild-text-bild,
	.modul-bild-text .bild-text-text {
		width: 50%;
	}
}
/* -------------------- Modul Akkordeon -------------------- */
.modul-akkordeon .akkordeon {
	border-top: 1px solid #2b3c7f;
	padding: 1rem 0;
}
.modul-akkordeon .akkordeon:last-child {
	border-bottom: 1px solid #2b3c7f;
}
.modul-akkordeon .akkordeon-content {
	overflow: hidden;
	max-height: 0;
	transition: all 0.2s ease-in-out;
}
.modul-akkordeon .akkordeon.isOpen .akkordeon-content {
	max-height: 99999px;
}
.modul-akkordeon .akkordeon-content-inner {
	margin-top: 1em;
}
.modul-akkordeon a.akkordeon-trigger {
	display: block;
	position: relative;
	padding-right: 2em;
}
.modul-akkordeon a.akkordeon-trigger::after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 1.2em;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;	
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;	
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;	
	/* Support for IE. */
	font-feature-settings: 'liga';
	position: absolute;
	top: 0;
	right: 0;
	content: '\e145';
}
.modul-akkordeon .akkordeon.isOpen a.akkordeon-trigger::after {
	content: '\e15b ';
}
/* -------------------- Modul Suche -------------------- */
.anwaltssuche,
.stellengesuche,
.stellenangebote,
.raeumeangebote,
.raeumegesuche {
	margin: -1rem;
	display: -ms-flexbox; display: flex;
}
.anwaltssuche-inner,
.stellengesuche-inner,
.stellenangebote-inner,
.raeumeangebote-inner,
.raeumegesuche-inner {
	width: 100%;
}
.anwaltssuche-content,
.stellengesuche-content,
.stellenangebote-content,
.raeumeangebote-content,
.raeumegesuche-content {
	display: -ms-flexbox; display: flex;
	-ms-flex-wrap: wrap; flex-wrap: wrap;
}
.anwaltssuche-resultat,
.stellengesuche-resultat,
.stellenangebote-resultat,
.raeumeangebote-resultat,
.raeumegesuche-resultat,
.anwaltssuche-loadmore {
	width: calc(100% - 2rem);
	margin: 1rem;
}
.anwaltssuche-loadmore {
	text-align: center;
}
.mitglied,
.stellengesuch,
.stellenangebot {
	display: -ms-flexbox; display: flex;
	-ms-flex-direction: column; flex-direction: column;
	background-color: rgba(247,247,250,1.00);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.5);
	width: calc(100% - 2rem);
	margin: 1rem;
}
section.modul-grau .mitglied,
section.modul-grau .stellengesuch,
section.modul-grau .stellenangebot {
	background-color: #fff;
}
.mitglied.isActive,
.stellengesuch.isActive,
.stellenangebot.isActive {
	display: block;
	width: 100%;
}
.mitglied-content,
.stellengesuch-content,
.stellenangebot-content {
	padding: 1.5rem;
	height: calc(100% - 3rem);
}
.mitglied span,
.stellengesuch span,
.stellenangebot span {
	display: block;
}
.stellengesuch-inner {
	height: 100%;
}
.stellengesuch-inner.isRAK {
	background-image: url(https://www.rak-freiburg.de/wp-content/uploads/2022/03/rak_parallax2.png);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: bottom;
}
@media only screen and (min-width: 640px) {
	.mitglied,
	.stellengesuch,
	.stellenangebot {
		width: calc(50% - 2rem);
	}
}
@media only screen and (min-width: 960px) {
	.mitglied,
	.stellengesuch,
	.stellenangebot {
		width: calc(100%/3 - 2rem);
	}
}
#loader,
#uploader,
#anwaltssuche-loader,
#stellengesuch-loader,
#stellenangebot-loader {
	position: fixed;
	z-index: 99999999;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	opacity: 0;
	background-color: rgba(208,208,208,.5);
	color: #777;
	display: none;
	justify-content: center;
	-ms-flex-align: center; align-items: center;
	transition: all 0.2s ease-in-out;
}
#loader.isActive,
#uploader-loader.isActive,
#anwaltssuche-loader.isActive,
#stellengesuch-loader.isActive,
#stellenangebot-loader.isActive {
	display: -ms-flexbox; display: flex;
	opacity: 1;
}
/* -------------------- Modul Parallax -------------------- */
.modul-parallax {
	position: relative;
	z-index: 1;
}
.modul-parallax-inner {
	position: relative;
}
.modul-parallax-inner {
	position: relative;
	overflow: hidden;
}
img.img-parallax {
	width: 100vmax;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	pointer-events: none
}
img.img-parallax-2 {
	position: absolute;
	width: 100%;
	height: 1em;
}
img.img-parallax-2.typ-0 {
	bottom: 0;
}
img.img-parallax-2.typ-1 {
	top: 0;
}
.modul-parallax-inner.typ-0 {
	padding-top: 100%;
}
.modul-parallax-inner.typ-1 {
	padding-top: calc(100%/3*4);
}
.modul-parallax-inner.typ-2 {
	padding-top: calc(100%/3*2);
}
/* -------------------- Modul Stellenanzeigen -------------------- */
.stellenanzeige {
	display: flex;
	flex-direction: column;
	height: 100%;
}
/* -------------------- Modul Anwaltsdetails -------------------- */
.imagebox-2-3 {
	width: 240px;
	height: 360px;
}
.imagebox-2-3 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.imagebox-4-2 {
	width: 160px;
	height: 80px;
	padding: .5em;
	background-color: #fff;
	border: 1px solid #DCDCDC;
}
@media only screen and (min-width: 640px) {
	.imagebox-mitglied {
		width: 240px;
		height: 120px;
	}
}
.imagebox-4-2 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* -------------------- Responsive -------------------- */
@media only screen and (min-width: 640px) {
	.modul-parallax-inner.typ-0,
	.content-header-inner {
		padding-top: calc(100%/2);
	}
	.modul-parallax-inner.typ-1 {
		padding-top: calc(100%/3*2);
	}
	.modul-parallax-inner.typ-2 {
		padding-top: calc(100%/3);
	}
	.col-25 {
		width: calc(50% - 2rem);
	}
	.col-33 {
		width: calc(50% - 2rem);
	}
}
@media only screen and (min-width: 960px) {
	.modul-parallax-inner.typ-1 {
		padding-top: calc(100%/3);
	}
	.modul-parallax-inner.typ-0,
	.content-header-inner {
		padding-top: calc(100%/4);
	}
	.modul-parallax-inner.typ-2 {
		padding-top: calc(100%/6);
	}
	.col-25 {
		width: calc(25% - 2rem);
	}
	.col-33 {
		width: calc(100%/3 - 2rem);
	}
	.col-50 {
		width: calc(50% - 2rem);
	}
	.col-75 {
		width: calc(75% - 2rem);
	}
}