.loader {
  width: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 0.9s linear infinite;
  margin: auto;
  height: 58px;
}

.center-loading {
  text-align: center;
  position: fixed;
  top: 50%;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.center-loading p {
  margin-top: 1em;
  font-weight: 800;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-wrapper {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5647058824);
  position: absolute;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 100000;
}