.loading {
  background: rgba(0, 0, 0, 0.98);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 99999;
}

.loader-wrapper {
  background: transparent;
  border: 0 none;
  height: 100px;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  position: fixed;
  top: 50%;
}

.loader-img {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 80px;
}

.loader-text {
  color: #ffffff;
  margin-top: 10px;
  width: 100px;
  text-align: center;
}

.loader-text-user-edit {
  color: #000000;
  margin-top: 10px;
  width: 100px;
  text-align: center;
}

.loader-icon {
  border: 5px solid #f39c12;
  border-radius: 50%;
  border-top: 5px solid #0073b7;
  border-right: 5px solid #00a65a;
  border-bottom: 5px solid #dd4b39;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
