#content .zeitstrahl *,
#content .zeitstrahl *::before,
#content .zeitstrahl *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#content .zeitstrahl {
  padding: 2rem 0;
  position: relative;
}

#content .zeitstrahl ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding: 1rem 0;
  background: #C20003;
}

#content .zeitstrahl ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.4rem;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: inherit;
}

#content .zeitstrahl ul li div.zs-box {
  position: relative;
  bottom: 0;
  width: 305px;
  border: 1px solid #C20003;
  padding: 0 0 1rem;
}

#content .zeitstrahl ul li div.zs-box::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  width: 0;
  height: 0;
  border-style: solid;
}

#content .zeitstrahl ul li:nth-child(odd) div.zs-box {
  left: 36px;
}

#content .zeitstrahl ul li:nth-child(odd) div.zs-box::before {
  left: -16px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #C20003 transparent transparent;
}

#content .zeitstrahl ul li:nth-child(even) div.zs-box {
  left: -335px;
}

#content .zeitstrahl ul li:nth-child(even) div.zs-box::before {
  right: -16px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #C20003;
}

#content .zeitstrahl ul li div.zs-box .boxChild > *{padding: 0 1rem;}
#content .zeitstrahl ul li div.zs-box .boxChild time {
	display: block;
	font-size: 1.2rem;
	//font-weight: bold;
	padding: 0.5rem 1rem;
	position: relative;
	color: #FFFFFF;
  background: #C20003;
}
#content .zeitstrahl ul li div.zs-box .boxChild > .basecontent-image{
  padding: 0;
  //margin-bottom: 2rem;
}
#content .zeitstrahl ul li div.zs-box .boxChild > .basecontent-image img{width: 100%;}
#content .zeitstrahl ul li div.zs-box .boxChild h2{padding: 1.2rem 1rem 0;}
#content .zeitstrahl ul li div.zs-box .boxChild p{padding: 0.9rem 1rem 0;}

/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#content .zeitstrahl ul li::after {
  transition: background .5s ease-in-out;
}

#content .zeitstrahl ul li.in-view::after {
  background: #C20003;
}

#content .zeitstrahl ul li div.zs-box {
  visibility: visible;
  opacity: 1;
  /*transition: all .5s ease-in-out;*/
}
/*
#content .zeitstrahl ul li:nth-child(odd) div.zs-box {
  transform: translate3d(200px, 0, 0);
}

#content .zeitstrahl ul li:nth-child(even) div.zs-box {
  transform: translate3d(-200px, 0, 0);
}
*/
#content .zeitstrahl ul li.in-view div.zs-box {
  transform: none;
  visibility: visible;
  opacity: 1;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 979px) {
	#content .zeitstrahl ul li {
		margin-left: 20px;
	}
	#content .zeitstrahl ul li:nth-child(even) div.zs-box {
		left: 45px;
	}
	#content .zeitstrahl ul li:nth-child(even) div.zs-box::before {
		left: -16px;
		border-width: 8px 16px 8px 0;
		border-color: transparent #C20003 transparent transparent;
	}
}
@media screen and (max-width: 1149px) {
	#content .zeitstrahl ul li div.zs-box {
		/*width: calc(100vw - 200px);*/
	}
}
@media screen and (max-width: 479px) {
	#content .zeitstrahl ul li div.zs-box {
		width: 210px;
	}
}
@media screen and (max-width: 800px) {
	#content .zeitstrahl ul li div.zs-box {
		transform: none !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}