@charset "utf-8";

.scrolldown{
position: absolute;
left:50%;
bottom:50px;
height:40px;
}

.scrolldown span{
position: absolute;
left:-22px;
top: -24px;
color: #eee;
font-size: 12px;
letter-spacing: 0.05em;
}

.scrolldown::after{
content: "";
position: absolute;
top: 0;
width: 1px;
height: 30px;
background: #eee;
animation: pathmove 1.6s ease-in-out infinite;
opacity:0;
}

@keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:30px;
  opacity: 1;
}
100%{
  height:0;
  top:50px;
  opacity: 0;
}
}