#app {
  height: 100%;
  /* background-color: #000; */
}

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



.default-home .loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 6rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.default-home .loader:before,
.default-home .loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: pulsOut 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
}
.default-home .loader:before {
  width: 100%;
  padding-bottom: 100%;
  box-shadow: inset 0 0 0 1rem #ffffffaf;
  animation-name: pulsIn;
}
.default-home .loader:after {
  width: calc(100% - 2rem);
  padding-bottom: calc(100% - 2rem);
  box-shadow: 0 0 0 0 #ffffffaf;
}

@keyframes pulsIn {
  0% {
    box-shadow: inset 0 0 0 1rem #ffffffaf;
    opacity: 1;
  }
  50%, 100% {
    box-shadow: inset 0 0 0 0 #ffffffaf;
    opacity: 0;
  }
}

@keyframes pulsOut {
  0%, 50% {
    box-shadow: 0 0 0 0 #ffffffb0;
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 1rem #ffffffb0;
    opacity: 1;
  }
}
