.brxe-filter-checkbox li:has(> .flomax-filter-term-link) {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.brxe-filter-checkbox li:has(> .flomax-filter-term-link) > label {
	flex: 0 0 auto;
}

.flomax-filter-term-link {
font-weight:normal;
	display: inline-block;
	flex: 1 1 auto;
	min-width: 0;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.flomax-filter-term-link:hover {
	color: #0068ad;
	text-decoration: underline;
}

.flomax-filter-term-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.flomax-filter-term-link.is-current {
	color: #0068ad;
	font-weight: 700;
}

/* Product archive intro state. Add these classes to the two Bricks blocks. */
.flomax-filtered-product-intro {
	display: none;
}

body.flomax-product-filters-active .flomax-default-product-intro {
	display: none!important;
}

body.flomax-product-filters-active .flomax-filtered-product-intro {
	display: block;
}

.flomax-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	padding: 1.5rem 1.125rem;
	background: #fff;
}

.flomax-active-filters__prefix {
	margin-right: 0.15rem;
	color: #111;
	font-weight: 700;
	font-size: var(--text-m);
}

.flomax-active-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.flomax-active-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 2.5rem;
	padding: 0.45rem 1rem;
	border: 1px solid #9b9b9b;
	border-radius: 999px;
	background: #fff;
	color: #4a4a4a;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.flomax-active-filter-chip:hover,
.flomax-active-filter-chip:focus-visible {
	border-color: #0068ad;
	background: #f4f8fb;
	color: #333;
	text-decoration: none;
}

.flomax-active-filter-chip:focus-visible,
.flomax-active-filters__clear:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.flomax-active-filter-chip__remove {
	color: #0878ca;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1;
}

.flomax-active-filters__clear {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.flomax-active-filters {
		align-items: flex-start;
		padding: 1.125rem;
	}

	.flomax-active-filters__prefix {
		width: 100%;
	}
}

/* Standalone Brand product filter shortcode. */
.flomax-brand-products {
	position: relative;
}

.flomax-brand-products.is-loading {
	pointer-events: none;
}

.flomax-brand-products.is-loading::after {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgb(255 255 255 / 65%);
	content: "";
}

.flomax-brand-products.is-loading::before {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 3;
	width: 1.5rem;
	height: 1.5rem;
	border: 3px solid #0054a6;
	border-right-color: transparent;
	border-radius: 50%;
	content: "";
	animation: flomax-brand-products-spin 0.7s linear infinite;
}

@keyframes flomax-brand-products-spin {
	to {
		transform: rotate(360deg);
	}
}

.flomax-brand-products__layout {
	display: grid;
	grid-template-columns: minmax(13rem, 16rem) minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 3.5rem);
	align-items: start;
}

.flomax-brand-products__filters {
	align-self: start;
	padding: 1.5rem;
	background: #dee9f1;
}

.flomax-brand-products__filters h3 {
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid currentColor;
}

.flomax-brand-products__filter-group {
	margin: 0;
	padding: 0.75rem 0;
	border: 0;
	border-bottom: 1px solid #9b9b9b;
}

.flomax-brand-products__filter-group legend {
	padding: 0;
	font-weight: 700;
}

.flomax-brand-products__option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0.1em 0 0;
  accent-color: #000;
}

.flomax-brand-products__option {
	display: flex;
	/* align-items: center; */
	gap: 0.45rem;
	margin-top: 0.5rem;
	padding-left: calc(var(--flomax-filter-depth, 0) * 0.75rem);
	color: #000;
	line-height: 1.35;
}

.flomax-brand-products__option span {
	color: #000;
}

.flomax-brand-products__option[data-depth]:not([data-depth="0"]) > span::before {
	content: "— ";
}

.flomax-brand-products__actions {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.flomax-brand-products__actions button,
.flomax-brand-products__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.5rem 1rem;
	border: 2px solid #0054a6;
	background: #0054a6;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.flomax-brand-products__actions a {
	background: transparent;
	color: #0054a6;
}

.flomax-brand-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.flomax-brand-products__card {
	min-width: 0;
}

.flomax-brand-products__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	border: 1px solid #999;
}

.flomax-brand-products__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
}

.flomax-brand-products__card h3 {
	margin: 0.75rem 0 0.4rem;
	font-size: 1.25rem;
	line-height: 1.2;
}

.flomax-brand-products__card h3 a,
.flomax-brand-products__more {
	color: inherit;
	text-decoration: none;
}

.flomax-brand-products__more {
	color: #0054a6;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
}

.flomax-brand-products__empty {
	grid-column: 1 / -1;
}

.flomax-brand-products__pagination {
	grid-column: 2;
}

.flomax-brand-products__pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.flomax-brand-products__pagination a,
.flomax-brand-products__pagination span {
	display: inline-grid;
	place-items: center;
	min-width: 2.25rem;
	min-height: 2.25rem;
	border: 1px solid #0054a6;
	color: #0054a6;
	font-weight: 700;
	text-decoration: none;
}

.flomax-brand-products__pagination .current {
	background: #0054a6;
	color: #fff;
}

@media (max-width: 767px) {
	.flomax-brand-products__layout {
		grid-template-columns: 1fr;
	}

	.flomax-brand-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.flomax-brand-products__pagination {
		grid-column: 1;
	}
}

@media (max-width: 479px) {
	.flomax-brand-products__grid {
		grid-template-columns: 1fr;
	}
}