

.flex-contain{
/*     border: 2px solid blue; */
    height: 100%;
}

.entry-content{
	text-align: center;
}

.entry-content p{
	display: inline-block;
	width: 100%;
	max-width: 1200px;
	padding: 0 10%;
	text-align: left;
}

.curator-gallery{
	position: relative;
	font-size: initial;
    overflow: hidden;

    /*blorb*/
    opacity: 0;
    transition: 1s;
	user-select: none;
}

.gallery-overlay{
	position: absolute;
	/*background: white;*/
	z-index: 9;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: 1s;


}

.gallery-wall{
/*     border: 2px solid yellow; */
	margin-left: 0px;
/* 	transition: .5s; */
    position: relative;
    height: 100vh;
    text-align: left;
}

.gallery-panel{
    display: inline-block;
    padding: 0 10vw;
    height: 100%;
    vertical-align: top;
}

.gallery-panel img{
	cursor: pointer;
    max-height: 80%;
    width: auto;
    /* box-shadow: 3px 3px 5px rgba(0, 0, 0, .5); */
}
.gallery-panel img:hover{
	
}


.gallery-preload{
	opacity: 0;
	position: absolute;
	pointer-events: none;
}

.gallery-full-preload{
	position:absolute;
	pointer-events: none;
	opacity: 0;
	z-index: -9;
}

.gallery-nav{
	position: absolute;
	z-index: 9;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	background: transparent;
	pointer-events: none;
}

.gallery-nav>div{ 
/* 	position: absolute; */
	display: flex;
	align-items: center;
	height: 100%;
	background: rgba(255, 255, 255, .5);
	padding: 0 2%;
	cursor: pointer;
	/* color: lightgrey; */
	user-select: none;
	pointer-events: initial;
	color: black;
	font-weight: bold;
}

.gallery-nav>div:hover{
	
	color: black;
}

.gallery-nav-next{
	float: right;
}

.gallery-nav-previous{
	float: left;
}

#curator-lightbox{
	transition: .2s;
	opacity: 0;	
	position: fixed;
	z-index: 9999;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .95);
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
/* 	padding: 0 0 40px 0; */
}

#curator-lightbox img{
	max-height: 85%;
	max-width: 90%;
	width: auto;
	height: auto;
	transition: .5s;
}

#lightbox-close{
	position: absolute;
	color: lightgrey;
	font-size: 2rem;
	top: 0px;
	right: 0px;
	padding: 10px;
	cursor: pointer;
}

#curator-lightbox .nav{
	position: absolute;
	bottom: 10px;
	z-index: 999;
	font-size: 1.5rem;
	color: lightgrey;
	padding: 20px 30px;
	user-select: none;
	moz-user-select: none;
	background: black;
	cursor: pointer;
}
#curator-lightbox .nav:hover{
	color: white;
}

#curator-lightbox .left{
	left: 10px;
}
#curator-lightbox .right{
	right: 10px;
}

#count span{	
	display: inline-block
}

#count{
	position: absolute;
	left: 50%;
	width: 100px;
	margin-left: -50px;
	text-align: center;
	padding: 10px;
	bottom: 0px;
	color: lightgrey;
}
#count span{
	padding: 0 5px;
}

#curator-caption{
	position: relative;
	z-index: 999;
	padding: 10px 10%;
	color: lightgrey;
	width: 100%;
	text-align: center;
	font-size: .9rem;
}

.gallery-mobile-nav{
	display: none;
}

.slide-wrap{
	position: absolute;
	z-index: 9999;
	height: 40px;
	width: 100%;
	left: 0;
	bottom: 15px;
	/* border: 1px solid lightgrey; */
	background: url('../media/dots.png');
	background-position: center center;
	/* border-radius: 10px; */
}
.slider-bar:hover{
	/* background: rgb(250, 170, 170); */
	/* box-shadow: inset 0px 0px 8px black, inset 0px 0px 15px black, 0px 0px 8px black; */
}
.slider-bar{
	display: inline-block;
	position: absolute;
	height: 40px;
	left: 0;
	top: 0px;
	width: 100px;
	background: rgb(250, 210, 210);
	background: url('../media/bg.jpg');
	background-position: center center;
	border-radius: 37px;
	/* this gets transformed to site bg color: */
	/* border: 4px solid #661e00;
	border: 4px solid lightblue;
	border: 4px solid green;
	border: 4px solid khaki;
	border: 4px solid var(--site-text); */
	cursor: pointer;
	/* box-shadow: inset 0px 0px 8px black, 0px 0px 8px black; */

/* 	transition: .3s; */
}

@media screen and (max-width:800px){
	.gallery-wall{
		transition: .3s;
	}
	#curator-caption{
		font-size: .8rem;
		padding: 10px 5px;;
	}
	#curator-lightbox img{
		max-height: 80%;
	}
	.gallery-nav>div{
		display: none;
	}
	#lightbox-close{
		right: calc( 50% - 20px );
	}

	#main{
		padding: 0;
	}
	
	.gallery-mobile-nav{
		display: inline-block;
		position: fixed;
		bottom: 40px;
		left: 0 !important;
		width: 100vw;
	}
	.mobile-nav-left,
	.mobile-nav-right{
		font-size: 2rem;
		font-weight: bold;
		position: absolute;
		bottom: 0px;
		border: 2px solid #acabab;
		padding: 0 10px;
	}
	.mobile-nav-left{
		left: 0;
	}
	.mobile-nav-right{
		right: 0px;
	}
}