/*!
 * Reading progress bar — fixed top of viewport on single posts.
 */
.rrtheme-reading-progress {
	position: fixed;
	top: 0;
	inset-inline-start: 0;
	width: 100%;
	height: 3px;
	background: transparent;
	z-index: 100;
	pointer-events: none;
}
.rrtheme-reading-progress::before {
	content: "";
	display: block;
	height: 100%;
	width: var(--progress, 0%);
	background: var(--color-accent);
	transition: width 80ms linear;
}

.has-sticky-header .rrtheme-reading-progress { top: var(--sticky-header-h, 0); }
