.jgallery,
.jgallery * { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;    
	box-sizing: border-box;   
}

.jgallery {
	background: #252525;
	background: rgba(0,0,0,0.95);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 100000;
}

.jgallery .gallery-row {
	position: relative;
}

.jgallery .slide-list {
	position: relative;
}

.jgallery .slide {
	text-align: center;
	position: static;
	height: auto;
	width: auto;
	background: none;
	overflow: visible;
}

.jgallery .slide img {
	display: block;
	width: auto;
	height: auto;
}

.jgallery .slideshow .slide img {
	cursor: pointer;
	display: block;
	margin: 0 auto;
}

.jgallery .slide-control {
	display: block;
	font-size: 100px;
	height: 100%;
	line-height: 100%;
	opacity: 0.2;
	position: absolute;
	text-decoration: none;
	-webkit-transition: opacity 0.25s ease-in-out;
	-moz-transition: opacity 0.25s ease-in-out;
	-ms-transition: opacity 0.25s ease-in-out;
	-o-transition: opacity 0.25s ease-in-out;
	transition: opacity 0.25s ease-in-out;
	top: 0;
}

.jgallery .slide-control:hover {
	opacity: 1;
}

.jgallery .prev-slide {
	left: 0;
}

.jgallery .next-slide {
	right: 0;
}



.jgallery .slideshow .prev-slide {
	background-image: url("../images/prev-arrow-large.png");
	background-position: center right;
	background-repeat: no-repeat;
	width: 80px;
}

.jgallery .slideshow .next-slide {
	background-image: url("../images/next-arrow-large.png");
	background-position: center left;
	background-repeat: no-repeat;
	width: 80px;

}

.jgallery .carousel .prev-slide {
	background-image: url("../images/prev-arrow-small.png");
	background-position: center right;
	background-repeat: no-repeat;
	width: 20px;
	left: 22px;
}

.jgallery .carousel .next-slide {
	background-image: url("../images/next-arrow-small.png");
	background-position: center left;
	background-repeat: no-repeat;
	width: 20px;
	right: 22px;

}

.jgallery .close-gallery {
	background-image: url('../images/close.png');
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	height: 27px;
	opacity: 1;
	right: 10px;
	top: 8px;
	width: 30px;
	z-index: 11000;
}

.jgallery .gallery-header {
	background-color: #1b1b1b;
	background-color: rgba(0, 0, 0, 0.9);
	height: 44px;
}

.jgallery .slideshow {
	padding: 20px 100px;
	overflow: hidden;
}

.jgallery .slideshow .slide .slide-title {
	font-size: 11px;
}

.jgallery .carousel {
	background: #1b1b1b;
	background: rgba(0, 0, 0, 0.9);
	padding: 10px 74px;
	z-index: 2;
}

.jgallery .carousel .slide {
	border: 1px solid transparent;
	margin: 0 5px;
}

.jgallery .carousel .active-slide img {
	border: 1px solid #fff;
}

.jgallery .carousel .loading {
	min-height: 0;
}
.jgallery .gallery-footer {
	background: #1b1b1b;
	background-color: rgba(0,0,0,0.9);
	display: none;
}




@media (max-width: 600px) {

	.jgallery .slideshow .prev-slide {
		background-image: url("../images/prev-arrow-small.png");
		background-position: center right;
		background-repeat: no-repeat;
		width: 20px;
		left: 22px;		
	}

	.jgallery .slideshow .next-slide {
		background-image: url("../images/next-arrow-small.png");
		background-position: center left;
		background-repeat: no-repeat;
		width: 20px;
		right: 22px;
	}

	.jgallery .slideshow {
		padding: 20px 60px;
		overflow: hidden;
	}
	
}
