/**
 * Find a Meal - search bar and map listing styles.
 *
 * Was echoed inline into wp_head by the "FoodCycle - Find a Meal" snippet on
 * every single page of the site, cached or not. Now a real stylesheet with
 * filemtime cache-busting.
 */

#fc-loc-search-wrap {
	display: flex;
	flex-direction: row;
	gap: 16px;
	max-width: 500px;
}

#fc-loc-search-wrap input[type="text"] {
	width: 50%;
}

#fc-loc-search-wrap input[type="submit"] {
	width: 20%;
}

#fc-loc-search-wrap select {
	width: 35%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.jet-smart-filters-select .jet-select__control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	color: #000;
}

.jsf-location-distance__distance {
	color: #000;
	background-color: #fff;
}

/* Accessible label hiding for the search bar's screen-reader labels. */
#fc-loc-search-wrap .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 600px) {

	#fc-loc-search-wrap {
		flex-direction: column;
		gap: 8px;
	}

	#fc-loc-search-wrap input[type="text"],
	#fc-loc-search-wrap input[type="submit"],
	#fc-loc-search-wrap select {
		width: 100%;
	}
}
