.waitTab {
	position: absolute;
	width: 100%;
	height: 100%;
}
.aniTab {
	position: relative;
	top: -50px;
	left: -50px;
}
.waitAni {
	width: 30px;
	height: 30px;
	background-color: red;
	position: relative;
	animation-name: example;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

@keyframes example {
	0% {
		background-color: #44c2e7;
		left: 0px;
		top: 0px;
	}

	25% {
		background-color: white;
		left: 100px;
		top: 0px;
	}

	50% {
		background-color: #d84e68;
		left: 100px;
		top: 100px;
	}

	75% {
		background-color: white;
		left: 0px;
		top: 100px;
	}

	100% {
		background-color: #44c2e7;
		left: 0px;
		top: 0px;
	}
}