//
// Utility classes
// --------------------------------------------------


// Floats
// -------------------------

.#{$class-prefix}-clearfix {
  @include clearfix;
}
.#{$class-prefix}-center-block {
  @include center-block;
}
.#{$class-prefix}-pull-right {
  float: right !important;
}
.#{$class-prefix}-pull-left {
  float: left !important;
}


// Toggling content
// -------------------------

// Note: Deprecated .hide in favor of .#{$class-prefix}-hidden or .sr-only (as appropriate) in v3.0.1
.#{$class-prefix}-hide {
  display: none !important;
}
.#{$class-prefix}-show {
  display: block !important;
}
.#{$class-prefix}-invisible {
  visibility: hidden;
}
.#{$class-prefix}-text-hide {
  @include text-hide;
}


// Hide from screenreaders and browsers
//
// Credit: HTML5 Boilerplate

.#{$class-prefix}-hidden {
  display: none !important;
}


// For Affix plugin
// -------------------------

.#{$class-prefix}-affix {
  position: fixed;
}
