
.wpsl-loader-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.wpsl-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
.wpsl-spinner > div {
  background-color: #7e57c2;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: wpsl-stretchdelay 1.2s infinite ease-in-out;
  animation: wpsl-stretchdelay 1.2s infinite ease-in-out;
}
.wpsl-spinner .rect2 {
  background-color: #3b5998;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.wpsl-spinner .rect3 {
  background-color: #55acee;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.wpsl-spinner .rect4 {
  background-color: #007bb5;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.wpsl-spinner .rect5 {
  background-color: #dd4b39;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes wpsl-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes wpsl-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
