<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.form-output {
	position: fixed;
	bottom: 30px;
	left: 15px;
	margin-right: 15px;
	z-index: 2000;
	visibility: hidden;
	transform: translate3d(-500px, 0, 0);
	transition: .3s all ease;
}

.form-output.active {
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

@media (min-width: 576px) {
	.form-output {
		left: 30px;
		margin-right: 30px;
	}
}
</pre></body></html>