#loading-bg {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loading-wrapper {
  width: 14%;
  height: 7px;
  display: flex;
  padding: 0px 2px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #4c3298;
  justify-content: center;
}
.loading-bar-f {
  width: 100%;
  height: 4px;
  background: #9ddcfa;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.loading-bar {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.bar {
  width: 0;
  height: 100%;
  background: #4c3298;
  animation: loading-animation 2s infinite linear;
  border-radius: 10px;
}
@keyframes loading-animation {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
