@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.app-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-loading__circle {
  fill: none;
  animation: spin 0.8s infinite linear;
  width: 32px;
}

.app-loading__circle-path {
  /* stylelint-disable-next-line color-hex-length */
  fill: #333333;
}
