@import url("https://fonts.verwaltungsportal.de/css/?family=Open+Sans:400,600,700,400i,600i,700i");
@import url("https://fonts.verwaltungsportal.de/css/?family=Roboto:400,400i,700,700i");

html {
	max-width: 1930px;
	margin-left: auto;
	margin-right: auto;
	background: #f3f3f3;
	scroll-behavior: smooth;
	scroll-padding-top: 130px;
	scrollbar-color: #cc1e1c #ffffff;
	scrollbar-width: thin;
}

body {
	font-family: "Open Sans", sans-serif;
	color: #3f373f;
	background: #ffffff;
	font-size: 1.0625rem;
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #cc1e1c;
}

a:is(:hover, :focus) {
	color: #cc1e1c;
	text-decoration: underline;
}

b,
strong {
	font-weight: 600;
}

@media (min-width: 1200px) {
	.row {
		max-width: 1440px;
		width: 100%;
	}
}

/* LOGO MIT TEXT -------------------------------------------------------- */

.logo {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 15px;
	text-decoration: none !important;
}

.logo .template-page {
	width: auto;
}

.logo .cleaner {
	display: none;
}

.logo img {
	display: block;
	max-width: 30vw;
}

/* LOGO MIT TEXT -------------------------------------------------------- */

.logoTab {
	background: #ffffff;
	padding: 25px clamp(30px, 4vw, 50px) 40px clamp(30px, 4vw, 50px);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	font-size: 1.125rem;
	position: relative;
	color: #8c878c;
}

@media (max-width: 991px) {
	.logoTab {
		margin-top: 40px;
	}
}

.logoTab::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -15px;
	right: -15px;
	height: 100%;
	width: 100%;
	border: 1px solid #cc1e1c;
	z-index: -1;
}

@media (min-width: 992px) {
	.logoTab {
		margin-left: -255px;
	}

	.logoTab .logo + * {
		margin-top: 20px;
		padding-top: 35px;
		border-top: 1px solid rgba(0, 0, 0, 0.2);
	}
}

.logoTab :is(h1, h2, h3, h4, h5, h6) {
	color: inherit;
}


.logoText {
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: #3f373f;
	line-height: 1.2;
	margin: 0 auto;
}

.logoText :is(b, strong) {
	color: #cc1e1c;
	font-weight: 400;
}

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
	nav.horizontally {
		padding: 13px 0;
	}

	#burgerButton {
		font-size: 0;
		border: none !important;
		display: block;
		height: 50px;
		width: 50px;
		border-radius: 2px;
		padding: 6px 8px;
		cursor: pointer;
		background-color: #ffffff;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #cc1e1c;
		border-radius: 2px;
		position: absolute;
		width: 30px;
		height: 3px;
		left: 10px;
		transition: transform 200ms linear, opacity 200ms linear;
	}

	#burgerButton[aria-expanded="true"] #burgerButtonInner {
		transform: rotate(-45deg) translate(-6px, 6px);
	}

	#burgerButton[aria-expanded="true"]::before {
		opacity: 0;
	}

	#burgerButton[aria-expanded="true"]:after {
		transform: rotate(45deg) translate(-4px, -6px);
	}

	#burgerButtonInner {
		top: 16px;
	}

	#burgerButton::before {
		top: 24px;
		content: "";
	}

	#burgerButton::after {
		top: 32px;
		content: "";
	}

	.navbar-nav {
		margin: 20px 0;
	}

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #ffffff;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		overflow-y: auto;
		transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
		box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
	}

	.navbar-collapse:is([aria-expanded="true"], .in) {
		left: 0;
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
	}

	.navbar-header {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
	}

	.dropdown-toggle-button-wrapper {
		top: 12px;
	}

	.dropdown-toggle-button-wrapper2 {
		top: 2px;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		padding: 0;
		position: sticky;
		top: 0;
		z-index: 1010;
		background-color: #ffffff;
		box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
	}

	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	nav.horizontally .navbar-nav > li {
		flex-grow: 1;
	}

	nav.horizontally .navbar-nav ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: block !important;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 300ms linear;
	}

	nav.horizontally .navbar-nav [class*="secondlevel"] > ul {
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav li {
		position: relative;
	}

	nav.horizontally .navbar-nav li:is(.open, :hover) > ul,
	nav.horizontally .navbar-nav li.open:focus-within > ul,
	nav.horizontally .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
		pointer-events: auto !important;
		opacity: 1 !important;
		visibility: visible;
	}

	nav.horizontally .navbar-nav li.open > ul {
		pointer-events: none !important;
		opacity: 0 !important;
		visibility: hidden;
	}

	nav.horizontally .navbar-nav li:is(:hover, :focus) > ul {
		z-index: 1003;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #3f373f;
	font-weight: 400;
	text-align: left;
	padding: 15px;
	position: relative;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
	font-family: "Roboto", sans-serif;
}

