<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.scroll-btn {
	height: 50px;
	width: 50px;
	border-radius: 4px;
	border-radius: 50%;
	background-color: #f7d6db;
	transition: background-color .3s;
	position: fixed;
	bottom: 45px;
	right: 15px;
	z-index: 9999;
	cursor: pointer;
	display: none;
}



.scroll-btn .scroll-btn-arrow {
	height: 16px;
	width: 16px;
    border: 4px solid;
    border-right: none;
    border-top: none;
    margin: 20px 17px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	color: white;
}

.notouch .scroll-btn:hover { opacity: 0.8 }

@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) {
	.scroll-btn {
		bottom: 8px;
		right: 8px;
	}
}
</pre></body></html>