/* LoadingSpinner */

#initLoading {
  display: flex;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  justify-content: center;
  align-items: center;
  background: white;
  z-index: 10;
}
.zoom-in-out-box {
  margin: 24px;
  width: 192px;
  height: 192px;
  /* background: url("/backoffice/AOS/logo192.png"); */
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.3, 1.3);
  }
  100% {
    transform: scale(1, 1);
  }
}
