/* CyFox Flex WP-Galleries */

.gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.gallery .gallery-item {
	flex: 1 1 300px; /*  Stretching: */
	/*flex: 0 1 150px;*/ /*  No stretching: */
	margin: 5px;
	
	padding: 5px;
	border: 1px solid #999;
	background-color: #fff;
	max-width: initial;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.gallery .gallery-item .gallery-icon{
	flex-grow: 1;
}

.gallery .gallery-item .gallery-icon img{
	width: 100%;
}

/* Caption Styles */
.gallery .gallery-item figcaption.gallery-caption{
	display: block !important;
	position: absolute;
	bottom: 5px;
	background-color: rgba(0,0,0,.85);
	margin: 0;
	width: calc(100% - 10px);
	padding: 10px 20px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
}