<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.scroll-top {
	transition: opacity 400ms;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	right: 1.25em;
	bottom: 25%;
	padding: 1.25em;
	text-align: center;
	margin: 0;
	cursor: pointer;
	background-color: rgb(46, 71, 93);
	color:white;
	border: 2px solid white;
}

.scroll-top.show {
	opacity: 1;
}

.scroll-top.hide {
	opacity: 0;
}

.scroll-top:hover {
	transition: transform 100ms ease-in-out 0s;
	transform: scale(1.1);
}

.scroll-top i {
	font-size: 1.5em;
}

.scroll-top i::before {
	display: inline-block;
	transform: rotate(180deg);
}</pre></body></html>