#loading {
    position: fixed;
    width:  100%;
    height: 100%;
    z-index: 10;
}

#loadImg {
    position: relative;
    display: block;
    margin: 0 auto;
    width:  100vmin;
    /*max-width: 960px;*/
    top: 25%;
    /*opacity: 0;*/

    /*-moz-animation:opac 3s 1 linear;*/
    /*-webkit-animation:opac 3s 1 linear;*/
    /*animation-delay: 2s;*/
}

/*@-moz-keyframes opac {*/
    /*0%   { opacity: 0; }*/
    /*100% { opacity: 1; }*/
/*}*/
/*@-webkit-keyframes opac {*/
    /*0%   { opacity: 0; }*/
    /*100% { opacity: 1; }*/
/*}*/


#loadIndicator {
    position: absolute;
    width:  100%;
    height: 100%;
    min-height: 23vh;
    top:    0px;
}

#loadIndicator .circle {
    position: relative;
    margin: auto;

    width:5vw;
    height:5vw;

    top: 56%;

    background-color: rgba(5,5,5,0.9);

    border:0.3vw solid rgba(0,192,255,0.9);
    opacity:.9;
    border-left:0.3vw solid rgba(17,21,24,1);
    border-right:0.3vw solid rgba(17,21,24,1);
    border-radius:5vw;

    -ms-animation:spin 1s infinite linear;
    -moz-animation:spin 1s infinite linear;
    -webkit-animation:spin 1s infinite linear;

}

@-moz-keyframes spin {
    0% { -moz-transform:rotate(0deg); }
    100% { -moz-transform:rotate(360deg);  }
}
@-webkit-keyframes spin {
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
}
@-ms-keyframes spin {
    0% { -ms-transform:rotate(0deg); }
    100% { -ms-transform:rotate(360deg); }
}

#loadIndicator .text {
    position: relative;
    margin: -3.6vw;
    top: 56%;
    left: 0.3vw;
    text-align: center;
    color: #ddd;
    font: bold 1.4vw Arial;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#loadCopyright {
    position: absolute;
    top: 0px;

    width: 100%;
    height: 100%;
    min-height: 23vh;
}

#loadCopyright p{
    position: relative;
    margin: 0 auto;
    top: 80%;

    text-align: center;
    color: #ddd;
    font: bold 1vw Arial;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}