[data-jno-selection-value] {
	position: relative;
	/* Platz für den Auswahl-Indikator rechts freihalten, damit er den
	   Text nicht überlappt (v.a. bei schmalen Listenzeilen). */
	padding-right: 40px;
}

.jno-selection-continue {
	opacity: 0.5;
	pointer-events: none;
	cursor: not-allowed;
	transition: opacity 0.15s ease-in-out;
}

.jno-selection-continue--enabled {
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
}

/* Leerer Kreis als permanente Auswahl-Affordanz - zeigt auch im
   unausgewählten Zustand, dass ein Element klickbar/auswählbar ist. */
[data-jno-selection-value]::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid #CBD5E1;
	background: #fff;
	box-sizing: border-box;
	z-index: 1;
	transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.jno-selection-card--active::after {
	content: "\2713";
	border-color: #2ecc71;
	background: #2ecc71;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 1;
}
