:root {
	--mtf-blue: #063f69;
	--mtf-blue-dark: #003b66;
	--mtf-green: #76b900;
	--mtf-green-dark: #5f9800;
	--mtf-text: #52728a;
	--mtf-line: #d5e1e7;
	--mtf-soft: #f2f7f8;
	--mtf-white: #fff;
}

.mediton-technikfinder,
.mediton-technikfinder * {
	box-sizing: border-box;
}

.mediton-technikfinder {
	width: 100%;
	color: var(--mtf-blue-dark);
	font-family: inherit;
}

.mtf__intro {
	margin: 0 auto 44px;
	max-width: 940px;
	padding-inline: 20px;
	text-align: center;
}

.mtf__eyebrow,
.mtf__kicker {
	margin: 0;
	color: var(--mtf-green);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.mtf__headline {
	margin: 14px 0 18px;
	color: var(--mtf-white);
	font-size: clamp(38px, 4.3vw, 72px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.03;
}

.mtf__intro-text {
	margin: 0;
	color: var(--mtf-white);
	font-size: clamp(17px, 1.5vw, 22px);
	line-height: 1.5;
}

.mtf__panel {
	overflow: hidden;
	width: 100%;
	border: 1px solid rgba(213, 225, 231, .45);
	border-radius: 22px;
	background: var(--mtf-white);
	box-shadow: 0 26px 70px rgba(0, 34, 60, .14);
}

.mtf__progress {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0 64px;
	border-bottom: 1px solid var(--mtf-line);
	background: var(--mtf-soft);
	list-style: none;
}

.mtf__progress-item {
	position: relative;
	min-width: 0;
}

.mtf__progress-item::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: transparent;
	content: "";
	transition: background-color .2s ease;
}

.mtf__progress-item.is-active::after {
	background: var(--mtf-green);
}

.mtf__progress-button {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	min-height: 92px;
	padding: 16px 20px;
	border: 0;
	background: transparent;
	color: #7890a2;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
}

.mtf__progress-button:not(:disabled) {
	cursor: pointer;
}

.mtf__progress-item.is-active .mtf__progress-button,
.mtf__progress-item.is-complete .mtf__progress-button {
	color: var(--mtf-blue-dark);
}

.mtf__progress-marker {
	display: inline-grid;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: #dfe9ed;
	color: #6b8aa0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
}

.mtf__progress-item.is-active .mtf__progress-marker,
.mtf__progress-item.is-complete .mtf__progress-marker {
	background: var(--mtf-green);
	color: var(--mtf-white);
}

.mtf__body {
	min-height: 530px;
	padding: clamp(58px, 6vw, 92px) clamp(28px, 7vw, 118px) 54px;
}

.mtf__step {
	animation: mtf-fade-in .26s ease both;
	text-align: center;
}

.mtf__question {
	max-width: 1120px;
	margin: 16px auto 14px;
	color: var(--mtf-blue);
	font-size: clamp(32px, 3.25vw, 55px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.1;
}

.mtf__description {
	margin: 0 auto;
	max-width: 960px;
	color: var(--mtf-text);
	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.55;
}

.mtf__answers {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.mtf__answer {
	position: relative;
	display: grid;
	grid-template-rows: auto auto 1fr;
	min-height: 224px;
	padding: 30px 28px 26px;
	border: 1px solid var(--mtf-line);
	border-radius: 14px;
	background: var(--mtf-white);
	color: var(--mtf-blue-dark);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mtf__answer:hover,
.mtf__answer:focus-visible,
.mtf__answer.is-selected {
	border-color: var(--mtf-green);
	box-shadow: 0 18px 34px rgba(31, 70, 89, .11);
	outline: none;
	transform: translateY(-2px);
}

.mtf__answer-letter {
	display: inline-grid;
	width: 40px;
	height: 40px;
	margin-bottom: 34px;
	place-items: center;
	border-radius: 50%;
	background: #eef5f7;
	color: var(--mtf-blue-dark);
	font-size: 15px;
	font-weight: 800;
}

.mtf__answer.is-selected .mtf__answer-letter {
	background: var(--mtf-green);
	color: var(--mtf-white);
}

.mtf__answer-title {
	margin-bottom: 14px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
}

.mtf__answer-text {
	padding-right: 24px;
	color: var(--mtf-text);
	font-size: 15px;
	line-height: 1.5;
}

.mtf__answer-arrow {
	position: absolute;
	right: 24px;
	bottom: 23px;
	color: var(--mtf-green-dark);
	font-size: 24px;
	line-height: 1;
}

.mtf__back {
	margin: 30px auto 0;
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: var(--mtf-text);
	font: inherit;
	font-size: 14px;
	cursor: pointer;
}

.mtf__back:hover,
.mtf__back:focus-visible {
	color: var(--mtf-green-dark);
	outline: none;
}

.mtf__message {
	margin-top: 28px;
	padding: 18px 20px;
	border: 1px solid #edc66d;
	border-radius: 10px;
	background: #fff7df;
	color: #694e13;
	text-align: center;
}

.mtf__disclaimer {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .92);
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}

.mediton-technikfinder.is-result .mtf__intro,
.mediton-technikfinder.is-result .mtf__body,
.mediton-technikfinder.is-result .mtf__disclaimer {
	display: none;
}

.mediton-technikfinder.is-result .mtf__panel {
	border-radius: 22px 22px 0 0;
	box-shadow: none;
}

.mediton-technikfinder.is-result .mtf__progress-item::after {
	display: none;
}

.mediton-technikfinder-loop,
#mediton-technikfinder-loop {
	display: none;
}

.mediton-technikfinder-loop.is-mtf-visible,
#mediton-technikfinder-loop.is-mtf-visible {
	display: block;
}

body.elementor-editor-active .mediton-technikfinder-loop,
body.elementor-editor-active #mediton-technikfinder-loop {
	display: block;
}

