/* CSS Document */
.loading {
	text-align: center;
	font-size: 18px;
	color: #0073e6;
	width: 100%;
}
.taxonomy-filter-container {
	max-width: 400px;
	margin: 20px auto 80px;
	text-align: center;
	font-family: Arial, sans-serif;
}

.taxonomy-filter-container label {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	color: #333;
}

.taxonomy-dropdown {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.taxonomy-dropdown:hover,
.taxonomy-dropdown:focus {
	border-color: #0073e6;
	box-shadow: 0 2px 8px rgba(0, 115, 230, 0.3);
}

.filter-button {
	margin-top: 10px;
	padding: 10px 20px;
	font-size: 16px;
	color: #fff;
	background-color: #0073e6;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.filter-button:hover {
	background-color: #005bb5;
}
@media (max-width: 640px) {
	.taxonomy-filter-container { margin-bottom: 110px }
}