@charset "utf-8";

/* MAIN */
.nice-gallery {
	font-family: Arial, sans-serif;
	color: #202020;
	width: 100%;
	max-width: 1000px;
	min-width: 250px;
	position: relative;
	box-sizing: border-box;
	visibility: hidden;
	left: 50%;
	transform: translateX(-50%);
}
.nice-gallery.ng-outside-arrows {
	padding: 0 34px 0 34px;
}
.nice-gallery.ng-ready {
	visibility: visible;
}

/* Reset */
.nice-gallery ul,
.nice-gallery li {
	margin: 0px !important;
	padding: 0px !important;
	list-style-type: none !important;
	background-image: none !important;
	
}

/* HEAD */
.ng-head {
	margin-bottom: 9px;
}
.ng-title {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 5px;
}
.ng-subtitle {
	font-size: 17px;
	color: #808080;
}

/* Tags */
ul.ng-tags {
	margin-top: 7px;
}
.ng-tags li {
	font-size: 12px;
	color: #505050;
	border: 1px solid #b0b0b0;
	background-color: #f8f8f8;
	border-radius: 5px;
	padding: 3px 7px;
	display: inline-block;
}
.ng-tags a {
	color: inherit;
	text-decoration: none;
}
.ng-tags a:hover {
	text-decoration: underline;
}

/* BODY */
.ng-body {
	position: relative;
	overflow: hidden;
	height: 200px;
}
.ng-side-thumbs .ng-body {
	float: left;
}
.ng-body.ng-loading {
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("/img/preloader.gif");
}

/* SLIDES */
.ng-slides {
	width: 100%;
}
.ng-slides.ng-horizontal {
	position: absolute;
	left: 0;
	top: 0;
}
.ng-loading .ng-slides {
	display: none;
}

/* Slide */
.ng-slides li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin-right: 4px;
	visibility: hidden;
}
.ng-slides.ng-horizontal li {
	position: static;
	float: left;
	display: block;
	width: auto;
	visibility: visible;
}
.ng-show {
	visibility: visible !important;
}

