#progress > #progress_text {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 1px;
  height: 30px;
  color: var(--loading_color_text);
  font-size: 20px;
  line-height: 30px;
  transform: translate(-50%,-100%);
}
#progress > #progress_bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--loading_color_barbg);
  transform: translate(-50%,-50%);
}
#progress > #progress_bar > p {
  width: 0;
  height: 100%;
  background-color: var(--loading_color_bar1);
  transition: width 1.0s cubic-bezier(0.4, 0.4, 0, 1);
}
