.button-inner {
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.button-link {
	display: block;
	background: transparent;
	border-radius: 4px;
	padding: 30px 54px 30px 16px;
	box-sizing: border-box;
	border: none;
	width: 100%;
	color: #FFF;
}

.button-link::after {
    content: "\e902";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'bakehouse-iconset' !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	color: inherit;
}

.button-text span {
	color: inherit;
	font-family: "sole-serif-small-variable";
	font-size: 18px;
	font-style: normal;
	font-weight: 200;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

/* STIL */

.btn-moor .button-link {
	background: var(--Moor);
}
.btn-trockenrasen .button-link {
	background: var(--Trockenrasen);
}
.btn-bergwiese .button-link {
	background: var(--Bergwiese);
}
.btn-blau .button-link {
	background: var(--Blau);
}
.btn-sand .button-link {
	background: var(--Sand);
	color: var(--Schwarz);
}
.btn-transparent .button-link {
	background: transparent;
	color: var(--Moor);
}

/* AUSRICHTUNG */
.btnalLeft .button-inner {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.btnalRight .button-inner {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
