#active_gallery
{
	display: block;
}

.gallery
{
	display: none;
	padding: 10px;
}

.gallery img
{
	padding: 5px;
	vertical-align: middle;
	width: 15%;
	height: auto;
	cursor: pointer;	
}


#links
{
	padding-bottom: 10px;
	text-align: center;
}

#links *
{
	margin-right:100px;
}

#imgHolder
{
	display: none;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, 0.5);
	cursor: pointer;
	user-select: none;	
}

#frame
{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#selectedImg
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 80vw;
	max-height: 100vh;
	box-shadow: 5px 5px 5px black;
	user-select: none;
}

#x
{
	position: absolute;
	top: 10px;
	right: 5%;
	font-size: 30px;
}

#prev
{
	position: absolute;
	left: 5%;
	top: 50%;
	font-size: 100px;
}

#next
{
	position: absolute;
	right: 5%;
	top: 50%;
	font-size: 100px;
}

#loading
{
	display: block;
	text-align: center;
}

/* mobile design */

@media screen and (max-width: 786px)
{
	#links
	{
		display: none;
	}
	
	.gallery
	{
		display: block;
	}
	
	.gallery img
	{
		width: 45%;
	}
	
	#prev, #next
	{
		top: 80%;
	}
}