.hidden{
	display: none!important;
}
#gallery-lightbox{
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.75);
	padding: 40px;
}
	#lightbox-container{
		position: relative;
		display: block;
		background-color: black;
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		height: 100%;
	}
		#lightbox-left,
		#lightbox-right{
			cursor: pointer;
			position: absolute;
			top: 0;
			display: block;
			width: 20%;
			height: 100%;
			transition: background 0.4s ease-in-out;
			background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
		}
		#lightbox-left{
			left: 0;
		}
		#lightbox-right{
			right: 0;
		}
		#lightbox-left:hover{
			background: linear-gradient(90deg,rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
		}
		#lightbox-right:hover{
			background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
		}
		#lightbox-art{
			user-select: none;
			-webkit-user-select: none;
			-moz-user-select: none;
			-khtml-user-select: none;
			-ms-user-select: none;
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translateX(-50%)translateY(-50%);
			max-width: 90%;
			max-height: 90%;
		}