/* ==============================
   TOOLS - Interactive Components
   ============================== */

/* ── Tools Index Grid ──────────── */
.tools-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.tool-index-card {
  display: block;
  background: var(--bg-card, rgba(26, 31, 58, 0.7));
  border: 1px solid rgba(159, 143, 239, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tool-index-card:hover {
  transform: translateY(-2px);
  border-color: var(--lavender, #9f8fef);
  box-shadow: 0 8px 24px rgba(159, 143, 239, 0.15);
}
.tool-index-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.tool-index-type {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  background: rgba(159, 143, 239, 0.15);
  border-radius: 20px;
  color: var(--lavender, #9f8fef);
  margin-bottom: .75rem;
}
.tool-index-card h3 { font-size: 1.15rem; margin-bottom: .5rem; line-height: 1.4; }
.tool-index-card p { font-size: .9rem; opacity: .75; line-height: 1.5; margin: 0; }

/* ── Tool Intro / CTA ─────────── */
.tool-intro { margin-bottom: 2rem; }
.tool-intro p { margin-bottom: 1rem; line-height: 1.8; }
.tool-cta {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(159, 143, 239, 0.08);
  border: 1px solid rgba(159, 143, 239, 0.2);
  border-radius: 12px;
  line-height: 1.7;
}
.tool-methodology {
  margin: 2rem 0;
  padding: 1.25rem;
  background: rgba(255,255,255, 0.03);
  border-radius: 10px;
  font-size: .9rem;
  opacity: .85;
}

/* ── Checklist ─────────────────── */
.checklist-widget { margin: 1rem 0 2rem; }
.checklist-progress {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lavender, #9f8fef);
  margin-bottom: 1.5rem;
  padding: .75rem;
  background: rgba(159, 143, 239, 0.08);
  border-radius: 10px;
}
.checklist-section { margin-bottom: 2rem; }
.checklist-section h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.checklist-items { display: flex; flex-direction: column; gap: .5rem; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255, 0.04);
  border: 1px solid rgba(255,255,255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.checklist-item:hover { background: rgba(159, 143, 239, 0.06); border-color: rgba(159, 143, 239, 0.2); }
.checklist-cb {
  width: 22px; height: 22px; min-width: 22px;
  margin-top: 2px;
  accent-color: var(--lavender, #9f8fef);
  cursor: pointer;
}
.checklist-item-content { flex: 1; }
.checklist-item-text { font-weight: 600; display: block; line-height: 1.5; }
.checklist-item-detail { display: block; font-size: .85rem; opacity: .7; margin-top: .25rem; line-height: 1.5; }

.checklist-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  transition: all .3s;
}
.result-low { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); }
.result-medium { background: rgba(234, 179, 8, 0.1); border: 1px solid rgba(234, 179, 8, 0.3); }
.result-high { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); }
.checklist-result h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.checklist-result p { margin: 0; line-height: 1.6; }

/* ── Comparison ────────────────── */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin: 2rem 0;
}

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  align-self: center;
}

.comparison-vs-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9f8fef, #e8a0bf);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(159, 143, 239, 0.3);
  letter-spacing: 1px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .comparison-vs {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0;
  }
}
.comparison-card {
  background: var(--bg-card, rgba(26, 31, 58, 0.7));
  border: 2px solid rgba(159, 143, 239, 0.1);
  border-radius: 20px;
  padding: 1.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.comparison-card:hover {
  border-color: rgba(159, 143, 239, 0.25);
  box-shadow: 0 8px 32px rgba(159, 143, 239, 0.1);
}
.comparison-card-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.comparison-icon { font-size: 1.75rem; }
.comparison-card h2 { font-size: 1.4rem; font-weight: 700; margin: 0; }
.comparison-tagline { font-style: italic; opacity: .7; margin-bottom: 1rem; }
.comparison-description { margin-bottom: 1rem; line-height: 1.7; }
.comparison-description p { margin-bottom: .75rem; }
.comparison-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.meta-item {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: rgba(159, 143, 239, 0.06);
  border: 1px solid rgba(159, 143, 239, 0.1);
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
}
.meta-item strong {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.comparison-card h3 { font-size: 1rem; margin: 1rem 0 .5rem; }

/* Pros/Cons: icon-based, accessible */
.pros-list, .cons-list {
  padding-right: 0;
  list-style: none;
  margin-bottom: .5rem;
}
.pros-list li, .cons-list li {
  position: relative;
  padding-right: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: inherit;
}
.pros-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #4ade80;
  font-weight: 700;
  font-size: 1rem;
}
.cons-list li::before {
  content: "✗";
  position: absolute;
  right: 0;
  color: #f87171;
  font-weight: 700;
  font-size: 1rem;
}

.best-for { margin-top: .75rem; }
.tag {
  display: inline-block;
  font-size: .8rem;
  padding: .2rem .5rem;
  background: rgba(159, 143, 239, 0.12);
  border-radius: 6px;
  margin: .15rem;
}

/* Comparison table: enhanced */
.comparison-table-wrap {
  margin: 2.5rem 0;
  padding: 0;
}
.comparison-table-wrap h2 {
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(159, 143, 239, 0.12);
}
.comparison-table th {
  background: rgba(159, 143, 239, 0.12);
  font-weight: 700;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border-bottom: 2px solid rgba(159, 143, 239, 0.15);
  text-align: right;
  position: sticky;
  top: 0;
  z-index: 2;
}
.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(159, 143, 239, 0.06);
  text-align: right;
}
/* Zebra striping */
.comparison-table tbody tr:nth-child(even) td {
  background: rgba(159, 143, 239, 0.03);
}
.comparison-table tbody tr:hover td {
  background: rgba(159, 143, 239, 0.06);
}
/* First column (criterion) in lavender */
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--lavender, #9f8fef);
}

