/* Collapses the shop sidebar's flat 124+ item category list down to a manageable size -- see
   class-wla-category-sidebar.php. */

.wla-cat-hidden {
	display: none;
}

.wla-cat-toggle {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 8px 12px;
	background: transparent;
	border: 1px solid #ddd;
	border-radius: 5px; /* matches the sitewide button_radius */
	color: #446084; /* matches the sitewide primary color */
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.wla-cat-toggle:hover {
	background: #446084;
	color: #fff;
}
