@mixin hideText () {
  overflow: hidden;
  text-indent: 1001%;
  white-space: nowrap;
}

// Deprecated
@mixin hide-text() {
	@debug 'hide-text() is deprecated since the removal of Bourbon.io, use hideText() instead.';
	@include hideText();
}