
/* gallery.css */

/* ... Gallery ...
-------------------------------------------------------------------------------------------------*/
.ce_gallery {
  margin-left: -12px;
	margin-right: -12px;
}
.ce_gallery > ul {
	list-style: none;
	display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.ce_gallery > ul li {
  padding: 12px;
}
.ce_gallery figure {
}
.ce_gallery .image_container a {
  position: relative;
  padding-top: 66.6666667%;
  height: 0;
  overflow: hidden;
}
.ce_gallery .image_container a img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	/*! height: auto; */
}
.ce_gallery figcaption {
	display: none;
}

/** *
.ce_gallery figcaption {
	position: absolute;
	left: 0;
	width: 100%;
	height: 32px;
	font-size: 0.875em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 3px 10px;
	box-sizing: border-box;
	cursor: default;
  bottom: 0;
}
.ce_gallery figcaption:hover {
	background: rgba(255, 255, 255, .5);
	white-space: normal;
	height: 100%;
	padding: 10px 20px;
	color: #333;
	bottom: 0;
	transition: all .2s ease .2s;
}
/** */
.ce_gallery .cols_1 li {
  width: 100%;
}
.ce_gallery .cols_2 li {
  width: 50%;
}
.ce_gallery .cols_3 li {
  width: 33.3333%;
}
.ce_gallery .cols_4 li {
  width: 25%;
}
.ce_gallery .cols_5 li {
  width: 20%;
}
.ce_gallery .cols_6 li {
  width: 16.6666%;
}
/* ... Gallery ... END
-------------------------------------------------------------------------------------------------*/
