.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.app-loading p {
  display: block;
  font-size: 1.17em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: normal;
}

@keyframes zoomanimate {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.loading-container {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-container img {
  animation: zoomanimate 3s infinite;
  width: 150px !important;
  height: 150px !important;
}

.loading-img {
  animation: zoomanimate 3s infinite;
  width: 150px !important;
  height: 150px !important;
}

.gray-overlay {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(250, 247, 240);
  z-index: 9999;
}

#loader-overlay {
  height: 100vh;
}
