.quote-wrapper {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.quote-content {
	position: relative;
	width: calc(100% - 10.5rem);
	height: auto;
	min-height: 35rem;
	padding: 10rem 20rem 3rem 7rem;
	box-sizing: border-box;
	background-color: var(--primary-color-100);
}
.colorPrimary30 .quote-content {
	background-color: var(--primary-color-07);
}
.colorSecondary100 .quote-content {
	background-color: var(--secondary-color-100);
}
.colorSecondary30 .quote-content {
	background-color: var(--secondary-color-07);
}
.quote-img {
	position: relative;
	width: 22.5rem;
	height: 22.5rem;
	margin-left: -12rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-filter: drop-shadow(0px 30px 50px rgba(0, 0, 0, 0.15));
	filter: drop-shadow(0px 30px 50px rgba(0, 0, 0, 0.15));
	z-index: 1;
}
.quote-img.bhe-state-property-empty {
	background-color: var(--primary-color-07);
}
.quote-icon {
	position: absolute;
	left: 3.2rem;
	top: 3.2rem;
	pointer-events: none;
}
.colorSecondary100 .quote-icon svg path {
	fill: var(--secondary-color-60);
}
.colorSecondary30 .quote-icon svg path {
	fill: var(--secondary-color-30);
}
.colorPrimary30 .quote-icon svg path {
	fill: var(--primary-color-30);
}
.quote-quote {
	width: 100%;
	font-family: 'Rockwell', serif;
	font-weight: 400;
	font-size: 3rem;
	line-height: 1.2;
	color: white;
	margin-bottom: 2.5rem;
}
.quote-name {
	width: 100%;
	font-family: 'Rockwell', serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.2;
	color: var(--primary-color-30);
	margin-bottom: 0.5rem;
}
.quote-subtext {
	color: var(--primary-color-30);
}
.colorPrimary30 .quote-quote,
.colorSecondary30 .quote-quote {
	color: var(--root-color-80);
}
/* .colorPrimary30 .quote-name,
.colorPrimary30 .quote-subtext {
	color: var(--primary-color-80);
} */
.colorSecondary100 .quote-name,
.colorSecondary100 .quote-subtext {
	color: var(--secondary-color-30);
}
.colorSecondary30 .quote-name,
.colorSecondary30 .quote-subtext {
	color: var(--secondary-color-30);
}

/*---- ohne Bild ----*/

.el-quote.noImg .quote-content {
	width: 100%;
	padding: 10rem 7rem 3rem;
}

@media only screen and (max-width:900px) {
	.quote-img {
		position: relative;
		width: 20rem;
		height: 20rem;
		margin-left: -11rem;
	}
	.quote-content {
		position: relative;
		width: calc(100% - 9rem);
		padding-right: 18rem;
		padding-bottom: 2rem;
	}
	.el-quote.noImg .quote-content {
		width: 100%;
		padding: 8rem 7rem 2rem;
		min-height: 10rem;
	}
	.quote-quote {
		font-size: 2.4rem;
	}
	.quote-name {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width:650px) {
	.el-quote:not(.noImg) .quote-wrapper {
		padding-top: 5rem;
	}
	.quote-content {
		position: relative;
		width: 100%;
		padding: 10rem 3rem 3.5rem 5rem;
	}
	.el-quote.noImg .quote-content {
		padding: 10rem 3rem 3.5rem 5rem;
	}
	.quote-img {
		position: absolute;
		width: 12rem;
		height: 12rem;
		right: 3rem;
		top: 0rem;
		margin-left: 0px;
	}
	.quote-icon {
		top: 4.5rem;
		left: 2rem;
	}
	.quote-quote {
		font-size: 2.3rem;
	}
}