<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wizard-step .primary-content{
	height: 100%;
}
.wizard-step .categories{
	max-height: 26em;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
		/*Enables "momentum" on iOS devices*/
}
.ios-momentum-scroll .wizard-step .categories{
	overflow-y: scroll;
		/*Required for -webkit-overflow-scrolling: touch to work*/
}
/*In case of a vertically narrow display, ensure we don't have unreachable content*/
.page .body .body-inner{
	overflow: auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
}
.ios-momentum-scroll .page .body .body-inner{
	overflow-y: scroll;
}
</pre></body></html>