.blockUI .pageOverlay {
  z-index: 10000;
  border: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  cursor: pointer;
  position: fixed;
  background-color: rgba(255,255,255,0.75);
}
.blockUI .holdScreen {
  z-index: 10110;
  position: fixed;
  padding: 0px;
  margin: 0px;
  width: 100%;
  top: 40%;
  text-align: center;
  color: white;
  border: 0px;
  cursor: wait;
  background-color: white;
}
.blockUI .animation {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
}
.blockUI .holdText {
  color: rgb(75,95,131);
}

.blockUI .bounce1, .blockUI .bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgb(75,95,131);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}
.blockUI .bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}
@keyframes bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}