/*
 * Card grading report — hotspot dots and tooltips.
 */

/* The Red Dot */
.card-report-point {
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 10;
	border: 2px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: bold;
	font-family: sans-serif;
	line-height: 1;
}

.card-report-img-block.front .card-report-point {
	background: #f9a602;
	color: #000000;
}

.card-report-img-block.back .card-report-point {
	background: #7f1817;
	color: #ffffff;
}

.report-tooltip {
	visibility: hidden;
	position: absolute;
	bottom: 140%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: normal;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s, bottom 0.3s;
	pointer-events: none;
	z-index: 20;
}

.card-report-point:hover .report-tooltip {
	visibility: visible;
	opacity: 1;
	bottom: 160%;
}
