body {
    background: #ffffff;
}

#wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
}

.path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    animation: dash 5s linear infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 2000;
    }

    90% {
        stroke-dashoffset: 0;
    }
}

.path2 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash2 5s linear infinite;
}

@keyframes dash2 {
    60% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}
