#hotdiscount {
	padding-top: 15px;
	padding-bottom: 15px;
	color: #000;
	font-size: 12px;
	position: sticky;
	top: 0;
	z-index: 1200;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}
#hotdiscount .close {
	color: #ccccff;
	opacity: 0.7;
	padding-right: 30px;
	text-shadow: none;
}
#hotdiscount .promo {
	position: relative;
	display: inline;
	padding: 0 25px;
}
#hotdiscount .promo::after {
	content: '';
	opacity: 1;
	-webkit-animation-name: lightn;
	animation-name: lightn;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	background-image: linear-gradient(-134deg,#0083ff 0,#d582ff 100%);
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 60px;
	-webkit-filter: blur(60px);
	filter: blur(60px);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
