//
// Stripe the units from a value
// Usage example: strip-unit(25px) => 25
@function strip-unit($value) {
@return ($value / ($value * 0 + 1));
}