﻿#load-0 {
    position: fixed;
    top: 50%;
    left: 50%;
}


#load-0 .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px;
    width: 30px;
    height: 30px;
    background-color: #337ab7;
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(180deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(180deg) rotateY(-180deg);
    }
}

#load-0 p {
    color: #337ab7;
    padding-bottom: 60px;
    font-size:1.2rem;
}