.pl-loader-circular {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  &__svg {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    width: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
  }

  &__svg-circle {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation:
      dash 1.5s ease-in-out infinite,
      color 6s ease-in-out infinite;
    animation:
      dash 1.5s ease-in-out infinite,
      color 6s ease-in-out infinite;
    stroke-linecap: round;
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}

@keyframes color {
  0% {
    stroke: var(--ic-02);
  }

  40% {
    stroke: var(--ic-02);
  }

  66% {
    stroke: var(--ic-02);
  }

  80%,
  90% {
    stroke: var(--ic-02);
  }
}
