.cs-9b8b1311-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.cs-9b8b1311-image-container {
	position: relative;
	width: 100%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cs-9b8b1311-image {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	pointer-events: none;
}

.cs-9b8b1311-image.active {
	opacity: 1;
	pointer-events: auto;
}

.cs-9b8b1311-colors-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}

.cs-9b8b1311-colors {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

.cs-9b8b1311-color-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.cs-9b8b1311-color-dot {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
}

.cs-9b8b1311-color-name {
	font-size: 14px;
	text-align: center;
}