.timeline {
	width: 100%;
	position: relative;
	padding: 20px 0;
}

.timeline:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #CCC;
	left: 50%;
	margin-left: -1.5px;
}

.timeline > .line {
	width: 50%;
	margin-right: 50%;
	margin-bottom: -20px;
	margin-top: 40px;
	position: relative;
}

.timeline > .line.inverted {
	margin-left: 50%;
}

.timeline > .line:not(.inverted) + .line.inverted {
	margin-top: 0;
}

.timeline > .line.inverted + .line:not(.inverted) {
	margin-top: 0;
}

.timeline > .line:not(.inverted) + .line:not(.inverted) {
	margin-top: 40px;
}

.timeline > .line:first-child {
	margin-top: 20px;
}

.timeline > .line:last-child {
	margin-bottom: 20px;
}

.timeline > .line > .timeline-badge {
	position: absolute;
	right: 0;
	font-size: 20px;
	margin-right: -10px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	top: 30px;
}

.timeline > .line.inverted > .timeline-badge {
	left: 0;
	margin-left: -10px;
}

.timeline > .line > .timeline-body {
	position: relative;
	width: 95%;
	border: 1px solid #CCC;
	padding: 20px;
	border-radius: 4px;
}

.timeline > .line.inverted > .timeline-body {
	margin-left: 5%;
}

.timeline > .line > .timeline-body::before {
	position: absolute;
	top: 26px;
	right: -15px;
	display: inline-block;
	border-width: 15px 0px 15px 15px;
	border-style: solid;
	content: " ";
	border-color: transparent #333;
}

.timeline > .line.inverted > .timeline-body::before {
	left: -15px;
	right: auto;
	border-left-width: 0px;
    border-right-width: 15px;
}

.timeline > .line.timeline-vertrieb > .timeline-body {
	border: 1px solid #DD4814;
}
.timeline > .line.timeline-technik > .timeline-body {
	border: 1px solid #3A87AD;
}

.timeline > .line.timeline-vertrieb > .timeline-badge {
	color: #DD4814;
}

.timeline > .line.timeline-technik > .timeline-badge {
	color: #3A87AD;
}

.timeline > .line.timeline-vertrieb > .timeline-body::before {
	border-color: transparent #DD4814;
}
.timeline > .line.timeline-technik > .timeline-body::before {
	border-color: transparent #3A87AD;
}

.timeline > a > .add {
	width: 30px;
    height: 30px;
    line-height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    text-align: center;
    font-size: 20px;
    background-color: #CCC;
    padding: 5px;
    border-radius: 50%;
}

.timeline > a > .add:hover {
	background-color: #AAA;
}

@media (max-width: 767px) {
	.timeline:before {
		left: 0;
	}
	
	.timeline > .line {
		width: 100%;
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 0px !important;
		margin-top: 20px !important;		
	}
	
	.timeline > .line > .timeline-badge {
		right: auto;
		left: 0;
		margin-left: -10px;
		margin-right: 0;
	}
	
	.timeline > .line > .timeline-body {
		margin-left: 5%;
	}
	
	.timeline > .line > .timeline-body::before {
		left: -15px;
		right: auto;
		border-left-width: 0px;
		border-right-width: 15px;
	}
	
	.timeline > a > .add {
		left: 0;
		margin-left: -15px;
	}
}