#advanced-progress {
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Spinner */
.advanced-loader {
    position: relative; /* or absolute */
    top: 33%;
    left: 0;/* 15% from the top and centered */
    z-index: 10000;
    border: 15px solid #e0e3ea; /* Light grey */
    border-top: 15px solid #0079C9; /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
	-webkit-box-shadow: rgba (0px 0px 9px 10px 0.3);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  	-moz-box-shadow:    rgba (0px 0px 9px 10px 0.3);  /* Firefox 3.5 - 3.6 */
  	box-shadow:         rgba (0px 0px 9px 10px 0.3);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
