//
// Grid system
// --------------------------------------------------


// Container widths
//
// Set the container width, and override it for fixed navbars in media queries.

.container {
  .container-fixed();
}
.minSize-479 .container {
	  width: @container-sm;
}
.minSize-767 .container {
	  width: @container-md;
}
.minSize-991 .container {
	  width: @container-lg;
}

// Fluid container
//
// Utilizes the mixin meant for fixed width containers, but without any defined
// width for fluid, full width layouts.

.container-fluid {
  .container-fixed();
}


// Row
//
// Rows contain and clear the floats of your columns.

.row {
  .make-row();
}


// Columns
//
// Common styles for small and large grid columns

.make-grid-columns();


// Extra small grid
//
// Columns, offsets, pushes, and pulls for extra small devices like
// smartphones.

.make-grid(xs,"");


// Small grid
//
// Columns, offsets, pushes, and pulls for the small device range, from phones
// to tablets.

.minSize-479 {
  .make-grid(sm,".minSize-479");
}


// Medium grid
//
// Columns, offsets, pushes, and pulls for the desktop device range.

.minSize-767 {
  .make-grid(md,".minSize-767");
}


// Large grid
//
// Columns, offsets, pushes, and pulls for the large desktop device range.

.minSize-991 {
  .make-grid(lg,".minSize-991");
}
