.app-loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-loader .spinner {
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-top: 2px solid var(--primary600);
  border-right: 2px solid transparent;
  border-bottom: none;
  border-left: none;
  animation: spinner5 700ms linear infinite;
}

.app-loader .spinner::after {
  content: '.';
  color: #fff;
}

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