div#nerdtest-container {
	font-family: var(--e-global-typography-primary-font-family);
}

/* Answer */
div#nerdtest-container button.antwoord {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    padding: 30px 0;
    width: 100%;
    font-size: 1.2em;
	text-wrap-mode: wrap;
}

BODY[data-elementor-device-mode="mobile"] div#nerdtest-container button.antwoord {
	padding: 20px 0;
}
	
div#nerdtest-container button.antwoord.juist { background-color: #4CAF50; color: white; }
div#nerdtest-container button.antwoord.fout { background-color: #f44336; color: white; }
div#nerdtest-container button.antwoord.correct {
	border: 2px solid #288317;
    background-color: #4CAF50;
    color: #fff; 
}
button.volgende { margin-top: 1em; margin-bottom: 1em; padding: 0.5em 1em; }

/* Progress */
.progress-bar {
	background-color: #ddd;
	border-radius: 8px;
	overflow: hidden;
	height: 15px;
	margin-bottom: 0.5em;
}
.progress-fill {
	background-color: #4CAF50;
	height: 100%;
	transition: width 0.3s ease;
}
.progress-text {
	text-align: center;
	font-size: 0.8em;
	margin-bottom: 1em;
	color: #333;
}

/* Restart */
.herstart {
	margin-top: 1.5em;
	padding: 0.5em 1em;
	background-color: #0073aa;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.herstart:hover {
	background-color: #005f8d;
}

/* Answers */
div#nerdtest-container {
	text-align: center;
}

div#nerdtest-container UL {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
}

div#nerdtest-container H3 {
	font-size: 1.5rem;
    font-weight: 600;
}

div#nerdtest-container UL LI {
	width: calc(50% - 20px);
}

BODY[data-elementor-device-mode="mobile"] div#nerdtest-container UL LI {
	width: 100%;
}

div#nerdtest-container .feedback {
    margin-top: 50px;
}
div#nerdtest-container button.volgende {
    margin: 0 0 2em 0;
	background-color: #3183c9;
    color: #fff;
    border: 1px solid #175a93;
}