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

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

body {
	font-family: "Lato", sans-serif;
	color: #1a1a1a;
	background: #fff;
	font-size: clamp(1rem, 2vw, 1.125rem);
	/* 1rem = 16px */
	line-height: 1.5;
}

#overflow {
	overflow: clip;
}

a {
	color: #245422;
}

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

#contentArea a,
b,
strong {
	font-weight: 700;
}

:focus-visible {
	outline: 3px solid #245422 !important;
}

.static {
	position: static;
}

.gap30 {
	gap: 30px 0;
}

.uppercase {
	text-transform: uppercase;
}

/* ------------------------------------------- logo --------------------------------------------- */

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

@media (max-width: 991px) {
	#logo {
		padding-block: 20px;
	}

	.is-sticky #logo img {
		max-height: 100px;
		max-width: calc(100vw - 120px);
		width: 100%;
	}
}

@media (min-width: 992px) {
	#logo {
		position: absolute;
		transform-origin: top center;
		transition: scale 300ms;
	}

	.is-sticky #logo {
		top: 10px;
		scale: 0.75;
	}
}

/* #region ----------------------------------- topbar ------------------------------------------- */

#topbar {
	padding: 15px 0;
	background: #fff;
	font-size: 0.9375rem;
	line-height: 1;
}

@media (min-width: 576px) {
	#topbar {
		padding: 22px 0;
	}
}

@media (min-width: 992px) {
	#topbar {
		padding: 9px 0;
	}
}

#topbar > .row {
	row-gap: 15px;
}

/* search */

#search {
	background: #fff;
	display: inline-flex;
}

@media (max-width: 991px) {
	#search {
		background: #ffffff;
	}
}

#search_input {
	color: #1a1a1a;
	font-style: normal;
	background: transparent;
	padding: 6px 2px;
	border: 0;
	width: 100%;
}

@media (max-width: 991px) {
	#search_input {
		padding: 8px 10px;
	}
}

#search_submit {
	width: 30px;
	flex-shrink: 0;
	background: url("../img/lupe-icon.png") center no-repeat;
	padding: 0;
	border: none;
	cursor: pointer;
	font-size: 0;
}

#search_submit:is(:hover, :focus) {
	background-color: #f8cc27;
}

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

/* contrast + styler */

:is(#contrast_style, #style) {
	column-gap: 8px;
}

:is(#contrast_style, #style) h2 {
	font-size: 0.9375rem;
	font-weight: inherit;
	font-family: inherit;
	color: inherit;
	margin: 0 5px 0 0;
	width: unset;
}

:is(#contrast_style, #style) button {
	padding: 0;
	display: inline-block;
	position: relative;
	background: #ffffff;
}

/* contrast */

#contrast_style button {
	width: 1.25rem;
	height: 1.25rem;
	font-size: 0;
	border: none;
}

#contrast_style button::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	border: 2px solid #1a1a1a;
	background: linear-gradient(45deg, #1a1a1a 0%, #1a1a1a 50%, rgba(255, 255, 255, 1) 51%, rgba(255, 255, 255, 1) 100%);
}

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

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

/* styler */

#style {
	margin-left: 30px;
}

#style button {
	border: none;
	color: #fff;
	width: 1.375rem;
	height: 1.375rem;
	font-weight: 400;
	text-align: center;
	font-size: 1rem;
	background: #245422;
}

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

/* #endregion -------------------------------- topbar ------------------------------------------- */

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

