#root-loader {
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#root-loader > div {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  border-top-color: #0696d7;
  animation: root-spin 0.8s linear infinite;
}

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