.remu-back-to-top {
	align-items: center;
	background: #2d2f2e;
	border: 0;
	border-radius: 50%;
	bottom: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
	color: #fff;
	cursor: pointer;
	display: flex;
	height: 42px;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 12px;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
	visibility: hidden;
	width: 42px;
	z-index: 10000;
}

.remu-back-to-top:hover,
.remu-back-to-top:focus-visible {
	background: #1f2120;
}

.remu-back-to-top:focus-visible {
	outline: 3px solid #f3c400;
	outline-offset: 3px;
}

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

.remu-back-to-top svg {
	fill: currentColor;
	height: 24px;
	width: 24px;
}

.remu-sticky-placeholder {
	box-sizing: border-box;
	display: none;
	flex: 0 1 auto;
}

#sticky-fixed.remu-is-sticky {
	box-sizing: border-box;
	max-height: calc(100vh - var(--remu-sticky-top, 0px));
	overflow-y: auto;
	overscroll-behavior: contain;
}

@media (prefers-reduced-motion: reduce) {
	.remu-back-to-top {
		transition: none;
	}
}

@media print {
	.remu-back-to-top,
	.remu-sticky-placeholder {
		display: none !important;
	}

	#sticky-fixed.remu-is-sticky {
		max-height: none;
		overflow: visible;
		position: static !important;
	}
}
