#sale_prediction {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	background: var(--secondary_color);
	padding: 16px 30px 16px 110px;
	min-height: 120px;
	margin-bottom: 20px;
}
#sale_prediction:before {
	content: 'получи скидку';
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 16px;
	display: block;
	margin-bottom: 10px;

}
#sale_prediction:after {
	content: '';
	position: absolute;
	width: 78px;
	height: 78px;
	background: url('./images/discount.svg') no-repeat center;
	top: calc(50% - 39px);
	left: 16px;
}
#sale_prediction .catalog-element-popup-info a {
	font-size: 14px;
	line-height: 18px;
	text-decoration: underline;
	transition: .3s ease;
}
#sale_prediction .catalog-element-popup-info a:hover {
	opacity: .6;
	text-decoration: none;
}
.catalog-element-popup-info,
.catalog-element-popup-element {
	line-height: 18px;
	font-size: 14px;
	font-weight: 400;
}
.catalog-element-popup-element {
	white-space: nowrap;
}