
.fixedbody{
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}
#preloader {
  position: fixed;
  inset: 0;
  background: #000000; /* Page background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it stays on top */
  transition: opacity 0.5s ease;
}

.loader_wrapper{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.loader {
  border: 5px solid #222222; /* Light grey base */
  border-top: 5px solid #c00009; /* Blue spinning part */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 1s linear infinite;
}
.loader-tt{
  margin-bottom: 25px;
  max-width: 200px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide body scrollbar while loading */
body.loading {
  overflow: hidden;
}