.categories
{
	display			: flex;
	flex-direction	: row;
	justify-content	: center;
	align-items		: flex-start;
	min-width		: calc(1000px - 30%);
	height			: auto;
}
.category-list
{
	flex			: 1 2;
	max-width		: calc(25% - 20px);
	margin-right	: 20px;
}
.category-list ul
{
	margin			: 0;
	padding			: 0;
	list-style		: none;
}
.category-list ul li
{
	margin			: 0;
	padding			: 0;
	border-bottom	: 1px solid #DDD;
}
.category-list ul li a
{
	display			: block;
	font-family		: "Open Sans", arial;
	color			: #666;
	display			: block;
	font-size		: .8em;
	text-decoration	: none;
	padding			: 10px;
	letter-spacing	: 0.05em;
}
.category-list ul li a span
{
	float			: right;
}

.category-list ul li ul
{
	margin			: 0;
	margin-left		: 20px;
	padding			: 0;
	border-bottom	: none;
	display			: none;
}
.category-list ul li:last-child
{
	border			: none;
}
.category-list ul li ul li,
.category-list ul li ul li:last-child

{
	border-top		: 1px solid #DDD;
	border-bottom	: none!important;
}

.product-list
{
	flex			: 2;
	max-width		: 75%;
	min-width		: 60px;
	display			: flex;
	flex-direction	: row;
	align-items		: flex-start;
	flex-wrap		: wrap;
}
.product
{
	flex			: 1;
	max-width		: calc(33% - 50px);
	min-width		: calc(33% - 50px);
	margin			: 15px;
	margin-bottom	: 30px;
	padding-bottom	: 20px;
	background-color: #FFF;
	box-shadow		: 0px 0px 20px rgba(0,0,0,.1);
	border			: 10px solid #FFF;
}
.product-media
{
	width			: 100%;
	padding-top		: calc(80% - 10px);
	overflow		: hidden;
	position		: relative;
	overflow		: hidden;
	background-repeat	: no-repeat;
	background-position	: center center;
	background-size		: contain;
}
.product-media a
{
	width			: 100%;
	height			: 100%;
	top				: 0;
	bottom			: 0;
	left			: 0;
	right			: 0;
	position		: absolute;
}

.product-code
{
	font-family		: "Open Sans", arial;
	color			: #FFF;
	display			: block;
	font-size		: .8em;
	letter-spacing	: 0.05em;
	text-decoration	: none;
	text-align		: center;
	padding			: 0px 10px;
	width			: 50%;
	margin			: 10px auto;
	line-height		: 35px;
	background-color: rgba(0,0,0,0.4);
	border-radius	: 25px;
	-moz-transition		: 0.3s;
	-o-transition		: 0.3s;
	-webkit-transition	: 0.3s;
	transition			: 0.3s;
}
.product-code:hover
{
	background-color: red;
}
.product-link
{
	font-family		: "Open Sans", arial;
	color			: #000;
	display			: block;
	font-size		: .8em;
	letter-spacing	: 0.05em;
	text-decoration	: none;
	text-align		: center;
	padding			: 0px 10px;
	height			: 35px;
}


.product-image
{
	flex			: 1;
	max-width		: 50%;
	padding-top		: 50%;
	overflow		: hidden;
	position		: relative;
	overflow		: hidden;
	background-color	: #FFF;
	background-repeat	: no-repeat;
	background-position	: center center;
	background-size		: contain;
}
.product-text
{
	flex			: 1;
	max-width		: calc(50% - 40px);
	padding			: 0px 20px;
}
