.wcf__progressbar-main {
  --aae-pb-color: currentColor;
  --aae-pb-trail: rgba(0,0,0,.12);
  --aae-pb-stroke-width: 10;
  --aae-pb-track-height: 8px;
}

.wcf__progressbar-main.style-1 .progressbar {
  height: var(--aae-pb-track-height);
  border-radius: 4px;
  overflow: hidden;
  background: var(--aae-pb-trail);
}
.wcf__progressbar-main.style-1 .progressbar-fill {
  height: 100%;
  width: 0%;
  background: var(--aae-pb-color);
  border-radius: inherit;
  transition: width 1.4s ease-in-out;
}
.wcf__progressbar-main.style-1 .aae-pb-pct {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.wcf__progressbar-main.style-2 {
  width: 150px;
  height: 150px;
}
.wcf__progressbar-main.style-2 .progressbar {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.wcf__progressbar-main.style-2 .progressbar-trail {
  stroke: var(--aae-pb-trail);
  stroke-width: var(--aae-pb-stroke-width);
}
.wcf__progressbar-main.style-2 .progressbar-path {
  stroke: var(--aae-pb-color);
  stroke-width: var(--aae-pb-stroke-width);
  transition: stroke-dashoffset 1.4s ease-in-out;
}
.wcf__progressbar-main.style-2 .aae-pb-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.wcf__progressbar-main.style-3 .aae-pb-pct {
  display: none;
}
.wcf__progressbar-main.style-3 .progressbar.dots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.wcf__progressbar-main.style-3 .dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.3;
  transition: background-color 0.3s, opacity 0.3s;
}
.wcf__progressbar-main.style-3 .dot.active {
  opacity: 1;
  background-color: currentColor;
}
/*# sourceMappingURL=progressbar-main.css.map */
