.picbox {	
	-webkit-transition: all 0.4s ease;
  	-moz-transition: all 0.4s ease;
  	-o-transition: all 0.4s ease;
  	transition: all 0.4s ease;

	display: block;
	width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.picbox img {
	-webkit-transition: all 0.4s ease;
  	-moz-transition: all 0.4s ease;
  	-o-transition: all 0.4s ease;
  	transition: all 0.4s ease;
}

a.picbox:before {
	-webkit-transition: all 0.4s ease;
  	-moz-transition: all 0.4s ease;
  	-o-transition: all 0.4s ease;
  	transition: all 0.4s ease;
  	
    content: url('lupe.png');
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	text-align: center;
	top: 50%;
	margin-top: -25px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
	color: #fff;
	opacity: 0;
	
	background-color:rgba(0,82,141,0.7);
	width: 50px;
	height: 50px;
	border-radius: 25px;
}

a.picbox:hover:before {
  opacity: 1;
}


a.picbox {
	cursor: pointer;
}

a.picbox:hover {
  transform: scale(1.01);
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0,0,0,0.4);
  box-shadow: 3px 3px 10px 0 rgba(0,0,0,0.4);
}

a.picbox:hover img {
	/*background-color:rgba(0,82,141,0.4);*/
}


.picbox-position-top {
	background-position: top center;
}

.picbox-position-bottom {
	background-position: bottom center;
}

.picbox-contain {
	background-size: contain;
}

.picbox > img {
	width: 100%;
}

#picbox-container {
	z-index:2050 !important; 
	position:fixed; 
	top:0; 
	bottom:0; 
	left:0; 
	right:0; 
	background-color:rgba(0,0,0,0.9);
	width: 100%;
	display: block;
	padding: 20px;
	cursor: pointer;
}

#picbox-container:before,
#picbox-container:after {
	content:"";
	color: rgba(0,0,0,0);
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 1em;
	border-right: 1px solid #fff;
	height: 20px;
	width: 1px;
}

#picbox-container:before {
	transform:rotate(45deg);
	-ms-transform:rotate(45deg); /* IE 9 */
	-webkit-transform:rotate(45deg); /* Opera, Chrome, and Safari */
}

#picbox-container:after {
	transform:rotate(-45deg);
	-ms-transform:rotate(-45deg); /* IE 9 */
	-webkit-transform:rotate(-45deg); /* Opera, Chrome, and Safari */
}

#picbox-container > #picbox-img {
	display: block;
	position: relative;
	margin: auto;
	width: 100% !important;
	height: 100% !important;
	
	background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.picbox-load {
	color: #fff;
	text-align: center;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -100px;
	width: 200px;
	height: 50px;
	display: block;
	
	background-position: center bottom;
	background-repeat: no-repeat;
	background-image: url('loader.gif');
}
