/* ------------------------------------------------------------------------ */
/* Gutenberg Block Tabelle													*/
/* ------------------------------------------------------------------------ */

.wp-block-tabelle.gbb {
	padding-top: 9px;
	padding-bottom: 31px;
}

.wp-block-tabelle.gbb table {
	width: 100%;
	table-layout: fixed;
}

h2 + .wp-block-tabelle.gbb {
	padding-top: 8px;
}

h2 + .wp-block-tabelle.gbb table {
	margin-top: 0;
}

.wp-block-tabelle.gbb table thead > tr > th div,
.wp-block-tabelle.gbb table tbody > tr > td div {
	line-height: 1 !important;
	overflow: hidden;
}

.wp-block-tabelle.gbb table thead > tr > th div *,
.wp-block-tabelle.gbb table tbody > tr > td div * {
	overflow: hidden;
}

.wp-block-tabelle.gbb.zwei-spalten table:not(.bt) thead > tr > th,
.wp-block-tabelle.gbb.zwei-spalten table:not(.bt) tbody > tr > td {
	width: 50%;
}

.wp-block-tabelle.gbb.drei-spalten table:not(.bt) thead > tr > th,
.wp-block-tabelle.gbb.drei-spalten table:not(.bt) tbody > tr > td {
	width: 33.3333%;
}

.wp-block-tabelle.gbb.vier-spalten table:not(.bt) thead > tr > th,
.wp-block-tabelle.gbb.vier-spalten table:not(.bt) tbody > tr > td {
	width: 25%;
}

.wp-block-tabelle.gbb table:not(.bt) thead > tr > th {
	padding: 4px 6px 4px;
	text-align: left;
}

.wp-block-tabelle.gbb table:not(.bt) tbody > tr > td {
	padding: 4px 6px 4px;
	text-align: left;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #ffffff;
}

.wp-block-tabelle.gbb table:not(.bt) thead > tr > th div,
.wp-block-tabelle.gbb table:not(.bt) tbody > tr > td div {
	display: grid;
	align-items: center;
}

.wp-block-tabelle.gbb table:not(.bt) thead > tr > th div {
	min-height: 48px;
}

.wp-block-tabelle.gbb table:not(.bt) tbody > tr > td div {
	min-height: 32px;
}

.wp-block-tabelle.gbb table.bt thead,
.wp-block-tabelle.gbb table.bt thead * {
	display: none;
}

.wp-block-tabelle.gbb table.bt tbody > tr:nth-of-type(2n+1) > td {
	background-color: #ffeba9;
}

.wp-block-tabelle.gbb table.bt tbody > tr:nth-of-type(2n+2) > td {
	background-color: #fff8df;
}

.wp-block-tabelle.gbb table.bt tbody > tr > td {
	width: 100% !important;
	display: block;
	padding: 0 10px 5px;
}

.wp-block-tabelle.gbb table.bt tbody > tr > td:first-child {
	padding: 13px 10px 5px;
}

.wp-block-tabelle.gbb table.bt tbody > tr > td:last-of-type {
	padding: 0 10px 12px;
}

.wp-block-tabelle.gbb table.bt tbody > tr > td:first-child {
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #ffffff;
}

.wp-block-tabelle.gbb table.bt tbody > tr:first-child > td:first-child {
	border-width: 0 0 0 0;
}

.wp-block-tabelle.gbb table.bt tbody td::before {
	content: attr(data-th) ': ';
	width: 100%;
	display: block;
	font-weight: 400;
}

/* ----------------------- 		Media Queries	   ------------------------ */

