html {
    font-size: 14px
}

body {
    margin: 0;
    padding: 0;
    border: 0;
}

#loading {
    background-color: #508BD5;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40px;
    width: 50px;
    font-size: 10px;
}

#loading-center-absolute > div {
    background-color: #fff;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: loading-center-absolute 1.2s infinite ease-in-out;
    animation: loading-center-absolute 1.2s infinite ease-in-out;
}

#loading-center-absolute #object_two {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

#loading-center-absolute #object_three {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

#loading-center-absolute #object_four {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

#loading-center-absolute #object_five {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes loading-center-absolute {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes loading-center-absolute {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}