nav.horizontally {
	background-color: #f8cc27;
	border-bottom: 4px solid #245422;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
	#burgerButton {
		font-size: 0;
		border: none !important;
		display: block;
		height: 50px;
		width: 60px;
		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: #245422;
		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: #f8cc27;
		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: 7px;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		background-color: #f8cc27;
		border-bottom: 4px solid #245422;
	}

	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.open > ul {
		pointer-events: none !important;
		opacity: 0 !important;
		visibility: hidden;
	}

	nav.horizontally .navbar-nav li:is(: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) > ul {
		z-index: 1003;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #245422;
	font-weight: 400;
	font-family: "Anton", sans-serif;
	text-align: left;
	padding: 10px 15px 15px 15px;
	text-transform: uppercase;
	position: relative;
	font-size: clamp(1.25rem, 1.5vw, 1.4375rem);
	line-height: 1.2;
	text-decoration: none;
}

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

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

	nav.horizontally a[class*="toplevel"] {
		text-align: center;
		padding: 27px 0;
	}
}

nav.horizontally a[class*="toplevel"]::before {
	content: "";
	width: 21px;
	height: 6px;
	display: block;
	position: absolute;
	left: 30px;
	top: 2px;
	background: url("../img/hover-hauptmenue.png") center no-repeat;
	opacity: 0;
	transition: opacity 300ms linear;
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"]::before {
		left: calc(50% - 15px);
		top: 10px;
	}
}

/* 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: #245422;
	background-color: transparent;
}

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;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: #f8cc27;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

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

	nav.horizontally [class*="toplevel"] ul {
		margin: 10px;
	}
}

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

	nav.horizontally [class*="toplevel"] > ul::after {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		width: 40px;
		height: 20px;
		background: #245422;
		transform: translateX(-50%);
		clip-path: polygon(100% 0, 0 0, 50% 100%);
	}

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

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

	nav.horizontally [class*="toplevel"] > ul::before {
		content: "";
		position: absolute;
		display: block;
		height: 4px;
		left: 0;
		right: 0;
		top: -4px;
	}

	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: #1a1a1a;
	font-weight: 400;
	text-align: center;
	padding: 8px 25px;
	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;
	}
}

/* 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: #245422;
	color: #fff;
}

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

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

header {
	position: relative;
}

#slider {
	max-height: clamp(300px, 47vw, 590px);
	position: relative;
}

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

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

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

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

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

.slider-mask {
	display: none;
}

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

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

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

#contentArea > .row {
	gap: 60px 0;
}

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

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

h1,
.h1,
.legacy_h1 {
	font-size: clamp(1.875rem, 5vw, 2.75rem);
}

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

h3,
.h3,
.legacy_h3 {
	font-size: 1.625rem;
}

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

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

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

/* ----------------------------------------------- @9ev events -------------------------------------------- */

#ev9 .tab,
#merch .tab {
	font-size: 1rem;
	padding: 35px 30px 30px 30px;
	background-color: #f8cc27;
}

#ev9 .tabSpecial {
	margin-bottom: 20px;
}

#ev9 .tabHeadline,
#merch .tabHeadline {
	font-size: 1.5rem;
	color: #1a1a1a;
	margin-bottom: 0;
	text-transform: uppercase;
	font-style: italic;
	font-family: inherit;
	font-weight: 800;
}

#merch .tab {
	margin-top: 30px;
}

/* Map -------------------------------------------------------- */

#map :is(iframe, .iframe-wrapper-manual-enabling) {
	width: 100%;
	min-width: 100% !important;
}

#map iframe {
	display: block;
}

/* Full height */
#map :is(iframe, .iframe-wrapper-manual-enabling),
#map .template-page,
#map .template-page > .row {
	height: 100%;
}

/* Map -------------------------------------------------------- */

/* ----------------------------------------------- breaker -------------------------------------------- */

.breaker {
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding-block: 85px;
	background: #f8cc27;
}

.tab.light {
	color: #fff;
}

.tab.light a {
	text-decoration: underline;
}

.tab.light a,
.tab.light .tabHeadline {
	color: #fff;
}

#about {
	position: relative;
	isolation: isolate;
	height: 100%;
	font-size: clamp(1.25rem, 2vw, 1.5625rem);
}

