#initial-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(347.21deg, rgba(35, 39, 44, 0) 18.5%, #23272c 84.62%),
    linear-gradient(19.2deg, rgba(35, 39, 44, 0) 2.86%, #23272c 88.04%),
    linear-gradient(129.9deg, #00a88e 54.46%, rgba(1, 50, 35, 0) 100%);
}

#initial-loader::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(40.1px);
}

#initial-loader .initial-loader-icon {
  position: relative;
  z-index: 3;
  display: block;
  width: 3.8vw;
  height: 3.8vw;
  animation: initial-loader-rotate 1.5s linear infinite;
  transform-origin: center center;
}

@keyframes initial-loader-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
