﻿@charset "utf-8";

#gallery {
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	align-content: space-between;
	justify-content: space-between;
}

.gallery-content {
	width: 32%;
	position:relative;
	padding:0;
	margin: 0;
	display: none;
	line-height: 0;
}

.gallery-content .caption {
	line-height: normal;
}

.gallery-content img{
	width: 100%;
}

.gallery-content img:hover{
	cursor: pointer;
}

.gallery-content .thumbnail {
	display: block;
}

.gallery-content .fullres {
	display: none;
}
.focus {
	width: 100%;
	order: -1;
}

.focus img {
	width: auto;
	max-width: 100%;
	max-height: 600px;
	justify-content: space-evenly;
	margin: auto;
	display: block;
}

.focus .thumbnail{
	display: none;
}

.focus .fullres{
	display: block;
}

.gallery-content a {
	border: 0 !important;
}

.gallery-content .description {
	display:none;
}


.focus .description {
	display: block;
	line-height: normal;
}

.show {
  display: block;
}