﻿
/*
Gerüst

Mediaqueries
max-width: 759px > xs
min-width: 760px > sm
min-width: 1020px > md
min-width: 1280px > lg
min-width: 1440px > xl
min-width: 1920px > xxl
*/
.row {
	margin-right: 0;
	margin-left: 0;
}
.row-50, .row-40, .row-30, .row-20, .row-16 {
	margin-right: -5px;
	margin-left: -5px;
}
.col, .col-50, .col-40, .col-30, .col-20, .col-16 {
	float: left;
	position: relative;
	min-height: 1px;
}
.col-50, .col-40, .col-30, .col-20, .col-16 {
	padding-right: 5px;
	padding-left: 5px;
}
@media (min-width: 760px) {
	.row-50 {
		margin-right: -25px;
		margin-left: -25px;
	}
	.row-40 {
		margin-right: -20px;
		margin-left: -20px;
	}
	.row-30 {
		margin-right: -15px;
		margin-left: -15px;
	}
	.row-20 {
		margin-right: -10px;
		margin-left: -10px;
	}
	.row-16 {
		margin-right: -8px;
		margin-left: -8px;
	}
	.col-50 {
		padding-right: 25px;
		padding-left: 25px;
	}
	.col-40 {
		padding-right: 20px;
		padding-left: 20px;
	}
	.col-30 {
		padding-right: 15px;
		padding-left: 15px;
	}
	.col-20 {
		padding-right: 10px;
		padding-left: 10px;
	}
	.col-16 {
		padding-right: 8px;
		padding-left: 8px;
	}
}

/* Flex */
.flex {
	display: flex;
}
	.flex-valign-center {
		width: 100%;
		align-self: center;
	}
