@function merge($maps...) {
  $map: ();

  @each $var in $maps {
    $map: map-merge($map, $var);
  }

  @return $map;
}
