<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.to-top {
	position: fixed;
	bottom: 5vh;
	right: 5vw;
	transform: scale(0);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 0;
	box-shadow: none;
	opacity: 0;
	background: black;
	color: white;
	will-change: transform;
	z-index: 10;
	transition: .2s;
}

.to-top.show {
	transform: scale(1);
	opacity: 1;
	transition: all 0.2s, transform 0.2s cubic-bezier(0.5, 0, 1, 2);
}

.to-top.active, .to-top:hover {
	background: black;
	color: white;
	cursor: pointer;
}
</pre></body></html>