.root-loading-content {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  background: #F8F5EB;
}

.root-loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  border-top-color: #8238EB;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

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