@keyframes bounce {
	0% {
		transform: translate3d(0px, 0px, 0);
	}
	50% {
		transform: translate3d(0px, -4px, 0);
	}
	100% {
		transform: translate3d(0px, 0px, 0);
	}
}

.rocket-bounce {
	animation: bounce 0.5s infinite;
}

.drop-shadow-freebonus {
	filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5));
	background: rgba(47, 40, 80, 0.4);
}
