// —————————————————————————————————————————————————————————————————
// trim white spaces
// —————————————————————————————————————————————————————————————————

@function str-remove-whitespace($str) {
  @while (str-index($str, ' ') != null) {
    $index: str-index($str, ' ');
    $str: "#{str-slice($str, 0, $index - 1)}#{str-slice($str, $index + 1)}";
  }
  @return $str;
}
