
@keyframes jelly {
	0%,
	100% {
		transform: scale(1, 1);
	}
	25% {
		transform: scale(0.9, 1.1);
	}
	50% {
		transform: scale(1.1, 0.9);
	}
	75% {
		transform: scale(0.95, 1.05);
	}
}

.buynow_animate{animation: jelly 1s infinite;display: block;position: fixed;left: 5px;bottom: 80px;z-index: 10;width: 140px;}

