#breadrumb {
	margin-bottom: 0;
}
.box-content {
	padding-bottom: 40px;
}
.post-title {
	margin-bottom: 20px;
}
.post-title h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.3;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}
.post-title h1::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 60px;
    bottom: 0;
    border-bottom: 2px solid var(--c1);
	transform: translate(-50%);
	-webkit-transform: translate(-50%);
}
.products {
	overflow: hidden;
	background: white;
}
.group-item {
	border-bottom: 1px solid #d9d9d9;
}
.group-item::after {
	content: '';
	clear: both;
	display: table;
}
.products .product {
	width: 20%;
    z-index: 10;
	float: left;
	padding: 20px;
	position: relative;
	min-height: 370px;
    border: 1px solid transparent;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
}
.products .product:hover {
    z-index: 1;
    position: relative;
    border-color: #0c735c;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
}
.products .product .img {
	position: relative;
	padding-top: 100%;
	overflow: hidden;
	margin-bottom: 3px;
}
.products .product .img a {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.products .product .icons {
	margin-bottom: 10px;
    padding-bottom: 10px;
	border-bottom: 1px solid #e4e6ed;
}
.products .product .icon-brand {
	background: #dfe1e8;
	text-transform: uppercase;
	height: 20px;
	padding: 0 10px;
	font-size: 11px;
	line-height: 20px;
	max-width: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.products .product .icon-status {
	color: #666666;
	font-size: 13px;
	line-height: 20px;
}
.products .product .icon-status::before {
	margin-right: 5px;
	color: var(--c5);
}
.products .product .title {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	height: 40px;
	overflow: hidden;
}
.products .product .prices {
	display: flex;
}
.products .product .prices li {
	line-height: 1.4;
}
.products .product .prices .price-new {
	font-size: 16px;
	font-weight: 700;
	color: #fa0707;
}
.products .product .prices li:not(:last-child) {
	margin-right: 10px;
}
.products .product .prices .price-old {
	font-size: 13px;
	text-decoration: line-through;
	color: #666666;
}
.product .time {
	display: flex;
	margin-top: 15px;
}
.product .time li {
	width: 33.333333%;
	text-align: center;
}
.product .time li:not(.last) {
	margin-right: 10px;
}
.product .time strong {
	display: block;
	background: #e4e6ed;
	width: 65px;
	height: 65px;
	border-radius: 3px;
	font-size: 20px;
	overflow: hidden;
	padding: 20px 0;
}
.product strong.countdown {
	font-size: 16px;
	color: #ffffff;
	background: #fa0707;
	padding: 10px 0;
}
.product strong.countdown small {
	font-size: 12px;
	font-weight: 400;
	position: relative;
    top: -2px;
}
.product .time span {
    display: block;
	padding: 0 5px;
	font-size: 12px;
    margin-top: 10px;
    line-height: 16px;
}

/* 1024px */
@media screen and (max-width: 1024px)
{
	div.products {
		overflow: hidden;
	}
	div.group-item {
		border: none;
	}
	div.group-item::after {
		display: none;
	}
	div.products .product {
		width: 25%;
		border-bottom: 1px solid #ddd ! important;
	}
	div.product.hover>.inner {
		padding: 15px;
	}
}

/* 768px */
@media screen and (max-width: 768px)
{
	div.products .product {
		width: 33.3333333%;
	}
}

/* 767px */
@media screen and (max-width: 767px)
{
	#content {
		margin-top: 20px;
	}
	div.products {
		border-top: 1px solid #ddd ! important;
	}
	div.products .product {
		width: 100%;
		border-left: 1px solid #ddd ! important;
		border-right: 1px solid #ddd ! important;
	}
	.product .time strong {
		width: 100%;
	}
	.product .time small {
		display: block;
		margin-top: 5px;
	}
	.products .product .title {
		height: initial;
	}
}