.entry-content .toggle-button > *:first-child:before {
	content: '▸ ';
}
.entry-content .toggle-button.active > *:first-child:before {
	content: '▾  ';
}

.entry-content .toggle-content {
	height: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}

/*
If not all trainings show in the event list, if they are cut off at some point, increase max max-height.
max-height must not be omitted because it is needed for the opening animation.
*/
.entry-content .toggle-content.open {
	height: auto;
	max-height: 20000px;
}




.contactbox{
	padding-top: 60px;
	padding-bottom: 85px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 20px;
	background-color: #0693e3;
	width: 100%;
	color: #FFF;
	text-align: center;
}

.contactbox h3{
	color: #eeeeee !important;
	margin-bottom: 15px;
	text-align: center;
}

.contactbox .separator{
	border-top-style: solid;
	border-top-width: 2px;
	width: 12%;
	border-color: #ffffff;
	margin: auto;
	margin-bottom: 15px;
	margin-top: 15px;
}

.contactbox .columns{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
	display: flex;
	flex-wrap: nowrap;
	width: 620px;
	max-width: 100%;
	margin-top: 62px;
	margin-bottom: 40px;
}

.contactbox .columns > div{
	width: 50%;
	text-align: center;
}

@media(max-width: 767px){
	.contactbox .columns{
		display: block;
	}
	.contactbox .columns > div{
		width: 100%;
	}
	.contactbox .columns > div:first-child{
		margin-bottom: 30px;
	}
}