@charset "UTF-8";
.scrolldown1{
	position: absolute;
	left: 47%;
	bottom: 10px;
	height: 50px;
	font-size: 146%;
	top: 81%;
}
.scrolldown1 span{position: absolute;
	left:-15px;
	top: -15px;}
.scrolldown1::after{
	content: "";
	position: absolute;
	top: 0;
	width: 2px;
	height: 30px;
	background: #eee;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
	min-height: 39px;
	margin-left: 9px;
}
	@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}