#loadingSystem {
  position: fixed;
  top: 0;
  left: 0;

  background-color: rgba(255, 255, 255, 0.589);
  backdrop-filter: blur(10px);

  width: 100%;
  height: 100%;

  overflow: visible;
  z-index: 9999999;
}

.hidden {
  display: none;
}

.spinner {
  --green1: #174202;
  --yellow: #e49211;
  --green2: #89bea7;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
}

.spinner:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate73451 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash0175 1.5s ease-in-out infinite,
    color7123 6s ease-in-out infinite;
  stroke-linecap: round;
}

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

@keyframes dash0175 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color7123 {

  0% {
    stroke: var(--green1);
  }

  20% {
    stroke: var(--green2);
  }

  40% {
    stroke: var(--yellow);
  }

  60% {
    stroke: var(--green1);
  }

  80% {
    stroke: var(--green2);
  }
}
