/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 08 2025 | 14:13:23 */
.read-more {
	max-height: 200px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	transition: 1s;
	z-index: 1;
}
.read-more:not(.read-more-open) * {
	display: inline;
	margin: 0 .2em 0 0;
}
.read-more-open {
	max-height: 10000px;
	transition: 1s;
	overflow: hidden;
	padding-bottom: 30px;
}
.read-more:not(.read-more-open):before {
	content: '';
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to top, #fff 20%, rgba(255,255,255,0));
	z-index: 2;
}
.read-more-lightgray:not(.read-more-open):before {
	background: linear-gradient(to top, #eff0f1 20%, rgba(239,240,241,0));
}
.read-more-lightgreen:not(.read-more-open):before {
	background: linear-gradient(to top, #f2fee8 20%, rgba(239,240,241,0));
}
.read-more:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background-image: url('https://fritzeinvest.de/wp-content/uploads/2025/04/pfeil-runter.png');
	background-position: bottom left;
	background-size: 34px 17.7px;
	background-repeat: no-repeat;
	z-index: 3;
}
.read-more-open:after {
	background-image: url('https://fritzeinvest.de/wp-content/uploads/2025/04/pfeil-hoch.png');
}
