#app {
  height: 100%;
}

.fantastic-admin-home {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #736477;
  user-select: none;
  background-color: snow;
}


.fantastic-admin-home .text {
  position: relative;
  margin-top: 20px;
  font-size: 24px;
}

.fantastic-admin-home .text::after {
  position: absolute;
  padding-left: 5px;
  content: "…";
}

.fantastic-admin-home .loader {
  display: flex;
  align-items: center;
}

.fantastic-admin-home .icon {
  height: 1.5rem;
  width: 1.5rem;
  animation: spin 1s linear infinite;
  stroke: rgba(107, 114, 128, 1);
}

.fantastic-admin-home .loading-text {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  color: rgba(107, 114, 128, 1);
}

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