<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#progress &gt; #progress_image {
  position: absolute;
  bottom: calc(50% + 20px);
}
#progress &gt; #progress_bar {
  width: var(--loading_bar_width);
  height: 2px;
  background-color: var(--loading_color_barbg);
}
#progress &gt; #progress_bar &gt; p {
  width: 0;
  height: 100%;
  background-color: var(--loading_color_bar1);
  transition: width 1.0s cubic-bezier(0.4, 0.4, 0, 1);
}
#progress &gt; #progress_text {
  position: absolute;
  top: calc(50% + 20px);
  color: var(--loading_color_text);
  font-size: 20px;
}
</pre></body></html>