.schrift-bold {
	font-family: "Myriad Pro", sans-serif;
	font-weight: bold;
	font-style: normal;
}
.schrift-regular {
	font-family: "Myriad Pro", sans-serif;
	font-weight: normal;
	font-style: normal;
}
.schrift-light {
	font-family: "Myriad Pro", sans-serif;
	font-weight: lighter;
	font-style: normal;
}
.schrift-bold-italic {
	font-family: "Myriad Pro", sans-serif;
	font-weight: bold;
	font-style: italic;
}
.schrift-light-italic {
	font-family: "Myriad Pro", sans-serif;
	font-weight: lighter;
	font-style: italic;
}


* {
	margin: 0;
	padding: 0px;
}
/* Basiseinstellungen */
body {
	background: #EBF2F1;
	margin: 0;
	height: 100%;
	color: #8B7A25;
	font-family: "Myriad Pro", sans-serif;
	font-size: 22px;
	line-height: 36px;
	font-weight: 500;
}
strong {
	font-weight: 700;
}
p,
ol li, ul li {
	font-size: 22px;
	line-height: 36x;
	color: #8B7A25;
	padding-top: 5px;
	padding-bottom: 5px;
}

h1, h2, h3, h4, h5, h6 {
	color: #8B7A25;
	font-weight: 700;
}

h1, h2 {
	font-size: 48px;
	line-height: 60px;
	margin-bottom: 30px;
}
h3 {
	font-size: 28px;
	line-height: 38px;
}
@media (max-width: 1199px) {
	h1, h2 {
		font-size: 42px;
		line-height: 52px;
	}
	h3 {
		font-size: 24px;
		line-height: 30px;
	}
}
@media (max-width: 767px) {
	h1, h2 {
		font-size: 36px;
		line-height: 44px;
	}
	h3 {

	}
	p,
	ol li, ul li{
		font-size: 20px;
		line-height: 30px;
	}
}
@media (max-width: 575px) {
	h1, h2 {
		font-size: 28px;
		line-height: 36px;
	}
	h3 {
	}
	p,
	ol li, ul li {
	}
}


h4 {
	font-size: 22px;
	font-weight: bold;
}
h5 {
	font-size: 20px;
}

h6 {
	font-size: 20px;
}

hr {
	opacity: 1;
}


a {
	color: #8B7A25;
	font-weight: 700;
	text-style: italic;
	padding: 0;
	margin: 0;
	text-decoration: none;
	-webkit-transition: background-color .4s linear, color .4s linear;
	-moz-transition: background-color .4s linear, color .4s linear;
	-o-transition: background-color .4s linear, color .4s linear;
	-ms-transition: background-color .4s linear, color .4s linear;
	transition: background-color .4s linear, color .4s linear;
}

a:hover, a:focus {
	color: #8B7A25;
	opacity: 0.7;
}
a.weiss:hover, a.weiss:focus {
	color: #fff !important;
	opacity: 0.7;
}
a.gruen:hover, a.gruen:focus {
	color: #337A71 !important;
	opacity: 0.7;
}
ol, ul {
	padding-left: 20px;
}
.weiss {
	color: #fff;
}
.gruen {
	color: #337A71;
}
.gruen-heller {
	color: #669B94;
}
.hellgruen {
	color: #EBF2F1;
}
.gold {
	color: #8B7A25;
}
.beige {
	color: #B4A973;
}

.bg-weiss {
	background-color: #fff;
}
.bg-gruen {
	background-color: #337A71;
}
.border-gruen {
	border: 2px solid #337A71 !important;
}
.bg-gruen-heller {
	background-color: #669B94;
}
.bg-hellgruen {
	background-color: #EBF2F1;
}
.bg-gold {
	background-color: #8B7A25;
}
.bg-beige {
	background-color: #B4A973;
}

/* Formulare */
.form-control {
	color: #33757A;
	background-color: #fff;
	border: 2px solid #337A71;
	border-radius: 0;
}
.form-control[readonly] {
    background-color: #337A71;
	color: #fff;
}
form .input-group-btn button.btn.btn-default {
	background-color: #fff;
	color: #33757A;
	border: 2px solid #337A71;
	margin-top: -2px;

}
form fieldset legend {
	color: #33757A;
}


