html.mmc-lightbox {
	overflow: hidden
}

.lightbox-arrow-wrapper {
	position: relative;
	/* top: 50%; */
	/* top: 0; */
	/* bottom: 0; */
	display: inline-block;
	vertical-align: middle;
	width: auto;
	text-align: center;
	height: 100%;
	/* transform: translateY(-50%); */
	/* bottom: 0; */
	margin-left: 30px;
	margin-right: 30px;
	/* max-width: 1650px; */
}

#full-screen-lightbox {
	position: fixed;
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: 2;
	/*padding-top: 15px;
	padding-bottom: 15px;*/
	overflow: hidden;
	text-align: center;
	z-index: 100000;
	background-color: rgba(0,0,0,.92)
}

#full-screen-lightbox .close-box {
	position: absolute; 
	top: 0; 
	right: 0; 
	color: #fff;
	font-size: 2em;
	margin: -100vw;
	padding: 100vw
}

#full-screen-lightbox .close-box.right-corner-x {
	right: 15px;
	top: 10px
}

#full-screen-lightbox .lightbox-style {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	height: auto;
	/* this is for the arrow in overflow hidden box */
	padding-top: 40px;
	/*margin-top: -15px;*/
	/* display: inline-block; */
	max-height: 90%;
	max-width: 95%;
	margin-left: auto;
	margin-right: auto
	/* margin: auto; */
	/* vertical-align: middle; */
}

#full-screen-lightbox .lightbox-style img {
	max-height: 100vh;
	padding-bottom: 50px
}

.lightbox-style {
	position: relative;
	text-align: center
}

.lightbox-style .zoom {
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.lightbox-style .zoom:focus,
.lightbox-style .zoom:hover {
	background-color: rgba(183, 168, 138, .62)
}

.lightbox-style .zoom:focus:after,
.lightbox-style .zoom:hover:after {
	position: absolute;
	content: 'ZOOM';
	top: 50%;
	display: block;
	transform: translateY(-50%);
	width: 100%;
	font-size: 69px;
	font-family: Quicksand;
	font-weight: 300
}

@media screen and (min-width: 1300px) {
	.lightbox-click .lightbox-style:hover:after {
		font-size: 5vw
	}
}

.lightbox-bg-image {
	background-size: cover;
	background-position: center center;
	margin: 30px 15px
}

.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	color: #fff;
	padding-top: 100px;
	padding-bottom: 100px;
}

.arrow.prev {
	left: -15px;
	margin-left: -1500px;
	padding-left: 1500px;
	margin-right: calc(-50% - 15px);
	padding-right: calc(50% - 15px)
}

.arrow.next {
	right: -15px;
	margin-right: -1500px;
	padding-right: 1500px;
	margin-left: calc(-50% - 15px);
	padding-left: calc(50% - 15px)
}