.toppy-button {
	position: fixed;
	bottom: 24px;
	z-index: 9999;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid rgba(17, 24, 39, 0.14);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	padding: 0;
	display: grid;
	place-items: center;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
	backdrop-filter: blur(10px);
}

.toppy-button:hover {
	background: rgba(255, 255, 255, 1);
}

.toppy-button.toppy-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.toppy-button.toppy-left {
	left: 24px;
}

.toppy-button.toppy-right {
	right: 24px;
}

.toppy-button .toppy-icon {
	width: 22px;
	height: 22px;
	display: block;
}

