// Timing Options
// -------------------------------------------------------------------
$transition-duration: 0.3s;

// Easing Options
//-------------------------------------------------------------------
$transition-snap: cubic-bezier(0.3, 0.9, 0.4, 0.98);
$transition-drift: cubic-bezier(0.05, 0.31, 0.7, 1);
$transition-shine: cubic-bezier(0.96, 0.43, 0.55, 0.8);

// Transition Speeds
//-------------------------------------------------------------------
$speeds: (
  'slow': speed(1.5) $transition-drift,
  'fast': speed(1) $transition-snap,
);

// Transition Properties
//-------------------------------------------------------------------
$transition-properties: (
  'all': 'all',
  'default':
    'background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, height, width, top, left, right, bottom, max-height, max-width, min-height, min-width',
  'colors': 'background-color, border-color, color, fill, stroke',
  'opacity': 'opacity',
  'shadow': 'box-shadow',
  'transform': 'transform',
  'max': 'max-height, max-width',
  'min': 'max-height, max-width',
  'width': 'width, min-width, max-width',
  'height': 'height, min-height, max-height',
  'padding': 'padding',
  'margin': 'margin',
);
