.category-cover {
	height: 180px;
}
.category-cover img {
	display: block;
	width: 100%; height: 100%;
	object-fit: cover;
}
.categories-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 20px 0
}
.category-selector {
	background-color: var(--c-brand);
	width: 100px;
	text-align: center;
	padding: 10px 0;
}
.category-selector:not(:last-child) {
	margin-right: 10px;
}
.category-selector.selected{
	background-color: black;
	color: var(--c-brand);
}
.subcategories {
	margin-bottom: 32px;
}
.subcategories li {
	color: var(--c-brand);
	text-align: center;
	padding: 15px 0;
	font-size: 12px;
	font-weight: var(--f-w-bold);
}
.subcategories li:not(:last-child) {
	margin-right: 30px;
}
.subcategories li.selected{
	color: inherit;
}
.filters-container img {
	width: 26px;
	margin: 6px 0;
}
#filter-button {
	margin-left: auto;
}
.breadcrumb {
	color: var(--c-brand);
	padding: 10px 0;
}
.product-grid {
	margin: 32px 0;
}
.search-bar {
	display: flex;
	align-items: stretch;
}
.search-bar input {
	height: auto;
	border-radius: 0;
	border: 1px solid var(--c-brand);
	width: 100%;
}
.search-bar #search {
	background-color: var(--c-brand);
	border: 0;
	padding: 6px 12px;
	margin-right: 10px;
}
.search-bar #search img {
	width: 30px;
}
@media (max-width: 916px) {
	.subcategories {
		position: fixed;
		top: 0;
		right: 100%;
		width: 400px;
		height: 100%;
		color: black;
		/* background-color: var(--c-brand); */
		background-color: #FFF;
		border-width: 2px;
		/* opacity: 0.95; */
		z-index: 1500;
		-webkit-transition: -webkit-transform 0.3s;
		-webkit-transition: transform 0.3s;
		transition: transform 0.3s;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 16px 32px;
		border: none;
		visibility: hidden;
	}
	.subcategories li:not(:last-child) {
		margin-right: 0;
	}
}
@media (min-width: 917px) {
	.filters-container {
		display: none;
	}
}
@media (max-width: 576px) {
	.subcategories {
		width: 85%;
	}
}
.slide-right {
	-webkit-transform: translate(100%);
	transform: translate(100%);
}