@media (max-width: 991px) {
	nav.horizontally li[class*="toplevel"] {
		border-bottom: 1px solid rgba(76, 60, 60, 0.2);
	}

	nav.horizontally a[class*="toplevel"].dropdown-toggle {
		padding-right: 35px;
	}
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 40px 5px 42px 5px;
		text-align: center;
		font-size: clamp(1.25rem, 2vw, 1.5rem);
	}
}

nav.horizontally a[class*="toplevel"]::after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	bottom: 0;
	height: 6px;
	left: 50%;
	transform: translateX(-50%);
	background: #cc1e1c;
	transition: width 300ms linear;
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"]::after {
		top: 0;
		bottom: unset;
	}
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open > a,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"] > a,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus) {
	color: #cc1e1c;
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a::after,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"].open > a::after,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"][class*="_over"] > a::after,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus)::after {
	width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background: #cc1e1c;
}

@media (max-width: 991px) {
	nav.horizontally [class*="toplevel"] > ul {
		padding: 10px 15px;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		padding-left: 15px;
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"] ul {
		padding: 30px 0;
	}

	nav.horizontally [class*="toplevel"] > ul {
		left: 50%;
		transform: translate(-50%, 0);
	}

	nav.horizontally [class*="toplevel"] > ul::after {
		content: "";
		display: block;
		position: absolute;
		left: calc(50% - 20px);
		top: -20px;
		width: 40px;
		height: 20px;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		background: #ffffff;
		transition: top 150ms linear;
	}

	nav.horizontally [class*="toplevel"]:is(:hover, :focus-within) > ul:after {
		top: 0;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		margin-top: -30px;
		margin-left: 10px;
	}

	nav.horizontally [class*="secondlevel"] > ul::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #ffffff;
	font-weight: 400;
	text-align: left;
	padding: 8px 15px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
		padding-right: 35px;
	}
}

@media (min-width: 992px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		padding: 13px 25px;
		text-align: center;
	}
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus) {
	background: #ffffff;
	color: #3f373f;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* #region ------------------------------------ banner ------------------------------------------ */

#slider {
	height: clamp(300px, 42vw, 400px);
	position: relative;
}

#slider > * {
	height: 100% !important;
}

@media (min-width: 992px) {
	#slider {
		height: 100%;
	}

	#headerpic a.nivo-nextNav {
		margin-top: 90px;
		right: unset;
		left: 50px;
	}

	#headerpic a.nivo-prevNav {
		margin-top: 50px;
		left: 50px;
	}

	#headerpic .slider-wrapper {
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: calc(50% - 50px);
		z-index: 62;
	}
}

@media (min-width: 1200px) {
	#headerpic .slider-wrapper {
		right: calc(50% - 100px);
	}
}

#headerpic {
	padding: 0 0 clamp(40px, 8vw, 110px) 0;
	overflow: hidden;
	position: relative;
	background: url(../img/zeichnung-header.png) top 15px right no-repeat, #f3f3f3;
}

@media (max-width: 991px) {
	body:not(.index) #headerpic {
		padding-bottom: 0;
	}
}

@media (min-width: 992px) {
	#headerpic {
		padding-top: clamp(30px, 4vw, 50px);
	}
}

