@charset "UTF-8";
/* CSS Document */



.mouse {
	width: 50px;
	height: 90px;
	border: 3px solid #FFF;
	border-radius: 60px;
	position: absolute;
    left: 48%;
	margin-top: 20px;

	
}

.mouse::before {
	content: '';
	width: 12px;
	height: 12px;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #FFF;
	border-radius: 50%;
	opacity: 1;
	animation: wheel 2s infinite;
	-webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}
