SASS is a language for writing better CSS stylesheets.

SASS Math

Don’t use left: (450px+140px);. Math needs spaces between the operator in order to work, or it’s interpreted as CSS (SASS is not that smart). Use left: 450px + 140px; instead.