.loading-indicator {
  width: 70px;
  height: 70px;
  background: none;
  border-radius: 50%;
  position: fixed !important;
}

.loading-indicator:before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  background: url( '../images/svg-loading.svg' ) no-repeat center / 100% auto;
  height: 50px;
  width: 50px;
}

.loading-indicator:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
}

.loading-indicator-overlay {
	background-color: transparent;
	opacity: 0.2;
	filter: alpha(opacity = 20);
}
/* .loading-indicator {
  height: 70px;
  width: 70px;
  background: url( 'images/svg-loading.svg' ) no-repeat center / 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.loading-indicator-overlay {
  background-color: #FFFFFF;
  opacity: 0.6;
  filter: alpha(opacity = 60);
} */