/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 26 2025 | 02:54:57 */
#instant-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  transition: opacity 0.5s ease; /* fade-out on completion */
}

#instant-loader.active {
  display: flex;
}

.loader-inner {
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 280px;
}

.loader-logo {
  width: 250px;
  margin-bottom: 20px;
}

.loader-text {
  font-size: 18px;
  margin-bottom: 12px;
  animation: pulse 1.2s infinite ease-in-out;
  font-style: italic; /* italicized */
}

.loader-tip {
  font-size: 13px;
  min-height: 20px;
  opacity: 0.8;
  font-style: italic; /* italicized */
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.loader-progress-wrapper {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: #ff4848;
  transition: width 0.2s ease;
}
