/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/


/* TYPOGRAPHY */


.sjev_font-light {
  font-weight: 300;
}

.sjev_font-regular {
  font-weight: 400;
}

.sjev_font-heavy {
  font-weight: 700;
}

/* POSITIONING */

.sjev_left {
  text-align: left;
}

.sjev_right {
  text-align: right;
}

.sjev_center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sjev_justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.sjev_container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.sjev_row {
  position: relative;
  width: 100%;
  clear: both;
}

.sjev_row [class*="sjev_col-"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
  position: relative;
  
}

.sjev_col-1,
.sjev_col-2,
.sjev_col-3,
.sjev_col-4,
.sjev_col-5,
.sjev_col-6,
.sjev_col-7,
.sjev_col-8,
.sjev_col-9,
.sjev_col-10,
.sjev_col-11,
.sjev_col-12 {
  width: 96%;
}

.sjev_col-1-sm {
  width: 4.33%;
}

.sjev_col-2-sm {
  width: 12.66%;
}

.sjev_col-3-sm {
  width: 21%;
}

.sjev_col-4-sm {
  width: 29.33%;
}

.sjev_col-5-sm {
  width: 37.66%;
}

.sjev_col-6-sm {
  width: 46%;
}

.sjev_col-7-sm {
  width: 54.33%;
}

.sjev_col-8-sm {
  width: 62.66%;
}

.sjev_col-9-sm {
  width: 71%;
}

.sjev_col-10-sm {
  width: 79.33%;
}

.sjev_col-11-sm {
  width: 87.66%;
}

.sjev_col-12-sm {
  width: 96%;
}

.sjev_row::after {
	content: "";
	display: table;
	clear: both;
}

.sjev_hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .sjev_container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  .sjev_col-1 {
    width: 4.33%;
  }

  .sjev_col-2 {
    width: 12.66%;
  }

  .sjev_col-3 {
    width: 21%;
  }

  .sjev_col-4 {
    width: 29.33%;
  }

  .sjev_col-5 {
    width: 37.66%;
  }

  .sjev_col-6 {
    width: 46%;
  }

  .sjev_col-7 {
    width: 54.33%;
  }

  .sjev_col-8 {
    width: 62.66%;
  }

  .sjev_col-9 {
    width: 71%;
  }

  .sjev_col-10 {
    width: 79.33%;
  }

  .sjev_col-11 {
    width: 87.66%;
  }

  .sjev_col-12 {
    width: 96%;
  }

  .sjev_hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .sjev_container {
    width: 85%;
    max-width: 75rem;
  }
}
