.back-to-top {
	position: fixed;
	right: 1em;
	bottom: 100px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid #fff;
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 10px 22px rgba(2, 6, 23, 0.16);
	cursor: pointer;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
	-webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}


.back-to-top .material-symbols-outlined {
	font-size: 1.65rem;
	line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
	.back-to-top {
		transition-duration: 0.01ms;
	}
}

