/* -----------------------------------
//
//      Loading Items
//
---------------------------------------*/
#LoadingDiv {
    z-index: 101;
    top: 0px;
    left: 0px;
    position: fixed;
    background-color: #ffffff;
}
.loader {
    position: absolute;
    top: 100px;
    left: 100px;
    border: 16px solid #999fa8;
    border-radius: 50%;
    border-top: 10px solid #00529c;
    border-bottom: 10px solid #1faa92;
    border-right: 10px solid #d6186e;
    border-left: 10px solid #fcb334;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
#loadingtext {
    font-size: 20px;
    position: absolute;
    color: #a0a0a0;
    text-align: center;
    padding: 0px;
    margin: 0px;
    top: 130px;
    left: 200px;
}
#chromechecker {
    font-size: 20px;
    position: absolute;
    color: #808080;
    text-align: left;
    padding: 0px;
    margin: 0px;
    top: 100px;
    left: 200px;

}
#loadingpercent {
    font-size: 18px;
    position: absolute;
    color: #a0a0a0;
    text-align: center;
    padding: 0px;
    margin: 0px;
    top: 130px;
    left: 115px;
    width: 60px;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
