.lightbox {
	cursor: pointer;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(255, 255, 255); /* IE Fallback (Solid Colour) */
	background: rgba(255,255,255,1.0);
	-webkit-filter: none !important;
	z-index: 9997; 
	overflow-y:hidden; /* afegit: elimina scroll vertical */
}

.lightbox img {
    max-width: 1300px !important;
	max-height: 900px !important;    
	display: block;
	position: absolute;
	margin-top:-15px !important; /* AFEGIT puja la imatge*/
	/*margin-bottom: 30px;*/
	/*border: 5px solid #000; */ 
	/*box-shadow: 0 0 20px #000;  */
	/*border-radius: 1px;  */
	}
	
/* 
body.blurred > * {
  -webkit-filter: blur(2px);
  -webkit-transform: translate3d(0, 0, 0);
}
 */
 
.lightbox__loading {
	background: url(../images/icons/loading.gif) center center no-repeat;
	width: 32px;
	height: 32px;
	margin: -26px 0 0 -16px; /* top-right-bottom-left  */
	position: absolute;
	top: 50%;
	left: 50%;
}

.lightbox__caption {
	height:50px;
	background-color:#DDD;
	display: none;
	position: absolute;
	left: 0;
	bottom: 0;
	margin-bottom:0px; /* franja gris toca a sota */
	width: 100%;
	text-align: center;
	z-index: 9998;	/*height: 30px !important; /* harald */
}

.lightbox__caption p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight:300;
	letter-spacing: 1px;
	color: rgba(0,0,0,1.00);
	line-height: 52px; /* per centrar a la franja gris */
	margin: 0 auto; 
	max-width: 95%; /* Abans 70%: amplada del texte */
	display: inline-block;
	zoom: 1;
	padding: 0px 10px 15px 10px; /* top right bottom left */
	/*vertical-align:bottom;*/
}

.lightbox__button {
	position: absolute;
	z-index: 9999;
	background: no-repeat center center;
	width: 32px; 
	height: 32px; 
	opacity:1.0;
	-webkit-transition: all 0.3s;
	-moz-transition:    all 0.3s;
	-ms-transition:     all 0.3s;
	transition: 		all 0.3s;
}

.lightbox__button:hover,
.lightbox__button:focus {
	opacity: 1;
	-webkit-transform: scale(1.3); /*original = 1.2 */
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

/* buttons */
.lightbox__close { 
	width: 22px; /* afegitx */
	height: 22px; /* afegit */
	right: 14px;
	top: 2%; /* top: 50%; margin-top: -16px; right: 30px; */
	background-image: url('../images/icons/close.png');
}

.lightbox__nav {
    top: 45%; /* ORIGINAL: 50% */
    margin-top: -16px;
}

.lightbox__nav--next {
	right: 16px; /* Abans=20px */
	background-image: url('../images/icons/next.png');
}

.lightbox__nav--prev {
	left: 16px; /* Abans=20px */
	background-image: url('../images/icons/previous.png');
}

.title-NO { font-size:18px;} 

/*------------------- AFEGIT ------------------*/
@media (max-width:768px) {
.lightbox img {margin-top:-25px !important;}
.lightbox__caption {margin-bottom:0px;}
.lightbox__caption p {font-size: 15px; line-height: 52px;}
.lightbox__button img {max-width: 100%; height: auto !important;}
}


@media(max-width:488px) {
.lightbox img {margin-top:-25px!important;}
.lightbox__caption {margin-bottom:0px;}
.lightbox__caption p {font-size: 13px; line-height: 52px;}
.lightbox__button img {max-width: 100%; height: auto !important;}
}

