@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);

.speedy {
    position: absolute;
    top: 50%;
    margin-left: -50px;
    left: 50%;
    animation: speeder .4s linear infinite;
}

.speedy i {
    font-size: 40px;
    transform: rotate(40deg);
    right: -60px;
    top: -16px;
    position: absolute;
    color: #F37272;
}

.speedy > span > span:nth-child(1),
.speedy > span > span:nth-child(2),
.speedy > span > span:nth-child(3),
.speedy > span > span:nth-child(4),
.speedy > span > span:nth-child(5) {
    width: 30px;
    height: 1px;
    background: #000000;
    position: absolute;
    animation: fazer1 .2s linear infinite;
}

.speedy > span > span:nth-child(2) {
    top: 2px;
    animation: fazer2 .4s linear infinite;
}

.speedy > span > span:nth-child(3) {
    top: 6px;
    animation: fazer3 .4s linear infinite;
    animation-delay: -1s;
}

.speedy > span > span:nth-child(4) {
    top: 13px;
    animation: fazer4 1s linear infinite;
    animation-delay: -5s;
}

.speedy > span > span:nth-child(5) {
    top: 7px;
    animation: fazer5 1s linear infinite;
    animation-delay: -3s;
}

@keyframes fazer1 {
    0% { left: 0; }
    100% {
        left: -80px;
        opacity: 0;
    }
}
@keyframes fazer2 {
    0% { left: 0; }
    100% {
        left: -100px;
        opacity: 0;
    }
}
@keyframes fazer3 {
    0% { left: 0; }
    100% {
        left: -50px;
        opacity: 0;
    }
}
@keyframes fazer4 {
    0% { left: 0; }
    100% {
        left: -150px;
        opacity: 0;
    }
}
@keyframes fazer5 {
    0% { left: 0; }
    100% {
        left: -70px;
        opacity: 0;
    }
}
@keyframes speeder {
    0% { transform: translate(2px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -3px) rotate(-1deg); }
    20% { transform: translate(-2px, 0px) rotate(1deg); }
    30% { transform: translate(1px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 3px) rotate(-1deg); }
    60% { transform: translate(-1px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-2px, -1px) rotate(1deg); }
    90% { transform: translate(2px, 1px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.longfazers {
    position: absolute;
    width: 100%;
    height: 100%;
}
.longfazers span {
    position: absolute;
    height: 2px;
    width: 20%;
    background: rgba(0, 0, 0, 0.88);
}
.longfazers span:nth-child(1) {
    top: 0%;
    animation: lf .6s linear infinite;
    animation-delay: -5s;
}
.longfazers span:nth-child(2) {
    top: 30%;
    animation: lf2 .8s linear infinite;
    animation-delay: -1s;
}
.longfazers span:nth-child(3) {
    top: -20%;
    animation: lf3 .4s linear infinite;
}
.longfazers span:nth-child(4) {
    top: 25%;
    animation: lf4 .5s linear infinite;
    animation-delay: -3s;
}

@keyframes lf {
    0% {
        left: 200%;
    }
    100% {
        left: -200%;
        opacity: 0;
    }
}
@keyframes lf2 {
    0% {
        left: 200%;
    }
    100% {
        left: -200%;
        opacity: 0;
    }
}
@keyframes lf3 {
    0% {
        left: 200%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}
@keyframes lf4 {
    0% {
        left: 200%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}
