@charset "UTF-8";
@-webkit-keyframes line-down {
		from {
				background-position: 0 -60px;
				opacity: 0;
		}
		to {
				background-position: 0 60px;
				opacity: 1;
		}
}
@keyframes line-down {
		from {
				background-position: 0 -60px;
				opacity: 0;
		}
		to {
				background-position: 0 60px;
				opacity: 1;
		}
}
.line-down {
		content: '';
		position: absolute;
		bottom: 40px;
		left: 50%;
		width: 1px;
		height: 60px;
		transform: translate3d(-50%, 0, 0);
		background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
		background-size: 100% 120px;
		background-position: 0 0;
		animation: line-down 2s ease-out infinite;
}