@charset "utf-8";
/* CSS Document */

.thumb {
	position: relative;
	cursor: pointer;
	float: left;
	background: ivory;
	color: black;
	width: 175px;
	height: 250px;
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,.25);
	border-radius: 10px;
	margin: 10px;
	padding: 20px;

}
.thumb img {
	max-width: 100%;
}
.thumb :hover {
	background: #eee;
}
.thumb a, .element-item a:hover {
	background: none;
	border: #009BFF;
	color: black;
}

.clear {
	clear: both;
}

.grid {
  border: 0px solid #0365FC;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- button ---- */

.button {
  display: inline-block;
  padding: 10px 18px;
  margin-bottom: 10px;
  background: #EEE;
  border: none;
  border-radius: 7px;
  background-image: linear-gradient( to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2) );
  color: #222;
  font-family: sans-serif;
  font-size: 16px;
  text-shadow: 0 1px white;
  cursor: pointer;
}

.button:hover {
  background-color: orange;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #fff;
}

.button:active,
.button.is-checked {
  background-color: #05abf9;
}

.button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.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; }