@media (min-width: 992px) {
	#about::before {
		content: "";
		position: absolute;
		background: #f8cc27;
		inset: -85px 0 -85px auto;
		z-index: -1;
		clip-path: polygon(100% 0, 0 0, 0 100%);
		transform: translateX(100%);
		width: 200px;
	}
}

#about::after {
	content: "";
	position: absolute;
	background: #f8cc27;
	z-index: -1;
}

@media (max-width: 991px) {
	#about::after {
		inset: 0;
	}

	#about {
		padding: 30px;
	}
}

@media (min-width: 992px) {
	#about::after {
		inset: -85px 0 -85px -100vw;
	}
}

#sponsoren {
	padding-block: 50px;
}

#mitglied .tabHeadline,
#sponsoren .tabHeadline {
	font-size: clamp(1.875rem, 5vw, 3.125rem);
}

#sponsoren :is(b, strong) {
	font-size: clamp(1.75rem, 4.5vw, 2.1875rem);
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
}

/*  --------------------------------------- buttonStyle --------------------------------------- */

.buttonStyle a {
	background: #f8cc27;
	border: 2px solid #245422;
	display: inline-block;
	font-weight: 600;
	font-size: 1.3125rem;
	color: #1a1a1a;
	padding: 5px 20px;
	margin-top: 50px;
}

.buttonStyle a:is(:hover, :focus) {
	background: #245422;
	text-decoration: none;
	color: #fff;
}

.buttonStyle a::after {
	content: " »";
}

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

footer {
	font-size: 1rem;
	position: relative;
	background: #245422;
}

#footer {
	padding: clamp(40px, 4vw, 60px) 0 clamp(40px, 4vw, 50px) 0;
}

@media (max-width: 991px) {
	#footer > .row {
		row-gap: 30px;
	}
}

@media (min-width: 992px) {
	footer .tab {
		padding-bottom: 45px;
	}
}

footer .tabHeadline {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 800;
	font-family: inherit;
}

footer #socials .tabHeadline {
	text-transform: uppercase;
	font-size: clamp(1.75rem, 4.5vw, 2.1875rem);
	font-style: italic;
}

.footerTab {
	font-size: 1.125rem;
}

footer #socials a {
	line-height: 1;
	vertical-align: middle;
	text-align: center;
	background: #fff;
	color: #1a1a1a;
	padding: 15px;
	transition: all 300ms;
	display: inline-block;
	text-decoration: none;
	border-radius: 50%;
}

footer #socials a:is(:hover, :focus) {
	display: inline-block;
	background: #f8cc27;
}

footer #socials a + a {
	margin-left: clamp(15px, 2vw, 30px);
}

.footerHeadline {
	color: inherit;
	font-size: 1.5rem;
}

footer :is(iframe, .iframe-wrapper-manual-enabling) {
	min-width: 100% !important;
	width: 100% !important;
	display: block;
}

/* footer2 */

#footer2 > .row {
	row-gap: 15px;
	border-top: 1px solid rgba(26, 26, 26, 0.2);
	padding: 15px 0;
}

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

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

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

#vernetzt span span {
	display: block;
}

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

#innerfooter {
	font-size: 1rem;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #ffffff;
	font-size: 0.9375rem;
}

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

#innerfooter li + li::before {
	content: "•";
	margin: 0 clamp(15px, 2vw, 25px);
	color: #ffffff;
}

/* #region -------------------------------------- scroll top ------------------------------------ */

#scrollTop {
	color: #1a1a1a;
	display: block !important;
	font-size: 0;
	opacity: 1 !important;
	background: #f8cc27;
	outline: 2px solid #f8cc27;
	outline-offset: -2px;
	width: 50px;
	height: 50px;
	position: relative;
	margin: 0 auto;
	border-radius: 50%;
}

@media (min-width: 992px) {
	#scrollTop {
		position: fixed;
		bottom: 165px;
		right: 38px;
		z-index: 55;
	}
}

#scrollTop:is(:hover, :focus) {
	background-color: #fff;
}

