/*
Die maximale Inhaltsbreite beträgt 1280px. Viewport L: 992 px – 1280 px Viewport M: 768 px – 991 px Viewport S: < 768px 
*/
#ckd_quiz {
	width: 100%;
	max-width: 1280px;
	margin: auto;
	color: var(--color-primary-1-100);
}
.ckd_header {
	width:100%;
	margin-bottom:50px;
}
.ckd_header img {
	width:100%;
}
.ckd_content, .ckd_footer {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 0 20px;
}
.ckd_content h2 {
	font-size: 32px;
	line-height: normal;
}
.ckd_content ol {
	margin: 50px 0 40px;
	padding: 0;
	padding-left: 20px;
}
.ckd_content ol li {
	font-size: 22px;
	line-height: normal;
	font-weight: 600;
}
.ckd_answer {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.ckd_checkbox {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--color-primary-1-100);
	flex: 30px 0;
	min-width: 30px;
}
.ckd_text {
	padding-top: 4px;
}
.ckd_answer {
	cursor: pointer;
}
.ckd_answer.ckd_active .ckd_checkbox {
	border: 1px solid var(--color-accent-1-100);
	background: var(--color-accent-1-100);
}
.ckd_button a {
	text-decoration: none;
	font-weight: bold;
	position: relative;
	display: block;
	width: 60px;
	margin-top: 30px;
	margin-left: 40px;
}
.ckd_lastbutton a {
	width: 105px;
}
.ckd_button a::after {
	content: "";
	background: url(img/forward_pfeil.svg);
	width: 16px;
	height: 15px;
	background-size: 15px;
	margin-left: 0px;
	position: absolute;
	right: -12px;
	display: block;
	background-repeat: no-repeat;
	top: 5px;
}
.ckd_footer {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 50px 0;
}
ul.ckd_nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 15px;
}
ul.ckd_nav li {
	display: flex;
	justify-content: center;
	width: 15px;
}
ul.ckd_nav li div {
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 7.5px;
	background: var(--color-primary-1-100);
}
ul.ckd_nav li.ckd_active div {
	background: var(--color-accent-1-100);
}

/*Functional*/
.ckd_result {
	display: flex;
	gap: 40px;
}
.ckd_result_points {
	padding: 10px 15px;
	background: var(--color-accent-1-100);
	color: var(--color-primary-1-100);
	font-weight: bold;
	font-size: 24px;
	width: auto;
	display: inline-block;
	margin: 40px 0;
}
.ckd_button.ckd_login a {
	margin-left: 0;
}
.ckd_result_info {
	flex: 50%;
}
.ckd_result_image {
	height: 100%;
	align-self: stretch;
	align-items: flex-end;
	flex: 50%;
	display: flex;
	margin-top: auto;
}
.ckd_result_image img {
	max-width: 100%;
}
.ckd_frage {
	display: none;
}
#ckd_frage1 {
	display: block;
}
.ckd_error {
	display: none;
	padding: 10px 15px;
	background: var(--color-accent-1-100);
	color: var(--color-primary-1-100);
}
.ckd_result_head {
	display: none;
}
.ckd_result {
	display: none;
}
@media (max-width: 600px) {
	.ckd_content ol {
		margin: 30px 0 40px;
		padding: 0;
		padding-left: 20px;
	}
	/*
	.ckd_content, .ckd_footer {
		padding: 0 30px;
	}
	.ckd_content h2 {
		font-size: 48px;
		line-height: normal;
	}
	.ckd_content ol li {
		font-size: 32px;
	}
	.ckd_content ol {
		padding-left: 30px;
	}
	.ckd_checkbox {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border: 1px solid var(--color-primary-1-100);
		flex: 36px 0;
		min-width: 36px;
		font-size: 28px;
	}
	.ckd_text {
		padding-top: 0px;
		font-size: 28px;
		line-height: 36px;
	}
	.ckd_button a {
		text-decoration: none;
		font-weight: bold;
		position: relative;
		display: block;
		width: 120px;
		margin-top: 30px;
		margin-left: 40px;
		font-size: 28px;
	}
	*/
	.ckd_result {
		flex-direction: column-reverse;
	}
}