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

#loadImg {
    position: relative;
    display: block;
    margin: 0 auto;
    width:  100%;
    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: 300px;
    top:    0px;
}

#loadIndicator .circle {
    position: relative;
    margin: auto;
    width:64px;
    height:64px;
    /*width:10vw;*/
    /*height:10vw;*/
    /*max-width: 64px;*/
    /*max-height: 64px;*/
    top: 56%;

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

    border:4px solid rgba(0,192,255,0.9);
    opacity:.9;
    border-left:4px solid rgba(17,21,24,1);
    border-right:4px solid rgba(17,21,24,1);
    border-radius:64px;

    -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: -46px;
    top: 56%;
    left: 4px;
    text-align: center;
    color: #ddd;
    font: bold 18px 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: 300px;
}

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

    text-align: center;
    color: #ddd;
    font: bold 13px Arial;

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