.line-animate {
    height: 3.2px;
    width: 104px;
    background: linear-gradient(#101010 0 0),
        linear-gradient(#101010 0 0),
        #009e66;
    background-size: 60% 100%;
    background-repeat: no-repeat;
    animation: line-animate-7x9cg2 3s infinite;
}

@keyframes line-animate-7x9cg2 {
    0% {
        background-position: -150% 0, -150% 0;
    }

    66% {
        background-position: 250% 0, -150% 0;
    }

    100% {
        background-position: 250% 0, 250% 0;
    }
}