.quiz-result-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.quiz-result-list li {
	font-size: 1.6rem;
	margin-bottom: .5rem;
	text-align: left;
	color: #fff;
}

.quiz-result-list .quiz-result-top {
	font-size: 2.4rem;
	color: #fff;
	margin-bottom: .5rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.quiz-result-bgimg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url('images/Eindscherm.svg') center center/cover no-repeat;
	z-index: -1;
}

.fade-out {
	opacity: 0;
	transition: opacity 0.3s cubic-bezier(.77, 0, .18, 1);
}

.fade-in {
	opacity: 1;
	transition: opacity 0.3s cubic-bezier(.77, 0, .18, 1);
}

.slide-transition {
	transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

.quiz-progressbar-container {
	width: 100%;
	margin-top: 2.2rem;
	position: relative;
	padding-bottom: 3rem;
}

.quiz-progressbar {
	height: 10px;
	background: linear-gradient(90deg, #fff 0%, #FF3521 100%);
	border-radius: 6px;
	transition: width 0.4s cubic-bezier(.77, 0, .18, 1);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.quiz-progressbar-label {
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate(-50%, -50%);
	font-size: 1rem;
	color: #FF3521;
	font-weight: 700;
	letter-spacing: 0.02em;
	pointer-events: none;
	text-shadow: 0 1px 2px #fff, 0 0 2px #fff;
}

:root {
	--primary-color: #FF3521;
	--background-color: #f7f7f7;
	--card-background: #fff;
	--text-color: hsl(0, 0%, 100%);
	--border-radius: 12px;
	--box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.quiz-body {
	font-family: "neulis-neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	background: #f7f7f7;
	margin: 0;
	padding: 0;
}

.quiz-container {
	width: 100%;
	max-width: 1920px;
	height: 500px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.quiz-start {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 2;
	color: white;
}

.quiz-start h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	text-align: center;
	margin-top: 0;
	font-weight: 800;
	font-style: italic;
	font-family: "neulis-neue", sans-serif;
    text-transform: none;
}

.subopleiding-list {
	margin-top: 0rem;
	margin-left: 0;
	padding-left: 0;
	margin-bottom: 1rem;
}

.subopleiding-list li {
	margin-bottom: 0rem;
	list-style: none;
}

.subopleiding-list a {
	color: #ffffff;
	/* goudgeel voor contrast */
	text-decoration: underline;
	font-size: 1rem;
}

.subopleiding-list a:hover {
	text-decoration: none;
}

@media (max-width: 650px) {
	.quiz-start h1 {
		font-size: 3rem;
		margin-bottom: .5rem;
		line-height: 1.1;
	}
}

hr {
	border: 1px solid white;
}

.quiz-start p {
	font-size: 22px;
	margin-bottom: 1.25rem;
	text-align: center;
	width: 70%;
	color: white;
}

.quiz-result-list li span {
	color: black;
}

@media (max-width: 650px) {
	.quiz-start p {
		font-size: 1rem;
		margin-bottom: .5rem;
	}
}

.quiz-bgimg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url('images/startscherm-background.svg') center center/cover no-repeat;
	z-index: -1;
}

.quiz-start-btn {
	z-index: 2;
	padding: 1.2rem 2rem;
	font-size: 1.5rem;
	background: #fff;
	color: black;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	font-weight: 800;
	font-style: italic;
	margin-top: .5rem;
}

@media (max-width: 650px) {
	.quiz-start-btn {
		font-size: 1.2rem;
		padding: 1rem 1.5rem;
	}
}

.startscherm-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.quiz-step {
	display: grid;
	grid-template-columns: 30% 70%;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 3;
}

.quiz-step-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.quiz-step-img {
	width: 100%;
	height: 500px !important;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10) !important;
	background: #fff;
}

.quiz-step-content {
	background: #fff;
	padding: 0 3rem;
	height: 100%;
}

.quiz-step-content p {
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
	margin-top: 0;
	color: #1e293b;
}

.quiz-step-content h2 {
	font-size: 5rem;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 700;
	color: var(--primary-color);
}

.quiz-options {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.quiz-options label {
	background: #f0f0f0;
	border-radius: 6px;
	padding: 0.7rem 1rem;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background 0.2s;
}

.quiz-options input[type="radio"] {
	accent-color: var(--primary-color);
	margin-right: 0.9em;
	width: 1.2em;
	height: 1.2em;
	transform: scale(1.4);
	cursor: pointer;
}

.quiz-next-btn {
	margin-top: 2rem;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 1rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.quiz-next-btn:disabled {
	background: #ccc;
	color: #fff;
	cursor: not-allowed;
}

.quiz-next-btn:hover:not(:disabled) {
	background: #b0021f;
}

@media (max-width: 700px) {
	.quiz-container {
		height: 650px;
	}

	.quiz-step {
		display: flex;
		flex-direction: column;
	}

	.quiz-step-text {
		display: flex;
		align-items: center;
		gap: .5rem;
	}

	.quiz-step-content p {
		font-size: 1.125rem;
		margin-bottom: 0;
	}

	.quiz-step-img {
		height: 250px;
		object-fit: cover;
	}
}

.quiz-question {
	margin-bottom: 1.2rem;
}

.quiz-question p {
	font-size: 1rem;
	margin-bottom: 0.7rem;
}

.quiz-options {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	width: fit-content;
}

.quiz-options label {
	background: transparent;
	padding: 0.5rem 0.7rem;
	padding-left: 0;
	font-size: 1rem;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background 0.2s;
}

.quiz-options input[type="radio"] {
	accent-color: var(--primary-color);
	margin-right: 1em;
}

.quiz-submit {
	width: 100%;
	background: #4f46e5;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.8rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: 1rem;
	transition: background 0.2s;
}

.quiz-submit:hover {
	background: #3730a3;
}

.quiz-result {
	position: relative;
	overflow: hidden;
	z-index: 20;
	padding: 1.2rem 1rem;
	font-size: 1.1rem;
	color: #ffffff;
	height: 100%;
}

.quiz-result h2 {
	position: absolute;
	top: 0%;
	left: 10%;
	font-size: 5.5rem;
}

.quiz-result h2+h2 {
	position: absolute;
	font-size: 4rem;
	top: 24%;
	left: 15%;
	line-height: 1.1;
}

.quiz-result ol {
	position: absolute;
	right: 8%;
	top: 18%;
}

.quiz-result-list p {
	padding: 0;
	margin: 0;
}

.quiz-result-top+p {
	font-size: 1.4rem;
}

.quiz-result-top+p+ul li a {
	font-size: 1.2rem;
}

@media (max-width: 530px) {
	.quiz-step-img {
		height: 230px;
	}

	.quiz-step-text {
		flex-direction: column;
		gap: 0;
		align-items: start;
	}

	.quiz-step-content h2 {
		font-size: 4rem;
	}

	.quiz-options {
		display: flex;
		gap: 0;
		margin-top: 10px;
	}

	.quiz-options label {
		padding: 5px 0;
		font-size: .9rem;
	}

	.quiz-step-content p {
		font-size: 1rem;
		margin-bottom: 0;
	}
}


@media (max-width: 1680px) {
	.quiz-result-list .quiz-result-top {
		font-size: 2rem;
	}
}


@media (max-width: 1500px) {
	.quiz-result ol {
		right: 5%;
		top: 22%;
	}
}

@media (max-width: 1500px) {
	.quiz-result-list .quiz-result-top {
		font-size: 1.7rem;
	}
}

@media (max-width: 1300px) {
	.quiz-result-list .quiz-result-top {
		font-size: 1.5rem;
	}

	.quiz-result-top+p {
		font-size: 1.1rem;
	}
}

@media (max-width: 1200px) {
	.quiz-result h2 {
		left: 5%;
		font-size: 4.5rem;
	}

	.quiz-result h2+h2 {
		font-size: 3rem;
		top: 21%;
		left: 7%;
		line-height: 1.1;
	}

	.quiz-result ol {
		right: 5%;
		bottom: 10%;
		top: auto;
	}
}

@media (max-width: 900px) {
	.quiz-result-list .quiz-result-top {
		font-size: 1.3rem;
	}

	.quiz-result-top+p+ul li a {
		font-size: 1rem;
	}

	.quiz-result-list li {
		font-size: 1.3rem;
		margin-bottom: .5rem;
		text-align: left;
		color: #fff;
	}
}

@media (max-width: 900px) {
	.quiz-result h2 {
		left: 5%;
		font-size: 3.5rem;
		top: 10%;
	}

	.quiz-result h2+h2 {
		font-size: 2.5rem;
		top: 25%;
		left: 5%;
		line-height: 1.1;
	}

	.subopleiding-list {
		margin-bottom: 0rem;
	}
}

@media (max-width: 700px) {
	.quiz-result h2+h2 {
		top: 30%;
		left: 5%;
	}

	.quiz-result h2 {
		left: 5%;
		font-size: 3.5rem;
		top: 18%;
	}

	.quiz-result-list li {
		font-size: 1.1rem;
		margin-bottom: 0;
	}

	.subopleiding-list+li {
		margin-top: .5rem;
		margin-bottom: .3rem;
	}

	.quiz-result-top+p {
		font-size: 1rem;
	}

	.quiz-result-list p {
		font-size: 1rem;
	}
}