/*Custom Gallery*/
.gallery-view {
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 10000;
}
.image-wrapper {
	background: #fff;
	width: 98%;
    height: 550px;
    margin: 1% auto 0;
	cursor: move;
	position: relative;
	overflow: hidden;
	border: 2px solid #fff;
	border-radius: 3px;
	box-shadow: 0 2px 3px #000;
}
.image-wrapper .wrapper {
	width: 100%;
	height: 550px;
	overflow: hidden;
}
.image-wrapper::-webkit-scrollbar {
	background: #eee;
	width: 6px;
	height: 6px;
}
.image-wrapper::-webkit-scrollbar-thumb {
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: #222; 
	margin-right: 3px;
}
.image-wrapper::-webkit-scrollbar-thumb:window-inactive {
	background: #aaa; 
}
.img-info {
	position: absolute;
	background: rgba(0,0,0,0.8);
	font-weight: bold;
	font-size: 14px;
	padding: 20px;
	bottom: 0;
	width: 100%;
	color: #fff;
}
.thumbnails {
	padding: 10px 0;
	margin: 0 auto;
	display: table;
}
.thumbnails > img {
	background: #fff;
	margin: 0 5px;
	border: 2px solid #fff;
	opacity: 0.5;
	filter:alpha(opacity=50);
	cursor: pointer;
	height: 70px;
    width: 70px;
}
.thumbnails > img.active {
	opacity: 1;
	filter:alpha(opacity=100);
}
.image-control {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 8%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.image-control.image-next {
	right: 0 !important;
	left: auto !important;;
}
.image-control .glyphicon {
	position: absolute;
    top: 50%;
    z-index: 10005;
    display: inline-block;
    right: 27%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    line-height: 48px;
    text-align: center;
    box-shadow: 0 2px 3px #000;
}
.image-control .glyphicon:hover {
	background: rgba(0,0,0,1);
}
.close-gallery {
	right: 5px;
	top: 5px;
	z-index: 10010;
	position: absolute;
}
.close-gallery .glyphicon {
	color: #fff;
    font-size: 14px;
    cursor: pointer;
    height: 30px;
    width: 30px;
    background: #333;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px #666;
    text-align: center;
    line-height: 27px;
}
.zoom-btn {
	background: #fff;
	color: #333;
	position: absolute;
	top: 50px;
	right: 10px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 4px #333;
	-moz-box-shadow: 0 2px 4px #333;
	box-shadow: 0 2px 4px #333;
	z-index: 10000;
}
.zoom-btn.zoom-out {
	top: 90px;
}
.zoom-btn:hover {
	cursor: pointer;
	background-color: #eee;
}