.tooltip ul {
	list-style-type: none; /* Removes the default bullet points */
	padding-left: 0px; /* Reduces the indent */
	margin: 0;
}

.tooltip li {
	position: relative;
	padding-left: calc(var(--px) * 5);
	padding-right: calc(var(--px) * 5);
	/* Indentation for nested items */
}

.tooltipEffects_bulletPoints li::before {
	content: "▸"; /* Default bullet point for root items */
	position: absolute;
	left: calc(var(--px) * -0.25);
	top: 0;
	color: rgba(255, 255, 255, 0.1); /* Color of the bullet point */
}

/* for nested lists */

.tooltipEffects_bulletPoints li ul li::before {
	content: "";
	position: absolute;
	left: calc(var(--px) * 1);
	top: 0;
}
