#loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}

.loader-container {
  text-align: center;
  color: #fff;
}

.speed-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.speed-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.speed-circle circle {
  fill: none;
  stroke: #efb507;
  stroke-width: 8;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: dash 3s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.loader-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
