#WRSP_spinner {
  border          : 1px solid;
  position        : fixed;
  top             : 50%;
  left            : 50%;
  transform       : translate(-50%, -50%);
  padding         : 10px;
  background-color: rgba(0, 0, 0, 0.75);
  color           : #FFFFFF;
  z-index         : 9999;
}

.WRSP_hide {
  display: none;
}

.WRSP_loader {
  font-size  : 32px;
  color      : #FFF;
  display    : inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  position   : relative;
}

.WRSP_loader:after {
  content   : '';
  height    : 4px;
  width     : 0%;
  display   : block;
  background: #FFF;
  animation : 5s lineGrow linear infinite;
}

@keyframes lineGrow {
  to {
    width: 100%;
  }
}
