@import url("https://fonts.verwaltungsportal.de/import/?family=Lato:300,400,500,600,700,300i,400i,500i,600i,700i");

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

body {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	color: #004873;
	background: #ffffff;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.5;
}

a {
	color: #cc1004;
}

#content a {
	text-decoration: underline;
}

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

b,
strong {
	font-weight: 700;
}

.overflow {
	overflow: clip;
	position: relative;
}

a:focus-visible,
button:focus-visible,
form:focus-visible,
input:focus-visible {
    outline: 3px solid #880000 !important;
}
/* ------------------------------------------ topbar -------------------------------------------- */

#topbar {
	padding: clamp(15px, 3vw, 49px) 0 clamp(15px, 3vw, 47px) 0;
}

@media (min-width: 992px) {
	#topbar>.row::after {
		content: "";
		position: absolute;
		background: url(../img/wasserzeichen-mein-hvl.png) no-repeat;
		width: 118px;
		height: 120px;
		bottom: -40px;
		z-index: 0;
		pointer-events: none;
		left: 15px;
		display: block;
	}
}

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

@media (max-width: 991px) {
	#logo img {
		max-width: calc(100vw - 120px);
		width: 100%;
	}
}

/* ------------------------------------------------ contrast_style ---------------------------------------------- */
#contrast_style span {
	margin-right: 10px;
	font-size: 15px;
}

@media (max-width: 575px) {
	#contrast_style {
		margin-bottom: 15px;
	}
}

#contrast_style h2 {
	font-size: 1.125rem;
	font-weight: 400;
	color: #004873;
	width: unset;
	margin: 0 5px 0 0;
}

#contrast_style button {
	border: none;
	color: #004873;
	display: inline-block;
	font-weight: 700;
	text-align: center;
	background: #ffffff;
	line-height: 1;
	font-size: 0;
	min-width: 36px;
	min-height: 36px;
	padding: 0 0 2px 0;
	margin-left: 10px;
	box-shadow:
		1px 1px 0 0 rgba(0, 0, 0, 0.2),
		0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#contrast_style button:hover,
#contrast_style button:focus {
	background: #ff8c00;
}

#contrast_style *+* {
	margin-left: 3px;
}

#contrast_style {
	margin-right: 40px;
}

/* ------------------------------------------ styler -------------------------------------------- */

@media (min-width: 992px) {
	#style h2 {
		font-size: 1.125rem;
		font-weight: 400;
		color: #004873;
		width: unset;
		margin: 0 5px 0 0;
	}

	#style button {
		border: none;
		color: #004873;
		display: inline-block;
		font-weight: 700;
		text-align: center;
		background: #ffffff;
		line-height: 1;
		font-size: 1rem;
		min-width: 36px;
		min-height: 36px;
		padding: 0 0 2px 0;
		margin-left: 10px;
		box-shadow:
			1px 1px 0 0 rgba(0, 0, 0, 0.2),
			0 0 10px 0 rgba(0, 0, 0, 0.1);
	}

	#style button:is(:hover, :focus) {
		color: #1a1a1a;
		background: #ff8c00;
	}
}

/* ----------------------------------------------- search ----------------------------------------------- */

#search {
	background: #ffffff;
	display: inline-flex;
	width: 100%;
	box-shadow:
		1px 1px 0 0 rgba(0, 0, 0, 0.2),
		0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
	#search {
		max-width: 270px;
		margin-right: 40px;
	}
}

@media (max-width: 991px) {
	#search {
		margin-bottom: 30px;

	}
}

#search_input {
	color: #004873;
	font-size: 0.9375rem;
	font-style: normal;
	background: transparent;
	padding: 6px 14px;
	border: 0;
	width: 100%;
}

#search_submit {
	min-width: 48px;
	flex-shrink: 0;
	background: url("../img/lupe-icon.png") center top 5px no-repeat;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 0;
	border-right: 2px solid transparent;
	border-bottom: 2px solid transparent;
}

#search_submit:is(:hover, :focus) {
	background-color: #ff8c00;
	background-position: center top -31px;
}

#search_input::placeholder {
	color: #004873 !important;
	opacity: 1 !important;
	font-style: normal !important;
}

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

