#progress-container {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 376px;
  height: 376px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 9999;
}

#progress-container.visible {
  opacity: 1;
}

#progress-bar {
  transform: rotate(270deg); /* Начинаем прогресс с верхней оси */
}

#progress-bar circle {
  transition: stroke-dashoffset 0.4s ease, filter 0.4s ease;
}

@keyframes glowAnimation {
  0% { filter: drop-shadow(0px 0px 10px 104F75); } /* Начальный свет */
  50% { filter: drop-shadow(0px 0px 20px 104F75); } /* Максимальное свечение */
  100% { filter: drop-shadow(0px 0px 10px 104F75); } /* Обратно к слабому свечению */
}

#progress-bar.glow circle {
  animation: glowAnimation 1.5s infinite alternate ease-in-out;
}


/*меню*/












