/* =========================================================
   GLOBAL LOADER OVERLAY (Merdeqa)
   ========================================================= */

#globalLoader.loader-backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease-out;
}

#globalLoader.loader-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   LOADER ANIMATION (4 rotating circles)
   ========================================================= */

.loader {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 360px 400px;
  border: 12px solid;
  position: absolute;
}

.c1 {
  animation: rota 2.2s linear infinite;
  border-color: orange;
}

.c2 {
  animation: rota 3s linear infinite;
  border-color: #FD774E;
}

.c3 {
  animation: rota 2s linear infinite;
  border-color: #ffffff;
  opacity: 0.5;
}

.c4 {
  animation: rota 1s linear infinite;
  border-color: #ffffff;
  opacity: 0.8;
}

@keyframes rota {
  100% {
    transform: rotate(360deg);
  }
}