/* burgermenu for tablet */

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

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #004873;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		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: #0465a3;
		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: 6px;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		background-color: #0465a3;
	}

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

	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:focus-within, :hover)>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:is(:hover, :focus-within)>ul {
		z-index: 1003;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #ffffff;
	font-weight: 400;
	text-align: left;
	padding: 12px 15px;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
}

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

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

@media (min-width: 992px) {
	nav.horizontally li[class*="toplevel"]+li {
		margin-left: 15px;
	}

	nav.horizontally a[class*="toplevel"] {
		padding: 20px 0 19px 0;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 100%;
	}
}

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

/* 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: #ffffff;
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background: #ffffff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

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

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

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

	nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before {
		content: "";
		position: absolute;
		display: block;
	}

	nav.horizontally [class*="toplevel"]>ul::before {
		height: 10px;
		left: 0;
		right: 0;
		top: -10px;
	}

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

	nav.horizontally [class*="secondlevel"]>ul::before {
		width: 90px;
		top: 0;
		bottom: 0;
		left: -50px;
	}
}

/* secondlevel + thirdlevel */

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

@media (max-width: 991px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		text-align: left;
	}

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

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])+li:not(:nth-child(2)) {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
	content: "\203A \203A";
	display: inline-block;
	position: relative;
	bottom: 2px;
	position: absolute;
	left: 0;
	top: 8px;
	opacity: 0;
	transition: opacity 300ms linear;
}

/* 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) {
	color: #cc1004;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::before {
	opacity: 1;
}

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

/* -------------------------------------------- banner ------------------------------------------ */

#slider {
	max-height: clamp(300px, 42vw, 300px);
	overflow: hidden;
	position: relative;
}

@media (min-width: 992px) {
	body.index #slider {
		max-height: clamp(300px, 62vw, 300px);
	}

	#headerpic a.nivo-prevNav {
		left: 65px;
	}

	#headerpic a.nivo-nextNav {
		right: 65px;
	}
}

/* header text */

#header-text {
	font-weight: 400;
	font-size: clamp(1.25rem, 2vw, 1.875rem);
	padding: clamp(60px, 12vw, 175px) 0 clamp(80px, 20vw, 275px) 0;
	position: absolute;
	z-index: 12;
	background-color: #0465a3;
	padding: 30px;
	font-size: 1.125rem;
	margin-top: 30px;
}

#header-text,
#header-text :is(h1, h2, h3, h4, h5, h6) {
	color: #ffffff;
	hyphens: auto;
}

#header-text :is(h3, h4, h5, h6) {
	font-weight: 700;
	font-size: clamp(1.25rem, 3vw, 1.5625rem);
	text-transform: uppercase;
}

#header-text :is(h1, h2) {
	font-weight: 300;
	font-size: clamp(1.25rem, 3vw, 1.5625rem);
	text-transform: uppercase;
	margin-bottom: 5px;
}

@media (max-width: 1199px) {
	#header-text {
		position: relative;
	}
}

#headerpic {
	padding: 0;
	overflow: hidden;
	position: relative;
}

.slider-wrapper,
#slider {
	height: 100%;
}

.slider-mask {
	display: none;
}

/* #region -------------------------------------- tab ------------------------------------------- */

#tabs {
	padding-top: 0;
	hyphens: auto;
}

@media (min-width: 992px) {
	#tabs {
		position: relative;
		z-index: 60;
	}
}

#tabs>.row {
	row-gap: 30px;
}

#tabs .tab,
#tabs .tab2 {
	background: #fff1da;
	padding: 40px 20px 35px 20px;
	height: 100%;
	min-height: 100%;
	box-shadow: 0 60px 20px -50px rgba(0, 0, 0, 0.1);
	hyphens: auto;
}

#tabs :is(.tab, .tab2) :is(h1, h2) {
	color: #0465a3;
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 10px;
	hyphens: auto;
}

#tabs :is(.tab, .tab2) :is(h3, h4, h5, h6) {
	color: #0465a3;
	font-weight: 300;
	font-size: 1rem;
	hyphens: auto;
}

#tabs .tab.tab2 a {
	color: #ffffff;
	text-decoration: underline;
}