form label.control-label {
	color: #33757A;
	padding-left: 15px;
	padding-top: 15px;
	font-size: 18px;
}
.form-control {
	font-size: 22px;
	line-height: 36px;
	color: #33757A;
}
/* Label für readonly-Inputfelder ausblenden */
label:has(+input[type="text"][readonly]){
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
button[type=submit] {
	background-color: #8B7A25;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 36px;
	padding: 10px 15px;
	border: 0;
	margin-bottom: 35px;
	margin-top: 30px;
	width: 100%;
	border-radius: 0;
}
button[type=submit]:hover {
	opacity: 0.7;
	background-color: #8B7A25;
}
input[type="checkbox"] {
	float: left;
	margin-right: 20px;
	margin-top: 12px;
	margin-bottom: 50px;
}
.checkboxen input[type="checkbox"] {
	float: left;
	margin-right: 20px;
	margin-top: 12px;
	margin-bottom: 12px;
}
.checkboxen label {
	color: #33757A;
}
.checkbox label {
	padding-top: 15px;
}
form .radio label input {
	margin-right: 10px;
}
form input, form textarea, form select {
	margin-bottom: 5px;
}
.alert-danger {
	background-color: #8B7A25;
	border-radius: 0;
	border: 0;
}
.alert-danger li {
	color: #fff;
}


/* Hauptnavigation */
#header-navigation ul {
	list-style: none;
	margin: 0;
    padding-left: 0;
}
#header-navigation ul li a {
	color: #ffffff;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
}
#header-navigation ul li:first-of-type {
	padding-bottom: 5px;
	margin-bottom: 15px;
}

#header-navigation ul li:first-of-type a {
	font-weight: 700;
}
#header-navigation ul li.ebene-1 {
	border-bottom: 1px solid #fff;
	padding-bottom: 8px;
	margin-bottom: 15px;
}
#header-navigation ul li.ebene-2 {
	padding: 0;
}
#header-navigation ul li.ebene-1 span {
	line-height: 40px;
	font-size: 24px;
	text-decoration: none;
	color: #ffffff;
}
#header-navigation ul li.ebene-2 a {
	line-height: 36px;
	font-size: 22px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
}
#header-navigation ul li a:focus,
#header-navigation ul li a:hover {
	opacity: 0.8;
}
#header-navigation ul li.active a {
	opacity: 0.5;
}



#header-navigation {
	background-color: #8B7A25;
}
#header-navigation.header-navigation-closed {
	height: 0px;
	display: none;
}
#header-navigation.header-navigation-open {
	height: auto;
}


#header-button.show,
#header-button-close.show {
	display: block;
}
#header-button.hidden,
#header-button-close.hidden {
	display: none;
}

/* Mobiler Menübutton */

