.ebp-scroll-percentage-tracker {
  --ebp-scroll-indicator-color: #f57c00;
  --ebp-scroll-indicator-background-color: #ffffff;
  --ebp-scroll-indicator-border-color: #f57c00;
  position: fixed;
  z-index: 9999;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--ebp-scroll-indicator-border-color);
  background-color: var(--ebp-scroll-indicator-background-color);
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.ebp-scroll-percentage-tracker.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  pointer-events: none;
}

.ebp-scroll-percentage-tracker.position-bottom-left {
  bottom: 5rem;
  left: 1.5rem;
}

.ebp-scroll-percentage-tracker.position-bottom-right {
  bottom: 1.5rem;
  right: 5rem;
}

.ebp-scroll-percentage-tracker.position-top-left {
  top: 1.5rem;
  left: 5rem;
}

.ebp-scroll-percentage-tracker.position-top-right {
  top: 1.5rem;
  right: 5rem;
}

.ebp-scroll-percentage-face {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 2;
}

.ebp-scroll-percentage-progress {
  stroke: var(--ebp-scroll-indicator-color);
  stroke-width: 2.5;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.1s linear;
}

.ebp-scroll-percentage-label {
  position: absolute;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 700;
  color: var(--ebp-scroll-indicator-color);
  user-select: none;
}

.ebp-scroll-percentage-tracker.is-complete {
  cursor: pointer;
}