#tabs .tab.tab2 :is(b, strong) {
	font-weight: 700;
	font-size: clamp(2.1875rem, 4vw, 3.75rem);
	text-transform: uppercase;
	line-height: 1;
}

#tabs .tab_link a {
	color: inherit;
}

#tabs .tab_link_mandat a {
	border: none !important;
}

#tabs .tab_link_title a {
	font-weight: 600;
	border: none !important;
}

#tabs .tab_link_mehr {
	font-size: 0;
	text-align: center;
}

#tabs .tab_spacer {
	height: 15px;
}

/* #endregion ----------------------------------- tab ------------------------------------------- */

/* ------------------------------------------- button style ------------------------------------- */

#tabs .tab a,
#tabs .tab_link_mehr a,
#nw3 .tab_link_mehr a {
	font-size: 1.125rem;
	color: #1a1a1a;
	background: #ffffff;
	border-radius: 30px;
	border: 1px solid #ff8c00;
	display: inline-block;
	padding: 8px 20px;
	text-decoration: none;
}

#tabs a {
	bottom: 40px;
}

#tabs .tab a::after,
#tabs .tab_link_mehr a::after,
#nw3 .tab_link_mehr a::after {
	content: " \203A \203A";
}

#tabs .tab a:is(:hover, :focus),
#tabs .tab_link_mehr a:is(:hover, :focus),
#nw3 .tab_link_mehr a:is(:hover, :focus) {
	color: #1a1a1a;
	background: #ff8c00;
}

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

#tickerWrapper .newsticker-position {
	margin-block: 30px;
}

.index main {
	background: #ffffff;
}

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

@media (min-width: 1200px) {
	#content>.row::before {
		content: "";
		position: absolute;
		background: url(../img/wasserzeichen-mein-hvl-gross.png) no-repeat;
		width: 333px;
		height: 340px;
		top: -180px;
		z-index: 0;
		pointer-events: none;
		right: -350px;
		display: block;
	}
}

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

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

h1,
.h1,
.legacy_h1 {
	font-size: clamp(2.8125rem, 4vw, 3.125rem);
}

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

h3,
.h3,
.legacy_h3 {
	font-size: clamp(2.1875rem, 3vw, 2.5rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: clamp(1.875rem, 2.5vw, 2.1875rem);
}

h5,
.h5,
.legacy_h5 {
	font-size: clamp(1.5625rem, 2.5vw, 1.875rem);
}

h6,
.h6,
.legacy_h6 {
	font-size: clamp(1.375rem, 2.5vw, 1.5625rem);
}

/* ----------------------------------------------- @3nw news -------------------------------------------- */

#nw3 {
	font-size: 1rem;
	display: grid;
	row-gap: 15px;
	padding-top: clamp(30px, 4vw, 60px);
}

#nw3 .tabHeadline {
	font-size: 1.875rem;
	margin-bottom: 0;
}

#nw3 .tab_link_entry {
	position: relative;
	margin-left: 285px;
	min-height: 105px;
	padding: 20px;
	display: grid;
	background: #ffffff;
	border-bottom: none !important;
	font-size: 1.125rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	color: #004873;
}

#nw3 .tab_link_entries {
	display: grid;
	gap: 15px;
}

@media (min-width: 992px) {
	#nw3 .tab_link_entry {
		padding: 25px;
	}

	#nw3 .tab_link_entries {
		gap: 25px;
	}
}

#nw3 .tab_link_title {
	order: 1;
}

#nw3 .vorschau {
	order: 2;
	opacity: 1;
}

#nw3 .tab_date {
	order: 3;
}

#nw3 .tab_link_mandat a {
	color: #004873;
}

#nw3 .tab_link_title a {
	display: block;
	color: #004873;
	font-weight: 700;
	margin-bottom: 2px;
}

#nw3 .tab_link_entry::after {
	content: "";
	background:
		center / cover no-repeat,
		#e3e3e3;
}

#nw3 .tab_preview_picture {
	background: #ffffff;
}

#nw3 .tab_link_entry::after,
#nw3 .tab_preview_picture {
	display: block;
	width: 270px;
	height: 100%;
	position: absolute;
	left: -285px;
	top: 0;
	overflow: hidden;
}

