/**
 * @file
 * CSS for the provided examples.
 */

/* ---- button ---- */
.filterbutton,
.sorterbutton {
  display: inline-block;
  padding: 0.5em 1.0em;
  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;
}

.filterbutton:hover,
.sorterbutton:hover {
  background-color: #8cf;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #222;
}

.filterbutton:active,
.filterbutton.selected,
.sorterbutton:active,
.sorterbutton.selected {
  background-color: #28f;
}

.filterbutton.selected,
.sorterbutton.selected {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

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

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

ul.isotope-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.isotope-options li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.isotope-options:after {
  content: '';
  display: block;
  clear: both;
}

.isotope-options .filterbutton,
.isotope-options .sorterbutton {
  float: left;
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

.isotope-options li:first-child .filterbutton,
.isotope-options li:first-child .sorterbutton {
  border-radius: 0.5em 0 0 0.5em;
}

.isotope-options li:last-child .filterbutton,
.isotope-options li:last-child .sorterbutton {
  border-radius: 0 0.5em 0.5em 0;
}

.item-list ul.isotope-options {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
  padding: 0;
}

.item-list ul.isotope-options li {
  padding: 0;
  margin: 0;
}

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

.isotope-container {
  background: #fff;
  max-width: 1200px;
}

/* clear fix */
.isotope-container:after {
  content: '';
  display: block;
  clear: both;
}

.item-list ul.isotope-container {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* isotope elements */

.item-list li.isotope-element {
  list-style: none;
  margin: 5px;
  padding: 0;
}

.isotope-element {
  width: 150px;
  height: 150px;
  margin: 5px;
  float: left;
  overflow: hidden;
}

.isotope-element img {
  max-width: none !important;
  position: absolute;
  left: -25%;
  top: -25%;
}

.isotope-element .sort-data {
  display: none;
}

/* .isotope-element * {
  display: none;
}
*/

/*  Note added by PLM 8/29/2016
    Flexbox Based Responsive Equal Height Blocks
    https://osvaldas.info/flexbox-based-responsive-equal-height-blocks-with-javascript-fallback
*/
/*
.list
{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
*/
/*
.isotope-grid-sizer { width: 22%; }
.isotope-gutter-sizer { width: 4%; }
.isotope-element { width: 22%; height: 50px; }
.isotope-element.my-data-value { width: 48%; }
*/

/* Isotope module css example

	/* color-shape ** /

.item-list li.isotope-element {
  list-style: none;
  margin: 5px;
  padding: 0;
}

.isotope-element {
  width: 70px;
  height: 70px;
  margin: 5px;
  float: left;
  background: black;
}

.isotope-element * {
  display: none;
}

.isotope-element.round {
  border-radius: 35px;
}

.isotope-element.big.round {
  border-radius: 75px;
}

.isotope-element.red {
  background: red;
}
.isotope-element.blue {
  background: blue;
}
.isotope-element.yellow {
  background: yellow;
}

.isotope-element.wide,
.isotope-element.big {
  width: 150px;
}
.isotope-element.tall,
.isotope-element.big {
  height: 150px;
}

.thisIsCustomisedLabel {
  color: red;
}
*/
