// Clearfix
@mixin clearfix() {
	@include before-after {
    content: " ";
    display: table;
	}
  @include after {
    clear: both;
  }
}