* { box-sizing: border-box; }

/* force scrollbar, prevents initial gap */
html {
  overflow-y: scroll;
}


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

.grid {

}

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

/* ---- .element-item ---- */

/* 5 columns, percentage width */
.grid-item,
.grid-sizer {
  width: 31.333%;
  margin:1%;
}

.grid-item {
  float: left;
  height:auto;
}

.isotope-filters.button-group {
	text-align: center;
	width:100%;
	margin-bottom: 40px;
}

.isotope-filters.button-group button {
	background-image: none;
	background-color: transparent;
	border: none;
	text-transform: uppercase;
}

.isotope-filters.button-group button:hover {
	cursor: pointer;
}

.isotope-filters.button-group button.is-checked {
	background-color: #d58dba;
	color: #ffffff;
	border-radius: 3px;
}



@media (max-width: 850px) {
	.grid-item,
	.grid-sizer {
	  width: 49.5%;
	  margin:0.25%;
	}
}

@media (max-width: 650px) {
	.grid-item,
	.grid-sizer {
	  width: 99.75%;
	  margin:0.25%;
	}
}