#overlay {
  position: absolute;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.8);
  z-index: 2;
  cursor: pointer;
  z-index: 10000;
}

.spinner {
  position: absolute;
  top: 45%;
  left: 50%;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  height: 150px;
  margin-top: -75px;
  margin-left: -75px;
  margin-right: -75px;
}

.spinner::after, .spinner::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-image: url('/assets/img/thereghub-loader.svg');
    background-size: 150px 150px;
}

/*.spinner-page-load {
    margin-top: 100px;
}*/