/* WCUF Product Image Live Preview overlay */

.wcufelp-overlay {
	position: absolute;
	inset: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	overflow: hidden;
}

.wcufelp-overlay-img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	display: block;
	/* object-fit is set inline from config (contain | cover) */
}

.wcufelp-overlay-reset {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 30px;
	height: 30px;
	line-height: 28px;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 50%;
	background: rgba( 0, 0, 0, 0.6 );
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	z-index: 51;
}

.wcufelp-overlay-reset:hover {
	background: rgba( 0, 0, 0, 0.85 );
}
