.whatsapp-fixed-wrapper {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999;
}

.whatsapp-container {
	display: flex;
	align-items: center;
	direction: rtl;
}

.whatsapp-icon {
	width: 48px;
	height: 48px;
	background-color: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	animation: pulse 1.5s infinite;
	text-decoration: none;
}

.whatsapp-text {
	background: white;
	color: #333;
	font-size: 14px;
	padding: 6px 12px;
	border-radius: 25px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	white-space: nowrap;
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	70% {
		box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}
