<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.teaser_area {
	background-color:#dedede;
	box-sizing:border-box;
	padding:0.3rem;
}
/* ----- COOKIE DIRECTIVE ----- */


.modaldialog {
	display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
	z-index:100000;
}

.dialog {
    background-color: var(--nabu-blau);
    position: absolute;
    width: 36rem;
    left: calc(50% - 18rem);
    right: auto;
    padding: 1rem;
    top: 2rem;
    color: #ffffff;
    max-height: calc(100% - 3rem);
    overflow: auto;
    text-align: left !important;
	box-sizing:border-box;
}

@media screen and (max-width: 36rem) {
	.dialog {
		left:0;
		right:0;
		width:100%;
	}
}


.dialog h1 {
    margin-top: 0;
}

.dialog ul {
    list-style: none;
    padding: 0;
	margin-top:0.5rem;
}

.dialog ul ul {
    padding-left: 3rem;
	margin-top:0.5rem;
	display:none;
}

.dialog ul li label {
    flex-grow: 1;
    flex-shrink: 1;
    width: 50%;
}

.dialog ul li a {
	color:#ffffff;
	text-decoration:underline;
}

.dialog ul li a:hover {
	text-decoration:none;
}

.dialog ul li a::before {
	content: '\2580';
	display: inline-block;
	height: 1rem;
	box-sizing:border-box;
}

.dialog ul li a.closed::before {
	content: '\2193';
}

.dialog ul li a.opened::before {
	content: '\2191';
}


.dialog input[type="checkbox"] {
    width: 2rem;
	margin:0;
    margin-right: 1rem;
    position: relative;
    background: none;
    border: 0;
    height: 1rem;
    appearance: none;
    vertical-align: middle;
}

.dialog input[type="checkbox"]::before {content: 'x';display: inline-block;width: 2rem;font-size: 0;height: 1rem;border-radius: 0.5rem;border: 1px solid #ffffff;position: absolute;left: 0;top: 0;background-color: #ffffffac; box-sizing:border-box;}

.dialog input[type="checkbox"]:checked::before {
background-color:#00ff00ac;
}

.dialog ul li {
    display: flex;
    flex-wrap: wrap;
	margin-bottom:0.5rem;
}

.dialog button {
    border: 0;
    background-color: #ffffff40;
    padding: 0.5rem 1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.dialog button+button {
    margin-left: 1rem;
    background-color: transparent;
    font-weight: normal;
}
</pre></body></html>