/* Metanoia - Test front-end */
.mnt-quiz {
	--mnt-bg: #f7f4e9;
	--mnt-yellow: #c9b022;
	--mnt-teal: #2e7da1;
	--mnt-text: #1e293b;
	max-width: 1000px;
	margin: 0 auto;
	color: var(--mnt-text);
	background: var(--mnt-bg);
}

.mnt-step {
	padding: 32px 24px;
}

.mnt-points {
	color: #555;
	font-size: 15px;
	margin-bottom: 10px;
}
.mnt-remaining {
	font-weight: 700;
}
.mnt-remaining.mnt-over {
	color: #dc2626;
}

.mnt-stem {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 22px;
}

.mnt-intro-text {
	font-size: 16px;
	line-height: 1.65;
}

.mnt-remaining.mnt-done {
	color: #15803d;
}

.mnt-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mnt-option {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px 10px;
	border-radius: 10px;
	transition: background .15s ease, box-shadow .15s ease;
}
.mnt-option--active {
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
}
.mnt-stepper {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 6px;
}
.mnt-minus,
.mnt-plus {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #cfc9b6;
	background: #fff;
	color: var(--mnt-teal);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .12s ease, color .12s ease, opacity .12s ease;
}
.mnt-minus:hover:not(:disabled),
.mnt-plus:hover:not(:disabled) {
	background: var(--mnt-teal);
	color: #fff;
	border-color: var(--mnt-teal);
}
.mnt-minus:disabled,
.mnt-plus:disabled {
	opacity: .35;
	cursor: not-allowed;
}
.mnt-value {
	flex: 0 0 24px;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
}
.mnt-optbody {
	flex: 1;
	min-width: 0;
}
.mnt-option-text {
	display: block;
	line-height: 1.4;
}
.mnt-bar {
	display: block;
	height: 6px;
	margin-top: 8px;
	background: #e7e0cb;
	border-radius: 3px;
	overflow: hidden;
}
.mnt-bar-fill {
	display: block;
	height: 100%;
	width: 0;
	background: var(--mnt-teal);
	border-radius: 3px;
	transition: width .18s ease;
}

.mnt-nav {
	display: flex;
	gap: 16px;
	margin-top: 28px;
}
.mnt-nav--center {
	justify-content: center;
}

.mnt-btn {
	border: none;
	border-radius: 24px;
	padding: 13px 30px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background: var(--mnt-yellow);
	cursor: pointer;
	transition: background .15s ease, opacity .15s ease;
}
.mnt-btn:hover {
	opacity: .92;
}
.mnt-btn:disabled {
	background: #b7b7b7;
	cursor: not-allowed;
	opacity: 1;
}

.mnt-title {
	text-align: center;
	font-size: 26px;
	margin: 8px 0 8px;
}
.mnt-sub {
	text-align: center;
	color: #555;
	margin: 0 auto 8px;
	max-width: 520px;
}

.mnt-email-input {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 18px auto;
	padding: 12px 14px;
	border: 1px solid #cfc9b6;
	border-radius: 6px;
	font-size: 15px;
	background: #fff;
}
.mnt-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	max-width: 560px;
	margin: 0 auto;
	font-size: 14px;
	color: #333;
	line-height: 1.4;
}
.mnt-consent input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.mnt-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.mnt-error {
	color: #dc2626;
	text-align: center;
	margin-top: 14px;
	font-size: 14px;
}

@media (max-width: 600px) {
	.mnt-stem { font-size: 19px; }
	.mnt-nav { flex-wrap: wrap; }
	.mnt-btn { flex: 1 1 auto; }
}
