@use 'sass:math';

@function px2rem($pxValue: 16px) {

	$out: math.div($pxValue, 16px) * 1rem;

	@return $out;

}