/* Add your custom css in this file */

/* ================================
   EGO LOADER (OVERRIDE FAKELOADER)
   ================================ */

/* Fullscreen loader background */
#site-loader {
  background-color: #111111 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

/* Hide ONLY FakeLoader spinners, not the container */
#site-loader .spinner,
#site-loader .fl-spinner,
#site-loader [class*="spinner"] {
  display: none !important;
}


/* EGO logo overlay */
#site-loader::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 120px;
  background: url("https://egoegypttours.com/wp-content/uploads/2026/01/ego-logo.png") no-repeat center / contain;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: egoFade 2.2s ease-in-out infinite;
  display: block !important;
}

/* Luxury fade animation */
@keyframes egoFade {
  0%   { opacity: 0.3; }
  50%  { opacity: 1; }
  100% { opacity: 0.3; }
}

/* Fix: nice-select dropdown list escaping container and causing whitespace */
.nice-select .list {
    display: none !important;
}

.nice-select.open .list {
    display: block !important;
}