#c
{
	min-width: 0;
	flex: 1 1 100%;
}

#artist-selection
{
	flex-grow: 1;
	overflow-y: scroll;
}

#artist-selection ul
{
	list-style: none;
}

.artist-link
{
}

.artist-link:hover
{
	font-weight: bold;
}

.artist-link:active
{
}

.active.artist-link, .artist-link:visited
{
	font-weight: bold;
}

#three-d
{
	touch-action: none;
	width: 100%;
	height: 100%;
}

img
{
	display: none;
	width: 100%;
}

#work
{
	display: none;
}

#work-toggle
{
	display: none;
}

.description h1
{
	margin-bottom: 1rem;
}

.description
{
	display: none;
}

.description.active
{
	display: initial;
}

#c.hidden
{
	display: initial;
}

#threed-toggle
{
	display: none;
}

@media (max-width: 600px)
{
	:root
	{
		--name-bar-height: 4rem;
	}

	#c
	{
		order: 1;
		height: 100vh;
	}

	#c.hidden
	{
		display: none;
	}

	#sidebar
	{
		order: 2;
	}

	#threed-toggle
	{
		z-index: 9;
		display: initial;
		border: solid 1px var(--text-color);
		border-radius: 0.3rem;
		padding: 0.3rem 0.5rem;
		position: fixed;
		bottom: 1rem;
		right: 1rem;
	}
}

#loader
{
	display: none;
}

#loader.active
{
	display: block;
	position: fixed;
	top: 1em;
	right: 1em;
	border: 1em solid lightgrey; /* Light grey */
	border-top: 1em solid darkgrey; /* Blue */
	border-radius: 50%;
	width: 5em;
	height: 5em;
	animation: spin 0.9s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
