.app-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 999;
  background-color: white;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}
#loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 102;
  transform: perspective(1px) translate(-50%, -50%) translate(50vw, 50vh);
}
#loading svg {
  width: 150px;
  height: 150px;
}
@keyframes unfold {
    to {
        opacity: 0;
        transform: scale(2.2);
    }
}
#loading #fold1 {
    transform: scale(1);
    opacity: 0.3;
    animation-name: unfold;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    animation-delay: 1.5s;
    animation-duration: 1.6s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
#loading-text {
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
    width: 150px;
    color: #242265;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: .1666666667em;
    text-transform: uppercase;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-blob {
    transform: rotate(0deg);
    transform-origin: center;
    animation-name: spin;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    animation-iteration-count: infinite;
}

.pp-loading {
    color: #336699;
    position: absolute;
    top: 0;
    right: 0;
}