button.navbar-toggler  {
	padding: 3px 0 3px 0;
	margin-bottom: 0px;
	height: 56px;
	background-color: #8B7A25;
	line-height: 46px;
	border: 0;
	font-style: italic;
    border-radius: 0;
}
button.navbar-toggler:focus,
button.navbar-toggler:hover,
button.navbar-toggler:active {
	opacity: 0.7;
}
.navbar-toggler .bar {
	float: left;
	padding-left: 15px;
	padding-right: 15px;
	height: 46px;
}
.navbar-toggler .menu {
	float: left;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	padding-right: 15px;
}
.navbar-toggler .icon-bar {
	background-color: #fff;
}
.navbar-toggler .icon-bar {
	display: block;
	width: 40px;
	height: 2px;
	margin-bottom: 10px;
	margin-top: 10px;
	border-radius: 1px;
	margin-left: auto;
	margin-right: auto;
}
.navbar-toggler .icon-bar-left,
.navbar-toggler .icon-bar-right {
	display: block;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	width: 40px;
	height: 2px;
	border-radius: 10px;
	/*margin-bottom: 7px;*/
	/*margin-top: 7px;*/
}
.navbar-toggler .icon-bar-left {
	transform: rotate(-45deg);
	margin-top: 23px;
	height: 2px;
	border-radius: 1px;
}
.navbar-toggler .icon-bar-right {
	transform: rotate(45deg);
	margin-top: -2px;
	border-radius: 1px;
	height: 2px;
}
/* Header */
.header-wrapper {
	background-color: #fff;
	border-top: 20px solid #337A71;

}
.header {
	padding-top: 20px;
	padding-bottom: 30px;
	position: relative;
}
.header .wrapper-headerbild {
	position: relative;
	height: 170px;
}
.header .wrapper-headerbild a.navbar-brand {
	position: absolute;
	left: 0;
	top: 40px;
	z-index: 1000;
}
@media (max-width: 500px) {
	.header .wrapper-headerbild a.navbar-brand {
		top: 0px;
	}
	.header .wrapper-headerbild {
		height: 110px;
	}
}
.header .wrapper-headerbild a.navbar-brand:hover {
	opacity: 1;
}
@media (max-width: 767px) {
	.header.fixed-top {
		position: relative;
		z-index: 10;
	}
}
/* Logo */
.navbar-brand {
	padding: 0 0 0 0;
	margin-top: 0px;
	margin-right: 0;
	height: 200px;
}

.navbar-brand img {
	max-height: 200px;
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}


@media (max-width: 575px) {
	.navbar-brand img {
		/*width: 100%;*/
	}
}


.navbar {
	height: 100%;
	padding: 0px;
}

.navbar-nav {
	height: 100%;
}
.navbar-nav li {
	width: auto;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
}
@media (max-width: 1350px) {
	.navbar-nav li {
		padding-right: 0px;
		padding-left: 0px;
	}
	.navbar-nav li a {
		letter-spacing: 0.1px;
	}
}
.navbar-nav li:last-child {
	padding-right: 0px;
}
.navbar-nav > li > a {
	color: #2c2e35;
	font-weight: 400;
	font-size: 22px;
	padding-left: 2px;
	padding-right: 2px;
	line-height: 40px;
	text-decoration: none;
	text-transform: uppercase;

}
.navbar-nav > li > a:hover {
	color: rgba(32,33,48,0.7);
	outline: none;
	text-decoration: none;
}
.navbar-nav > li.active > a  {
	color: #2c2e35;
}
.navbar-nav > li > a::before {
	width: 15px;
	padding-right: 10px;
	content: "\00A0";
	display: inline-block;
}
.navbar-nav > li.active > a::before {
	content : "›";

}
.dropdown-toggle::after {

	display: inline-block;
	margin-left: 0;
	vertical-align: 0;
	content: unset;
	border: none;
}
.dropdown-toggle {
	white-space: unset;
	position: relative;
}
ul.nav li.dropdown-toggle:hover > ul.dropdown-menu {
	display: block;
	background-color: #2c2e35;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: 0;
	border-top: 6px solid #fff;
}
ul.nav li.dropdown-toggle:hover > ul.dropdown-menu li {
	border: 0px;
	padding-left: 0;
	padding-right: 0;
}
ul.nav li.dropdown-toggle:hover > ul.dropdown-menu li a {
	border: 0px;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 16px;
	display: block;
	line-height: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
}
ul.nav li.dropdown-toggle:hover > ul.dropdown-menu li a:hover,
ul.nav li.dropdown-toggle.active {
	background-color: rgba(255,255,255,0.6);
}
ul.nav li.dropdown-toggle:hover > ul.dropdown-menu li.active a {
	color: #2c2e35;
}


.dropdown-menu {
	left: 0;
	min-width: 200px;
	border-radius: 0px;
	position: relative;
	min-height: 200px;
}
.dropdown-menu li {
	width: 200px;
	display: block;
}
.dropdown-menu > li > a {
	color: white;
	font-weight: 400;
	padding: 0px 20px;
	border-top: 0;
}
.dropdown-menu > li:first-child {
	margin-top: 30px;
}
.dropdown-menu > li:first-child > a {
	border-top: none;
}

.navbar-collapse {
	height: 100%;
}


