@import url(./shop/filters.css);
@import url(./shop/products.grid.css);
@import url(./shop/view.product.css);
@import url(./shop/categories.css);
@import url(./shop/comparison.css);

/* -----------------------------------------------------------------------------------
 * GENERAL STYLES
 */
 
.category_content {
	margin: 10px;
}

.no_results {
	margin: 10px;
}

.product-box .price-block {
	/* font-family: 'Orbitron', sans-serif; */
    
    color: #000;
}

.product-box .price-block .old-price {
	text-decoration: line-through;
	color: #000;
}

.product-box .price-block .new-price {
	color: #FE8929 !important;
}

.product-box .price-block .client-price-notice {
	display: block;
	color: #ccc;
}

.product-box .price-block .type-info {
	/* display: none; */
    font-weight: normal;
}

.product-box .price-block .client-price-notice .type-info {
	display: inline-block !important;
	font-weight: normal;
	font-size: 0.9em;
}


/* -----------------------------------------------------------------------------------
* CAMPAIGN DISCOUNT STICKER
*/

/* discount sticker container */
.product-box .campaign-sticker {
	position: absolute;
	top: -4px;
	right: -7px;
	display: block;
	z-index: 1000;
	width: 115px;
	height: 55px;
	text-align: right;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 3px 6px 0px 0px;
}

/* discount sticker main-background */
.product-box .campaign-sticker:before {	
	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
	content: '';
	z-index: 10;	
	width: 0;
	height: 0;
	border-top-width: 55px;
	border-top-style: solid;
	border-left: 115px solid transparent;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/* discount sticker background-shadow */
.product-box .campaign-sticker:after {
	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
	content: '';
	z-index: 5;
	height: inherit;
	width: inherit;
	border-width: 4px 7px 0px 0px;
	border-style: solid;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.product-box .campaign-sticker i {
	position: relative;
	display: block;
	z-index: 15;
	font-size: 10px;
	line-height: 1.3em;
	font-style: normal;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.product-box .campaign-sticker strong {
	position: relative;
	z-index: 20;
	display: block;
	font-size: 15px;
	line-height: 1.3em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/* discount sticker container */
.product-box .campaign-sticker { 
	color: #fff;
}

/* discount sticker main-background */
.product-box .campaign-sticker:before {	
	border-top-color: #44ABFA;
}

/* discount sticker background-shadow */
.product-box .campaign-sticker:after {
	border-color: #444;	
}