.loading-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
  flex-direction: column;
  user-select: none;
}

.loading-wrapper img {
  opacity: 0;
  position: relative;
  animation: loadding-image-zoom-in 0.25s ease-out forwards;
}

.loading-wrapper span {
  font-weight: 300;
  color: #1b2655;
  font-size: 12px;
}

.loading-wrapper b {
  color: #1b2655;
  font-size: 16px;
}

.loading-wrapper.off {
  animation: loading-image-fade-out 0.25s forwards;
}

.loading-wrapper img {
  margin-bottom: 8px !important;
}

@keyframes loadding-image-zoom-in {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loading-image-fade-out {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
