/**
 * Gallery List
 * =========================================== */
.gallery-list {
	margin: 15px -21px -15px;
	padding: 10px 0;
	background-color: #f1f1f1;
}
.gallery-list:before,
.gallery-list:after {
	content: '';
	display: table;
	clear: both;
}
.gallery-list__col {
	width: 20%;
	float: left;
	padding: 5px;
}
.gallery-list__item {
	border: 1px solid #e3e4e8;
	position: relative;
}
.gallery-list__item:before {
	content: '';
	display: block;
	padding-top: 100%;
}
.gallery-list__item:hover {
	cursor: pointer;
	border-color: #aeb3b9;
}
.gallery-list__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.gallery-list__image > img {
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
}