/* Footer */

#footerwrap {
	padding-top: 20px;
	padding-bottom: 40px;
	background: #8B7A25;
}


#footerwrap p {
	color: #ffffff;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
}

#footerwrap td {
	color: #ffffff;
	font-size: 20px;
	padding-bottom: 6px;
}
#footerwrap ul {

	margin-bottom: 0;
	margin-top: 0px;
}
#footerwrap ul {
	padding-top: 0px;
	padding-left: 0px;
	margin: 0;
}
#footerwrap ul li {
	list-style-type: none;
	font-size: 20px;
	line-height: 28px;
    margin: 0;
	padding: 0;
	color: #fff;
}




#footerwrap li a
{
	font-size: 20px;
	line-height: 28px;
	color: #ffffff;
	font-weight: 400;
	text-decoration: none;
	font-style: normal;
}



#footerwrap a {
	color: #ffffff;
}
#footerwrap a:hover {
	opacity: 0.6;
}
#footerwrap li.active a {
	opacity: 0.6;
}
/* Bild-Formate */

img.format_fix {
	height: 600px;
	width: 100%;
	object-fit: cover;
	color: #fff;
}
@media (max-width: 1199px) {
	img.format_fix {
		height: 500px;
	}
}
@media (max-width: 991px) {
	img.format_fix {
		height: 450px;
	}
}
@media (max-width: 767px) {
	img.format_fix {
		height: 350px;
	}
}
@media (max-width: 575px) {
	img.format_fix {
		height: 250px;
	}
}
.bild-wrapper {
	position: relative;
}
.button-grafik {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.button-grafik a img {
    height: 155px;
	margin-top: -200px;
	transition: transform 0.8s;
	-moz-transition: transform 0.8s;
	-webkit-transition: transform 0.8s;
	-o-transition: transform 0.8s;
	-ms-transition: transform 0.8s;

}
.button-grafik a:hover img {
	cursor: zoom-in;
	cursor: -moz-zoom-in;
	cursor: -webkit-zoom-in;
	transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	-webkit-transform: scale(1.2, 1.2);
	-o-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
}


@media (max-width: 767px) {
	.button-grafik a img {
		height: 140px;
		margin-top: -60px;

	}
}
@media (max-width: 575px) {
	.button-grafik a img {
		height: 100px;
		margin-top: -50px;

	}
}

/* Bild-Text-Modul */
.bild-text-modul .w-40 {
	width: 35%;
}
.bild-text-modul img.bt_bild {
	border-radius: 400px;
}
.bild-text-modul {
	border-bottom: 2px solid #005cb9;
}
.bild-text-wrapper .bild-text-modul:last-of-type {
	border-bottom: 0;
}
.bild-text-modul ul {
	list-style: none;
	padding-left: 15px;
}
.bild-text-modul ol {
	margin-left: 10px;
}
.bild-text-modul ol li {
	list-style-position: outside;
}
.bild-text-modul ol li::marker {
	margin-left: 10px !important;
	padding-left: 10px !important;
}
.bild-text-modul ul li {
	list-style-type: '•';
	padding-left: 15px;
}
.bild-text-modul ul li::marker {
	content: '●';
    font-size: 22px;
	line-height: 36px;
	font-weight: 800;
}
.bild-text-modul.plus ul li::marker {
	content: '+';
	color: #005cb9;
}







/* Modul Textblöcke */
.wrapper-textbloecke.bg-hellblau {
	background-color: #eff6fc;
}

/* Modul Texteditor */
.wrapper-texteditor.bg-hellblau {
	background-color: #eff6fc;
}
.wrapper-texteditor-rechtliches h2 {
	font-size: 28px;
	line-height: 38px;
	margin-bottom: 8px;
}
.wrapper-texteditor-rechtliches h3 {
	 font-size: 24px;
	line-height: 36px;Frankfurt am Main-Flughafen
}
@media (max-width: 1199px) {
	.wrapper-texteditor-rechtliches h2 {
		font-size: 28px;

	}
	.wrapper-texteditor-rechtliches h3 {
		font-size: 24px;
	}
}
@media (max-width: 991px) {
	.wrapper-texteditor-rechtliches h2 {
		font-size: 24px;
	}
	.wrapper-texteditor-rechtliches h3 {
		font-size: 22px;
	}
}


/* News-Blog */
.news a:focus,
.news a:hover {
	opacity: 0.7;
}
.news-container {
	background-color: #eff6fc;
}
.news-list-hl {
	background-color: #4ab3e4;
	}
.news-list-hl h5 {
	font-size: 20px;
	line-height: 36px;
	color: #fff;
	margin: 0;
	padding: 0 15px;
	border-bottom: 10px solid #fff;
}
.news-list-bild img {
	width: 100%;
}
.news-list-teaser {
	padding: 15px;
}
.news-details h2{
	font-size: 36px;
	line-height: 45px;
	margin-bottom: 22px;
}
.news-details video {
	max-height: 500px;
	width: 100%;
	background-color: #1C2B41;

}
@media (max-width: 600px) {
	.news-details video {
		max-height: 100%;
		width: 100%;
	}
}



/* Accordion FAQ*/
.accordion-item {
	border-bottom: 2px solid #fff;
}
.accordion-item h2 {


}
.accordion-item:last-of-type .accordion-button {
}
.accordion-item:first-of-type .accordion-button {
}
.accordion-button {
	font-size: 22px;
	line-height: 32px;
	font-weight: 500;
	color: #005cb9;
	padding: 14px 30px 14px 0;
	background-color: #eff6fc;
	padding-left: 25px;

}
.accordion-button:focus {
	box-shadow: none;
}
.accordion-button:not(.collapsed) {
	color: #005cb9;
	background-color: #eff6fc;
	box-shadow: none;
	padding-left: 25px;
	font-weight: 700;
}
.accordion-button::after {
	color: #005cb9;
	content: "⯈";
	background-image: none;
	transform: rotate(0deg);
	line-height: 40px;
	padding: 0;
	height: 40px;
}
.accordion-button:not(.collapsed)::after {
	color: #005cb9;
	transform: rotate(90deg);
	background-image: none;
	padding: 0;
	line-height: 40px;
	height: 40px;
}
.accordion-body {
	background-color: #eff6fc;
	padding-left: 25px;
	font-size: 22px;
	line-height: 28px;
	font-weight: 500;
}

.accordion-item figure img {
	width: 100%;
}

/* Startseite Kacheln */
.kacheln .gruen h3,
.kacheln .gruen p {
	color: #337A71;
}
.kacheln .weiss h3,
.kacheln .weiss p {
	color: #fff;
}
.kacheln p.card-text {
	line-height: 30px;
}

/* Dowmload */
p.info-download a {
	color: #fff;
}
p.info-download a:hover {
	color: #fff;
    opacity: 0.7;
}
/* Modul Text farbig */
.text-farbig p,
.text-farbig h3 {
	color: #fff;
}
.text-farbig p.card-text {
	line-height: 30px;
}
.info-download img {
	max-height: 80px;
}

/* Search-it */

@media (max-width: 767px) {
	#search_it-form1 {
		display: none;
	}
	#search_it-form2 {
		margin-left: 0;
	}
}


