@charset "utf-8";
/* CSS Document */
.button {
  display: inline-block;
  padding: 0.5em 1.0em;
  background: #EEE;
  border: none;
  border-radius: 7px;
  color: #222;
  font-family: sans-serif;
  font-size: 16px;
  text-shadow: 0 1px white;
  cursor: pointer;
}

.button:hover {
  background-color: #8CF;
  color: #222;
}

.button:active,
.button.is-checked {
  background-color: #0096DB;
}

.button.is-checked {
  color: white;
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.button-group {
  margin-bottom: 20px;
}

.button-group:after {
  content: '';
  display: block;
  clear: both;
}

.button-group .button {
  /*float: left;*/
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

/*.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }*/

/* ---- isotope ---- */

.grid{
	text-align:center;
	margin:0px auto;
}
/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;

}

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

.element-item {
  /*position: relative;*/
  /*float: left;*/
  width: 385px;
  height: 402px;
  
  
 /* background: #888;*/
  color: #262524;
}

@media screen and (max-width: 768px) {
	.element-item {
  /*position: relative;*/
  /*float: left;*/
  width: 285px;
  height: 372px;
  
  
 /* background: #888;*/
  color: #262524;
}
.grid{width:285px;}
}

