ul {
	list-style:none;
}
.img-list li {
	display:inline-block;
}
.gallery-small {
	width:91px;
	height:100px;
	-o-object-fit: cover;
	object-fit: cover;
}
.lightbox {
	display:none;
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	text-align:center;
	padding:25px 0;
	overflow-y:auto;
	background-color:rgba(0,0,0,0.8);
}
.overlay {
	position:absolute;
	z-index: -1;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position:relative;
    max-width: 410px;
    margin: 30px auto 0;
}
.prev, .next, .figure-close {
	width:40px;
	height:40px;
	display: block;
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
}
.figure-img {
	width:320px;
	height:320px;
	-o-object-fit:contain;
	object-fit:contain;
}
.figure-close{
	background-image:url(../img/gallery/close.svg);
	position: absolute;
    top: -30px;
    right:10px;
}
.prev {
	background-image:url(../img/gallery/prev.svg);
	margin-right: 10px;
}
.next {
	background-image:url(../img/gallery/next.svg);
	margin-left: 10px;
}