#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #14100b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  position: absolute;
  border: 6px solid #00FF94;
  border-top: 6px solid #333;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}

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

.LodinglogoIMG {
  width: 40px;
  height: auto;
  position: absolute;
  z-index: 1;

  /* shimmer effect */
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}

@keyframes shine {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
