/** BEE **/
.bee
{
	height: 9px;
	width: 15px;
	background-image: url('../images/bee.png?t=1571111287');
	animation: bee-flap .2s steps(2, end) infinite;
	position: absolute;
}
.rocks .bee {
	display: none;
}
.rocks.broken .bee {
	display: block;
}

.rocks.broken .bee .shadow
{
	height: 100%;
	top: 30px;
	width: 100%;
}

.rocks.broken .bee .hitbox
{
	display: block;
	height: 100%;
	top: 35px;
	width: 100%;
}



.bee.left {
	transform: scale(-1, 1);
	filter: FlipH;
}

@keyframes bee-flap
{
	to
	{
		background-position-y: 18px;
	}
}