// Gets a value from a map.
@function map-deep-get($map, $keys...) {
  @each $key in $keys {
    $map: map-get($map, $key);
  }
  @return $map;
}

@function container-max-width($key) {
  @return map-get($container-sizes, $key);
}
