/* Cookie */
.fiCMScookieNotice {
	position: fixed;
	right: 10px;
	bottom: 10px;
	left: 10px;
	z-index: 350;
	pointer-events: none;
	opacity: 0;
	background: var(--ficms-gradient-highlight-full);
	box-shadow: var(--ficms-box-shadow-inset);
	padding: var(--ficms-padding-standard);
	border-radius: var(--ficms-border-radius);
} .fiCMScookieNoticeActive {
	pointer-events: all !important;
	opacity: 1 !important;
} .fiCMScookieNotice input[type="radio"], .fiCMScookieNotice input[type="checkbox"] {
	display: none;
} .fiCMScookieWrapper {
	display: block;
	width: 100%;
	position: relative;
	min-height: 2.5em;
} .fiCMScookieRequested {
	color: red;
} .fiCMScookieSettings {
	min-height: 20vh;
	overflow: auto;
	margin-top: 20px;
	max-height: 40vh;
	margin-bottom: 5px;
} .fiCMScookieSettings > .fiCMScookieWrapper, .fiCMScookieNotice > .fiCMScookieWrapper:first-child {
	padding: 5px;
} .fiCMScookieSettings > .fiCMScookieWrapper:not(:last-child) {
	border-bottom: 1px solid rgba(0,0,0,.1);
} .fiCMScookieGroup {
	max-height: 0px;
	overflow: hidden;
	min-height: 0px;
} .fiCMScookieSettings .fiCMScookieTitle::after {
	content: '';
	position: absolute;
	top: calc(1em - 3px);
	right: 60px;
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid gray;
	transform: rotate(0deg);
} .fiCMScookieButtons {
	display: flex;
	flex-direction: row;
	gap: 5px;
} .fiCMScookieGroup > *:not(:last-child) {
	border-bottom: 1px dashed rgba(0,0,0,.1);
	margin-bottom: 3px;
} .fiCMScookieSettings label {
	cursor: pointer;
} .fiCMScookieGroup > .fiCMScookieWrapper {
	font-size: 0.8em;
} .fiCMScookieSettings .fiCMScookieInfo {
	max-height: 0px;
	overflow: hidden;
	min-height: 0px;
} .fiCMScookieSettings > .fiCMScookieWrapper:nth-of-type(2n+1) {
	background-color: rgba(0,0,0,.02);
} .fiCMScookieNotice, .fiCMScookieGroup, .fiCMScookieTitle::after {
	transition: all 300ms ease-out;
} .fiCMScookieSettings input[type="checkbox"]:checked + .fiCMScookieTitle::after {
	transform: rotate(180deg);
} .fiCMScookieSettings input[type="checkbox"]:checked ~ .fiCMScookieGroup, .fiCMScookieGroup input[type="checkbox"]:checked ~ .fiCMScookieInfo {
	max-height: 100vh;
} .fiCMScookieInfo > * {
	display: block;
	margin-bottom: 5px;
	font-style: italic;
} form > .fiCMScookieWrapper:last-child {
	text-align: center;
} .fiCMScookieWrapper button {
	display: block;
	margin-bottom: 5px;
	max-width: none;
}

/* Elemente auf der Seite */
.privacyHidden[data-privacy] {
	cursor: pointer;
} .privacyHidden[data-privacy]::after {
	content: attr(data-privacy);
	position: absolute;
	left: 50%;
	top: 50%;
	color: #fff;
	text-align: center;
	transform: translate(-50%, -50%);
} .privacyHidden[data-privacy]::before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(0,0,0,.4);
} .privacyDontShow {
	display: none;
} @media (min-width: 600px) {
	.fiCMScookieNotice {
		left: unset;
		max-width: 350px;
	}
}