.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;
	padding: 1.6rem 2rem;
	box-sizing: border-box;
	background-color: var(--primary-color-100);
	transition: ease-in-out all 0.3s;
}
.button-text {
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #FFFFFF;
	transition: ease-in-out all 0.3s;
}

/* STILE */

.btn-full.colorsecondary,
.btn-default.colorsecondary {
	background-color: var(--secondary-color-100);
}
.btn-full.colorwhite,
.btn-default.colorwhite {
	background-color: #FFFFFF;
}
.btn-full.colorwhite .button-text,
.btn-default.colorwhite .button-text,
.btn-full.colorwhite .button-icon,
.btn-default.colorwhite .button-icon {
	color: #666666;
}

/* OUTLINE */
.btn-outline {
	background-color: transparent;
	border: 1px solid var(--primary-color-100);
}
.btn-outline .button-text,
.btn-outline .button-icon {
	color: var(--primary-color-100);
}
.btn-outline.colorsecondary {
	border: 1px solid var(--secondary-color-100);
}
.btn-outline.colorsecondary .button-text,
.btn-outline.colorsecondary .button-icon {
	color: var(--secondary-color-100);
}
.btn-outline.colorwhite {
	border: 1px solid #FFFFFF;
}
.btn-outline.colorwhite .button-text,
.btn-outline.colorwhite .button-icon {
	color: #FFFFFF;
}

/* UNDERLINE */
.btn-underline {
	background-color: transparent;
}
.btn-underline.button-link {
	padding-left: 0px;
	padding-right: 0px;
}
.btn-underline .button-text,
.btn-underline .button-icon {
	color: var(--primary-color-100);
}
.btn-underline .button-text {
	position: relative;
	font-size: 1.6rem;
	font-weight: 600;
}
.btn-underline .button-text:after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: -5px;
	background-color: var(--primary-color-100);
	transition: ease-in height 0.3s;
}
.btn-underline:hover .button-text:after {
	height: 4px;
	transition: ease-in height 0.3s;
}

.btn-underline.colorsecondary .button-text,
.btn-underline.colorsecondary .button-icon {
	color: var(--secondary-color-100);
}
.btn-underline.colorsecondary .button-text:after {
	background-color: var(--secondary-color-100);
	transition: ease-in height 0.3s;
}
.btn-underline.colorwhite .button-text,
.btn-underline.colorwhite .button-icon {
	color: #FFFFFF;
}
.btn-underline.colorwhite .button-text:after {
	background-color: #FFFFFF;
	transition: ease-in height 0.3s;
}

/* HOVER */

.btn-full.colorprimary:hover,
.btn-default.colorprimary:hover,
.btn-full.colorDefault:hover,
.btn-default.colorDefault:hover {
	box-shadow: var(--primary-box-shadow);
}
.btn-full.colorsecondary:hover,
.btn-default.colorsecondary:hover {
	box-shadow: var(--secondary-box-shadow);
}
.btn-full.colorwhite:hover,
.btn-default.colorwhite:hover {
	box-shadow: 0px 14.3727px 38.3273px rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
	background-color: var(--primary-color-10);
}
.btn-outline.colorsecondary:hover {
	background-color: var(--secondary-color-10);
}
.btn-outline.colorwhite:hover {
	background-color: rgba(255,255,255,0.1);
}

/* MIT ICON */

.button-link.withIcon  {
	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;
}
.withIcon.icon-right .button-text {
	margin-right: 2rem;
}
.withIcon.icon-left .button-icon {
	margin-right: 2rem;
}
.button-icon {
	color: white;
	font-size: 2rem;
	line-height: 1;
}



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