.search_it-form {
	box-sizing: border-box;
	padding: 0;
	margin: 0 0 0 15px;
	display: block;
	background-color: #fff;
	border-bottom: 2px solid #337A71;
}
.search_it-form fieldset {
	display: flex;
	padding: 0;
	margin: 0;
	border: 0;
}
.search_it-flex {
	display: flex;
	padding: 0;
	margin: 0;
	border: 0;
}
.search_it-form legend {
	display: none;
}
.search_it-form label {
	font-size: 19px;
	line-height: 32px;
	color: #33757A;
	font-weight: bold;
	margin-bottom: 0;
}
.search_it-flex > * {
	flex: 2 2 200px;
}
.search_it-flex > .search_it-button {
	flex: 1 1 20px;
	color: #33757A;
}
.search_it-flex .search_it-eingabe {
	padding: 0 8px;
	border: 0;
	color: #33757A;
	font-size: 18px;
	line-height: 46px;
	width: 100%;
	background-color: transparent;
	outline: none;
}
@media (max-width: 575px) {
	.search_it-flex .search_it-eingabe {



	}
}
.search_it-flex .search_it-eingabe:focus {
	outline: none;
}
.search_it-form input:focus::-webkit-input-placeholder{
	color: transparent;
}
.search_it-form input:focus::-moz-placeholder {
	color: transparent;
}
.search_it-form input:focus:-ms-input-placeholder {
	color: transparent;
}
.search_it-form input:focus:-moz-placeholder {
	color: transparent;
}

