/* -----------------------------------------------------------------------------
   Groups Directory Filters
   ----------------------------------------------------------------------------- */

.subnav-filters {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;

	&::before,
	&::after {
		content: none !important;
		display: none !important;
	}

	& .grid-filters {
		display: none;
	}

	& .subnav-search {
		flex: 0 1 var(--bond-bp-search-field-width);
		width: var(--bond-bp-search-field-width);
		max-width: var(--bond-bp-search-field-width);
		margin-right: auto !important;
	}

	& .component-filters {
		flex: 0 0 auto;
		margin: 0;

		& .last.filter {
			margin: 0;
		}

		& .select-wrap {
			position: relative;

			& select {
				appearance: none;
				-webkit-appearance: none;
				min-width: 170px;
				height: 40px;
				padding: 0 2rem 0 0.75rem;
				background-color: var(--color-bond-grey-light);
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23545246' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
				background-repeat: no-repeat;
				background-position: right 0.75rem center;
				background-size: 12px 8px;
				border: 1px solid var(--color-border);
				border-radius: 3px;
				color: var(--color-bond-black);
			}

			& .select-arrow {
				display: none;
			}
		}
	}
}

form.bp-dir-search-form button[type="submit"] {
	opacity: 1;
}

@media (max-width: 782px) {
	.subnav-filters .subnav-search {
		flex: 1 1 100%;
		width: 100%;
		max-width: none;
	}
}
