.bhe-state-dragging .el-linkbox .linkbox-content {
	pointer-events: none;
}

.el-linkbox .linkbox-wrapper {
	display: block;
}
/* BILD */
.el-linkbox .bhBackgroundImage {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* CONTENT */
.el-linkbox .linkbox-content {
	min-height: 32rem;
	padding: 2rem;
	box-sizing: border-box;
	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: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.el-linkbox.halfheight .linkbox-content {
	min-height: 16rem;
}
.el-linkbox .bhBackgroundImage:not(.bhe-state-property-empty) .linkbox-content {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 20.83%, rgba(0, 0, 0, 0.39) 69.79%, rgba(0, 0, 0, 0.65) 100%);
}
.el-linkbox .bhBackgroundImage.bhe-state-property-empty .linkbox-content {
	background-color: var(--primary-color-100);
}
.el-linkbox.colorsecondary .bhBackgroundImage.bhe-state-property-empty .linkbox-content {
	background-color: var(--secondary-color-100);
}

/* TEXT */
.el-linkbox .linkbox-headline {
	width: 100%;
}
.el-linkbox .linkbox-headline h4 {
	color: white;
	margin-bottom: 0px;
}
.el-linkbox.headline-align-right .linkbox-headline h4 {
	text-align: right;
}
.el-linkbox .linkbox-subtext h6 {
	color: white;
}

/* ICON */
.el-linkbox.withIcon .linkbox-content {
	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: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.el-linkbox.withIcon .linkbox-textwrapper {
	width: calc(100% - 6rem);
	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: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.el-linkbox.withIcon .linkbox-icon {
	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: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.el-linkbox.withIcon .linkbox-icon-icon {
	font-size: 48px;
	color: white;
}

/* HOVER */
.el-linkbox .linkbox-wrapper[href] {
	transition: ease-in box-shadow 0.3s, ease-in transform 0.3s;
}
.el-linkbox .linkbox-wrapper[href]:hover {
	transform: translateY(-8px);
	box-shadow: 0px 20px 80px rgba(41, 41, 42, 0.12);
	transition: ease-out box-shadow 0.3s, ease-out transform 0.3s;
}


/* LINKBOX IN DER NAVIGATION */

#Navigation .el-linkbox .linkbox-content {
	min-height: 28rem;
}
#Navigation .el-linkbox .linkbox-headline h4 {
	font-size: 2rem;
}

@media only screen and (max-width:600px) {
	.el-linkbox .linkbox-content {
		padding: 1.6rem;
	}
	.el-linkbox .linkbox-wrapper[href]:hover {
		transform: translateY(-3px);
	}
}
@media only screen and (max-width:450px) {
	.el-grid .el-linkbox .linkbox-headline h4 {
		font-size: 1.8rem;
	}
	.el-linkbox.withIcon .linkbox-content {
		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: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.el-linkbox.withIcon .linkbox-textwrapper {
		width: 100%;
	}
	.el-linkbox .linkbox-content {
		min-height: 26rem
	}
	.el-linkbox.halfheight .linkbox-content {
		min-height: 12rem;
	}
}

@media only screen and (max-width:500px) {
	.el-grid .el-linkbox .linkbox-subtext h6,
	.el-grid .el-linkbox .linkbox-headline h4 {
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}