@charset "UTF-8";

.galeria {
	
	padding: 25px;
}

.galeria img {
	
	width: 95%;
}

.lbox {
	
	display: none;
	opacity: 0;

}

.lbox:target {
	
	opacity: 1;
	display: block;
	visibility: visible;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(10, 10, 10, .8);
	position: fixed
}

.box-img {
	
	height: 100%;
	width: 65%;
	margin: 50px auto 5px auto;
}

.box-img img{
	
	height: 75%;
	width: 75%;
	opacity: 0;
}

.btn {
	
	color: #fff;
	font-family: Arial, Sans-serif;
	text-decoration: none;
	position: absolute;
	width: 50px;
	height: 50px;
	font-size: 40px;
	text-align: center
}

.prev {
	
	left: 5%;
	top: 45%;
}

.next {
	
	right: 5%;
	top: 45%;
}

.close {
	
	top: 0;
	right: 2%;
}

.min {
	
	height: 200px;
}

.lbox:target .box-img img {
	
	opacity: 1;
	transition: opacity .4s linear;
}

@media screen and (max-width: 768px){

	.lbox {

		width: 100%;
	}

	.box-img {

		height: 95%;
		width: 95%;
	}

	.prev {

		left: 2%;
		top: 45%;
	}

	.next {

		right: 2%;
		top: 45%;
	}
}