@function parseInt($n) {
    @return $n / ($n * 0 + 1);
}

@function rem-to-px($size, $base) {
    $value: parseInt($size) * $base; //15px is the base size specified
    @return round($value);
}