.tab-block {
/*	background: white;*/
	/*border-radius: 30px;*/
	/*box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.30);*/
	margin-bottom: 30px;
	overflow: hidden;
}
.tab-block__header h2 {
	color: #fff!important;
	text-align: center;


}
.tab-block__content {
	/* padding: 30px 0; */
	position: relative;
	width: 100%;
	height: auto;
}
.content__term h2 {
	position: relative;
	color: rgba(256, 256, 256, 0.8);
	font-size: 30px!important;
	/*margin-bottom: 10px;*/
	transition: color 0.4s;
/*	border-bottom: 1px solid #223365;*/
/*	padding-bottom: 15px;*/
	text-align: center;
	margin-bottom: 0;
	-webkit-hyphens: auto;-ms-hyphens: auto;hyphens: auto;
}

.content__list {
	display: block;
	width: 100%;
	padding: 30px;
	max-height: auto;
}
.content__list.visible .content__term h2 {
	color: rgba(256, 256, 256, 1);
}
.content__list:last-child {
	border-bottom: 0px;
}

.term__arrow:after {
	content: '';
	position: absolute;
	background-image: url(/application/themes/wbox_sectionstheme/img/svg/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-position-x: -30px;
	width: 40px;
	height: 100%;
}


.content__description {
	width: 50%;
	margin-left: 0;
	color: #fff;
}

.tab-block__footer {
	margin: 68px 0 0 0;
	text-align: center;
}
.tab-block__footer .wbox-btn {
	border: 1px solid #fff;
	border-radius: 2px;
	color: #fff;
}
.tab-block__footer .wbox-btn .wbox-pfeil	 {
	color: #fff;
}
.tab-block__footer .wbox-btn .wbox-pfeil:after {
	background-image: url(/application/themes/wbox_sectionstheme/img/svg/arrow-right-white.svg);

}
@media (max-width: 1169px) {


	.content__description {
		position: relative;
		width:100%;
		text-align: center;
	}
	.content__description img {
		max-width: 480px;
		width: 100%;
	}

}
@media (min-width: 1170px) {
	.tab-block__header {
		padding-bottom: 20px;
	}

	.content__description {
		position: absolute;
		top: 0;
		right:0;
		margin-left: 0;
		width: 50%;
		padding: 0 30px 0 30px;
	}
	.content__description p:first-of-type {
		margin-top: 0;
	}

	.content__list {
		padding: 0;
		height: 16%;
		max-height: 220px;
		width: 45%;
		display: flex;
		margin-bottom: 0;
		justify-content: space-between;
		align-content: center;
		align-items: center;
/*		border-bottom: 1px solid #ddd;
		background: #f7f7f7;
		background: linear-gradient(90deg, rgba(241,241,241,1) 10%, rgba(255,255,255,1) 100%);*/
		transition: 0.3s all ease;
	}
	.content__list .content__description {
		opacity: 0;
		transition: 0.4s all ease;
	}
	.content__list.visible .content__description {
		opacity: 1;
	}

	.content__list.visible {
/*		background: linear-gradient(90deg, rgba(230,230,230,1) 10%, rgba(255,255,255,1) 100%);*/
		transition: 0.3s all ease;
	}
	.content__list.visible .term__arrow:after {
	content: '';
	position: absolute;
	background-image: url(/application/themes/wbox_sectionstheme/img/svg/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-position-x: 9px;
	width: 40px;
	height: 100%;
}
	.content__term {
		height: 100%;
		display: flex;
		align-items: center;
		cursor: pointer;
	}

	.content__term h3 {
		margin-left: 30px;
		border: 0;
		text-align: left;
	}
	
	.visible .content__term h3 {
		color: #223365;
		transition: color 0.4s;
	}
		
	.content__term:hover .term__arrow:after {
		background-position-x: 9px;
		transition: all 1s;
	}
	
	.tab-block__content .content__list:first-of-type > .content__term > h3 > .term__arrow:after {
		background-position-x: 9px;
		transition-delay: 1s;
	}
	.tab-block__content .content__list:first-of-type > .content__term.slide_arrow > h3 > .term__arrow:after {
		opacity: 0;
		transition: all 1s;
		transition-delay: 0.1s;
	}

	/*Fade In Animation of the description*/
	@-webkit-keyframes fadeIn {
	    from { opacity: 0; }
	      to { opacity: 1; }
	}  
	@keyframes fadeIn {
	    from { opacity: 0; }
	      to { opacity: 1; }
	}
}