.el-button .etButtonWrapper {
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.el-button .etButtonWrapper.alignLeft {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.el-button .etButtonWrapper.alignRight {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.el-button .etButton {
	position: relative;
	min-height: 47px;
	min-width: 250px;
	line-height: 20px;
	font-weight: 700;
	font-family: filson-soft, sans-serif;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #5064c9;
	border-radius: 30px;
	box-sizing: border-box;
	text-align: center;
	padding: 13px 20px;
	text-transform: uppercase;
	box-shadow: 0px 10px 40px rgba(0,0,0,.1);
}
.el-button:hover .etButton {
	background-color: #6e80cf;
}
.bhAnfrage .el-button .etButton {
	text-transform: none;
}
.el-button .etButton.withIcon {
	padding: 13px 50px;
}
.el-button .etButtonIcon {
	position: absolute;
	height: 100%;
	width: 30px;
	left: 10px;
	top: 0px;
	font-size: 24px;
	line-height: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	vertical-align: middle;
}

/* ----- WEISSER BUTTON ----- */

.el-button.whitebutton .etButton {
	background-color: #fff;
	color: #39DB4E;
}
.el-button.whitebutton:hover .etButton {
	background-color: #F3F3F3;
	color: #FAA648;
}

@media only screen and (max-width:768px) {
	.el-button .etButton {
		min-width: auto;
	}
}