.wish {
	width: 500px;
	position: fixed;
	bottom: 100px;
	left: 50%;
	margin-left: -170px;
	display: none;
	cursor: pointer;
	transition: all 1s;
}
.wish:hover{
	transform: scale(1.2);
}

.wish span {
	font-size: 60px;
	opacity: 0;
	animation: wish 2s forwards;
	margin-right: 20px;
}

.wish span:nth-child(1) {
	animation-delay: 4s;
}

.wish span:nth-child(2) {
	animation-delay: 5s;
}

.wish span:nth-child(3) {
	animation-delay: 6s;
}

.wish span:nth-child(4) {
	animation-delay: 6.5s;
	font-size: 30px;
	color: white;
}

@keyframes wish {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
