@mixin elevate($size) {
  @if $size == "0" {
    box-shadow: none;
  }
  @else {
    box-shadow: map_get($shadows, $size);
  }
}