/* Selector de punto focal */

.sika-focal-previews {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.sika-focal {
	position: relative;
	margin: 0;
	cursor: crosshair;
	line-height: 0;
	border-radius: 4px;
	overflow: hidden;
}

.sika-focal__image {
	display: block;
	width: 200px;
	height: 130px;
	object-fit: cover;
}

.sika-focal__marker {
	position: absolute;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba( 0, 0, 0, 0.65 );
	pointer-events: none;
	transition: left 0.1s ease, top 0.1s ease;
}

.sika-focal__hint {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.35rem 0.5rem;
	font-size: 0.7rem;
	line-height: 1.3;
	color: #fff;
	background: rgba( 0, 0, 0, 0.55 );
	opacity: 0;
	transition: opacity 0.15s ease;
}

.sika-focal:hover .sika-focal__hint,
.sika-focal:focus-within .sika-focal__hint {
	opacity: 1;
}
