
.loader {
    z-index: 9999;
    text-transform: capitalize;
  margin: 0;
  min-height: 100vh;
  display: flex;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  /* background-color:#28282B; */
  /* font-family: sans-serif; */
  font-family: 'Poppins', sans-serif;
}

.loader .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader  .circle {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  animation: spinBounce 2.5s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.loader  .circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
}

@keyframes spinBounce {
  0% {
    transform: rotate(0deg) ;
  }
  25% {
    transform: rotate(90deg) ;
  }
  50% {
    transform: rotate(180deg) ;
  }
  75% {
    transform: rotate(270deg) ;
  }
  100% {
    transform: rotate(360deg) ;
  }
}

.loader  .text {
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.loader  .text span {
    color: white !important;
    z-index: 555565656;
  display: inline-block;
  animation: bounce .5s infinite ease-in-out;
}

