/* Grid Elements */

.grid-container .wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px; /* Adds 10px margin between columns */
}

.grid-container .wrapper > div {
  flex: 1; /* Equal width */
  padding: 0px;
}

.grid-container.frame-11 .wrapper > div:first-child {
	flex: 3; /* Equal width */
}

.grid-container.frame-spalten-3-1 .wrapper > div:first-child {
	flex: 3; /* Equal width */
}

.grid-container.frame-spalten-1-3 .wrapper > div:last-child {
	flex: 3; /* Equal width */
}

.grid-container.frame-spalten-2-1 .wrapper > div:first-child {
	flex: 2; /* Equal width */
}

.grid-container.frame-spalten-1-2 .wrapper > div:last-child {
	flex: 2; /* Equal width */
}

@media only screen and (max-width: 1000px) {
	.grid-container .wrapper {
		flex-wrap: wrap;
	}
	
	.grid-container .wrapper > div {
	  min-width: 190px;
	}
}

@media only screen and (max-width: 480px) {
	.grid-container .wrapper {
	  display: block;
	}
	
	.grid-container.frame-11 .wrapper > div:first-child {
		margin-bottom: 20px;
	}
}

/* Akkordeon */

.akkordeon {
	margin-bottom: 10px;
}

.akkordeon > div:first-child > header h2,
.akkordeon > div:first-child > header h3,
.akkordeon > div:first-child > header h4 {
	background: #e3e3e3;
	color: #00968a;
	font-size: 110%;
	width: 100%;
	text-align: left;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0 0 10px 0;
	cursor: pointer;
}

.akkordeon > div > div {
	max-height: 0px;
	overflow: hidden;
	transition: all 0.5s ease;
	padding: 0 10px;
}

.akkordeon.active > div > div {
	max-height: 2500px;
	transition: all 1s ease;
}

/****************************************/
/* Tabs */
/****************************************/

.tab-buttons {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-top: 20px;
}

.tab-buttons {
	letter-spacing: 0px;
	border-bottom: 1px solid #929292;
	margin-left: 0;
	margin-bottom: 10px;
}

.tab-buttons h3 {
	margin-bottom: 0;
	padding-bottom: 0;
	text-indent: 0em;
	padding-left: 0em;
}

.tab-buttons h3 {
	border: 0;
	border-radius: 0;
	color: #00968a;
	font-size: 110%;
	background: #e3e3e3;
	line-height: 85%;
	display: table;
	padding: 10px 15px;
	display: flex;
	margin-right: 1px;
	display: inline-block;
	cursor: pointer;
}
.tab-buttons h3.active,
.tab-buttons h3.active:hover {
	color: #fff;
	cursor: default;
	border: 0;
	border-bottom-color: 0;
	background: #00968a;
}

.tab-buttons h3.active:hover {
	color: #fff;
	cursor: default;
	border: 0;
	border-bottom-color: 0;
	background: #00968a;
}

.tab-buttons h3:hover {
	color: #00968a;
	background: #c9e9e7 !important;
}

.tab-content > .wrapper > div {
	display: none;
}

.tab-content > .wrapper > div.active {
	display: block;
}

.tab-content .grid-container > header {
	display: none;
}