/* ------------------ regard help cards ------------------- */

.solution--regardhelp-card {
  cursor: pointer;
}

/* ------------------ problem stat ------------------- */

.problem--stat-parent .div-block-27 {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.problem--percent-number {
  font-variant-numeric: tabular-nums;
}

/* ------------------ problem dots grid ------------------- */

.problem-dots-animation-parent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.problem-dots-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.4375rem;
  width: 100%;
}

.problem-dot {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #f7f7f7;
}

.problem-dot-inner {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background-color: var(--_colors---primary-blue, #3800ff);
  opacity: 0;
  transform: scale(0);
  will-change: transform, opacity;
}

.problem-dot.is--active .problem-dot-inner {
  opacity: 1;
  transform: scale(1);
}
