#anim span {
	position: relative;
	transition: all 0.3s ease;
	display: inline-block;
	animation: wave-3 2.4s ease infinite;
	transform-origin: 100% 50%;
	transform-style: preserve-3d;
}
#anim span:nth-child(1) {
	animation-delay: 0s;
}
#anim span:nth-child(2) {
	animation-delay: 0.05s;
}
#anim span:nth-child(3) {
	animation-delay: 0.1s;
}
#anim span:nth-child(4) {
	animation-delay: 0.15s;
}
#anim span:nth-child(5) {
	animation-delay: 0.2s;
}
#anim span:nth-child(6) {
	animation-delay: 0.25s;
}
#anim span:nth-child(7) {
	animation-delay: 0.3s;
}
#anim span:nth-child(8) {
	animation-delay: 0.35s;
}
#anim span:nth-child(9) {
	animation-delay: 0.4s;
}
#anim span:nth-child(10) {
	animation-delay: 0.45s;
}
#anim span:nth-child(11) {
	animation-delay: 0.5s;
}
#anim span:nth-child(12) {
	animation-delay: 0.55s;
}
#anim span:nth-child(13) {
	animation-delay: 0.6s;
}
#anim span:nth-child(14) {
	animation-delay: 0.65s;
}
#anim span:nth-child(15) {
	animation-delay: 0.7s;
}
#anim span:nth-child(16) {
	animation-delay: 0.75s;
}
#anim span:nth-child(17) {
	animation-delay: 0.8s;
}
#anim span:nth-child(18) {
	animation-delay: 0.85s;
}
#anim span:nth-child(19) {
	animation-delay: 0.9s;
}
#anim span:nth-child(20) {
	animation-delay: 0.95s;
}
#anim span:nth-child(21) {
	animation-delay: 1s;
}
#anim span:nth-child(22) {
	animation-delay: 1.05s;
}
#anim span:nth-child(23) {
	animation-delay: 1.10s;
}
#anim span:nth-child(24) {
	animation-delay: 1.15s;
}
#anim span:nth-child(25) {
	animation-delay: 1.20s;
}
#anim span:nth-child(26) {
	animation-delay: 1.25s;
}
#anim span:nth-child(27) {
	animation-delay: 1.30s;
}
#anim span:nth-child(28) {
	animation-delay: 1.35s;
}
#anim span:nth-child(29) {
	animation-delay: 1.40s;
}
#anim span:nth-child(30) {
	animation-delay: 1.45s;
}
#anim span:nth-child(31) {
	animation-delay: 1.50s;
}
#anim span:nth-child(32) {
	animation-delay: 1.55s;
}
#anim span:nth-child(33) {
	animation-delay: 1.60s;
}
#anim span:nth-child(34) {
	animation-delay: 1.65s;
}
#anim span:nth-child(35) {
	animation-delay: 1.70s;
}
#anim span:nth-child(36) {
	animation-delay: 1.75s;
}
#anim span:nth-child(37) {
	animation-delay: 1.80s;
}
#anim span:nth-child(38) {
	animation-delay: 1.85s;
}
#anim span:nth-child(39) {
	animation-delay: 1.90s;
}
#anim span:nth-child(40) {
	animation-delay: 1.95s;
}
#anim span:nth-child(41) {
	animation-delay: 2.00s;
}
#anim span:nth-child(42) {
	animation-delay: 2.05s;
}
#anim span:nth-child(43) {
	animation-delay: 2.10s;
}
#anim span:nth-child(44) {
	animation-delay: 2.15s;
}
#anim span:nth-child(45) {
	animation-delay: 2.20s;
}
#anim span:nth-child(46) {
	animation-delay: 2.25s;
}
#anim span:nth-child(47) {
	animation-delay: 2.30s;
}
#anim span:nth-child(48) {
	animation-delay: 2.35s;
}
#anim span:nth-child(49) {
	animation-delay: 2.40s;
}
#anim span:nth-child(50) {
	animation-delay: 2.45s;
}
@-webkit-keyframes wave-3 {
	0% {
		transform: translate3D(0, 0, 0) scale(1) rotateY(0);
		text-shadow: 0 0 0 rgba(70, 175, 200, 0);
	}
	12% {
		transform: translate3D(2px, -2px, 2px) scale(1.16) rotateY(6deg);
		color: var(--tj-theme-primary);
	}
	15% {
		text-shadow: 0 0 2px var(--tj-theme-primary);
	}
	24% {
		transform: translate3D(0, 0, 0) scale(1) rotateY(0);
	}
	36% {
		transform: translate3D(0, 0, 0) scale(1);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes wave-3 {
	0% {
		transform: translate3D(0, 0, 0) scale(1) rotateY(0);
		text-shadow: 0 0 0 rgba(70, 175, 200, 0);
	}
	12% {
		transform: translate3D(2px, -2px, 2px) scale(1.16) rotateY(6deg);
		color: var(--tj-theme-primary);
	}
	15% {
		text-shadow: 0 0 2px var(--tj-theme-primary);
	}
	24% {
		transform: translate3D(0, 0, 0) scale(1) rotateY(0);
	}
	36% {
		transform: translate3D(0, 0, 0) scale(1);
	}
	100% {
		transform: scale(1);
	}
}