#headerpic > .row > div {
	position: relative;
	z-index: 64;
}

.slider-mask {
	display: none;
}

@media (min-width: 992px) {
	.slider-mask {
		display: block;
		background: #f3f3f3;
		clip-path: polygon(100% 0, 100% 30%, 100% 100%, 25% 100%, 88% 20%, 56% 0);
		max-width: 120px;
		right: 0;
	}
}

/* #endregion --------------------------------- banner ------------------------------------------ */

/* #region ----------------------------------- optionsbar --------------------------------------- */

#optionsbar {
	padding-bottom: clamp(30px, 6vw, 75px);
	gap: 30px;
}

#optionsbar h2 {
	color: inherit;
	margin: 0 0 4px 0;
	font-size: 1rem;
}

:is(#style, #contrast_style) button {
	border: none;
	display: inline-block;
	min-width: 1.875rem;
	min-height: 1.875rem;
	line-height: 1;
	text-align: center;
}

:is(#style, #contrast_style) button + button {
	margin-left: 4px;
}

/* styler */

#style button {
	color: #3f373f;
	font-weight: 400;
	background: #d8d8d8;
	padding: 4px;
	font-size: 1.125rem;
}

#style button:is(:hover, :focus) {
	background-color: #cc1e1c;
	color: #ffffff;
}

/* contrast */

#contrast_style {
	line-height: 0;
}

#contrast_style button {
	background: transparent;
	position: relative;
	font-size: 0;
	padding: 0;
}

#contrast_style button::after {
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 4px solid #3f373f;
	display: block;
	position: absolute;
	transition: transform 200ms;
}

#contrast_style button:after {
	background: linear-gradient(45deg, #3f373f, #3f373f 50%, #ffffff 50%);
}

#contrast_style button:nth-of-type(2) {
	transform: scale(-1);
}

#contrast_style button:nth-of-type(3):after {
	background: #cc1e1c;
	border-color: #cc1e1c;
}

#contrast_style button:is(:hover, :focus)::after {
	transform: scale(1.2);
}

/* search */

form[id^="search"] {
	background: transparent;
	display: flex;
	align-items: center;
	border: 1px solid #d8d8d8;
	width: 100%;
	max-width: 15rem;
	margin-left: 35%;
	transition: all 300ms;
	border-radius: 5px;
}

@media (max-width: 991px) {
	form[id^="search"] {
		margin: 0 auto;
	}
}

form[id^="search"]:is(:hover, :focus) {
	border: 1px solid #cc1e1c;
}

form [id^="search_input"] {
	color: #3f373f;
	font-size: 1rem;
	font-style: normal;
	background: transparent !important;
	border: 0;
	width: 100%;
	padding: 8px 12px;
}

form [id^="search_submit"] {
	width: 46px;
	flex-shrink: 0;
	background: url("../img/lupe-icon.png") center / 18px auto no-repeat;
	cursor: pointer;
	border: none;
	height: 22px;
	font-size: 0;
	transition: background 150ms linear;
	transform: scale(0.9);
	border-left: 1px solid #d8d8d8;
}

input[id*="search_submit"]:is(:focus, :hover) {
	background-size: 22px auto;
}

form [id^="search_input"]::placeholder {
	color: #3f373f !important;
	opacity: 1 !important;
	font-style: normal !important;
}

/* #endregion -------------------------------- optionsbar --------------------------------------- */

/* ------------------------------------------- content ------------------------------------------ */

#content {
	text-align: left;
	padding-bottom: clamp(50px, 4vw, 60px);
	padding-top: clamp(40px, 4vw, 50px);
}

#content > .row > aside {
	z-index: 1;
}

/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #3f373f;
	font-weight: 400;
	line-height: 1.2;
	font-family: "Roboto", sans-serif;
}

h1,
.h1,
.legacy_h1 {
	font-size: clamp(1.875rem, 4vw, 2.5rem);
	margin-bottom: clamp(20px, 3vw, 50px);
}

