<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * PRODUCT BOXES
 */

.products {
	position: relative;
	float: left;
	width: 100%;
} 

.products &gt; .row {
	padding: 0px 10px;
}

.products &gt; .row &gt; div {
	padding: 10px;
}

.products .product-box .campaign-sticker {
	top: 7px;
	right: 3px;
}

.products .product-box .image {
	display: block;
	padding: 10px;
	margin-bottom: 5px;
	text-align: center;
	box-shadow: inset #ccc 0px 0px 10px;
}

.products .product-box .image img:hover {
	opacity: 0.8;
}

.products .product-box h3.name {
	font: inherit;
	color: #000;
	font-weight: bold;
	margin: 0px 0px 5px 0px;
}

.products .product-box h3.name a {
	color: inherit;
}

.products .product-box .price-block .type-info {
	display: none;
}


.products .product-box .price-block .price-3 {
	display: block !important;
	color: #ccc !important;
	font-weight: normal !important;
}

.products .product-box .price-block.client .price-3 {
	color: red !important;
}

.products .product-box .price-block .price-3 .type-info {
	display: inline-block !important;
}

/* RESPONSIVE */

/* xxs, xs, sm */
@media (max-width: 992px) { 
	
	.products .product-box {
		margin-bottom: 20px;
		padding: 10px;
		padding-bottom: 30px;
		border-bottom: solid 1px #ddd;
	}
	.products .product-box h3 {
		margin: 0px;
		font-size: 18px;
		color: #000;
		word-break: break-word;
	}
	.products .product-box h3 a {
		color: inherit;
	}
	.products .product-box a.image {
		padding: 0px;
		box-shadow: none;
	}	
	.products .product-box .price {
		font-size: 19px;
		margin: 5px 0px;
	}		
	.products .product-box .buttons {
		margin-top: 15px;
	}
	
}

/* md, lg */
@media (min-width: 992px) {
	
	.products .product-box {
		margin-bottom: 20px;
	}
	
	.products .buttons {
		font-size: 0px;
	}
	
	.products .buttons .btn {
		font-size: 11px;
		width: 46%;
		margin: 5px 2%;
		padding: 4px 10px;
		font-weight: bold;
		box-shadow: #ddd 0px 2px 2px;
	}
}

 /* endof media */



	
/**
* OPTION FILTERS AND SORT AND SEARCH
*/

#product-filters {
	padding: 0px 4px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-bottom: 15px;
	
	border: solid 1px #e5e5e5;
	border-radius: 4px;
	
	background: #f5f5f5; /* Old browsers */
	background: -moz-linear-gradient(top,  #f5f5f5 0%, #eeeeee 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#eeeeee)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f5f5f5 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f5f5f5 0%,#eeeeee 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f5f5f5 0%,#eeeeee 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f5f5f5 0%,#eeeeee 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}

#product-filters select,
#product-filters input
{
	margin-bottom: 0px;
}

#product-filters input#search-keyword
{
	max-width: 160px;
}

#product-filters input#search-keyword.inactive
{
	color: #ccc;
	font-style: italic;
}

#product-filters #reset-keyword
{
	display: inline-block;
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -8px;
	width: 16px;
	height: 16px;	
	background: url(../../images/checked_0.png) center no-repeat;
	z-index: 10;
	cursor: pointer;
}

#product-filters #reset-keyword.inactive
{
	display: none;
}

#product-filters .filter-block
{
	position: relative;
	display: inline-block;
	padding: 10px 5px;
	vertical-align: middle;
}

#product-filters .filter-block select
{
	max-width: 200px;
	width: auto;
}</pre></body></html>