

main .gallery-container {
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	-webkit-align-items: stretch;
	-webkit-justify-content: space-around;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-around;
	margin:0 20px;
}

main .gallery-container:after {
	content: '';
	flex-grow: 999999999;
}

main .gallery-container a img {
	width:100%;
	border-radius: 5px;
	filter:brightness(100%);
	transition: filter linear 200ms;
}

main .gallery-container a img.preload {
	width:10px;
	height:10px;
	position:absolute;
	left:-1000px;
	top:-1000px;
}

main .gallery-container a:hover img {
	filter:brightness(130%);
	transform:scale(1.01);
	transition: filter linear 200ms, transform linear 200ms;
}

main .gallery-container a {
	margin:5px;
}

.fluidbox__overlay {
    background-color: rgba(0,0,0,.65)!important;
}

.fluidbox__ghost {
	border-radius: 5px!important;
}

main .gallery-container .initmsg {
	text-align: center;
	width: 100%;
	margin: 1em;
}

.lds-ripple {
	margin-top: 1em;
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.lds-ripple div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}