//
// Functions
// overrides or extension after the Bootstrap's defaults
//

// Bootstrap functions
@import 'bootstrap/scss/functions';

@function map-collect($maps...) {
  	$collection: ();

  	@each $map in $maps {
    	$collection: map-merge($collection, $map);
  	}
  	@return $collection;
}