#scrollTop::after,
#scrollTop::before {
	content: "";
	position: absolute;
	border-radius: 1px;
}

#scrollTop::after {
	left: 20px;
	width: 8px;
	height: 8px;
	top: 5px;
	margin-top: 10px;
	display: inline-block;
	border-right: 2px solid #1a1a1a;
	border-top: 2px solid #1a1a1a;
	transform: rotate(-45deg);
}

#scrollTop::before {
	left: 50%;
	width: 2px;
	height: 20px;
	top: 50%;
	background-color: #1a1a1a;
	margin-left: -1px;
	margin-top: -10px;
}

/* #endregion ----------------------------------- scroll top ------------------------------------ */

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

:is(.contrast_light_font, .contrast_dark_font) body {
	filter: none;
	background: none;
}

.contrast_dark_font #scrollTop span::after {
	border-right: 2px solid #000;
	border-top: 2px solid #000;
}

.contrast_dark_font #scrollTop span::before,
.contrast_dark_font #vernetzt img {
	background-color: #000;
}

.contrast_dark_font #search_input,
.contrast_dark_font #burgerButton::before {
	color: #000000 !important;
}

#search_input.contrast_light_font {
	background: #fff !important;
}

.contrast_dark_font #burgerButton[aria-expanded="true"]::after {
	background: #000;
}

.darkMode input[type="submit"],
.contrast_dark_font :is(.searchbar, #bannerOverlay) {
	background-color: #ffffff;
}

#burgerButton .contrast_light {
	background: #000 !important;
	color: #fff !important;
}

.contrast_dark #logo img,
.contrast_light_font #burgerButton[aria-expanded="true"] #burgerButtonInner,
.contrast_light_font #burgerButtonInner2,
.contrast_light_font #burgerButton::after {
	background: #fff !important;
}

.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;
}

#scrollTop.contrast_light_font {
	background: #fff !important;
}

/* ------------------------------------------------ @29tab ----------------------------------------------- */

#tab29 details.tab {
	cursor: pointer;
	display: flex;
	position: fixed;
	z-index: 12;
	top: 30%;
	left: -276px;
	max-width: 321px;
	transition: all 0.5s 0s ease;
}

#tab29 details.tab2 {
	margin-top: 55px;
}

#tab29 details.tab3 {
	margin-top: 110px;
}

#tab29 details.tab4 {
	margin-top: 110px;
}

#tab29 details[open] {
	left: 0;
	z-index: 13;
	transition: all 0.5s 0s ease;
}

#tab29 details summary {
	list-style: none;
}

#tab29 details .tabHeadline a {
	color: #444444;
	font-family: "Lato", sans-serif;
}

#tab29 details .tabHeadline {
	color: #444444;
	font-weight: 400 !important;
	position: relative;
	z-index: 1;
	font-size: 1rem;
	margin: 0;
	min-width: 321px;
	min-height: 45px;
	border-radius: 0 22px 22px 0;
	padding: 13px 45px 10px 32px;
	background: #ffffff;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

#tab29 details .tabHeadline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 8px;
	margin: auto;
	width: 34px;
	height: 34px;
	border-radius: 100px;
}

#tab29 details.tab1 .tabHeadline::before {
	background:
		url("../img/2__facebook-icon.png") center no-repeat,
		#245421;
}

#tab29 details.tab2 .tabHeadline::before {
	background:
		url("../img/3__instagram-icon.png") center no-repeat,
		#245421;
}

#tab29 details.tab3 .tabHeadline::before {
	background:
		url(../img/phone-call-icon.png) center no-repeat,
		#245421;
}

#tab29 details.tab4 .tabHeadline::before {
	background:
		url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23fff"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm320-280L160-640v400h640v-400L480-440Zm0-80 320-200H160l320 200ZM160-640v-80 480-400Z"/></svg>') center no-repeat,
		#245421;
}
