/* CSS Document */	

.lightbox {
	/** Hide the lightbox */
	display: none;
	
	/** Apply basic lightbox styling */
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color:#333333;
	    background: rgba(0, 0, 0, 0.72);
	}

.lightbox:target {
    /** Show lightbox when it is target */
    display: block;
    outline: none;
}

.lightbox .box {
  	width: -webkit-min-content;
  	width: -moz-min-content;
  	width: min-content;
	min-width:500px;
 	margin: 2% auto;
	padding:10px 20px 10px 20px;
	background-color:#FFF;
	box-shadow: 0px 1px 26px -3px #777777; 
	}

.lightbox .title {
	margin:0;
	padding:0 0 10px 0px;
	font-size:2em;
	color:#C32641;
	font-family: 'MontserratAlternates-Regular';
	}

.lightbox .content {
	display:block;
	position:relative;
	text-align: center;
	}
	

.lightbox .content .desc {
	z-index:99;
	bottom:0;
	position:absolute;
	padding:10px;
	background:rgba(0,0,0,0.8);

	color:#fff;
	font-size:1.05em;
	opacity:0;
	transition: opacity ease-in-out 0.5s;
	}	
	
.lightbox .content:hover .desc	{
	opacity:1;
}

.lightbox .next,
.lightbox .prev {
	display:block;
	text-decoration:none;
	    color: #881D30;
    border: 1px solid #881D30;
    padding: 0.5em 1em;
	    margin-top: 1em;
	}
.lightbox .close {
	display:block;
	text-decoration:none;
	color: #881D30;
	margin-top: 0.5em;
	}

.prev {
	float:left;
	}

.next, .close {
	float:right;
	}
	
.clear {
		display:block;
		clear:both;
}
.lightbox .content img{
	margin:0 auto;

}
@media(max-width:480px){
.lightbox .box {
    min-width: 400px;
}
.lightbox .title {
    font-size: 1.5em;
}
}
@media(max-width:400px){
.lightbox .box {
    min-width: 280px;
}
.lightbox .title {
    font-size: 1.1em;
}
.lightbox .close {
    margin-top: 0;
}
.lightbox .next, .lightbox .prev {
    padding: 0.2em 0.7em;

}
.lightbox .content .desc {
    font-size: 0.9em;
}
}