/* ------------------------------------------------------------------------ */
/* General Definitions all Sizes											*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 0em) {
	.wp-block-tabelle.gbb table.bt tbody > tr > td div .small {
		font-size: 2.3rem !important;
		font-weight: 300;
	}

	.wp-block-tabelle.gbb table.bt tbody td::before,
	.wp-block-tabelle.gbb table.bt tbody > tr > td div .small {
		line-height: 1.5 !important;
	}
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 480px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 29.9375em) and (orientation: portrait) {
	.wp-block-tabelle.gbb table.bt tbody > tr > td div .small {
		font-size: 1.9rem !important;
		font-weight: 300;
	}

	.wp-block-tabelle.gbb table.bt tbody td::before,
	.wp-block-tabelle.gbb table.bt tbody > tr > td div .small {
		line-height: 1.5 !important;
	}

	/* ------------------------------------------------------------------------ */
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 480px (landscape, devices and browsers)					    */
/* ------------------------------------------------------------------------ */
@media only screen and (max-height: 29.9375em) and (max-width: 47.9375em) and (orientation: landscape) {
	.wp-block-tabelle.gbb table.bt tbody > tr > td div .small {
		font-size: 1.9rem !important;
		font-weight: 300;
	}

	.wp-block-tabelle.gbb table.bt tbody td::before,
	.wp-block-tabelle.gbb table.bt tbody > tr > td div .small {
		line-height: 1.5 !important;
	}

	/* ------------------------------------------------------------------------ */
}

/* ------------------------------------------------------------------------ */
/* Sizes from 480px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 30em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 480px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 30em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 480px (landscape, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-height: 30em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 640px (devices and browsers)								    */
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 39.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 640px (portrait, devices and browsers)					    */
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 39.9375em) and (orientation: portrait) {

}

/* ------------------------------------------------------------------------ */
/* Sizes up to 640px (landscape, devices and browsers)					    */
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 39.9375em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 640px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 40em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 640px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 40em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 640px (landscape, devices and browser							*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-height: 40em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 768px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 47.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 768px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 47.9375em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 768px (landscape, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-height: 47.9375em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 768px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 48em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 768px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 48em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 768px (landscape, devices and browser							*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-height: 48em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 480px to 1024px (devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 30em) and (max-width: 63.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 480px to 1024px (portrait, devices and browsers)				*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 30em) and (max-width: 63.9375em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 480px to 1024px (landscape, devices and browsers)				*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-height: 30em) and (max-width: 63.9375em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 1024px (devices and browsers)								*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 63.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 1024px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 63.9375em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 1024px (landscape, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-height: 63.9375em) and (max-width: 79.9375em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1024px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 64em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1024px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 64em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1024px (landscape, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 64em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Monitor sizes from 1024px to 1280px (devices and browsers)				*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 64em) and (max-width: 79.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 1280px (devices and browsers)								*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 79.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 1280px (portrait, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 79.9375em) and (orientation: portrait) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 1280px (landscape, devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 79.9375em) and (orientation: landscape) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1280px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 80em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes up to 1440px (devices and browsers)								*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 89.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1440px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 90em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1280px to 1600px (devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 80em) and (max-width: 99.9375em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1280px to 1600px (devices and browsers)						*/
/* ------------------------------------------------------------------------ */
@media only screen and (max-width: 99.9375em) {
	.wp-block-tabelle.gbb table thead > tr > th {
		background-color: #f2f2f2;
	}

	.wp-block-tabelle.gbb table tbody > tr:nth-of-type(2n+1) > td {
		background-color: #ffeba9;
	}

	.wp-block-tabelle.gbb table tbody > tr:nth-of-type(2n+2) > td {
		background-color: #fff8df;
	}
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1600px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 100em) {
	.wp-block-tabelle.gbb table thead > tr > th {
		background-color: rgba(0, 0, 0, 0.05);
	}

	.wp-block-tabelle.gbb table tbody > tr:nth-of-type(2n+1) > td {
		background-color: rgba(255, 205, 41, .42);
	}

	.wp-block-tabelle.gbb table tbody > tr:nth-of-type(2n+2) > td {
		background-color: rgba(255, 205, 41, .165);
	}
}

/* ------------------------------------------------------------------------ */
/* Sizes from 1920px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 120em) {
}

/* ------------------------------------------------------------------------ */
/* Sizes from 2800px (devices and browsers)									*/
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 160em) {
}