.loading-bar {
  width: 100%;
  height: 8px;

  border-radius: 100px;

  background-color: #f0f4fd;

  overflow: hidden;
}

.loading-percentage {
  will-change: width;

  height: 100%;

  border-radius: 100px;

  background-color: #0068ff;

  transition-property: width;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
