/* Zitat/Quote */
.quote {
	position: relative;
	margin-top: 17px;
	margin-bottom: 40px;
	padding: 18px 8%;
	border: 1px solid #2e407d;
	color: #2e407d;
	text-align: center;
}
.quote:before,
.quote:after {
	content: '';
	display: block;
	width: 70px; height: 43px;
	position: absolute;
	left: 30px; top: -19px;
	background: rgb(36 39 42 / 7%) url('../../Images/Icons/quote_bottom.svg') no-repeat;
	background-size: contain;
}

.bg-white .quote:before,
.bg-white .quote:after {
    background: #ffffff url('../../Images/Icons/quote_bottom.svg') no-repeat;
}

.quote:after {
	content: '';
	left: auto; top: auto;
	right: 30px; bottom: -19px;
	background-image: url('../../Images/Icons/quote_top.svg');
}
.quote__text {
	font-size: 26px;
	font-weight: 200;
	overflow: hidden;
}
.quote__source {
	display: inline-block;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 200;
	font-style: normal;
}

/* Variants */
.quote--small {
	padding: 25px 6%;
}
.quote--small:before,
.quote--small:after {
	height: 33px;
	width: 54px;
}
.quote--small:before { left: 20px; }
.quote--small:after { right: 20px; }
.quote--small .quote__text { font-size: 16px; font-weight: 400; }
.quote--small .quote__source { font-size: 14px; margin-top: 0; }

.quote--image.quote { padding-left: 30px; }
.quote--image .quote__text { margin-top: 45px; }

.quote--image .quote__image {
	float: left;
	margin-top: 20px;
	margin-right: 40px;
	text-align: left;
}
.quote--image .quote__source { display: block; margin-top: 9px; }


@media only screen and (max-width: 740px) {
	.quote--image .quote__image {
		float: none;
	}
}

@media only screen and (max-width: 660px) {
	.quote,
	.quote.quote--image {
		padding: 18px 4%;
	}
	.quote__text { font-size: 20px; }
	.quote__source { font-size: 12px; }
	.quote:before,
	.quote:after {
		height: 30px; width: 45px;
	}
	.quote:after { right: 15px; }
	.quote:before { left: 15px; }
}

@media only screen and (max-width: 400px) {
	.quote__text { font-size: 16px; }
}