.witime-whatsapp-button {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 54px;
	height: 54px;

	color: #ffffff;
	background: #25d366;
	border-radius: 50%;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.22);

	text-decoration: none;

	transition:
		transform 180ms ease,
		background-color 180ms ease,
		box-shadow 180ms ease;
}

.witime-whatsapp-button svg {
	display: block;
	width: 42px;
	height: 42px;
}

.witime-whatsapp-button:hover,
.witime-whatsapp-button:focus {
	color: #ffffff;
	background: #20bd5a;

	transform: translateY(-2px) scale(1.04);

	box-shadow:
		0 6px 18px rgba(0, 0, 0, 0.28);
}

.witime-whatsapp-button:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 3px;
}

@media (max-width: 782px) {
	.witime-whatsapp-button {
		right: 16px;
		bottom: 16px;

		width: 52px;
		height: 52px;
	}

	.witime-whatsapp-button svg {
		width: 40px;
		height: 40px;
	}
}