/* Fishing Bobber Animation */
@keyframes bobberFloat {
	0% { top: 55%; }
	50% { top: 57%; }
	100% { top: 55%; }
}

@keyframes bobberBite {
	0% { top: 55%; }
	50% { top: 80%; }
	100% { top: 55%; }
}

.bobber_floating {
	animation: bobberFloat 2s infinite ease-in-out;
}

.bobber_bite {
	animation: bobberBite 0.5s infinite ease-in-out;
}
