#lightbox {
	cursor: pointer;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(0, 0, 0); /* IE Fallback (Solid Colour) */
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAIElEQVQ4T2NkYGDYDMRkA8ZRAxhGw4BhNAyA+WAYpAMAIFgLQfO9BoEAAAAASUVORK5CYII=);
	background: rgba(0, 0, 0, 0.7);
	-webkit-filter: none !important;
	z-index: 99;
}

#lightbox img {
	display: block;
	position: absolute;
	border: 8px solid #a6298d;
	border-radius: 1px;
}

.lightbox-button {
	position: absolute;
	z-index: 9999;
	background: no-repeat center center;
	width: 88px;
	height: 80px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.no-touch .lightbox-next:hover,
.touch .lightbox-next:active {
	right: -87px;
}

.no-touch .lightbox-previous:hover,
.touch .lightbox-previous:active {
	left: -87px;	
}

.lightbox-close {
	right: -60px;
	top: 10px;
	color: #FFF;
	font-size: 3.75em;
	display: block;
	width: 45px;
	height: 60px;
}

.touch .lightbox-close {
	top: -65px;
	right: 0;
	display: block;
}

.touch .lightbox-next,
.touch .lightbox-previous {
	display: none;
}

.lightbox-next {
	right: -80px;
	top: 50%;
	margin-top: -40px;
	background-image: url(../../gallery/assets/full-prev.png);
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1)
}

.lightbox-previous {
	left: -80px;
	top: 50%;
	margin-top: -40px;
	background-image: url(../../gallery/assets/full-prev.png);
}

.lightbox-nav {
	position: absolute;
	padding: 8px;
	background-color: #a6298d;
}

#lightbox ul {
	position: absolute;
	bottom: -30px;
	width: 100%;
	height: 20px;
	left: 0;
	text-align: center;
}

#lightbox li {
	background-color: #FFF;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin: 0 3px;
	border-radius: 50%;
}

#lightbox li.active {
	background-color: #b6e128;
}