.graph-explorer-spinner {
  &__arrow {
    animation-name: graph-explorer-spinner-rotation;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-iteration-count: infinite;
  }

  &[data-error='true'] &__arrow {
    animation-iteration-count: 1;
  }
}

@keyframes graph-explorer-spinner-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