h2,
.h2,
.legacy_h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.1875rem);
}

h3,
.h3,
.legacy_h3,
:is(#tabs) :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(1.6875rem, 3vw, 1.875rem);
}
.logoTab :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(1.6875rem, 3vw, 1.6875rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: 1.625rem;
	line-height: 1.3;
}

h5,
.h5,
.legacy_h5 {
	font-size: 1.5rem;
}

h6,
.h6,
.legacy_h6 {
	font-size: 1.375rem;
}

/* #region -------------------------------------- tabs ------------------------------------------ */

#tabs {
	padding-bottom: clamp(35px, 8vw, 100px);
}

#tabs > .row {
	row-gap: clamp(140px, 8vw, 160px);
}

#tabs hr {
	margin: 0;
	border-color: rgba(0, 0, 0, 0.2);
}

#tabs .tab {
	background: #ffffff;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
	padding: 20px 20px 20px 20px;
	font-size: 1.125rem;
	min-height: 100%;
}

#tabs .tabHeadline {
	font-size: 1.875rem;
	margin-bottom: clamp(15px, 2vw, 25px);
}

#tabs .tab a:not(.has-image):not([rel]) {
	color: #cc1e1c;
	font-size: 1.125rem;
	font-weight: 600;
	display: inline-block;
	transition: all 300ms;
	text-decoration: none;
}

#tabs .tab a:not(.has-image):not([rel]):is(:hover, :focus) {
	transform: scale(1.1);
}

#tabs .banner {
	margin: -120px 0 20px 0;
	background: #f3f3f3;
}

#tabs .banner img {
	height: 155px;
	width: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* #endregion ----------------------------------- tabs ------------------------------------------ */

/* #region ---------------------------------- news + events ------------------------------------- */

:is(#news, #events) .tabHeadline {
	color: #3f373f;
	opacity: 0.3;
	font-size: clamp(2.1875rem, 12vw, 8.4375rem);
	margin-bottom: 25px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
	font-family: 'Roboto', sans-serif;
}

@media (min-width: 992px) {
	:is(#news, #events) .tabHeadline {
		margin-bottom: -50px;
	}
}

:is(#news, #events) .tab_link_entries {
	display: grid;
	gap: 30px;
	font-size: 1.125rem;
}

@media (min-width: 576px) {
	:is(#news, #events) .tab_link_entries {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	:is(#news, #events) .tab_link_entries {
		grid-template-columns: repeat(3, 1fr);
	}
}

:is(#news, #events) .tab_link_entry {
	border-bottom: none !important;
	background: #ffffff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	padding: clamp(25px, 3vw, 40px) 25px;
	width: 100%;
}

:is(#news, #events) .tab_link_title a {
	color: #3f373f;
	font-size: 1.25rem;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

:is(#news, #events) .tab_spacer {
	height: 2px;
}

#news .tab_link_mehr_news,
#events .tab_link_mehr {
	margin-top: 30px;
	z-index: 1;
	position: relative;
	display: inline-block;
}

@media (max-width: 991px) {
	#news .tab_link_mehr_news,
	#events .tab_link_mehr {
		margin-right: 20px;
	}
}

@media (min-width: 1200px) {
	#events .tab_link_entries ~ * {
		text-align: left !important;
	}
}

#news .tab_link_mehr_news a,
#events .tab_link_mehr a {
	background: #655e65;
	color: #fff;
	display: block;
	font-weight: 400;
	padding: 10px 10px 10px 10px;
	text-align: center;
	text-decoration: none;
	position: relative;
	border-radius: 5px;
}

#news .tab_link_mehr_news a:is(:hover, :focus),
#events .tab_link_mehr a:is(:hover, :focus) {
	background: #cc1e1c;
	color: #ffffff;
}

/* news */

#news {
	background: #f3f3f3;
	padding: 40px 0 clamp(40px, 4vw, 60px) 0;
}

@media (min-width: 576px) {
	#news {
		background: #f3f3f3;
		isolation: isolate;
	}
}

