progress-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: calc(100% - 2px);
  background: white;
  margin: 1px 5%;
  opacity: 0;
  pointer-events: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
progress-spinner[active=true] {
  opacity: 1;
  pointer-events: all;
}
progress-spinner .line {
  position: absolute;
  opacity: 0.4;
  background: var(--secondary);
  width: 100%;
  height: 5px;
}
progress-spinner .subline {
  position: absolute;
  background: var(--primary);
  height: 5px;
}
progress-spinner .inc {
  animation: increase 2s infinite;
}
progress-spinner .dec {
  animation: decrease 2s 0.5s infinite;
}

@keyframes increase {
  from {
    left: -5%;
    width: 5%;
  }
  to {
    left: 130%;
    width: 100%;
  }
}
@keyframes decrease {
  from {
    left: -80%;
    width: 80%;
  }
  to {
    left: 110%;
    width: 10%;
  }
}
/*# sourceMappingURL=../sourcemaps/components/progress-spinner.css.map */