div.m-app-loading {
  position: fixed;
  z-index: 2147483647;
}
div.m-app-loading div.animated-container {
  background-color: #241966;
  bottom: 0;
  left: 0;
  opacity: 1;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483647;
}
/* Used to initialize the ng-leave animation state. */
div.m-app-loading div.animated-container.ng-leave {
  opacity: 1;
  transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
}
/* Used to set the end properties of the ng-leave animation state. */
div.m-app-loading div.animated-container.ng-leave-active {
  opacity: 0;
}
div.m-app-loading div.messaging {
  font-family: "UIHeadings-Regular";
  color: var(--color-progress-undefined-text);
  left: 0;
  margin-top: -80px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}
div.m-app-loading div.messaging h2 {
  font-family: "UIHeadings-Regular";
  color: var(--color-progress-undefined-text);
}
div.m-app-loading h1 {
  font-size: 26px;
  line-height: 35px;
  margin: 0 0 20px 0;
}
div.m-app-loading p {
  font-size: 18px;
  line-height: 14px;
  margin: 0;
}
.ui-progress-indefinite {
  height: 4px;
  width: 296px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background-color: var(--color-progress-undefined-2);
}
.ui-progress-indefinite:before {
  display: block;
  position: absolute;
  content: "";
  left: -100px;
  width: 100px;
  height: 4px;
  background-color: var(--color-progress-undefined-1);
  animation: progress-anim 2s linear infinite;
}
@keyframes progress-anim {
  from {
    left: -100px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}

