.lightbox {
	border: 0;
	box-shadow: none;
	display: inline-block;
	position: relative;
	text-decoration: none;
    outline: none;
    border: none;
}
.lightbox-no-scroll {
	overflow-y: hidden;
}
/* Overlay */
.lightbox-overlay {
	background: rgba(17, 17, 17, .8);
	bottom: 0;
	box-sizing: border-box;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 32;
	z-index: 999999999999999;
	overflow: hidden;
}
.lightbox-overlay *,  .lightbox-overlay *::before,  .lightbox-overlay *::after {
	box-sizing: inherit;
}
.lightbox-overlay[aria-hidden="true"] {
	display: none;
}
/* Slider */
.lightbox-slider {
	-webkit-transition: left .3s ease, -webkit-transform .3s ease;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 90px;
	transition: left .3s ease, -webkit-transform .3s ease;
	transition: left .3s ease, transform .3s ease, -webkit-transform .3s ease;
	transition: left .3s ease, transform .3s ease;
	white-space: nowrap;
}
/* Content */
.lightbox-content {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/* position: absolute; */
	width: 100%;
	/* z-index: 999999999999999; */
}
.lightbox-content figure {
	position: relative;
	width: 35%;
}
.lightbox-content img {
	display: block;
	height: auto;
	/* max-height: 85vh; */
      /* max-width: 100%; */
	width: 100%;
}
.lightbox-content figcaption {
	background: rgba(17, 17, 17, .8);
	bottom: 0;
	color: #fff;
	display: block;
	left: 0;
	padding: .25em .5em;
	position: absolute;
	width: 100%;
}
.lightbox-overlay button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: 1px solid #fff;
	outline: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 40px;
	margin: 0;
	padding: 0;
	position: absolute;
	text-align: center;
	width: 40px;
	height: 40px;
	display: block;
}
.lightbox-overlay button:focus {
	border: 1px solid #fff;
}
.lightbox-overlay button:disabled {
	cursor: default;
	opacity: .5;
}
.lightbox-overlay button[aria-label="Previous"],  .lightbox-overlay button[aria-label="Next"] {
	top: 50%;
 top: calc(50% - (1.6em / 2));
}
.lightbox-overlay button[aria-label="Previous"] i{
	display: none;
}
.lightbox-overlay button[aria-label="Next"] i{
	display: none;
}
.lightbox-overlay button[aria-label="Previous"] {
	left: 2%;
	display: block !important;
	background: url(../images/left-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
}
.lightbox-overlay button[aria-label="Next"] {
    right: 2%;
    display: block !important;
    background: url(../images/right-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
}
.lightbox-overlay button[aria-label="Close"] {
	top: 50px;
	right: 2%;
}
.lightbox-counter {
	background: transparent;
	color: #fff;
	font-size: 1.15em;
	left: 2%;
	position: absolute;
	top: 1em;
}
.lightbox-loader {
	width: 5em;
	height: 5em;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -2.5em;
	margin-left: -2.5em;
}
.lightbox-loader::before {
	-webkit-animation: spin 1s infinite;
	animation: spin 1s infinite;
	border-radius: 100%;
	border: .5em solid #9f9f9f;
	border-top-color: #2727a4;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
 @-webkit-keyframes spin {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
 @keyframes spin {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
