.styleDiscountBox em {
	font-size: 0.7em;
	line-height: 1.4em;
}
.styleDiscountBox > div {
	font-size: 1.2em;
}

body:not(.state-discount, .state-move) .styleDiscountBox {
	padding: 0; margin: 0;
}
.styleDiscountBox {
	opacity: 0; max-height: 0;
	transform: translateX(-20px);
	/* should do some tweeking for the below */
	transition:
	opacity var(--baseAnimationLength),
	max-height var(--baseAnimationLength) cubic-bezier(1,0,0,1),
	padding var(--baseAnimationLength),
	margin var(--baseAnimationLength),
	transform var(--baseAnimationLength);
	overflow: hidden;
}
body.state-discount .styleDiscountBox,
body.state-move .styleDiscountBox {
	opacity: 1; max-height: 50vh;
	transform: translateX(0px);
}

