.sp-preloader-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

/* Style One */
.style-1 .sp-preloader {
  border: 1px solid #e4d7d7;
  border-left-color: #000000;
  border-radius: 100px;
  height: 49px;
  width: 49px;
  animation: cssload-rotate 1150ms linear infinite;
}

.style-1 .sp-preloader::before,
.style-1 .sp-preloader::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #cccccc;
  border-left-color: #000000;
  border-radius: 974px;
}

.style-1 .sp-preloader::before {
  content: "";
  margin: -22px 0 0 -22px;
  height: 43px;
  width: 43px;
  animation: cssload-rotate 1150ms linear infinite;
}

.style-1 .sp-preloader::after {
  content: "";
  margin: -28px 0 0 -28px;
  height: 55px;
  width: 55px;
  animation: cssload-rotate 2300ms linear infinite;
}

@keyframes cssload-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Style Two */
.style-2 .sp-preloader {
  width: 49px;
  height: 49px;
  border: 4px double;
  border-radius: 50%;
  border-color: transparent #000000 #000000;
  animation: cssload-spin 960ms infinite linear;
}

@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}