.bk-tablist {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}

.bk-tablist__tab {
	padding: 0.5em 2em;
	border-width: 1px;
	border-color: #D0D0D0;
	border-top-style: solid;
	border-left-style: solid;
	color: #BB1E10;
	font-size: 1.25rem;
	background-color: #FFF;
	cursor: pointer;
}
.bk-tablist .bk-tablist__tab:last-child {
	border-right-style: solid;
}

.bk-tablist__tab.bk-tab--active {
	background-color: #BB1E10;
	color: #FFF;
	font-weight: 600;
}

.bk-tablist__content {
	background-color: #FFF;
	border: 1px solid #D0D0D0;
	padding: 1em;
}

.bk-tab-content {
	display: none;
	max-height: 450px;
}

.bk-tab-content.active {
	display: flex;
	gap: 1em;
}
.bk-d-flex { display: flex; }
.bk-flex-col { flex-direction: column; }
.bk-row {
	display: flex;
	gap: 1em;
	flex: 1 0 auto;
}
			
.bk-col { 
	flex: 1 0 0%;
	display: flex;
	flex-direction: column;
}

.bk-tab-content__heading-1 {
	color: #BB1E10;
	font-size: 1.2rem;
}

.bk-tab-content__heading-1 small {
	color: #A4A4A4;
	margin-left: 1em;
}

.bk-list-wrapper {
	background-color: #FFF;
	border: 1px solid #D0D0D0;
	position: relative;
	overflow: auto;
	height: 100%;
	
	/* Nur für hier */
	margin-top: 1em;
}

.bk-list-wrapper.bk-list--empty {
	background-color: #F2F2F2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bk-list-wrapper.bk-list--empty .bk-list__element {
	border: none;
	font-size: 1.2rem;
	font-weight: 500;
	color: #838383;
	text-align: center;
}

.bk-list__element {
	display: flex;
	align-items: center;
	gap: 1em;
	padding: 0.875em;
}

.bk-list__element:nth-child(even) {
	background-color: #F7F7F7;
}

.bk-list__element + .bk-list__element {
	border-top: 1px solid #D0D0D0;
}

.bk-element__datapoint {
	color: #BB1E10;
	font-weight: 500;
}
.bk-element__datapoint small {
	color: #969696;
	font-weight: normal;
}

.bk-element__indicator {
	color: #0FBB34;
	font-size: 0.875rem;
}

.bk-list-selector,
.bk-list-selector:hover,
.bk-list-selector:focus,
.bk-list-selector:active {
	color: #6A6A6A;
}
.bk-list-selector.active {
	color: #535353;
	font-weight: 500;
	text-decoration: none;
}

@media (max-width: 767.98px) {
	.bk-tab-content {
		flex-wrap: wrap;
		max-height: unset;
	}
	
	.bk-col {
		flex-basis: 100%;
	}
}