/*body{*/
    /*background:#fd0;*/
/*}*/

#lg-loader{
    z-index: 10000;
    display: none;
    background: rgba(255, 255, 255, 0.81) none repeat scroll left top;
    height: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#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;
    }
}