.back-to-top-button {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: var(--forest);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	pointer-events: none;
	cursor: pointer;
	position: absolute;
	right: 2px;
	bottom: 62px;
	transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms, background-color 160ms ease;
}

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

.back-to-top-button:hover {
	background: #2f6b47;
}

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

.back-to-top-icon {
	width: 24px;
	height: 24px;
}

@media (max-width: 767px) {
	.back-to-top-button {
		width: 44px;
		height: 44px;
	}
}

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