.search_it-modul {
	box-sizing: border-box;
}

.search_it-results {
	padding: 0;
	margin: 0;
}
.search_it-result {
	margin: 1rem 0;
	list-style-type: none;
	list-style-position: inside;
	border-bottom: 1px solid #fff;
}
.search_it-result:last-of-type {
	border-bottom: 0;
}
.search_it-title,
.search_it-title a {
	font-weight: bold;
	text-decoration: none;
	font-style: normal;
}
.search_it-title {
	margin-bottom: 0;
}

.search_it-result .search_it-teaser {

}
.search_it-result .search_it-url {

}
.search_it-missing_type,
.search_it-zero {
	padding: 2rem;
	border: 2px solid #8B7A25;
	margin: 1rem 0;
	color: #8B7A25;
}
.search_it-request,
.search_it-type {
	font-weight: bold;
}
.search_it-button {
	background-image: url("images/lupe.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 0;
	margin-left: 0px;
	margin-bottom: 10px;
	width: 20px;

	background-color: transparent;
}

/* Kalender */

.kalender-hlneu {
	color: #337A71;
	text-transform: uppercase;
	font-weight: normal;
	margin-top: 40px;
}
.kalender-hlneu:nth-of-type(1) {
	margin-top: 0;
}
#wrapper_entry {
	border-bottom: 4px dotted #8B7A25;
}
h2.kalender-hl {
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 25px;
	font-size: 20px;
}
#wrapper_entry p {
	margin-top: 12px;
	margin-bottom: 12px;
}

.auswahl a {
	font-size: 16px;
}
.auswahl a:hover {
	color: #fff;
}
.auswahl .btn-theme {
	margin: 0;
	padding-right: 13px;
	padding-left: 10px;
	margin-bottom: 15px;
}
.modal-header {
	border-bottom: 0;
}
/*Schatten rechts und unten mittleres grau klar abgegrenzt, ohne viel Übergang*/
.modal img {
	width: 100%;
	/*Für alle Browser*/
	-webkit-box-shadow: 5px 5px 10px 0 rgba(190,190,190,1);
	-moz-box-shadow: 5px 5px 10px 0 rgba(190,190,190,1);
	box-shadow: 5px 5px 10px 0 rgba(190,190,190,1);
    margin-bottom: 20px;
}
.modal-header button.close {
	background-color: #fff;
	color: #B4A973;
	border: 0;
}
.modal-footer button {
	background-color: #8B7A25;
	color: #fff;
	border: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.modal-footer button:hover {
	background-color: #B4A973;
	color: #fff;
}
.modal p,
.modal h2,
.modal h3,
.modal h4 {
	color: #337A71;
}
.modal a {
	color: #8B7A25;
	text-decoration: underline;
}
.modal a:hover {
	color: #B4A973;
	opacity: 0.7;
}
/*Test*/
.ecke-links {

}
.schraege:before {
	width: 0;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	border-top: 50px solid #ffffff;
	border-left: 50px solid #d15e00;
}

/* Unternavi */
/* die Listpunkte abwechselnd mit einer anderen Hintergrundfarbe anzeigen */
/* Liste ohne Bulletpoints */
.unternavi {
	list-style: none;
	padding: 0;
	margin: 0;
}
.unternavi li:nth-child(odd) {
	background-color: #8B7A25;
}
.unternavi li:nth-child(even) {
	background-color: #B4A973;
}
.unternavi li a {
	color: #fff;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
}
.unternavi li a:hover {
	opacity: 0.7;
}
/* Link soll über die gesamte Breite anklickbar sein */
.unternavi li a {
	display: block;
	padding: 10px 15px;
}
.unternavi li a:before {
	content: ">";
	padding-right: 10px;
	/*Pfeil soll rechts angeordnet sein*/
	float: right;
}
/* Publikationen */
.publikationen a.button {
	border: 0;
	border-radius: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 32px;
}
.publikationen a.button:hover {
	color: unset;
	opacity: 0.7;
}
.publikationen a.button:focus {
	outline: none;
}
.publikationen h3 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 0px;
	color: #33757A;
}
.publikationen-details h2,
.publikationen-details h3,
.publikationen-details p {
	color: #33757A;
	font-size: 22px;
	line-height: 30px;
}
.publikationen-details .gold {
	color: #8B7A25;
}
.publikationen-details .button {
	max-width: 400px;
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
	padding-top: 10px;
	list-style: none;
}
.breadcrumb-wrapper .home_link {
	padding-left: 10px;
}
.rex-breadcrumb {
	display: inline-block;
	padding-left: 0px;
	margin-bottom: 0;
}
.rex-breadcrumb>li,
.breadcrumb-wrapper .home_link{
	display: inline-block;
}
.rex-breadcrumb>li+li:before,
.breadcrumb-wrapper .home_link:after {
	padding: 0 5px;
	content: ">";
}
.breadcrumb-wrapper .home_link:after {
	padding-left: 10px;
}
.breadcrumb-wrapper a {
	font-weight: normal;
	text-decoration: italic;
}



