/*********************************************************/
/******************** GRID *******************************/
/*********************************************************/

.Products.OneRow{
	float: left; 
	width: 100%;
	height: 376px;
	overflow: hidden;
}

.Product-Item{
	width: 100%;
	margin: 15px 0;
	float: left;
	position: relative;
}

/*** Image ***/

.Product-Item .Image{
	float: left;
	width: 100%;
	position: relative;
	height: 221px;
}

.Product-Item .Image a{
	float: left;
	height: 221px;
	width: 100%;
}

.Product-Item .Image img{
	float: left;
	max-width: 100%;
}

.Product-Item .Image img:hover{
	opacity: 0.9;
}

.Product-Item .Image .Quick-View{
	position: absolute;
	bottom: 10px;
	right: 10px;
	margin: 0;
	height: auto;
	width: 120px;
	text-align: center;
}

@media only screen and (max-width: 979px) {
	.Product-Item .Image .Quick-View{
		display: none !important;
	}
}

/*** Description ***/

.Product-Item .Description{
	float: left;
	width: 100%;
	height: 98px;
	background-color: #d3deeb;
	padding: 12px 12px 6px;
}

.Product-Item .Description h3{
	line-height: 16px;
	font-family: "Nunito";
	font-size: 0.7em;
	text-transform: uppercase;
	margin: 0;
}

.Product-Item .Description h3 a{
	color: #252161;
}

.Product-Item .Description p{
	display: none;
}

/*** Prices ***/

.Product-Item .Prices{
	float: left;
	width: 100%;
	height: 28px;
	background-color: #d3deeb;
	padding: 0 12px 12px;
}

aside .Product-Item .Prices{
	padding-bottom: 6px;
	height: auto;
}

.Product-Item .Prices .Was{
	float: left;
	font-size: 0.7em;
	color: #252161;
	font-family: "Nunito";
	margin-right: 10px;
	position: relative;
	top: 4px;
}

.Product-Item .Prices .Price{
	float: left; 
	font-weight: bold;
	font-size: 1.0em;
	color: #252161;
	line-height: 16px;
	text-align: right;
	font-family: "Nunito";
}

.Product-Item .Prices .Price.Sale{
	color: #ee371f;
}

/*** Buttons ***/

.Product-Item .Buttons{
	float: left;
	width: 100%;
	display: block;
	background-color: #d3deeb;
	padding: 0 12px 6px;
}

.Product-Item .Buttons .Buy{
	display: none;
}

aside .Product-Item .Buttons .Buy{
	display: block;
}

.Product-Item .Buttons .Buy,
.Product-Item .Buttons .Compare{
	color: #ec7516;
	font-family: "Nunito";
	font-size: 0.7em;
	padding-left: 12px;
	text-transform: uppercase;
	background-image: url('../images/elem/arrow-right-orange.png');
	background-position: left 2px;
	background-repeat: no-repeat;
	margin: 0 0 2px;
}

.Product-Item .Buttons .Buy:hover{
	text-decoration: underline;
}

.Product-Item .Buttons .Compare{
	float: left;
	width: 100%;
	line-height: 14px; 
}