.iqt-wrapper {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 1rem;
}

.iqt-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.iqt-header-difficulty {
	padding:20px;
	border:2px solid #1c6fa5;
	border-radius:7px;
}

.iqt-header-difficulty-value.iqt-diff-easy {
	color: #2e7d32;
	font-weight:bold;
	}     
.iqt-header-difficulty-value.iqt-diff-medium {
	color: #35a4dd;
	font-weight:bold;
	}
.iqt-header-difficulty-value.iqt-diff-hard {
	color: #f7931e;
	font-weight:bold;
}
.iqt-header-difficulty-value.iqt-diff-very-hard {
	color: #c62828;
	font-weight:bold;
}

.iqt-header-stats {
	padding:20px;
	border:2px solid #1c6fa5;
	border-radius:7px;
}

.iqt-header-difficulty-label,
.iqt-header-stats-label {
	font-weight: 600;
	margin-right: 0.25rem;
}

.iqt-question-area {
	text-align: center;
	margin-bottom: 1rem;
}

.iqt-question-text {
	font-size: 1.1rem;
	margin: 3rem 0 1.8rem;
}

.iqt-question-image-wrapper {
	margin-bottom: 0.75rem;
}

.iqt-question-image {
	max-width: 100%;
	height: auto;
	display: inline-block;
}

.iqt-hidden {
	display: none !important;
}

.iqt-answers {
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 0.75rem 0;
	padding: 0;
}

.iqt-answer-option {
	display: block;
	margin-bottom: 0.8rem;
	text-align: left;
	border-radius: 7px;
	/*border: 2px solid #EDF9FF;*/
	background:#EDF9FF;
	font-weight:600;
	border: 2px solid transparent;
	padding: 0.5rem 0.75rem;
	box-sizing: border-box;
}

/* Highlight correct answer with green border */
.iqt-answer-option.iqt-answer-correct {
	border-color: #2e7d32;
}

/* Highlight chosen wrong answer with red border */
.iqt-answer-option.iqt-answer-wrong {
	border-color: #c62828;
}


.iqt-answer-radio {
	margin-right: 0.5rem;
}

.iqt-answer-label {
	cursor: pointer;
}

.iqt-answer-text {
	vertical-align: middle;
}

.iqt-result {
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
	border: 1px solid transparent;
}

.iqt-result-hidden {
	display: none;
}

.iqt-result-correct {
	border:2px solid #1c6fa5;
	border-radius:7px;
	padding:15px 25px;
	color: #2e7d32;
}

.iqt-result-wrong {
	border:2px solid #1c6fa5;
	border-radius:7px;
	padding:15px 25px;
	color: #c62828;
}

.iqt-result-message {
	font-weight: 600;
	font-size:1.4rem;
	text-align:center;
	margin-bottom: 0.25rem;
}

.iqt-result-explanation {
	color: #000000!important;
}

.iqt-buttons {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
}

.iqt-button {
	border-radius: 4px;
	cursor: pointer;
}

.iqt-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.iqt-button-show-answer {
}

.iqt-button-next-question {
}