/* Dropdown Kategorie */
/* Auswahlfilter */
button.filter {
	border: 0;
	border-radius: 0;
	padding: 15px 15px;
	font-size: 20px;
	font-weight: bold;
	position: relative;
	background-color: #337a71; /* Standard Hintergrundfarbe */
	color: #FFFFFF; /* Standard Textfarbe */
	outline: none;
	box-shadow: none;
}

/* Nachgestellte Pseudo-Elemente für den Button */
button.filter::after {
	content: '>';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 15px 15px;
	background-color: #337a71;
	color: #FFFFFF;
}

/* Dropdown-Toggle Styles */
.btn-outline-primary.dropdown-toggle {
	background-color: #337a71;
	color: #FFFFFF;
	border-radius: 0;
	padding: 15px 15px;
	font-size: 20px;
	font-weight: bold;
	position: relative;
	z-index: 1;
	outline: none;
	box-shadow: none;
}

/* Fokus, Hover, Active Zustände für den Button */
.btn-outline-primary.dropdown-toggle:hover,
.btn-outline-primary.dropdown-toggle:focus,
.btn-outline-primary.dropdown-toggle:active,
.btn-outline-primary.dropdown-toggle.show {
	background-color: #337a71 !important; /* Gewünschte Hintergrundfarbe */
	color: #FFFFFF !important; /* Gewünschte Textfarbe */
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	opacity: 1.0;
}

/* Styles für die Dropdown-Menü-Elemente */
ul.filter {
	list-style: none;
	padding: 0;
	margin: 0;
	border: 0;
}

ul.filter li {
	display: block;
	width: 100%;
	padding: 0;
}

ul.filter li:first-child {
	margin: 0;
}

ul.filter li a,
ul.filter li a.active {
	background-color: #337a71;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 15px 15px;
}

ul.filter li a.active {
	opacity: 0.7;
}

ul.filter li a:hover {
	background-color: #337a71;
	color: #fff;
	opacity: 0.8;
}

ul.filter li a.active:hover {
	background-color: #337a71;
	color: #fff;
	opacity: 0.7;
}

/* Fokus- und Active-Zustände für Dropdown-Menü-Elemente */
ul.filter li a:focus,
ul.filter li a.dropdown-item:focus,
ul.filter li a:active,
ul.filter li a.dropdown-item:active {
	background-color: #337a71; /* Gewünschte Hintergrundfarbe */
	color: #fff; /* Gewünschte Textfarbe */
	outline: none;
	box-shadow: none;
}
