/**
 * @version      3.6.0
 * @package      Simple Image Gallery (plugin)
 * @author       JoomlaWorks - http://www.joomlaworks.net
 * @copyright    Copyright (c) 2006 - 2018 JoomlaWorks Ltd. All rights reserved.
 * @license      GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

/* --- Generic Styling --- */

.image-gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	box-sizing: border-box
}

.image-gallery__thumb {
	box-sizing: border-box;
	padding: 1%;
	width: 16.666666%;
	height: 150px;
	opacity: .8
}

.blog .image-gallery__thumb {
	width: 16.666666%;
	height: 100px;
}

@media (min-width:750px) and (max-width:960px) {
	.image-gallery__thumb {
		width: 50%
	}
}

@media (max-width:750px) {
	.image-gallery__thumb {
		height: 120px;
		width: 50%
	}
	.blog .image-gallery__thumb {
		width: 50%;
		height: 120px;
	}
}

.image-gallery__thumb:hover {
	opacity: 1
}

.image-gallery__thumb__image {
	width: 100%;
	height: 100%;
	background-size: cover
}