#loading-screen #scroll-begin #scroll-pin:after{
	animation: pulseLine 1.25s infinite;
}

@keyframes pulseLine {
	0% {
		height:50px;
		opacity:1;
		top:0;
	}
	49.9% {
		height:0;
		opacity:1;
		top:0;
	}
	50%{
		opacity:0;
		top:50px;
	}
	50.1%{
		opacity:1;
		height:50px;
	}
	100% {

	}
}