/**
* All of the CSS for your public-facing functionality should be
* included in this file.
*/

/* general css */
html {
	overflow-y: scroll;	/* to ensure the page width remains consistent for grid row width calculations */
}
.iggs-thumbgrid::after {
	display: block;
	height: 0;
	clear: both;
	content: ".";
	visibility: hidden; /* For clearing */
}
.iggs-thumbgrid {
  display: flex;
  flex-wrap: wrap;
	text-align: left;
}
.iggs-thumbgrid::after {
  content: '';
  flex-grow: 999999999;
}
.iggs-thumbgrid div {
  margin: 0 5px 5px 0;
  position: relative;
}
.iggs-thumbgrid a {
  display: block;
}
.iggs-thumbgrid img {
  position: absolute;
  top: 0;
  width: 100%;
  vertical-align: bottom;
}
.iggs-thumbgrid #iggs-thumb-grid-panel img {
	position: relative;
	width: auto;
}
#iggs-thumb-grid-panel {
	margin: 5px 8px 0 0;
	padding: 10px 0 10px 0;
	width: 100%;
	line-height: 1.6em;
}
#iggs-thumb-grid-panel #iggs-controls {
	margin: 0 0 .4em 0;
	text-align: right;
}
#iggs-thumb-grid-panel .iggs-icon {
	font-size: 1.5em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
}
#iggs-thumb-grid-panel .iggs-icon:hover {
	opacity: 0.5;
}
.iggs-panel-left {
	display: inline-block;
	max-width: 69%;
	vertical-align: top;
}
.iggs-panel-left.vertical {
	max-width: 45%;
}
.iggs-panel-left.full-width {
	max-width: 100%;
}
#iggs-thumb-grid-panel img {
	visibility: hidden;
}
.iggs-panel-right {
	display: inline-block;
	padding: 0 0 0 2%;
	width: 29%;
}
.iggs-panel-right.vertical {
	width: 53%;
}
#iggs-thumb-grid-panel img {
	max-height: 100%;
	max-width: 100%;
}
#iggs-thumb-grid-panel h2 {
	line-height: 1.1em;
}
#iggs-thumb-grid-panel p {
	line-height: 1.4;
}
/* css amendments noted from twenty seventeen */
.entry-content .iggs-thumbgrid a,
.entry-content .iggs-thumbgrid a:hover,
.entry-content .iggs-thumbgrid a img {
	-webkit-box-shadow: none;
	box-shadow: none;
}
/* tablet horizontal */
@media (max-width: 1024px) {
}
/* tablet vertical */
@media (max-width: 768px) {
	.iggs-panel-left,
	.iggs-panel-left.vertical {
		display: block;
		max-width: 100%;
	}
	.iggs-panel-right,
	.iggs-panel-right.vertical {
		display: block;
		margin: .4em 0 0 0;
		padding: 0 0 0 0;
		width: 100%;
	}
}
/* mobile horizontal */
@media (max-width: 540px) {
}
/* mobile vertical */
@media (max-width: 320px) {
}