/* Mobile table scroll */
@media (max-width: 768px) {
  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem;
  }
  .comparison-table {
    min-width: 480px;
  }
}

/* Verdict: hero section */
.comparison-verdict {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(159, 143, 239, 0.1), rgba(109, 213, 196, 0.08));
  border: 2px solid rgba(159, 143, 239, 0.2);
  border-radius: 16px;
  line-height: 1.7;
  position: relative;
}
.comparison-verdict h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--lavender, #9f8fef);
}
.comparison-verdict h2::before {
  content: "⚖️ ";
  font-size: 1.5rem;
}

.comparison-when {
  margin: 2rem 0;
  padding: 1.25rem;
  background: rgba(159, 143, 239, 0.06);
  border-radius: 12px;
  line-height: 1.7;
}
.comparison-when h2 { margin-bottom: .75rem; }

/* ── Resource List ─────────────── */
.resource-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: .75rem 0;
  background: var(--bg-deep, #0a0c1a);
}
[data-theme="day"] .resource-filter {
  background: var(--day-bg, #f8fafc);
}
.filter-btn {
  padding: .4rem .8rem;
  border: 1px solid rgba(159, 143, 239, 0.2);
  border-radius: 20px;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--lavender, #9f8fef); }
.filter-btn.active {
  background: var(--lavender, #9f8fef);
  color: #0a0c1a;
  border-color: var(--lavender, #9f8fef);
  font-weight: 600;
}

.resource-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1rem 0 2rem;
}
.resource-card {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255, 0.04);
  border: 1px solid rgba(255,255,255, 0.08);
  border-radius: 12px;
  transition: background .2s;
}
.resource-card:hover { background: rgba(159, 143, 239, 0.06); }
.resource-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lavender, #9f8fef);
  min-width: 2.5rem;
  text-align: center;
  opacity: .6;
}
.resource-body { flex: 1; }
.resource-body h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.resource-body p { font-size: .9rem; opacity: .8; margin-bottom: .5rem; line-height: 1.5; }
.resource-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .35rem; }
.difficulty-easy { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.difficulty-medium { background: rgba(234, 179, 8, 0.15); color: #eab308; }
.difficulty-hard { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.resource-link {
  font-size: .85rem;
  color: var(--lavender, #9f8fef);
  text-decoration: none;
}
.resource-link:hover { text-decoration: underline; }

.pro-tips {
  margin: 2rem 0;
  padding: 1.25rem;
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.15);
  border-radius: 12px;
}
.pro-tips h2 { margin-bottom: .75rem; }
.pro-tips li { margin-bottom: .5rem; line-height: 1.6; }

/* ── Quiz Hero CTA ─────────────── */
.quiz-hero-cta {
  max-width: 540px;
  margin: 2rem auto;
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(159, 143, 239, 0.1), rgba(232, 160, 191, 0.08));
  border: 2px solid rgba(159, 143, 239, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.quiz-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(159,143,239,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.quiz-hero-icon { font-size: 3rem; margin-bottom: 1rem; }
.quiz-hero-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.quiz-hero-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 1.75rem;
}
.quiz-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #9f8fef, #b8a8f8);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(159, 143, 239, 0.35);
}
.quiz-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(159, 143, 239, 0.45);
}
.quiz-hero-btn:active { transform: translateY(0); }
.quiz-hero-arrow { font-size: 1.3rem; }

/* ── Fullscreen Overlay ────────── */
body.quiz-overlay-active { overflow: hidden; }

.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.quiz-overlay.open { opacity: 1; }
.quiz-overlay.closing { opacity: 0; }

.quiz-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 230, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.quiz-overlay-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 1rem;
  padding: 2.5rem 2rem;
  background: #fff !important;
  border: 1px solid rgba(159, 143, 239, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  color: #1a1f3a !important;
}
/* Force ALL text inside overlay card to be dark — override night mode vars */
.quiz-overlay-card,
.quiz-overlay-card *:not(.quiz-option.selected):not(.quiz-hero-btn) {
  color: #1a1f3a !important;
}
.quiz-overlay-card .quiz-overlay-counter {
  color: #6b5ce7 !important;
}
.quiz-overlay-card .quiz-result li::before {
  color: #6b5ce7 !important;
}
.quiz-overlay-card .quiz-option.selected {
  color: #fff !important;
}
.quiz-overlay-card .quiz-hero-btn {
  color: #fff !important;
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-overlay.open .quiz-overlay-card { transform: translateY(0); }
.quiz-overlay.closing .quiz-overlay-card { transform: translateY(30px); }

.quiz-overlay-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: #1a1f3a;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}
.quiz-overlay-close:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

.quiz-overlay-progress {
  height: 6px;
  background: rgba(159, 143, 239, 0.12);
  border-radius: 99px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.quiz-overlay-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #9f8fef, #e8a0bf);
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(159, 143, 239, 0.3);
}
.quiz-overlay-counter {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b5ce7 !important;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

/* ── Quiz Questions (inside overlay) ── */
.quiz-question {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.quiz-question.exiting { opacity: 0; transform: translateX(-30px); }
.quiz-question.entering { opacity: 0; transform: translateX(30px); }
.quiz-question h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1.5;
  color: #1a1f3a !important;
}
.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; }
.quiz-option {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(159, 143, 239, 0.2);
  border-radius: 14px;
  background: rgba(159, 143, 239, 0.04);
  color: #1a1f3a !important;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  text-align: right;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 52px;
}
.quiz-option:hover {
  background: rgba(159, 143, 239, 0.08);
  border-color: var(--lavender, #9f8fef);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(159, 143, 239, 0.12);
}
.quiz-option:active { transform: translateY(0); box-shadow: none; }
.quiz-option.selected {
  background: linear-gradient(135deg, #9f8fef, #b8a8f8);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
  transform: scale(0.98);
  box-shadow: 0 2px 12px rgba(159, 143, 239, 0.25);
}

/* ── Quiz Result ───────────────── */
.quiz-result {
  text-align: center;
  padding: 2rem 1.5rem;
  animation: resultReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes resultReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.quiz-result .result-emoji { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.quiz-result h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.quiz-result h3 { margin: 1.25rem 0 .5rem; font-size: 1.05rem; }
.quiz-result ul { list-style: none; padding: 0; text-align: right; }
.quiz-result li { padding: .35rem 0; line-height: 1.5; }
.quiz-result li::before { content: "→ "; color: var(--lavender, #9f8fef); }

.quiz-result-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.suggested-guides {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: .5rem;
}
.suggested-guide-link {
  display: inline-block;
  padding: .4rem .8rem;
  background: rgba(159, 143, 239, 0.12);
  border-radius: 8px;
  color: var(--lavender, #9f8fef);
  text-decoration: none;
  font-size: .85rem;
}
.suggested-guide-link:hover { background: rgba(159, 143, 239, 0.2); }

.quiz-restart {
  padding: .65rem 1.5rem;
  border: 1px solid var(--lavender, #9f8fef);
  border-radius: 12px;
  background: transparent;
  color: var(--lavender, #9f8fef);
  font-family: inherit;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
}
.quiz-restart:hover { background: var(--lavender, #9f8fef); color: #0a0c1a; }

.quiz-back-btn {
  padding: .65rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #9f8fef, #b8a8f8);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(159, 143, 239, 0.25);
}
.quiz-back-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(159, 143, 239, 0.35);
}

/* ── Mobile: overlay card nearly full-screen ── */
@media (max-width: 600px) {
  .quiz-overlay-card {
    margin: 0.5rem;
    max-height: 96vh;
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }
  .quiz-hero-cta { padding: 2rem 1.5rem; }
  .quiz-question h3 { font-size: 1.2rem; }
}

/* ── Day Theme Overrides ───────── */
[data-theme="day"] .tool-index-card {
  background: rgba(255,255,255, 0.8);
  border-color: rgba(0,0,0, 0.1);
}
[data-theme="day"] .checklist-item,
[data-theme="day"] .resource-card {
  background: rgba(0,0,0, 0.03);
  border-color: rgba(0,0,0, 0.1);
}
[data-theme="day"] .comparison-card {
  background: rgba(255,255,255, 0.8);
  border-color: rgba(159, 143, 239, 0.15);
}
[data-theme="day"] .quiz-option {
  border-color: rgba(159, 143, 239, 0.2);
  background: rgba(255, 255, 255, 0.6);
}
[data-theme="day"] .quiz-option:hover {
  background: rgba(159, 143, 239, 0.06);
  border-color: var(--lavender, #9f8fef);
}
[data-theme="day"] .quiz-result {
  background: transparent;
}
[data-theme="day"] .comparison-verdict {
  background: linear-gradient(135deg, rgba(159, 143, 239, 0.06), rgba(109, 213, 196, 0.05));
  border-color: rgba(159, 143, 239, 0.15);
}
[data-theme="day"] .quiz-overlay-backdrop {
  background: rgba(255, 245, 230, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
[data-theme="day"] .quiz-overlay-card {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(159, 143, 239, 0.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}
[data-theme="day"] .quiz-overlay-close {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
}
[data-theme="day"] .quiz-overlay-close:hover {
  background: rgba(0, 0, 0, 0.08);
}
[data-theme="day"] .quiz-hero-cta {
  background: linear-gradient(135deg, rgba(159, 143, 239, 0.08), rgba(232, 160, 191, 0.06));
  border-color: rgba(159, 143, 239, 0.15);
}
[data-theme="day"] .quiz-overlay-progress {
  background: rgba(159, 143, 239, 0.1);
}
