/* Navigation Gallery */
.holder.bottom {
	display: none;
}
.holder.bottom + br {
	display: none;
}
.holder a, .holder a.jp-current, .holder a.jp-current:hover, .holder a.jp-disabled, .holder a.jp-disabled:hover, .holder a.jp-previous {
	float: none;
	border: 0;
	display: inline-block;
	width: 27px;
	line-height: 27px;
	height: 27px;
	font-weight: normal;
	font-size: 16px;
	margin: 0 5px 5px 0;
	vertical-align: top;
}
.holder a {
	color: #242424;
	background: #d9d9d9;
	transition: color .4s, background .4s;
}
.holder a.jp-current,
.holder a:hover:not(.jp-disabled) {
	color: #fff !important;
	background: #d9262a;
}
.holder a.jp-disabled, .holder a.jp-disabled:hover {
	color: #999;
}
.holder a.jp-previous, .holder a.jp-next,
.holder a.jp-previous.jp-disabled, .holder a.jp-next.jp-disabled {
	font-family: 'FontAwesome';
	font-size: 0;
	line-height: 27px;
}
.holder a.jp-previous::before, .holder a.jp-next::before {
	font-size: 14px;
	line-height: 27px;
}
.holder a.jp-previous::before {
	content: '\f104';
}
.holder a.jp-next::before {
	content: '\f105';
}

/* Breadcrumbs */
.breadcrumb {
	position: relative;
	float: right;
	background: transparent;
	border: none;
	min-height: 27px;
	line-height: 27px;
	font-weight: normal;
	font-size: 16px;
	padding: 0;
	color: #666;
	border-radius: 0;
}
.breadcrumb span {
	font-size: 0;
}
.breadcrumb span::before {
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 14px;
	margin: 0 5px;
}
.breadcrumb a {
	color: #00a9de;
	text-decoration: none;
    transition: color 0.6s;
}
.breadcrumb a:hover {
	color: #00a9de;
	text-decoration: none;
}

/* Thumbs */
.highslide-gallery {
	position: relative;
	text-align: center;
	margin: 0 0px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.highslide-gallery .highslideContainer {
	position: relative;
	padding: 0;
}

.highslide-gallery .highslideContainer a.highslide img {
	border: 0;
	display:block;
	width: 100%;
	cursor: pointer !important;
	transition: filter .4s;
}
.highslide-gallery .highslideContainer a.highslide {
	position: relative;
	display: block;
	overflow: hidden;
}
.highslide-gallery .highslideContainer a.highslide:hover img {
	filter: contrast(150%);
}
.highslide-gallery .highslideContainer a.highslide::before {
	content: '';
	position: absolute;
	left: 50%;
	top: -50%;
	transform: translate(-50%, -50%);
	width: 5px;
	height: 40px;
	background: #d9262a;
	z-index: 10;
	transition: top .4s;
}
.highslide-gallery .highslideContainer a.highslide::after {
	content: '';
	position: absolute;
	left: -50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 5px;
	background: #d9262a;
	z-index: 10;
	transition: left .4s;
}
.highslide-gallery .highslideContainer a.highslide:hover::before {
	top: 50%;
}
.highslide-gallery .highslideContainer a.highslide:hover::after {
	left: 50%;
}

/* Sub Galleries */
.highslide-gallery .highslideContainer.subgallery {
}
.highslide-gallery .highslideContainer.subgallery:hover {
}
.highslide-gallery .highslideContainer.subgallery a.highslide {
}
.highslide-gallery .highslideContainer.subgallery a.highslide:hover {
}
.highslide-gallery .highslideContainer.subgallery a.highslide img {
}
.highslide-gallery .highslideContainer.subgallery a.highslide:hover img {
}
.highslide-gallery .highslideContainer.subgallery a.highslide .folderBackground span {
	font-weight: bold;
	font-style: normal;
	color: #fff;
	padding: 10px;
	background: rgba(90,53,35,.75);
	transition: background .4s;
}
.highslide-gallery .highslideContainer.subgallery a.highslide:hover .folderBackground span {
	background: rgba(90,53,35,1);
}

.highslide-gallery .highslideContainer.subgallery a.highslide::after {
	top: 40%;
}
.highslide-gallery .highslideContainer.subgallery a.highslide:hover::before {
	top: 40%;
}

/* Pop Up */
.highslide-container .highslide-caption{
	font-size: 14px;
	color: #fff;
	text-align: center;
	font-weight :normal;
	background: none;
}

.highslide-container .highslide-caption strong{
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
}

.highslide-container .highslide-dimming{
	background: rgba(35,31,32,.8);
	opacity: 1 !important;
}

.highslide-wrapper, .highslide-outline,
.highslide-container table, .highslide-container td{
	background: none !important;
}

.highslide-container img.highslide-image,
.highslide-container .highslide-image{
	border: 0px !important;
	box-shadow: 0px 0px 20px #000;
}
        
/* Back button */
.backbtn {
	background: none;
	text-indent: 0;
	text-decoration: none;
	width: auto;
	height: auto;
	margin-top: 10px;
}
.backbtn::before {
	content: '\f104';
	font-family: 'FontAwesome';
	display: inline-block;
	margin-right: 10px;
}
.backbtn:hover {
	text-decoration: none;
	color: #555;
}
.backbtn:hover::before {
}

@media only screen and (max-width : 991px) {
	.highslide-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width : 480px) {
	.highslide-gallery {
		grid-template-columns: 1fr;
	}
}