#progress > #progress_image {
  position: absolute;
  bottom: calc(50% + 20px);
}
#progress > #progress_bar {
  width: var(--loading_bar_width);
  height: 2px;
  background-color: var(--loading_color_barbg);
}
#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);
}
#progress > #progress_text {
  position: absolute;
  top: calc(50% + 20px);
  color: var(--loading_color_text);
  font-size: 20px;
}
