/**
 * ACCORDING TO PRIMAVERA DESIGN SYSTEM:
 * https://design.primaverabss.com/5db52be82/p/0695e1-estilo
 *
 * These variables must follow the defined on the PRIMAVERA Design System,
 * including their naming.
 */
.progress-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 100px);
}

.spinner {
  position: relative;
  animation: rotator 1.4s linear infinite;
  border-radius: 50%;
  box-shadow: inset 0 0 0px 4px rgba(0, 70, 254, 0.32);
  animation: rotator 1.4s linear infinite;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.spinner-path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  stroke: var(--theme-100);
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}/*# sourceMappingURL=styles.css.map */