/**
 * Home — WhatsApp FAB
 */

/* WhatsApp FAB — icon only */
.l1-whatsapp-fab {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 1100;
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff !important;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
	transition: transform 0.2s, box-shadow 0.2s;
}
.l1-whatsapp-fab i {
	font-size: 1.55rem;
	line-height: 1;
}
.l1-whatsapp-fab:hover {
	transform: translateY(-2px);
	color: #fff !important;
	box-shadow: 0 16px 32px rgba(37, 211, 102, 0.48);
}
@media (max-width: 575.98px) {
	.l1-whatsapp-fab {
		width: 52px;
		height: 52px;
		right: 0.85rem;
		bottom: 0.85rem;
	}
	.l1-whatsapp-fab i { font-size: 1.4rem; }
}
