
.b1c-bg {
	z-index: 99997 !important;
}
.b1c-form {
	z-index: 99998 !important;
}
.discount {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 10%;
	margin-top: 30px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	will-change: transform;
	animation: Pulse 1.7s ease-in-out infinite;
	background-color: #de0000 !important;
}
@keyframes Pulse {
	0%, 100%{
		transform: translateX(-50%) scale(1);
	}
	50%{
		transform: translateX(-50%) scale(1.05);
	}
}