.back-to-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 100000;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 150ms ease-in-out 0ms;
	transition: opacity 150ms ease-in-out 0ms;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.back-to-top--button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: var(--border-radius-circle);
	background: rgb(15, 15, 15);
	color: rgb(255, 255, 255);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.back-to-top--button:hover,
.back-to-top--button:focus {
	background: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
}

.back-to-top--button:focus-visible {
	outline: 0;
}

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

@media (max-width: 767px) {

	.back-to-top {
		right: 20px;
		bottom: 20px;
	}

}