.itemCategories {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
}
.itemCategories > .myCategory {
	width: 50%;
	padding: 10px 1.5%;
}
.itemCategories img {
	display: block;
	width: 100%;
}
.itemCategories a:hover img {
	opacity: 0.7;
}
.search-brandlist {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
	width: 97%;
	margin: 25px auto;
	border: 1px solid #999;
	padding: 10px 0;
}
.search-brandlist > .brandnames {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex: 1;
	flex: 1;
	padding: 5px 2vw;
}
.search-brandlist img {
	display: block;
	max-width: 100%;
}
.search-brandlist .search-brandlist-label {
	margin: 0;
	padding: 5px 2vw;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.75;
	text-align: center;
	color: #000;
}
.search-brandlist > a.search-brandlist-href {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.search-brandlist > a.search-brandlist-href:hover {
	background-color: rgba(255, 255, 255, 0.3);
}


@media only screen and (min-width: 600px) {
	.itemCategories > .myCategory {
		width: 33.3333333333%;
		padding-right: 10px;
		padding-left: 10px;
	}
	.itemCategories img {
		max-width: 100%;
	}
	.search-brandlist {
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-justify-content: center;
		justify-content: center;
		position: relative;
		width: calc(100% - 20px);
		margin-right: 10px;
		margin-left: 10px;
	}
	.search-brandlist > .brandnames {
		padding: 10px;
	}
	.search-brandlist .search-brandlist-label {
		padding: 10px;
	}

}