/*
 * Remove unit from value
 */
@function strip-unit($value) {
	@return $value / ($value * 0 + 1);
}
