.el-tarifrechner.look2 .tarifrechner-wrapper {
	background-color: var(--primary-color-100);
	width: 100%;
	padding: 4rem;
	box-sizing: border-box;
}
.tarifrechner-inner {
	position: relative;
	width: 100%;
	min-height: 30rem;
	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;
}
.tarifrechner-widget {
	position: absolute;
	height: auto;
	width: 32rem;
	height: auto;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.25);
}
.bhe-state-editing .el-tarifrechner.look2 .tarifrechner-widget {
	pointer-events: none;
	opacity: 0.3;
}
.tarifrechner-content {
	position: relative;
	width: calc(100% - 32rem);
	padding: 4rem;
	box-sizing: border-box;
}
.tarifrechner-icon {
	font-size: 24px;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 24px;
	width: 24px;
	color: white;
	text-align: center;
}
.tarifrechner-text {
	font-family: 'Rockwell', serif;
	font-weight: 400;
	font-size: 2.7rem;
	line-height: 1.3;
	max-width: 42rem;
	color: white;
}
.el-tarifrechner.look1 .tarifrechner-wrapper {
	max-width: 32rem;
	margin: 0 auto;
}
.el-tarifrechner.look1.alignleft .tarifrechner-wrapper {
	margin-left: 0;
	margin-right: auto;
}
.el-tarifrechner.look1.alignright .tarifrechner-wrapper {
	margin-left: auto;
	margin-right: 0;
}


@media only screen and (max-width:800px) {
	.tarifrechner-inner {
		display: block;
	}
	.tarifrechner-content {
		width: 100%;
		margin-bottom: 3rem;
		padding: 5rem 0 2rem;
	}
	.tarifrechner-widget {
		position: relative;
		right: auto;
		transform: translateY(0);
		top: auto;
	}
}