@function box-shadow($box-shadow) {
  $value: map-get($steller-box-shadows, '#{$box-shadow}');

  @if $value == null {
    @error 'box-shadow(#{$box-shadow}) function returned null value. Make sure the value is in $steller-box-shadows.';
  }

  @return $value;
}
