/**
 * Styles for the numeric "dots" facet (X and up)
 */

.wpgb-dots-facet .wpgb-dots {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.wpgb-dots-facet .wpgb-dots-control {
	display: inline-flex;
	align-items: center;
}

.wpgb-dots-facet .wpgb-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 3px;
	border-radius: 50%;
	background: #ccc;
}

.wpgb-dots-facet .wpgb-dot:first-child {
	margin-left: 0;
}

.wpgb-dots-facet .wpgb-dot-filled {
	background: #333;
}

.wpgb-dots-facet .wpgb-dots[aria-pressed="true"] .wpgb-dot-filled {
	background: #2271b1;
}

.wpgb-dots-facet .wpgb-dots-label {
	margin-left: 6px;
}

/* Reset ("Any") button — keep the arrow icon small and inline */
.wpgb-dots-facet .wpgb-dots-reset .wpgb-dots-control {
	width: 12px;
	height: 12px;
}

.wpgb-dots-facet .wpgb-dots-reset .wpgb-dots-control svg {
	width: 12px;
	height: 12px;
	display: block;
}