/* =============================================================================
Image Loupe JS v0.0.1 | MIT License | https://github.com/alecrios/image-loupe-js
============================================================================= */
/* Styles existants pour la loupe */
[data-loupe-wrapper] {
	position: relative;
}

[data-loupe-image] {
	display: block;
	cursor: none;
}

[data-loupe-enlarged-image] {
	width: auto;
	max-width: none;
}

[data-loupe] {
	position: absolute;
	overflow: hidden;
	width: 400px;
	height: 400px;
	border: 8px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	box-shadow: 0 0 24px 0 rgba(192, 192, 192, 0.5);
	opacity: 0;
	pointer-events: none;
}

/* Styles supplémentaires pour centrer l'image dans le conteneur */
.d-flex {
	display: flex !important;
}

.align-items-center {
	align-items: center !important;
}

.justify-content-center {
	justify-content: center !important;
}
