<div className="d-flex align-items-start flex-column h-100">
{!isBlue && !isRed && !isGreen ? (
<h5 className="listing-price">
{accounting.formatMoney(price, 'RM ', 0)}
{isFeaturedOrExclusive &&
(isFeatured ? (
<span className="featured">{FeaturedText}</span>
) : (
<span className="exclusive">LC Only</span>
))}
</h5>
) : (
<h5 className="listing-price">
From {accounting.formatMoney(price, 'RM ', 0)}
{isFeaturedOrExclusive &&
(isFeatured ? (
<span className="featured">{FeaturedText}</span>
) : (
<span className="exclusive">LC Only</span>
))}
</h5>
)}