.flex-row {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
	.flex-col {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		flex-grow: 0; /* 0 = Items dürfen nicht größer werden als festgelegt */
		flex-shrink: 1; /* 1 = Items dürfen kleiner werden als festgelegt */
		flex-basis: auto; /* auto = Die Basis-Größe der Items wird automatisch festgelegt – also anhand der Angaben */
	}


/* Extra-kleine Geräte (Smartphones, weniger als 760px) */
.col-xs-12 {
	width: 100%;
}
.col-xs-11 {
	width: 91.66666667%;
}
.col-xs-10 {
	width: 83.33333333%;
}
.col-xs-9 {
	width: 75%;
}
.col-xs-8 {
	width: 66.66666667%;
}
.col-xs-7 {
	width: 58.33333333%;
}
.col-xs-6 {
	width: 50%;
}
.col-xs-5 {
	width: 41.66666667%;
}
.col-xs-4 {
	width: 33.33333333%;
}
.col-xs-3 {
	width: 25%;
}
.col-xs-2 {
	width: 16.66666667%;
}
.col-xs-1 {
	width: 8.33333333%;
}
.col-xs-pull-12 {
	right: 100%;
}
.col-xs-pull-11 {
	right: 91.66666667%;
}
.col-xs-pull-10 {
	right: 83.33333333%;
}
.col-xs-pull-9 {
	right: 75%;
}
.col-xs-pull-8 {
	right: 66.66666667%;
}
.col-xs-pull-7 {
	right: 58.33333333%;
}
.col-xs-pull-6 {
	right: 50%;
}
.col-xs-pull-5 {
	right: 41.66666667%;
}
.col-xs-pull-4 {
	right: 33.33333333%;
}
.col-xs-pull-3 {
	right: 25%;
}
.col-xs-pull-2 {
	right: 16.66666667%;
}
.col-xs-pull-1 {
	right: 8.33333333%;
}
.col-xs-pull-0 {
	right: auto;
}
.col-xs-push-12 {
	left: 100%;
}
.col-xs-push-11 {
	left: 91.66666667%;
}
.col-xs-push-10 {
	left: 83.33333333%;
}
.col-xs-push-9 {
	left: 75%;
}
.col-xs-push-8 {
	left: 66.66666667%;
}
.col-xs-push-7 {
	left: 58.33333333%;
}
.col-xs-push-6 {
	left: 50%;
}
.col-xs-push-5 {
	left: 41.66666667%;
}
.col-xs-push-4 {
	left: 33.33333333%;
}
.col-xs-push-3 {
	left: 25%;
}
.col-xs-push-2 {
	left: 16.66666667%;
}
.col-xs-push-1 {
	left: 8.33333333%;
}
.col-xs-push-0 {
	left: auto;
}
.col-xs-offset-12 {
	margin-left: 100%;
}
.col-xs-offset-11 {
	margin-left: 91.66666667%;
}
.col-xs-offset-10 {
	margin-left: 83.33333333%;
}
.col-xs-offset-9 {
	margin-left: 75%;
}
.col-xs-offset-8 {
	margin-left: 66.66666667%;
}
.col-xs-offset-7 {
	margin-left: 58.33333333%;
}
.col-xs-offset-6 {
	margin-left: 50%;
}
.col-xs-offset-5 {
	margin-left: 41.66666667%;
}
.col-xs-offset-4 {
	margin-left: 33.33333333%;
}
.col-xs-offset-3 {
	margin-left: 25%;
}
.col-xs-offset-2 {
	margin-left: 16.66666667%;
}
.col-xs-offset-1 {
	margin-left: 8.33333333%;
}
.col-xs-offset-0 {
	margin-left: 0;
}

/* Smartphones Klein */
@media (max-width: 479px) {
	.col-xxs-12 {
		width: 100%;
	}
	.col-xxs-11 {
		width: 91.66666667%;
	}
	.col-xxs-10 {
		width: 83.33333333%;
	}
	.col-xxs-9 {
		width: 75%;
	}
	.col-xxs-8 {
		width: 66.66666667%;
	}
	.col-xxs-7 {
		width: 58.33333333%;
	}
	.col-xxs-6 {
		width: 50%;
	}
	.col-xxs-5 {
		width: 41.66666667%;
	}
	.col-xxs-4 {
		width: 33.33333333%;
	}
	.col-xxs-3 {
		width: 25%;

	}
	.col-xxs-2 {
		width: 16.66666667%;
	}
	.col-xxs-1 {
		width: 8.33333333%;
	}
	.col-xxs-offset-12 {
		margin-left: 100%;
	}
	.col-xxs-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-xxs-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-xxs-offset-9 {
		margin-left: 75%;
	}
	.col-xxs-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-xxs-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-xxs-offset-6 {
		margin-left: 50%;
	}
	.col-xxs-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-xxs-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-xxs-offset-3 {
		margin-left: 25%;
	}
	.col-xxs-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-xxs-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-xxs-offset-0 {
		margin-left: 0;
	}
}
/* Smartphones Quer */
@media (min-width: 480px) and (max-width: 759px) {
	.col-xs-landscape-12 {
		width: 100%;
	}
	.col-xs-landscape-11 {
		width: 91.66666667%;
	}
	.col-xs-landscape-10 {
		width: 83.33333333%;
	}
	.col-xs-landscape-9 {
		width: 75%;
	}
	.col-xs-landscape-8 {
		width: 66.66666667%;
	}
	.col-xs-landscape-7 {
		width: 58.33333333%;
	}
	.col-xs-landscape-6 {
		width: 50%;
	}
	.col-xs-landscape-5 {
		width: 41.66666667%;
	}
	.col-xs-4-landscape {
		width: 33.33333333%;
	}
	.col-xs-landscape-3 {
		width: 25%;
	}
	.col-xs-landscape-2 {
		width: 16.66666667%;
	}
	.col-xs-landscape-1 {
		width: 8.33333333%;
	}
	.col-xs-landscape-offset-12{
		margin-left: 100%;
	}
	.col-xs-landscape-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-xs-landscape-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-xs-landscape-offset-9 {
		margin-left: 75%;
	}
	.col-xs-landscape-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-xs-landscape-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-xs-landscape-offset-6 {
		margin-left: 50%;
	}
	.col-xs-landscape-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-xs-landscape-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-xs-landscape-offset-3 {
		margin-left: 25%;
	}
	.col-xs-landscape-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-xs-landscape-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-xs-landscape-offset-0 {
		margin-left: 0;
	}
}
/* Kleine Geräte (Tablets, 760px und breiter) */
@media (min-width: 760px) {
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666667%;
	}
	.col-sm-10 {
		width: 83.33333333%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666667%;
	}
	.col-sm-7 {
		width: 58.33333333%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666667%;
	}
	.col-sm-4 {
		width: 33.33333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.66666667%;
	}
	.col-sm-1 {
		width: 8.33333333%;
	}
	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-pull-11 {
		right: 91.66666667%;
	}
	.col-sm-pull-10 {
		right: 83.33333333%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-8 {
		right: 66.66666667%;
	}
	.col-sm-pull-7 {
		right: 58.33333333%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-5 {
		right: 41.66666667%;
	}
	.col-sm-pull-4 {
		right: 33.33333333%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-2 {
		right: 16.66666667%;
	}
	.col-sm-pull-1 {
		right: 8.33333333%;
	}
	.col-sm-pull-0 {
		right: auto;
	}
	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-push-11 {
		left: 91.66666667%;
	}
	.col-sm-push-10 {
		left: 83.33333333%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-8 {
		left: 66.66666667%;
	}
	.col-sm-push-7 {
		left: 58.33333333%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-5 {
		left: 41.66666667%;
	}
	.col-sm-push-4 {
		left: 33.33333333%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-2 {
		left: 16.66666667%;
	}
	.col-sm-push-1 {
		left: 8.33333333%;
	}
	.col-sm-push-0 {
		left: auto;
	}
	.col-sm-offset-12 {
		margin-left: 100%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0 {
		margin-left: 0;
	}
}
/* Mittlere Geräte (Desktop-PCs, 980px und breiter) */
@media (min-width: 1020px) {
	.col-md-12 {
		width: 100%;
	}
	.col-md-11 {
		width: 91.66666667%;
	}
	.col-md-10 {
		width: 83.33333333%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-8 {
		width: 66.66666667%;
	}
	.col-md-7 {
		width: 58.33333333%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-5 {
		width: 41.66666667%;
	}
	.col-md-4 {
		width: 33.33333333%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-2 {
		width: 16.66666667%;
	}
	.col-md-1 {
		width: 8.33333333%;
	}
	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-pull-11 {
		right: 91.66666667%;
	}
	.col-md-pull-10 {
		right: 83.33333333%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-8 {
		right: 66.66666667%;
	}
	.col-md-pull-7 {
		right: 58.33333333%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-5 {
		right: 41.66666667%;
	}
	.col-md-pull-4 {
		right: 33.33333333%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-2 {
		right: 16.66666667%;
	}
	.col-md-pull-1 {
		right: 8.33333333%;
	}
	.col-md-pull-0 {
		right: auto;
	}
	.col-md-push-12 {
		left: 100%;
	}
	.col-md-push-11 {
		left: 91.66666667%;
	}
	.col-md-push-10 {
		left: 83.33333333%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-8 {
		left: 66.66666667%;
	}
	.col-md-push-7 {
		left: 58.33333333%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-5 {
		left: 41.66666667%;
	}
	.col-md-push-4 {
		left: 33.33333333%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-2 {
		left: 16.66666667%;
	}
	.col-md-push-1 {
		left: 8.33333333%;
	}
	.col-md-push-0 {
		left: auto;
	}
	.col-md-offset-12 {
		margin-left: 100%;
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-md-offset-0 {
		margin-left: 0;
	}
}
/* Grosse Geräte (Desktop-PCs, 1280px und breiter) */
@media (min-width: 1280px) {
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-11 {
		width: 91.66666667%;
	}
	.col-lg-10 {
		width: 83.33333333%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-8 {
		width: 66.66666667%;
	}
	.col-lg-7 {
		width: 58.33333333%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-5 {
		width: 41.66666667%;
	}
	.col-lg-4 {
		width: 33.33333333%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-2 {
		width: 16.66666667%;
	}
	.col-lg-1 {
		width: 8.33333333%;
	}
	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-pull-11 {
		right: 91.66666667%;
	}
	.col-lg-pull-10 {
		right: 83.33333333%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-8 {
		right: 66.66666667%;
	}
	.col-lg-pull-7 {
		right: 58.33333333%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-5 {
		right: 41.66666667%;
	}
	.col-lg-pull-4 {
		right: 33.33333333%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-2 {
		right: 16.66666667%;
	}
	.col-lg-pull-1 {
		right: 8.33333333%;
	}
	.col-lg-pull-0 {
		right: auto;
	}
	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-push-11 {
		left: 91.66666667%;
	}
	.col-lg-push-10 {
		left: 83.33333333%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-8 {
		left: 66.66666667%;
	}
	.col-lg-push-7 {
		left: 58.33333333%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-5 {
		left: 41.66666667%;
	}
	.col-lg-push-4 {
		left: 33.33333333%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-2 {
		left: 16.66666667%;
	}
	.col-lg-push-1 {
		left: 8.33333333%;
	}
	.col-lg-push-0 {
		left: auto;
	}
	.col-lg-offset-12 {
		margin-left: 100%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0 {
		margin-left: 0;
	}
}
/* Grosse Geräte (Desktop-PCs, 1440px und breiter) */
@media (min-width: 1440px) {
	.col-xl-12 {
		width: 100%;
	}
	.col-xl-11 {
		width: 91.66666667%;
	}
	.col-xl-10 {
		width: 83.33333333%;
	}
	.col-xl-9 {
		width: 75%;
	}
	.col-xl-8 {
		width: 66.66666667%;
	}
	.col-xl-7 {
		width: 58.33333333%;
	}
	.col-xl-6 {
		width: 50%;
	}
	.col-xl-5 {
		width: 41.66666667%;
	}
	.col-xl-4 {
		width: 33.33333333%;
	}
	.col-xl-3 {
		width: 25%;
	}
	.col-xl-2 {
		width: 16.66666667%;
	}
	.col-xl-1 {
		width: 8.33333333%;
	}
	.col-xl-pull-12 {
		right: 100%;
	}
	.col-xl-pull-11 {
		right: 91.66666667%;
	}
	.col-xl-pull-10 {
		right: 83.33333333%;
	}
	.col-xl-pull-9 {
		right: 75%;
	}
	.col-xl-pull-8 {
		right: 66.66666667%;
	}
	.col-xl-pull-7 {
		right: 58.33333333%;
	}
	.col-xl-pull-6 {
		right: 50%;
	}
	.col-xl-pull-5 {
		right: 41.66666667%;
	}
	.col-xl-pull-4 {
		right: 33.33333333%;
	}
	.col-xl-pull-3 {
		right: 25%;
	}
	.col-xl-pull-2 {
		right: 16.66666667%;
	}
	.col-xl-pull-1 {
		right: 8.33333333%;
	}
	.col-xl-pull-0 {
		right: auto;
	}
	.col-xl-push-12 {
		left: 100%;
	}
	.col-xl-push-11 {
		left: 91.66666667%;
	}
	.col-xl-push-10 {
		left: 83.33333333%;
	}
	.col-xl-push-9 {
		left: 75%;
	}
	.col-xl-push-8 {
		left: 66.66666667%;
	}
	.col-xl-push-7 {
		left: 58.33333333%;
	}
	.col-xl-push-6 {
		left: 50%;
	}
	.col-xl-push-5 {
		left: 41.66666667%;
	}
	.col-xl-push-4 {
		left: 33.33333333%;
	}
	.col-xl-push-3 {
		left: 25%;
	}
	.col-xl-push-2 {
		left: 16.66666667%;
	}
	.col-xl-push-1 {
		left: 8.33333333%;
	}
	.col-xl-push-0 {
		left: auto;
	}
	.col-xl-offset-12 {
		margin-left: 100%;
	}
	.col-xl-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-xl-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-xl-offset-9 {
		margin-left: 75%;
	}
	.col-xl-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-xl-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-xl-offset-6 {
		margin-left: 50%;
	}
	.col-xl-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-xl-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-xl-offset-3 {
		margin-left: 25%;
	}
	.col-xl-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-xl-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-xl-offset-0 {
		margin-left: 0;
	}
}
/* Grosse Geräte (Desktop-PCs, 1920px und breiter) */
@media (min-width: 1920px) {
	.col-xxl-12 {
		width: 100%;
	}
	.col-xxl-11 {
		width: 91.66666667%;
	}
	.col-xxl-10 {
		width: 83.33333333%;
	}
	.col-xxl-9 {
		width: 75%;
	}
	.col-xxl-8 {
		width: 66.66666667%;
	}
	.col-xxl-7 {
		width: 58.33333333%;
	}
	.col-xxl-6 {
		width: 50%;
	}
	.col-xxl-5 {
		width: 41.66666667%;
	}
	.col-xxl-4 {
		width: 33.33333333%;
	}
	.col-xxl-3 {
		width: 25%;
	}
	.col-xxl-2 {
		width: 16.66666667%;
	}
	.col-xxl-1 {
		width: 8.33333333%;
	}
	.col-xxl-pull-12 {
		right: 100%;
	}
	.col-xxl-pull-11 {
		right: 91.66666667%;
	}
	.col-xxl-pull-10 {
		right: 83.33333333%;
	}
	.col-xxl-pull-9 {
		right: 75%;
	}
	.col-xxl-pull-8 {
		right: 66.66666667%;
	}
	.col-xxl-pull-7 {
		right: 58.33333333%;
	}
	.col-xxl-pull-6 {
		right: 50%;
	}
	.col-xxl-pull-5 {
		right: 41.66666667%;
	}
	.col-xxl-pull-4 {
		right: 33.33333333%;
	}
	.col-xxl-pull-3 {
		right: 25%;
	}
	.col-xxl-pull-2 {
		right: 16.66666667%;
	}
	.col-xxl-pull-1 {
		right: 8.33333333%;
	}
	.col-xxl-pull-0 {
		right: auto;
	}
	.col-xxl-push-12 {
		left: 100%;
	}
	.col-xxl-push-11 {
		left: 91.66666667%;
	}
	.col-xxl-push-10 {
		left: 83.33333333%;
	}
	.col-xxl-push-9 {
		left: 75%;
	}
	.col-xxl-push-8 {
		left: 66.66666667%;
	}
	.col-xxl-push-7 {
		left: 58.33333333%;
	}
	.col-xxl-push-6 {
		left: 50%;
	}
	.col-xxl-push-5 {
		left: 41.66666667%;
	}
	.col-xxl-push-4 {
		left: 33.33333333%;
	}
	.col-xxl-push-3 {
		left: 25%;
	}
	.col-xxl-push-2 {
		left: 16.66666667%;
	}
	.col-xxl-push-1 {
		left: 8.33333333%;
	}
	.col-xxl-push-0 {
		left: auto;
	}
	.col-xxl-offset-12 {
		margin-left: 100%;
	}
	.col-xxl-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-xxl-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-xxl-offset-9 {
		margin-left: 75%;
	}
	.col-xxl-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-xxl-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-xxl-offset-6 {
		margin-left: 50%;
	}
	.col-xxl-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-xxl-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-xxl-offset-3 {
		margin-left: 25%;
	}
	.col-xxl-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-xxl-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-xxl-offset-0 {
		margin-left: 0;
	}
}


.clearfix:before, .clearfix:after,
main:before, main:after,
.row:before, .row:after,
.row-50:before, .row-50:after,
.row-40:before, .row-40:after,
.row-30:before, .row-30:after,
.row-20:before, .row-20:after,
.row-16:before, .row-16:after {
	display: table;
	content: " ";
}
.clearfix:after,
main:after,
.row:after,
.row-50:after,
.row-40:after,
.row-30:after,
.row-20:after,
.row-16:after {
	clear: both;
}
.hide {
	display: none !important;
}
.show {
	display: block !important;
}
.invisible {
	visibility: hidden;
}

.visible-xxs,
.visible-xs,
.visible-xs-landscape,
.visible-sm,
.visible-md,
.visible-lg,
.visible-xl,
.visible-xxl {
  display: none !important;
}
.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-xs-landscape-block,
.visible-xs-landscape-inline,
.visible-xs-landscape-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block,
.visible-xxl-block,
.visible-xxl-inline,
.visible-xxl-inline-block {
  display: none !important;
}
@media (max-width: 479.98px) {
	.visible-xxs {
		display: block !important;
	}
	.visible-xxs-block {
		display: block !important;
	}
	.visible-xxs-inline {
		display: inline !important;
	}
	.visible-xxs-inline-block {
		display: inline-block !important;
	}
}
@media (min-width: 480px) and (max-width: 759.98px) {
	.visible-xs-landscape {
		display: block !important;
	}
	.visible-xs-landscape-block {
		display: block !important;
	}
	.visible-xs-landscape-inline {
		display: inline !important;
	}
	.visible-xs-landscape-inline-block {
		display: inline-block !important;
	}
}
@media (max-width: 759.98px) {
	.visible-xs {
		display: block !important;
	}
	.visible-xs-block {
		display: block !important;
	}
	.visible-xs-inline {
		display: inline !important;
	}
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}
@media (min-width: 760px) and (max-width: 1019.98px) {
	.visible-sm {
		display: block !important;
	}
	.visible-sm-block {
		display: block !important;
	}
	.visible-sm-inline {
		display: inline !important;
	}
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}
@media (min-width: 1020px) and (max-width: 1279.98px) {
	.visible-md {
		display: block !important;
	}
	.visible-md-block {
		display: block !important;
	}
	.visible-md-inline {
		display: inline !important;
	}
	.visible-md-inline-block {
		display: inline-block !important;
	}
}
@media (min-width: 1280px) and (max-width: 1439.98px) {
	.visible-lg {
		display: block !important;
	}
	.visible-lg-block {
		display: block !important;
	}
	.visible-lg-inline {
		display: inline !important;
	}
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
	.visible-xl {
		display: block !important;
	}
	.visible-xl-block {
		display: block !important;
	}
	.visible-xl-inline {
		display: inline !important;
	}
	.visible-xl-inline-block {
		display: inline-block !important;
	}
}
@media (min-width: 1920px) {
	.visible-xxl {
		display: block !important;
	}
	.visible-xxl-block {
		display: block !important;
	}
	.visible-xxl-inline {
		display: inline !important;
	}
	.visible-xxl-inline-block {
		display: inline-block !important;
	}
}
@media (max-width: 479.98px) {
	.hidden-xxs {
		display: none !important;
	}
}
@media (min-width: 480px) and (max-width: 759.98px) {
	.hidden-xs-landscape {
		display: none !important;
	}
}
@media (max-width: 759.98px) {
	.hidden-xs {
		display: none !important;
	}
}
@media (min-width: 760px) and (max-width: 1019.98px) {
	.hidden-sm {
		display: none !important;
	}
}
@media (min-width: 1020px) and (max-width: 1279.98px) {
	.hidden-md {
		display: none !important;
	}
}
@media (min-width: 1280px) and (max-width: 1439.98px) {
	.hidden-lg {
		display: none !important;
	}
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
	.hidden-xl {
		display: none !important;
	}
}
@media (min-width: 1920px) {
	.hidden-xxl {
		display: none !important;
	}
}


/* Floats aufheben */
.clear__both,
.clear__left,
.clear__right {
	clear: both;
	height: 1px;
}
.clear__left {
	clear: left;
}
.clear__right {
	clear: right;
}
/* Row-/Col-Definitionen vernichten */
.col-abstand {
	margin: 0;
}
.row-nomargin {
	margin-left: 0;
	margin-right: 0;
}
.col-nopadding {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 479.98px) {
	.row-nomargin-xxs {
		margin-right: 0;
		margin-left: 0;
	}
	.col-nopadding-xxs {
		padding-right: 0;
		padding-left: 0;
	}
}
@media (max-width: 759.98px) {
	.row-nomargin-xs {
		margin-right: 0;
		margin-left: 0;
	}
	.col-nopadding-xs {
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 480px) and (max-width: 759.98px) {
	.row-nomargin-xs-landscape {
		margin-right: 0;
		margin-left: 0;
	}
	.col-nopadding-xs-landscape {
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 760px) and (max-width: 1019.98px) {
	.row-nomargin-sm {
		margin-right: 0;
		margin-left: 0;
	}
	.col-nopadding-sm {
		padding-right: 0;
		padding-left: 0;
	}
}


/* Abstände */
.abstand-large {
	margin-top: 200px;
}
.abstand-medium {
	margin-top: 180px;
}
.abstand-small {
	margin-top: 140px;
}
.abstand-xsmall {
	margin-top: 80px;
}
.abstand-lauftext {
	margin-top: 28px;
}
.abstand-raster {
	margin-top: 50px;
}
@media (max-width: 479.98px) {
	.abstand-xxs-large {
		margin-top: 80px;
	}
	.abstand-xxs-medium {
		margin-top: 70px;
	}
	.abstand-xxs-small {
		margin-top: 60px;
	}
	.abstand-xxs-xsmall {
		margin-top: 40px;
	}
	.abstand-xxs-lauftext {
		margin-top: 28px;
	}
	.abstand-xxs-raster {
		margin-top: 10px;
	}
}
@media (max-width: 759.98px) {
	.abstand-xs-large {
		margin-top: 80px;
	}
	.abstand-xs-medium {
		margin-top: 70px;
	}
	.abstand-xs-small {
		margin-top: 60px;
	}
	.abstand-xs-xsmall {
		margin-top: 40px;
	}
	.abstand-xs-lauftext {
		margin-top: 28px;
	}
	.abstand-xs-raster {
		margin-top: 10px;
	}
}
@media (min-width: 760px) and (max-width: 1019.98px) {
	.abstand-sm-large {
		margin-top: 100px;
	}
	.abstand-sm-medium {
		margin-top: 90px;
	}
	.abstand-sm-small {
		margin-top: 70px;
	}
	.abstand-sm-xsmall {
		margin-top: 50px;
	}
	.abstand-sm-lauftext {
		margin-top: 28px;
	}
	.abstand-sm-raster {
		margin-top: 50px;
	}
}
@media (min-width: 1020px) and (max-width: 1279.98px) {
	.abstand-md-large {
		margin-top: 160px;
	}
	.abstand-md-medium {
		margin-top: 144px;
	}
	.abstand-md-small {
		margin-top: 113px;
	}
	.abstand-md-xsmall {
		margin-top: 65px;
	}
	.abstand-md-lauftext {
		margin-top: 28px;
	}
	.abstand-md-raster {
		margin-top: 50px;
	}
}
@media (min-width: 1280px) and (max-width: 1439.98px) {
	.abstand-lg-large {
		margin-top: 160px;
	}
	.abstand-lg-medium {
		margin-top: 144px;
	}
	.abstand-lg-small {
		margin-top: 113px;
	}
	.abstand-lg-xsmall {
		margin-top: 65px;
	}
	.abstand-lg-lauftext {
		margin-top: 28px;
	}
	.abstand-lg-raster {
		margin-top: 50px;
	}
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
	.abstand-xl-large {
		margin-top: 200px;
	}
	.abstand-xl-medium {
		margin-top: 180px;
	}
	.abstand-xl-small {
		margin-top: 140px;
	}
	.abstand-xl-xsmall {
		margin-top: 80px;
	}
	.abstand-xl-lauftext {
		margin-top: 28px;
	}
	.abstand-xl-raster {
		margin-top: 50px;
	}
}
@media (min-width: 1920px) {
	.abstand-xxl-large {
		margin-top: 200px;
	}
	.abstand-xxl-medium {
		margin-top: 180px;
	}
	.abstand-xxl-small {
		margin-top: 140px;
	}
	.abstand-xxl-xsmall {
		margin-top: 80px;
	}
	.abstand-xxl-lauftext {
		margin-top: 28px;
	}
	.abstand-xxl-raster {
		margin-top: 50px;
	}
}


/* Modulabstände */
.abstand-module-cms {
	margin-top: 200px;
}
@media (max-width: 759px) {
	.abstand-module-xs-large {
		margin-top: 80px;
	}
	.abstand-module-xs-medium {
		margin-top: 60px;
	}
	.abstand-module-xs-small {
		margin-top: 40px;
	}
	.abstand-module-xs-xsmall {
		margin-top: 30px;
	}
}
@media (min-width: 760px) and (max-width: 1019.98px) {
	.abstand-module-sm-large {
		margin-top: 100px;
	}
	.abstand-module-sm-medium {
		margin-top: 70px;
	}
	.abstand-module-sm-small {
		margin-top: 50px;
	}
	.abstand-module-sm-xsmall {
		margin-top: 40px;
	}
}
@media (min-width: 1020px) and (max-width: 1279.98px) {
	.abstand-module-md-large {
		margin-top: 160px;
	}
	.abstand-module-md-medium {
		margin-top: 113px;
	}
	.abstand-module-md-small {
		margin-top: 65px;
	}
	.abstand-module-md-xsmall {
		margin-top: 48px;
	}
}
@media (min-width: 1280px) and (max-width: 1439.98px) {
	.abstand-module-lg-large {
		margin-top: 160px;
	}
	.abstand-module-lg-medium {
		margin-top: 113px;
	}
	.abstand-module-lg-small {
		margin-top: 65px;
	}
	.abstand-module-lg-xsmall {
		margin-top: 48px;
	}
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
	.abstand-module-xl-large {
		margin-top: 200px;
	}
	.abstand-module-xl-medium {
		margin-top: 140px;
	}
	.abstand-module-xl-small {
		margin-top: 80px;
	}
	.abstand-module-xl-xsmall {
		margin-top: 60px;
	}
}
@media (min-width: 1920px) {
	.abstand-module-xxl-large {
		margin-top: 200px;
	}
	.abstand-module-xxl-medium {
		margin-top: 140px;
	}
	.abstand-module-xxl-small {
		margin-top: 80px;
	}
	.abstand-module-xxl-xsmall {
		margin-top: 60px;
	}
}


/* Text-Ausrichtungen */
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-justify {
	text-align: justify;
}
@media (max-width: 479.98px) {
	.text-left-xxs {
		text-align: left;
	}
	.text-center-xxs {
		text-align: center;
	}
	.text-right-xxs {
		text-align: right;
	}
	.text-justify-xxs {
		text-align: justify;
	}
}
@media (max-width: 759.98px) {
	.text-left-xs {
		text-align: left;
	}
	.text-center-xs {
		text-align: center;
	}
	.text-right-xs {
		text-align: right;
	}
	.text-justify-xs {
		text-align: justify;
	}
}
@media (min-width: 760px) and (max-width: 1019.98px) {
	.text-left-sm {
		text-align: left;
	}
	.text-center-sm {
		text-align: center;
	}
	.text-right-sm {
		text-align: right;
	}
	.text-justify-sm {
		text-align: justify;
	}
}
@media (min-width: 1020px) and (max-width: 1279.98px) {
	.text-left-md {
		text-align: left;
	}
	.text-center-md {
		text-align: center;
	}
	.text-right-md {
		text-align: right;
	}
	.text-justify-md {
		text-align: justify;
	}
}
@media (min-width: 1280px) and (max-width: 1439.98px) {
	.text-left-lg {
		text-align: left;
	}
	.text-center-lg {
		text-align: center;
	}
	.text-right-lg {
		text-align: right;
	}
	.text-justify-lg {
		text-align: justify;
	}
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
	.text-left-xl {
		text-align: left;
	}
	.text-center-xl {
		text-align: center;
	}
	.text-right-xl {
		text-align: right;
	}
	.text-justify-xl {
		text-align: justify;
	}
}
@media (min-width: 1920px) {
	.text-left-xxl {
		text-align: left;
	}
	.text-center-xxl {
		text-align: center;
	}
	.text-right-xxl {
		text-align: right;
	}
	.text-justify-xxl {
		text-align: justify;
	}
}


/* Col aushalb Raster (col-outer) */
.col-outer {
	width: 100%;
}
@media (min-width: 760px) {
	.col-outer {
		/*width: calc(100% + 30px);
		margin-left: -15px;*/
	}
}
@media (min-width: 1020px) {
	.col-outer {
	}
}
@media (min-width: 1280px) {
	.col-outer {
	}
}
@media (min-width: 1470px) { /* Min-Width wird berechnet aus margin-left*2 + max-width */
	.col-outer {
		width: calc(100% + (100vw - 1440px));
		margin-left: calc((-100vw + 1440px) / 2);
	}
}