.sales-dicount {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999999999;
	width: 201px;
	height: 220px;
	background: url(../../images/sales/sales_discount_bg.png) no-repeat;
}

.sales-close {
	display: block;
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 9999;
	width: 28px;
	height: 28px;
	background: url(../../images/sales/sales_dicount_close.png) no-repeat;
	box-shadow: 0 0 3px rgba(11,3,6,0.38);
	border-radius: 50%;
	-webkit-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}

.sales-close:hover {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.sales-button {
	position: absolute;
	right: 10px;
	bottom: 4px;
	display: block;
	background: url(../../images/sales/sales_discount_button.png) no-repeat;
	width: 160px;
	height: 33px;
	border-radius: 25px;
	-webkit-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}


@media (max-width:768px) {
	.sales-dicount { display: none;}
}