@media (max-width: 767px) {
	#nw3 .tab_link_entry {
		margin-left: 0px;
		padding-top: 185px !important;
	}

	#nw3 .tab_link_entry::after,
	#nw3 .tab_preview_picture {
		display: block;
		width: 100%;
		height: 170px;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0px;
		right: 0px;
		overflow: hidden;
	}
}

#nw3 .tab_preview_picture img {
	position: absolute;
	z-index: 2;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

#nw3 .tab_spacer,
#nw3 .tab_link_entry>div:nth-last-child(2) {
	display: none;
}

/* ----------------------------------------- @3nw tab_link_mehr ---------------------------------------- */

#nw3 .tab_link_mehr {
	text-align: center;
	color: transparent;
	font-size: 0;
}

/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
	padding-top: 29px;
	padding-bottom: 29px;
	background-color: #0465a3;
}

#scrollTopBtn {
	text-decoration: none !important;
	display: inline-block;
	color: #1a1a1a;
	padding: 7px 38px 7px 21px;
	background-color: #ff8c00;
	position: relative;
	margin-right: -270px;
	margin-bottom: 30px;
}

#scrollTopBtn a {
	text-decoration: none !important;
}

#scrollTopBtn::after {
	content: "";
	position: absolute;
	pointer-events: none;
	top: 0;
	bottom: 0;
	right: 14px;
	width: 15px;
	height: 15px;
	background: url("../img/arrow-up-v2.png") center no-repeat;
	margin: auto;
}

/* --------------------------------------------- innerfooter -------------------------------------------- */

@media (max-width: 767px) {
	#innerfooter {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
	color: #ffffff;
	text-decoration: underline;
}

#innerfooter li+li::before {
	content: "";
	margin: 0 6px;
}

@media (min-width: 992px) {
	#innerfooter li+li::before {
		margin: 0 15px;
	}
}

@media (max-width: 767px) {
	#innerfooter li {
		display: block;
		text-align: center;
		padding: 5px;
		margin: 0;
	}

	#innerfooter li+li::before {
		display: none;
	}
}

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

#vernetzt {
	gap: 18px;
	text-align: right;
	font-size: 0.875rem;
	color: #ffffff;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt :is(b, strong) {
	font-weight: 700;
}

#vernetzt span span {
	display: block;
}

/* ----------------------------------------------- footerBottom ----------------------------------------------- */

#footerBottom {
	font-size: 1rem;
	padding: 20px 0;
	background: #ffffff;
}

/* --------------------------------------------- Kontrast -------------------------------------------- */

.contrast_light #burgerButton::before,
.contrast_light #burgerButton::after,
.contrast_light #burgerButtonInner {
	background-color: #000 !important;
}

.contrast_dark #burgerButton::before,
.contrast_dark #burgerButton::after,
.contrast_dark #burgerButtonInner {
	background-color: #fff !important;
}

.contrast_dark .dropdown-toggle-button {
	background-color: #000 !important;
}

.contrast_light .dropdown-toggle-button {
	background-color: #fff !important;
}

.contrast_dark #search_input::placeholder {
	color: #fff !important;
}

.contrast_dark #search_input {
	border: solid 1px #fff;
}

.contrast_dark #style button {
	border: solid 1px #fff;
}

.contrast_dark #tabs .tab,
.contrast_dark #tabs .tab2 {
	border: solid 1px #fff;
}

.contrast_dark #content>.row::before {
	display: none;
}

.contrast_dark #scrollTopBtn {
	border: solid 1px #fff;
}

.contrast_light #search_input::placeholder {
	color: #000 !important;
}

.contrast_light #search_input {
	border: solid 1px #000;
}

.contrast_light #style button {
	border: solid 1px #000;
}

.contrast_light #tabs .tab,
.contrast_dark #tabs .tab2 {
	border: solid 1px #000;
}

.contrast_light #content>.row::before {
	display: none;
}

.contrast_light #scrollTopBtn {
	border: solid 1px #000;
}

.contrast_light #scrollTopBtn::after {
	filter: brightness(0);
}