.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.loading-spinner__container{
  position: relative;
  width: 70%;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 0 auto ;
}

.loading-spinner__bar{
  position: absolute;
  border-radius: 8px;
  top: 0;
  right: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(139.92deg, #6F85CC 0%, #6847AD 35.06%, #555299 62.32%, #4A60A8 100%);
  width: 0;
  animation: borealisBar 1s linear infinite;
}


@keyframes borealisBar{
  0%{
    left: 0;
    right: 100%;
    width: 0;
  }
  10%{
    left: 0;
    right: 75%;
    width: 25%;
  }
  90%{
    right: 0;
    left: 75%;
    width: 25%;
  }

  100%{
    left: 100%;
    right: 0;
    width: 0;
  }
}
