	span {
		display: inline-block;
		animation: wave 0.32s ease-in-out infinite alternate;
		transform: translateY(-2 flex-direction: column; 0px);
	}

	span:nth-child(1) {
		animation-delay: 0s;
	}

	span:nth-child(2) {
		animation-delay: 0.1s;
	}

	span:nth-child(3) {
		animation-delay: 0.2s;
	}

	span:nth-child(4) {
		animation-delay: 0.3s;
	}

	span:nth-child(5) {
		animation-delay: 0.4s;
	}

	span:nth-child(6) {
		animation-delay: 0.5s;
	}

	span:nth-child(7) {
		animation-delay: 0.6s;
	}

	@keyframes wave {
		0% {
			transform: translateY(0);
		}

		100% {
			transform: translateY(10px);
		}
	}
