/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.web2ink_swatch-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.web2ink_swatch-swatches.web2inkColorSwatch-override {
	justify-content: center;
	margin-top: 20px;
}

.web2ink_swatch-swatch {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid #ddd;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s ease;
}

.web2ink_swatch-swatch:hover {
	border-color: #333;
	transform: scale(1.1);
}

.web2ink_swatch-swatch.active {
	border-color: #0073aa;
	border-width: 3px;
}
