.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

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

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;

  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background:#fff;
  overflow: hidden;
  padding: 10px;
  transition: height 0.5s ease-in-out, opacity 2.3s ease-in-out;
	-webkit-transition: height 0.5s ease-in-out, opacity 2.3s ease-in-out;
}

.pace .pace-activity {
  position: fixed;
  z-index: 2000;
  display: block;
  position: relative;
  margin: auto;
  top: 45%;
  height: 90px;
  width: 90px;
  display: block;
  border-width: 26px;
  border-style: double;
  border-color: #29d transparent #29d;
  border-radius: 50%;

  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  -o-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.pace .pace-activity:before {
  content: ' ';
  position: absolute;
  top: 8px;
  left: 8px;
  height: 10px;
  width: 10px;
  display: block;
  border-width: 11px;
  border-style: solid;
  border-color: #29d;
  border-radius: 50%;
}

@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(359deg); }
}

@-moz-keyframes spin {
  100% { -moz-transform: rotate(359deg); }
}

@-o-keyframes spin {
  100% { -moz-transform: rotate(359deg); }
}

@keyframes spin {
  100% {  transform: rotate(359deg); }
}



.pace.pace-inactive {
   display:none;
}
.wd-loading-wrapper {
	z-index: 999; 
	background: #f8f8f8; 
	position: fixed; 
	width: 100%; height: 100%;
	opacity: 1;
	
}