@media (min-width: 992px) {
	#news > .row::after {
		content: "";
		position: absolute;
		transform: translateX(100%);
		right: 380px;
		bottom: clamp(-60px, -4vw, -40px);
		background: url(../img/zeichnungen-aktuelles.png);
		width: 24.375vw;
		height: 25.8854vw;
		max-width: 468px;
		max-height: 150%;
		background-size: contain;
		background-position: bottom right;
		background-repeat: no-repeat;
		z-index: -1;
	}
}

#news .tab_link_mehr,
#news .tab_preview_picture {
	display: none;
}

/* events */

#events {
	padding: 40px 0 50px 0;
	background: #f6eef4;
}

@media (min-width: 576px) {
	#events {
		background: url(../img/zeichnung-veranstaltungen.png) bottom -100px right no-repeat, #e8e8e8;
	}
}

@media (min-width: 1200px) {
	#events {
		background-position: bottom left;
	}

	#events .tabHeadline {
		padding-right: 30px;
	}
}

#events .vorschau {
	display: none;
}

#events .tab_link_mandat a {
	color: inherit;
}

/* #endregion ------------------------------- news + events ------------------------------------- */

/* #region -------------------------------------- footer ---------------------------------------- */

footer {
	background: #ffffff;
	border-bottom: 26px solid #cc1e1c;
	padding: 30px 0;
	position: relative;
}

@media (min-width: 768px) {
	body:not(.index) footer {
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	}

	body.index footer::before {
		content: "";
		display: block;
		position: absolute;
		top: -92px;
		left: 0;
		right: 0;
		height: 114px;
		width: 100%;
		background: url(../img/footer-overlay.png) bottom left no-repeat;
		pointer-events: none;
	}
}

@media (min-width: 1200px) {
	body.index footer {
		padding-top: 0;
	}

	body.index footer::before {
		background: url(../img/footer-overlay.png) bottom left / 100% auto no-repeat;
	}
}

footer > .row {
	row-gap: 30px;
}

.footerTab .tabHeadline {
	font-size: 1.5625rem;
	color: #8c878c;
}
.footerTab a {
	text-decoration: underline;
	font-style: italic;
}

@media (min-width: 768px) {
	.footerTab {
		padding-left: 50px;
		border-left: 1px solid rgba(0, 0, 0, 0.2);
	}

	footer > .row > div + div {
		padding-right: 50px;
	}
}

@media (max-width: 1199px) {
	#innerfooter {
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
		padding-bottom: 25px;
	}
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: inherit;
	text-decoration: none;
}

#innerfooter a:is(:hover, :focus) {
	color: #cc1e1c;
	text-decoration: underline;
}

#innerfooter li + li::before {
	content: "•";
	margin: 0 clamp(6px, 2vw, 16px);
	color: #3f373f;
}

/* #endregion ----------------------------------- footer ---------------------------------------- */

/* --------------------------------------------- Besucher --------------------------------------- */

#counter {
	border: 1px solid #cc1e1c;
	padding: 7px 12px;
	text-align: center;
	display: inline-block;
	margin: 0 0 clamp(30px, 3vw, 40px) 0;
	width: 100%;
	max-width: 226px;
	border-radius: 5px;
}

#counter span {
	display: inline-block;
}

#counter span:first-child {
	color: #3f373f;
}

/* ------------------------------------------ vernetzt ------------------------------------------ */

#vernetzt {
	font-size: 0.9375rem;
	color: #3f373f;
	display: inline-block;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt span {
	display: block;
}

#vernetzt img {
	margin-bottom: 8px;
}

#vernetzt b {
	color: #cc1e1c;
	font-weight: inherit;
}

/* --------------------------------------------- contrast -------------------------------------------- */

.navbar-default .navbar-nav > li:is(.contrast_light_font, .contrast_dark_font) .dropdown-menu > li:first-child,
.navbar-default .navbar-nav > li:is(.contrast_light_font, .contrast_dark_font) .dropdown-menu > li:last-child {
	display: none !important;
}

.contrast_dark #search_submit {
	filter: brightness(100);
}
