body.page-loading {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.splash-screen {
  display: none;
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, 'sans-serif';
  background-color: #f9f9f9;
  color: #5e6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.page-loading .splash-screen span {
  color: #5e6278;
  transition: none !important;
  -webkit-font-smoothing: antialiased;
}

.page-loading .splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  height: 130px !important;
  object-fit: contain;
}

html[data-bs-theme='dark'] .page-loading .splash-screen {
  background-color: #151521;
  color: #ffffff;
}

.splash-screen .dark-logo {
  display: none;
}

.splash-screen .light-logo {
  display: block;
}

html[data-bs-theme='dark'] .splash-screen .light-logo {
  display: none;
}

html[data-bs-theme='dark'] .splash-screen .dark-logo {
  display: block;
}
.smScreenSplash{
  background: linear-gradient(rgba(23, 21, 67, 0.322), rgba(23, 21, 67, 0.322)), 
  url('./media/1.jpg') no-repeat center center / cover; 
  z-index: 1000; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  position: absolute; 
  inset: 0;
}

.move-logo,
.app-sidebar-logo-default:hover {
  width: 50px;
  animation: wave 1.5s infinite;
  transform-origin: bottom center;
  -webkit-animation: wave 1.5s infinite;
}

/* Define the waving keyframes */
@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.w-50px{
  width: 50px !important;
  /* margin-bottom: 10px; */
}
.d-block.text-center{
  display: block !important;
  text-align: center !important;
}