/* ===========================
   🌶️ AJAX Спиннер: Перчик
   =========================== */

/* ⛔️ Отключаем стандартный спиннер Drupal */
.ajax-progress,
.ajax-progress-throbber,
.ajax-progress.ajax-progress-throbber {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* ✅ Кастомный AJAX-спиннер — вращающийся перчик */
#ajax-perchik-spinner,
.ajax-perchik-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-left: -24px;
  margin-top: -24px;
  background-image: url('/themes/custom/music_plus/images/perchik-spinner.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9999;
  display: none;
  animation: perchik-rotate 1s linear infinite;
  pointer-events: none;
}

/* 🔄 Анимация вращения */
@keyframes perchik-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
