<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.highlight-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 12px;
	flex-wrap: wrap;
}

.highlight-wrapper .highlight {
	font: var(--beon-unit-highlights-font);
	color: var(--beon-unit-highlights-text-color);
	background-color: var(--beon-unit-highlights-bg-color);
	height: 40px;
	padding: 0 15px;
	border: var(--beon-unit-highlights-border);
	border-radius: var(--beon-unit-highlights-border-radius);
	display: flex;
	align-items: center;
	white-space: break-spaces;
}

#mobile_description_section {
	display: none;
}

#description {
	font: var(--beon-unit-description-font);
	line-height: var(--beon-unit-description-line-height);
	margin-top: 35px;
	text-align: left;
	margin-bottom: 10px;

	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    transition: all 0.3s ease;
}

#description.expanded {
    -webkit-line-clamp: unset;
}

#textrest {
	display: none;
}

@media only screen and (max-width: 1200px) {
	#description {
		margin-top: 10px;
		margin-bottom: 10px;
		font: var(--beon-unit-description-font-m);
		line-height: var(--beon-unit-description-line-height-m);
	}

	.wrap-description-content {
		margin-bottom: 10px;
	}

	.highlight-wrapper .highlight {
		height: 35px;
		font: var(--beon-unit-highlights-font-m);
	}

	#mobile_description_section {
		display: flex;
	}

	.wrap-description-content,
	#ausstattungswrapper,
	#preishinweise {
		display: none;
	}
}</pre></body></html>