.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
}

.lightbox__close {
	background: rgba(0, 0, 0, 0) url(../img/icons/close.png) repeat scroll 0 0;
    height: 24px;
    right: -12px;
    top: -12px;
    width: 24px;
    cursor: pointer;
    z-index: 1000;
}

.lightbox__nav {
	top: 48%;
	z-index: 2000;
	height: 3em;
	width: 3em;
}

.lightbox__nav--prev {
	left: -3em;
	background: url(../img/icons/arrow-left.png) top left no-repeat;
}

.lightbox__nav--next {
	right: -3em;
	background: url(../img/icons/arrow-right.png) top left no-repeat;
}

.o-gallery {
    position: relative;
    height: 500px;
    margin-bottom: 1em;
    list-style-type: none;
    background: #e6e6e6;
    padding: .5em 0;
}

.o-gallery__item {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    opacity: 0;
    z-index: 1;
    text-align: center;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.o-gallery__img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.showing {
    opacity: 1;
    z-index: 2;
}

.o-gallery__nav {
	top: 49%;
	z-index: 1000;
	padding: 8px;
	background-color: #fff;
	background-color: rgba(255,255,255,.9);
	font-family: sans-serif;
	font-size: 75%;
	font-weight: 800;
	text-transform: uppercase;
	color: #000;
}

.o-gallery__nav--next {
	right: 16px;
}

.o-gallery__nav--prev {
	left: 16px;
}

@media only screen and (max-width: 31.124em) {

	.gallery-item {
		width: 48%;
		margin: 0 4% 4% 0;
	}

	.gallery-item:nth-child(even) {
		float: right;
		margin: 0 0 4% 0;
	}
}

.gallery-caption {
	display: none;
}

/* Gallery Columns */
.gallery-columns-1 .gallery-item {
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 48%;
	margin: 0 4% 4% 0;
}

.gallery-columns-2 .gallery-item:nth-child(even) {
	float: right;
	margin: 0 0 4% 0;
}

.gallery-columns-3 .gallery-item {
	width: 30%;
	margin: 0 5% 5% 0;
}

.gallery-columns-3 .gallery-item:nth-child(3n) {
	float: right;
	margin: 0 0 5% 0;
}

.gallery-columns-3 .gallery-item:nth-child(3n+1) {
	clear: both;
}

.gallery-columns-4 .gallery-item {
	max-width: 23.5%;
	margin: 0 1.5% 1.5% 0;
}

.gallery-columns-4 .gallery-item:nth-child(4n+1) {
	clear: both;
}

.gallery-columns-5 .gallery-item {
	max-width: 18.5%;
	margin: 0 1.5% 1.5% 0;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

/* Lightbox */
.lightbox {
	position:fixed; /* keeps the lightbox window in the current viewport */
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(0,0,0,.75);
	text-align:center;
	z-index: 1000;
}

.lightbox-inner {
	max-width: 50%;
	max-height: 50%;
	z-index: 2000;
	display: inline-block;
}