@charset "utf-8";
/* Estils per les galeries d'imatges del ShopLED */

#gris, #gris2 {
	background-color:#000;
	opacity:0.5;
	filter: alpha(opacity = 50);
	position:fixed;
	width:100%;
	height:100%;
	z-index:100;
	transition:all 0.5s ease;
}

#foto {
	position:fixed;
	height:auto;
	width:auto;
	left:50%;
	top:50%;
	z-index:2000;
	padding:10px;
	background:#FFF url(../imatges/loading.gif) no-repeat center;
	border-radius:5px;
	transition:all 0.5s ease;
	box-shadow:8px 8px 10px rgba(0,0,0,0.5);
}

#foto img {
	transition:all 0.5s ease;
}

#cntFoto {transition:all 0.3s ease;}

#picClose {
	position:absolute;
	top:-16px;
	right:-16px;
	width:32px;
	height:32px;
	color:#a30030;
	border-radius:18px;
	text-align:center;
	background-color:#FFF;
	border:1px solid #FFF;
	cursor:pointer;
}
#picClose::after {
	font-family: "FontAwesome";
	content: "\f057";
	font-size: 32px;
	line-height: 32px;;
}
#picCapt {
	position:absolute;
	bottom:0px;
	width:100%;
	text-align:center;
	z-index:50;
	margin:-30px -10px;
}
#picCapt span {
	display:inline-block;
	background-color: #444;
	color:#FFF;
	padding:0px 20px;
	height:24px;
	border-radius:12px;
}
#picPrev {
	position:absolute;
	width:40%;
	height:100%;
	left:0;
	top:0;
	cursor:pointer;
	transition: all 0.5s ease;
}
#picNext {
	position:absolute;
	width:40%;
	height:100%;
	right:0;
	top:0;
	cursor:pointer;
	transition: all 0.5s ease;
}
#picPrev span, #picNext span {
	position:absolute;
	display:none;
	top:50%;
	width:32px;
	height:32px;
	text-align:center;
	border-radius:20px;
	background-color:#333;
	border:1px solid #FFF;
	color: #FFF;
	font-size: 18px;
}
#picPrev span { left:10%;}
#picPrev span::after {
	font-family: "FontAwesome";
	content: "\f060";
	line-height: 32px;
}
#picNext span { right:10%;}
#picNext span::before {
	font-family: "FontAwesome";
	content: "\f061";
	line-height: 32px;
}
	
#picPrev:hover span {display:block;}
#picNext:hover span {display:block;}