.fiCMScookieNotice {
	position: fixed;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 800px;
	z-index: 150;
	pointer-events: none;
	opacity: 0;
	display: grid;
	padding: 1em;
    gap: 1em;
	grid-template-columns: auto 250px;
	transition: all 0.2s ease-out;
	place-items: center;
    background-color: #fff;
    border-radius: 0px;
    font-size: .8rem;
    line-height: 1.2;
    font-weight: normal;
} .fiCMScookieNotice form {
	text-align: center;
} .fiCMScookieNotice form .fiCMScookieSettings {
	text-align: left;
} .fiCMScookieGroup .fiCMScookieWrapper {
	min-height: 3.5em;
} .fiCMScookieWrapper.fiCMScookieSettings > .fiCMScookieWrapper {
    display: flex;
    flex-direction: inherit;
    width: fit-content;
    flex-direction: column;
    max-width: 250px;
} .fiCMScookieSettings {
	min-height: inherit;
	height: 0;
	min-height: 0;
	padding: 0;
	opacity: 0;
	transition: all 0.2s ease-out;
} .fiCMScookieSettings {
	margin: 0;
} .fiCMScookieNotice .settings_item {
	justify-content: center;
	align-content: center;
    display: block;
} .fiCMScookieNotice .settings_item:not(.description) {
	display: grid;
    gap: 0;
} .fiCMScookieSettings > .fiCMScookieWrapper:not(:last-child) {
	border-bottom: none;
} .fiCMScookieSettings > .fiCMScookieWrapper:nth-of-type(2n+1) {
	background-color: transparent;
} .fiCMScookieNotice .button {
	height: 25px;
	margin-top: 0;
	padding: .1em 1em;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 0.8rem;
	font-family: var(--text-font-family-subheadline);
	letter-spacing: 0.08em;
} .fiCMScookieNotice .settings_item.description {
	font-size: 0.8rem;
	line-height: 1.5;
} .fiCMScookieTitle {
	font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
} .fiCMScookieGroup {
	font-size: 0.7rem;

    label {
        align-self: center;
    }

    .switch {
        justify-self: flex-end;
    }

    & > .fiCMScookieWrapper {
        font-size: 0.7rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;

        & div:last-of-type {
            grid-column-start: 1;
            grid-column-end: 3;
        }
    }
} .fiCMScookieInfo {
    height: fit-content;
    max-height: inherit !important;
}

.fold {
    font-size: 0.8rem;
	font-style: italic;
} .fold::after {
	content: '';
	position: relative;
    display: inline-block;
	top: -2px;
	width: 0;
	height: 0;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-bottom: 3px solid gray;
	transform: rotate(0deg);
	left: 8px;
} #fold:checked ~ .fiCMScookieSettings {
	height: auto;
	opacity: 1;
} #fold:checked + .fold::after {
	transform: rotate(180deg);
}

@media(max-width: 800px){
    .fiCMScookieNotice {
        grid-template-columns: 1fr;
    }
}