html {
  background: #533DF0;
}

body {
  background: #533DF0;
  font-family: Nunito, sans-serif;
}
body .e_sign-in-screen {
  background: #533DF0;
  color: white;
}
body .e_app-screen {
  background: white;
}
body .e_loader {
  display: none;
}
body .e_loader.is-active {
  position: fixed;
  top: 52px;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .e_loader.is-active div {
  width: 48px;
  height: 48px;
  background: #444;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 1s ease-in infinite;
}
@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/*# sourceMappingURL=common.css.map */
