////
/// @group tools/unit-conversion
////

/// Convert pixels to rem
///
/// The $tbxforms-root-font-size (defined in settings/_typography-responsive.scss)
/// must be configured to match the font-size of your root (html) element
///
/// @param {Number} $value - Length in pixels
/// @return {Number} Length in rems
/// @access public

@function tbxforms-px-to-rem($value) {
  @if unitless($value) {
    $value: $value * 1px;
  }

  @return calc(calc($value / $tbxforms-root-font-size) * 1rem);
}
