.whatslink-click-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 8px;
	margin-left: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .3px;
	color: #fff;
	border-radius: 999px;
	background: linear-gradient(135deg, #25D366, #128C7E);
	box-shadow:
	0 4px 12px rgba(37, 211, 102, 0.35),
	0 0 0 1px rgba(255, 255, 255, 0.15) inset;
	position: relative;
	transition: all .25s ease;
	animation: wlt-pop .35s cubic-bezier(.2, 1.4, .4, 1) both;
}

.whatslink-click-badge::before {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: inherit;
	background: radial-gradient(circle at center, rgba(37, 211, 102, .5), transparent 70%);
	opacity: .6;
	z-index: -1;
	filter: blur(6px);
}

.whatslink-click-badge:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow:
	0 6px 18px rgba(37, 211, 102, 0.45),
	0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@keyframes wlt-pop {
	0% {
	transform: scale(.6);
	opacity: 0;
	}

	60% {
	transform: scale(1.15);
	opacity: 1;
	}

	100% {
	transform: scale(1);
	}
}