.fwb-button {
	align-items: center;
	background: #25d366;
	border-radius: 50%;
	bottom: 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
	color: #fff;
	display: flex;
	height: 60px;
	justify-content: center;
	position: fixed;
	right: 24px;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
	width: 60px;
	z-index: 999999;
}

.fwb-button:hover,
.fwb-button:focus-visible {
	background: #1ebe5d;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .32);
	color: #fff;
	transform: translateY(-2px) scale(1.04);
}

.fwb-button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.fwb-button svg {
	display: block;
	height: 36px;
	width: 36px;
}

@media (prefers-reduced-motion: reduce) {
	.fwb-button {
		transition: none;
	}
}
