.page-loaders {
    background-color: #fff;
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #616364;
  perspective: 1000px;
  z-index: 9999;
}

.rotate-x-loader {
  width: 15%;
  height: auto;
  animation: rotateY3D 1.2s linear infinite;
  transform-style: preserve-3d;
}
.loading-center {
    height: 100vh;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@keyframes rotateY3D {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
