/* Follow-up questions stay hidden until their trade is chosen. */
form select[name^="khs_fu_"] {
	display: none !important;
}

form select[name^="khs_fu_"].khs-fu-on {
	display: block !important;
}

form select[name^="khs_fu_"].khs-fu-animate {
	animation: khs-fu-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes khs-fu-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	form select[name^="khs_fu_"].khs-fu-animate {
		animation: none;
	}
}
