/* Aviiko global page loader */
#cx-global-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 249, 252, 0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

#cx-global-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cx-global-loader-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
}

.cx-global-loader-player {
  width: 190px;
  height: 190px;
}

.cx-global-loader-text {
  color: #64748B;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.03em;
}

body.cx-theme-dark #cx-global-loader {
  background: rgba(11, 18, 32, 0.82);
}

body.cx-theme-dark .cx-global-loader-text {
  color: #C7D2E6;
}
