* { box-sizing: border-box; }

/* force scroll bar */
html { overflow-y: scroll; }

body { font-family: sans-serif; }

/* ---- grid ---- */

#filters {
  text-align: center;
  margin: 70px 0px;
}

#filters .is-checked {
  color: #121212;
  background-color: #eee;
  -webkit-transition: all 0.5s;
}

#filters button {
  margin: 0px 5px;
  letter-spacing: 0.25px;
  background-color: transparent;
  outline: none;
  border: none;
  font-family: 'Noto', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #565656;
  padding: 9px 12px;
}

#container {
  /* either of these will work for horizontal Isotope layouts */
}

.grid {
  background: #fff;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

/* 5 columns, percentage width */
.grid-item,
.gutter-sizer {
  width: 30px;
}

.grid-item {
  float: none;
  width: auto;
  height: auto;
}

.grid-item--width2 { width: 370px; }
.grid-item--height2 { height: 100px; }


