@function get($map, $keys: null) {
  @if ($keys) {
    @each $key in $keys {
      $map: map-get($map, $key);
    }
  }

  @return $map;
}
