// grid

$width: 96%;
$gutter: 4%;
$breakpoint-small: 782px; // 540px
$breakpoint-med: 60em; // 720px
$breakpoint-large: 68em; // 960px

@mixin breakpoint($point) {
  @if $point == desktop {
    @media (min-width: $breakpoint-large) { @content ; }
  }
  @else if $point == mobile {
    @media (max-width: $breakpoint-small)  { @content ; }

  }
}

.mobile-collapsed {
  display: inherit;
}
.mobile-only {
  display: none !important;
}

@include breakpoint(mobile) {
  .mobile-only {
    display: inherit !important;
  }
  .mobile-collapsed {
    display: none !important;
  }
}

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;

  @media only screen and (min-width: $breakpoint-small) {
    width: 80%;
  }

  @media only screen and (min-width: $breakpoint-large) {
    width: 75%;
    max-width: 60rem;
  }
}

.row {
  .columns.columns-no-right {
    margin-right: 0;
    @include breakpoint(mobile) {
      margin-right: 2%;
    }
    &.col-5 {
      width: 41.66667%;
      @include breakpoint(mobile) {
        width: 96%;
      }
    }
  }
  .columns.columns-no-left {
    margin-left: 0;
    @include breakpoint(mobile) {
      margin-left: 2%;
    }
  }
}

.row {
  position: relative;
  width: 104%;
  margin: 0 -2%;

  &--condensed {
    max-width: 32rem;
    margin: 0 auto;

    @include breakpoint(mobile) {
      margin: 0 -2%;
    }
  }

  &--small {
    max-width: 24rem;
    margin: 0 auto;

    @include breakpoint(mobile) {
      margin: 0 -2%;
    }
  }
}

.row [class^="col"] {
  float: left;
  margin: 0 2%;
  min-height: 0.125rem;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: $width;
}

.col-1-sm { width:($width / 12) - ($gutter * 11 / 12); }
.col-2-sm { width: ($width / 6) - ($gutter * 10 / 12); }
.col-3-sm { width: ($width / 4) - ($gutter * 9 / 12); }
.col-4-sm { width: ($width / 3) - ($gutter * 8 / 12); }
.col-5-sm { width: ($width / (12 / 5)) - ($gutter * 7 / 12); }
.col-6-sm { width: ($width / 2) - ($gutter * 6 / 12); }
.col-7-sm { width: ($width / (12 / 7)) - ($gutter * 5 / 12); }
.col-8-sm { width: ($width / (12 / 8)) - ($gutter * 4 / 12); }
.col-9-sm { width: ($width / (12 / 9)) - ($gutter * 3 / 12); }
.col-10-sm { width: ($width / (12 / 10)) - ($gutter * 2 / 12); }
.col-11-sm { width: ($width / (12 / 11)) - ($gutter * 1 / 12); }
.col-12-sm { width: $width; }

@media only screen and (min-width: $breakpoint-med) {
  .col-1 { width:($width / 12) - ($gutter * 11 / 12); }
  .col-2 { width: ($width / 6) - ($gutter * 10 / 12); }
  .col-3 { width: ($width / 4) - ($gutter * 9 / 12); }
  .col-4 { width: ($width / 3) - ($gutter * 8 / 12); }
  .col-5 { width: ($width / (12 / 5)) - ($gutter * 7 / 12); }
  .col-6 { width: ($width / 2) - ($gutter * 6 / 12); }
  .col-7 { width: ($width / (12 / 7)) - ($gutter * 5 / 12); }
  .col-8 { width: ($width / (12 / 8)) - ($gutter * 4 / 12); }
  .col-9 { width: ($width / (12 / 9)) - ($gutter * 3 / 12); }
  .col-10 { width: ($width / (12 / 10)) - ($gutter * 2 / 12); }
  .col-11 { width: ($width / (12 / 11)) - ($gutter * 1 / 12); }
  .col-12 { width: $width; }

  .hidden-sm {
    display: block;
  }
}
