body.debug{
	/* visibility: visible; */
}
.moreimages-listwrap{
	overflow: hidden;
}
.moreimages-list{
	list-style:none;
	display:block;
	padding:0;
	margin:-0.25em;
}
.moreimages-item{
	display:inline-block;
	vertical-align:top;
	padding:0.25em;
	margin:0;
	text-align:center;
}
.moreimages-item{
	height:14.3rem;
	height: calc(80px + (143 - 80) * ((100vw - 320px) / (1200 - 320)));
	max-height: 14.3rem;
	/* height:22.5rem; */
	/* height: calc(80px + (225 - 80) * ((100vw - 320px) / (1200 - 320))); */
	/* max-height: 22.5rem; */
	min-width: 72px;
	max-width: 100%;
	min-height: 72px;
	overflow:hidden;
}

.moreimages-item-inner{
	height:100%;
	width: 100%;
	overflow:hidden;
}


.moreimages-img{
	vertical-align: bottom;
	width:auto;
	height:100%;
	max-width:none;
}
@supports(display: flex) and (object-fit:cover){
	.moreimages-list{
		display: flex;
		flex-flow: row wrap;
		/* justify-content: space-between; */
		/* justify-content: flex-start; */
		/* align-items:stretch; */
		/* align-content:stretch; */
	}
	.moreimages-list:after {
	  content: '';
	  flex-grow: 1000000000;
	}	
	.moreimages-item{
		flex: 1 1 auto;
	}
	.moreimages-img{
		object-fit:cover;
		object-position:50% 50%;
		min-width:100%;
	}
}

@media screen and (max-width:319px){
	.moreimages-list{
		display: block;
	}
	.moreimages-item{
		height: auto;
		max-height: 100vh;
	}
	.moreimages-img{
		width: auto;
		height:auto;
		max-width:100%;
	}
}