/* Position */
 
.stickers {
	position: absolute;
	top: 10px;
	z-index: 100;
}
 
.sticker_left {
	left: 15px;	
}
.sticker_right {
	right: 10px;
}

/* Circle */

.sticker_circle .new_sticker, .sticker_circle .sale_sticker, .sticker_circle .featured_sticker, .sticker_circle .bestseller_sticker {
	background: url('../image/product_sticker.png') no-repeat;      
	width: 70px;
	height: 70px;
	color: #fff;
	text-align: center;
	font-weight:bold;
	transform: rotate(-27deg);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	text-transform: uppercase;
	margin-bottom: 1px;
	display:block;
}
.sticker_circle .sale_sticker {
	background-position: 0px -70px;
}
.sticker_circle .new_sticker {
	background-position: 0px 0px;
}
.sticker_circle .featured_sticker {
	background-position: 0px -140px;
}
.sticker_circle .bestseller_sticker {
	background-position: 0px -210px;
}
.sticker_circle .sale_sticker p{
	padding-top: 24px;
	font-size: 20px;		
}
.sticker_circle .new_sticker p, .sticker_circle .bestseller_sticker p{
	padding-top: 25px;
	font-size: 11px;		
}
.sticker_circle .featured_sticker p{
	padding-top: 19px;
	font-size: 11px;
	line-height: 14px;
}

/* Rectangle */

.sticker_rectangle .new_sticker, .sticker_rectangle .sale_sticker, .sticker_rectangle .featured_sticker, .sticker_rectangle .bestseller_sticker {	 
	width: 63px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	text-align: center;	 
	display:block;
	font-size: 12px;
	border-radius: 2px;
	font-weight: 500;
	font-size: 17px;
	color: #FFFFFF;
}
.sticker_rectangle .new_sticker{
	background: #417ff6;
	 
}
.sticker_rectangle .sale_sticker{
	background: #FF005C;
 
}
.sticker_rectangle .featured_sticker{
	background: #9fcc42;
	 
}
.sticker_rectangle .bestseller_sticker{
	background: #f99244;
 
}