@keyframes arrows-alt {
	0% {
		transform: scale(1.2) translate(0, 0);
	}
	20% {
		transform: scale(1.2) translate(-5px, 5px);
	}
	40% {
		transform: scale(1.2) translate(-5px, -5px);
	}
	60% {
		transform: scale(1.2) translate(5px, 5px);
	}
	80% {
		transform: scale(1.2) translate(5px, -5px);
	}
	100% {
		transform: scale(1.2) translate(0, 0);
	}
}

@keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes anim {
	0% {
		transform: translateY(0);
	}
	20% {
		transform: translate(10px, -20px);
	}
	40% {
		transform: translate(-20px, -30px);
	}
	60% {
		transform: translate(30px, -40px);
	}
	80% {
		transform: translate(-40px, -50px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes anim2 {
	0% {
		transform: translateY(0);
	}
	20% {
		transform: translate(-40px, -50px);
	}
	40% {
		transform: translate(30px, -40px);
	}
	60% {
		transform: translate(-20px, -30px);
	}
	80% {
		transform: translate(10px, -20px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes anim3 {
	0% {
		left: 0%;
		top: 0;
	}
	20% {
		left: -1%;
		top: 1%;
	}
	40% {
		left: 2%;
		top: 2%;
	}
	60% {
		left: -3%;
		top: 3%;
	}
	80% {
		left: 4%;
		top: 4%;
	}
	100% {
		left: -5%;
		top: 5%;
	}
}

@keyframes anim4 {
	0% {
		left: 0%;
		top: 0%;
	}
	40% {
		left: calc(55% - 150px);
		top: 0;
	}
	60% {
		left: calc(55% - 150px);
		top: calc(100% - 150px);
	}
	100% {
		left: calc(100% - 150px);
		top: calc(100% - 150px);
	}
}

@keyframes anim5 {
	0% {
		right: 0%;
		bottom: 0%;
	}
	40% {
		right: calc(55% - 150px);
		bottom: 0;
	}
	60% {
		right: calc(55% - 150px);
		bottom: calc(100% - 150px);
	}
	100% {
		right: calc(100% - 150px);
		bottom: calc(100% - 150px);
	}
}