@charset "UTF-8";

*,
*::before,
*::after
{
	box-sizing: border-box;
}

html
{
	overflow: auto;
	min-height: 100%;
}

body
{
	background-image: linear-gradient( rgba( 0, 0, 0, 0.75 ), rgba( 0, 0, 0, 0.75 ) ), url( "../images/background.png" );
	background-size: auto;
	background-position: top left;
	background-repeat: repeat;
	background-attachment: fixed;
	font-family: Verdana;
	font-size: 1rem;
	font-weight: 400;
	color: rgb( 255, 255, 255 );
	margin: 0px;
	padding: 0px;
}

div.main
{
	display: table;
	position: absolute;
	height: 100vh;
	width: 100vw;
	padding: 10px;
	-webkit-transition: all 0.25s ease-in-out;
	        transition: all 0.25s ease-in-out;
}

div.main-center
{
	display: table-cell;
	vertical-align: middle;
}

div.container
{
	background: rgba( 255, 255, 255, 0.5 );
	padding: 10px;
	border-radius: 4px;
	max-width: 100%;
	box-shadow: 4px 4px 10px 4px rgba( 0, 0, 0, 0.25 );
}

div.fit-content
{
	width: fit-content;
	height: fit-content;
	margin-left: auto;
	margin-right: auto;
}

div.thumbnail img
{
	background: rgb( 255, 255, 255 );
	width: 50px;
	display: block;
	-webkit-transition: all 0.25s ease-in-out;
	        transition: all 0.25s ease-in-out;
}

div.thumbnail img.large
{
	left: calc( 50vw - 100px );
	top: calc( 50vh - 100px );
	position: fixed;
	z-index: 50;
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	-webkit-transform: scale( 0.0 );
	        transform: scale( 0.0 );
}

div.thumbnail:hover img.large
{
	z-index: 60;
	-webkit-transform: scale( 13.0 );
	        transform: scale( 13.0 );
}

table 
{
	border-collapse: collapse;
}

tr.collected
{
	color: rgb( 0, 255, 0 );
	font-size: 2rem;
	font-weight: 900;
	-webkit-text-stroke: 1px black;
}

tr.ordered
{
	color: rgb( 255, 255, 0 );
	font-size: 2rem;
	font-weight: 900;
	-webkit-text-stroke: 1px black;
}

tr.missing
{
	color: rgb( 255, 0, 0 );
	font-size: 2rem;
	font-weight: 900;
	-webkit-text-stroke: 1px black;
}

td
{
	border-bottom: 1px solid black;
}

.tabs
{
	background: rgba( 0, 0, 0, 0.5 );
	overflow: hidden;
}

.tabs button
{
	background: rgba( 0, 0, 0, 0.5 );
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
	color: rgb( 255, 255, 255 );
}

.tabs button:hover
{
	background: rgba( 255, 255, 255, 0.5 );
	color: rgb( 0, 0, 0 );
}

.tabcontent
{
	display: none;
	-webkit-animation: fadeEffect 1s;
	        animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect
{
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes fadeEffect
{
	from {opacity: 0;}
	to {opacity: 1;}
}