/* Frame */
.ng-frame {
	background-color: #FFFFFF;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
.ng-side-desc .ng-frame {
	float: left;
}

/* Img */
.ng-frame img {
	max-width: 100%;
	/* max-height: 100%; */
	/* changed to max 500px */
	max-height: 500px;
	margin: 0 auto;
	display: block;
}
.ng-has-lightbox img {
	cursor: pointer;
}

/* Description */
.ng-desc {
	padding-top: 10px;
}
.ng-side-desc .ng-desc {
	width: 220px;
	background-color: #f7f7f7;
	padding: 10px;
	float: right;
	box-sizing: border-box;
}
.ng-no-desc .ng-desc {
	display: none;
}
.ng-name {
	font-size: 15px;
	font-weight: bold;
	line-height: 18px;
}
.ng-text {
	margin-top: 5px;
	font-size: 14px;
	line-height: 18px;
}

/* THUMBS */
ul.ng-thumbs {
	margin-top: 12px !important;
	margin-right: -3px;
}
.ng-side-desc .ng-thumbs {
	margin-top: 5px;
}
.ng-side-thumbs .ng-thumbs {
	width: 189px;
	margin-top: 0;
	margin-left: 5px;
	float: right;
}
.ng-no-desc .ng-thumbs {
	margin-top: 5px;
}

/* Thumb */
.ng-thumbs li {
	width: 60px;
	height: 60px;
	margin: 0 3px 3px 0;
	float: left;
	position: relative;
	cursor: pointer;
}
.ng-thumbs li:hover,
.ng-thumbs li.ng-selected {
	z-index: 100;
}
.ng-view {
	width: 100%;
	height: 100%;
	background-color: #f0f0f0;
	overflow: hidden;
}
.ng-fillw {
	width: 100%;
}
.ng-fillh {
	height: 100%;
}

/* Thumb border */
.ng-border {
	width: 62px;
	height: 62px;
	position: absolute;
	top: -1px;
	left: -1px;
	border-width: 2px;
	border-style: solid;
	border-color: #259bff;
	opacity: 0;
	box-sizing: border-box;

	-webkit-transition: opacity 100ms linear;
    -moz-transition: opacity 100ms linear;
    -o-transition: opacity 100ms linear;
    -ms-transition: opacity 100ms linear;
    transition: opacity 100ms linear;
}
.ng-top-border .ng-border {
	width: 60px;
	left: 0;
	border-width: 3px;
	border-left: none;
	border-right: none;
	border-bottom: none;
}
.ng-bottom-border .ng-border {
	width: 60px;
	left: 0;
	border-width: 3px;
	border-top: none;
	border-left: none;
	border-right: none;
}
.ng-thumbs li:hover .ng-border,
.ng-selected .ng-border {
	opacity: 1;
}

/* ARROWS */
.ng-arrows {
	position: absolute;
	top: 0;
	left: 0;
}
.ng-prev, .ng-next {
	position: absolute;
	top: 0;
	width: 27px;
	height: 42px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

/* Position */
.ng-prev {
	left: 5px;
}
.ng-next {
	right: 5px;
}
.ng-outside-arrows .ng-prev {
	left: -32px;
}
.ng-outside-arrows .ng-next {
	right: -32px;
}

/* Color */
.ng-prev {
	background-image: url("/img/prev-white.png");
}
.ng-next {
	background-image: url("/img/next-white.png");
}
.ng-black-inside-arrows .ng-prev {
	background-image: url("/img/prev-black.png");
}
.ng-black-inside-arrows .ng-next {
	background-image: url("/img/next-black.png");
}

.ng-outside-arrows .ng-prev {
	background-image: url("/img/prev-black.png");
}
.ng-outside-arrows .ng-next {
	background-image: url("/img/next-black.png");
}
.ng-outside-arrows .ng-white-outside-arrows .ng-prev {
	background-image: url("/img/prev-white.png");
}
.ng-outside-arrows .ng-white-outside-arrows .ng-next {
	background-image: url("/img/next-white.png");
}

/* LIGHTBOX */
.ng-lightbox {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10001;
	display: none;
}
.ng-lightbox.ng-open {
	display: block;
}
.ng-no-scroll {
	overflow: hidden !important;
}

.ng-lb-background {
	background-color: #000000;
	opacity: 0.2;
	width: 100%;
	height: 100%;
}

.ng-lb-stage {
	background-color: #fafafa;
	position: absolute;
	min-width: 150px;
	min-height: 120px;
	/* max-width: 95%;
	max-height: 95%; */
	padding: 5px;
	overflow: hidden;
}
.ng-lb-stage.ng-loading {
	background-image: url("/img/preloader.gif");
	background-position: center;
	background-repeat: no-repeat;
}

.ng-lb-container {
	visibility: hidden;
	position: absolute;
}
.ng-lb-container.ng-ready {
	visibility: visible;
}
.ng-lb-container img {
	display: block;
	cursor: pointer;
}

.ng-lb-desc {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 30px 10px 10px;
	color: #ffffff;
	width: 100%;
	display: none;
	box-sizing: border-box;

	/* Gradient background */
	background: rgba(0,0,0,0);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.7)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}
.ng-lb-desc.ng-enabled {
	display: block;
}

.ng-lb-close {
	position: absolute;
	width: 25px;
	height: 25px;
	top: 0;
	right: 0;
	background-image: url("/img/close-white.png");
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.ng-lb-black-controls .ng-lb-close {
	background-image: url("/img/close-black.png");
}

.ng-lb-prev, .ng-lb-next {
	position: absolute;
	width: 27px;
	height: 42px;
	top: 50%;
	margin-top: -21px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.ng-lb-prev {
	left: 0;
	background-image: url("/img/prev-white.png");
}
.ng-lb-next {
	right: 0;
	background-image: url("/img/next-white.png");
}
.ng-lb-black-controls .ng-lb-prev {
	background-image: url("/img/prev-black.png");
}
.ng-lb-black-controls .ng-lb-next {
	background-image: url("/img/next-black.png");
}
.ng-lb-arrows .ng-disabled {
	opacity: 0.5;
}

/* GLOBAL */
.ng-clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.ng-hide {
	display: none !important;
}

/* SCREEN SIZES */
@media only screen and (max-width: 650px) {
	.ng-title {
		font-size: 24px;
	}

	.ng-side-desc .ng-frame {
		float: none;
	}
	.ng-side-desc .ng-desc {
		width: auto;
		float: none;
	}
	.ng-side-desc .ng-thumbs {
		margin-top: 5px;
	}

	.ng-side-thumbs .ng-body {
		float: none;
	}
	.ng-side-thumbs .ng-thumbs {
		width: auto;
		margin-top: 12px;
		margin-left: 0;
		float: none;
	}
}
@media only screen and (max-width: 550px) {
	.nice-gallery.ng-outside-arrows {
		padding: 0;
	}

	.ng-outside-arrows .ng-prev {
		left: 5px;
	}
	.ng-outside-arrows .ng-next {
		right: 5px;
	}

	.ng-outside-arrows .ng-prev {
		background-image: url("/img/prev-white.png");
	}
	.ng-outside-arrows .ng-next {
		background-image: url("/img/next-white.png");
	}
	.ng-outside-arrows .ng-black-inside-arrows .ng-prev {
		background-image: url("/img/prev-black.png");
	}
	.ng-outside-arrows .ng-black-inside-arrows .ng-next {
		background-image: url("/img/next-black.png");
	}
}