.mediton-technikfinder-loop.is-mtf-visible > .elementor-widget-container,
#mediton-technikfinder-loop.is-mtf-visible > .elementor-widget-container {
	margin-top: 0;
}

.mediton-technikfinder-loop .mtf__single-result-grid,
#mediton-technikfinder-loop .mtf__single-result-grid {
	grid-template-columns: minmax(0, 1fr) !important;
}

.mediton-technikfinder-loop [hidden],
#mediton-technikfinder-loop [hidden] {
	display: none !important;
}

@keyframes mtf-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.mtf__progress {
		padding-inline: 24px;
	}

	.mtf__progress-button {
		gap: 11px;
		padding-inline: 12px;
	}

	.mtf__body {
		min-height: 0;
	}

	.mtf__answer {
		min-height: 214px;
		padding-inline: 22px;
	}
}

@media (max-width: 767px) {
	.mtf__intro {
		margin-bottom: 28px;
	}

	.mtf__headline {
		margin-block: 10px 14px;
		font-size: clamp(34px, 11vw, 48px);
	}

	.mtf__panel {
		border-radius: 16px;
	}

	.mtf__progress {
		padding-inline: 8px;
	}

	.mtf__progress-button {
		justify-content: center;
		min-height: 70px;
		padding: 12px 4px;
	}

	.mtf__progress-marker {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.mtf__progress-label {
		position: absolute;
		overflow: hidden;
		width: 1px;
		height: 1px;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.mtf__body {
		padding: 42px 18px 34px;
	}

	.mtf__kicker {
		font-size: 13px;
	}

	.mtf__question {
		margin-top: 12px;
		font-size: clamp(30px, 9vw, 42px);
	}

	.mtf__description {
		font-size: 16px;
	}

	.mtf__answers {
		grid-template-columns: 1fr;
		gap: 13px;
		margin-top: 30px;
	}

	.mtf__answer {
		display: grid;
		grid-template-columns: 42px 1fr 24px;
		grid-template-rows: auto auto;
		column-gap: 14px;
		min-height: 0;
		padding: 20px 18px;
	}

	.mtf__answer-letter {
		grid-row: 1 / 3;
		width: 38px;
		height: 38px;
		margin: 0;
	}

	.mtf__answer-title {
		margin: 0 0 5px;
		font-size: 19px;
	}

	.mtf__answer-text {
		grid-column: 2;
		padding: 0;
		font-size: 14px;
	}

	.mtf__answer-arrow {
		position: static;
		grid-column: 3;
		grid-row: 1 / 3;
		align-self: center;
		justify-self: end;
	}

	.mtf__disclaimer {
		padding-inline: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mtf__step,
	.mtf__answer {
		animation: none;
		scroll-behavior: auto;
		transition: none;
	}
}
