/******************************************************/
/*                OVERLAY IMG SLIDER                  */
/******************************************************/
#bbl_overlay_full{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 200px;
	background: rgba(0,0,0,0.7);
	overflow-y: scroll;
	z-index: 99999;
	-ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
#bbl_overlay_full .bbl_close_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 12px 10px 12px 0;
	font-size: 30px;
	text-align: right;
	color: white;
	cursor: zoom-out;
	z-index: 100;
}
#bbl_overlay_full .nav{
	position: absolute;
	width: 15%;
	max-width: 80px;
	height: calc(60% - 45px);
	top: calc(10% + 45px);
	color: white;
	cursor: pointer;
	background-size: 40% auto;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: all .3s;
    transition: all .3s;
	z-index: 99999;
}
#bbl_overlay_full .nav:hover{
	background-size: 50% auto;
}
#bbl_overlay_full .nav.hidden{
	opacity: 0;
}
#bbl_overlay_full .nav.prev{
	left: 0;
	background-image: url('../img/bbl_nav_prev.svg');
}
#bbl_overlay_full .nav.next{
	right: 0;
	background-image: url('../img/bbl_nav_next.svg');
}
#bbl_overlay_img_large{
	position: relative;
	margin:45px auto 0 auto;
	width: 100%;
	max-width: 1280px;
	height: calc(80% - 45px);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: initial;
	cursor: zoom-out;
}
#bbl_overlay_img_large .loading{
	position: absolute;
	bottom: 0;
	height: calc(50% + 18px);
	width: 100%;
	font-size: 14px;
	line-height: 1.3em;
	text-align: center;
	color: #ddd;
	z-index: -1;
}
#bbl_overlay_img_slider{
    width: 100%;
	margin-top: 2%;
	text-align: center;
}
#bbl_overlay_img_slider img{
    display: inline-block;
    margin:0 4px;
	height: 70px;
	background-color: #1f94b2;
	padding-bottom: 0px;
	margin-top: 15px;
	cursor: pointer;
	-webkit-transition: all .2s linear;
    transition: all .2s linear;
}
#bbl_overlay_img_slider img.active, #bbl_overlay_img_slider img:hover{
	padding-bottom: 15px;
	margin-top: 0px;
	height: 85px;
}

@media only screen and (max-width: 720px) and (orientation : landscape) {
	#bbl_overlay_img_large{
		height: 100%;
	}
	#bbl_overlay_full .nav{
		height: 60%;
		top: calc(20% + 45px);
	}
}