.switch {
	padding: var(--indent-sides);
	border-top: var(--line) solid var(--cl1);
}
.switch__hl {
	font-size: var(--xl);
	line-height: var(--lh-xl);
	
}
.switch__btn {
	background-color: white;
	border: var(--line) solid var(--cl1);
	color: var(--cl1);
	transition: color .3s ease, background-color .3s ease;
	
}
.switch__btn:hover {
	background-color: var(--cl1);
	color: white;
	
}
.switch__btn.active {
	background-color: var(--cl1);
	color: white;
	
}
.switch__content-teilnehmer {
	display: none;
	
}
.switch__toggle {
	display: flex;
	flex-direction: row;
	gap: var(--indent-sides);
	margin-bottom: var(--indent-sides);
	
}
.switch__content {
	
}
.switch__content p {
	font-size: var(--md);
	line-height: var(--lh-md);
	max-width: 40rem;
	
}
.switch__content ul {
	list-style-type: none;
	margin: 0rem;
	padding: 0rem;
	margin-bottom: var(--indent-sides);
	
}
.switch__content ul li {
	
}
.switch__content ul li span {
	padding-right: var(--indent);
	
}
@media screen and (min-width: 768px){
	.switch {
		display: grid;
		grid-template-columns: 1fr 1fr;
		
	}
	
}
