body {
	margin: 0;
	font-family: sans-serif;
	font-size: 14px;
	-webkit-user-select: none;
	cursor: default;
	color: white;
	background-color: black;
	--toolbar-height: 43px;
	--block-color: rgb(40, 40, 40);
	--block-color-less-dark: rgb(30, 30, 30);
	--block-color-dark: rgb(20, 20, 20);
	--line-color: rgb(80, 80, 80);
	--line-color-dark: rgb(50, 50, 50);
	--item-color: rgb(110, 110, 110);
	--item-color-active: rgb(180, 180, 180);
	--item-color-dark: rgb(90, 90, 90);
	--list-item-color: rgb(130, 130, 130);
	--list-item-color-dark: rgb(100, 100, 100);
	--list-top: calc(var(--toolbar-height) + 1px);
	--list-width: 279px;
	--list-left: calc(0px - var(--list-width) - 1px);
	--list-opacity: 0;
	--icon-size: var(--toolbar-height);
	--icon-wide-size: calc(var(--icon-size) * 1.5);
	--list-item-height: 72px;
	--list-item-name-font-size: calc(var(--list-item-height) * 0.22);
	--list-item-description-font-size: calc(var(--list-item-height) * 0.18);
	--toolbar-left: 0;
	--render-area-container-top: calc(var(--toolbar-height) + 1px);
	--footer-height: 19px;
	--footer-top: calc(var(--footer-height) + 1px);
	--render-area-container-bottom: calc(var(--footer-top) + var(--toolbar-height) + 1px);
}

.header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	display: flex;
	height: var(--toolbar-height);
	background-color: var(--block-color);
	border-bottom: 1px solid var(--line-color);
}

.button {
	position: relative;
	width: var(--icon-size);
	height: var(--icon-size);
	fill: var(--item-color);
	opacity: 0.4;
}

.button-wide {
	width: var(--icon-wide-size);
}

.button:hover {
	opacity: 1.0;
}

.button:active {
	fill: var(--item-color-active);
}

.button-foreground {
	fill: var(--block-color-dark);
}

.wrecksight-logo {
	position: absolute;
	right: 0;
	font-size: 22px;
	font-weight: bold;
	line-height: var(--toolbar-height);
	text-align: right;
	margin-right: 8px;
	color: var(--item-color);
}

.vislab-logo {
	position: absolute;
	width: 200px;
	height: 44px;
	background-image: url("vislab_logo.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.wrecksight-logo > span {
	font-weight: lighter;
	font-size: 20px;
	color: var(--item-color-dark);
}

.list-view {
	position: absolute;
	left: var(--list-left);
	top: var(--list-top);
	bottom: var(--footer-top);
	width: var(--list-width);
	background-color: var(--block-color-dark);
	border-right: 1px solid var(--line-color);
	opacity: var(--list-opacity);
	transition: left 0.2s ease-out, opacity 0.5s ease-out;
	overflow-x: hidden;
	overflow-y: auto;
}

.list-item {
	position: relative;
	margin-left: 12px;
	margin-right: 12px;
	height: var(--list-item-height);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: none;
	border-bottom: 1px solid var(--line-color-dark);
}

.list-item:hover {
	background-color: var(--block-color-less-dark);
}

.list-item:active {
	background-color: var(--block-color);
}

.list-item-name {
	font-size: var(--list-item-name-font-size);
	color: var(--list-item-color);
}

.list-item-description {
	font-size: var(--list-item-description-font-size);
	color: var(--list-item-color-dark);
}

.render-area-container {
	position: absolute;
	left: var(--toolbar-left);
	top: var(--render-area-container-top);
	right: 0;
	bottom: var(--render-area-container-bottom);
	transition: left 0.2s ease-out;
	overflow: hidden;
}

#wreck-name {
	position: absolute;
	left: var(--toolbar-left);
	top: var(--list-top);
	height: 48px;
	line-height: 48px;
	font-size: 24px;
	padding-left: 24px;
	transition: left 0.2s ease-out;
	color: var(--item-color);
}

.toolbar {
	position: absolute;
	left: var(--toolbar-left);
	right: 0;
	bottom: var(--footer-top);
	height: var(--toolbar-height);
	display: flex;
	justify-content: space-between;
	background-color: var(--block-color-dark);
	border-top: 1px solid var(--line-color);
	transition: left 0.2s ease-out;
}

.toolbar-group {
	height: var(--icon-size);
	display: flex;
}

.footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: var(--footer-height);
	background-color: var(--block-color);
	border-top: 1px solid var(--line-color);
	text-align: center;
	font-size: 10px;
	line-height: var(--footer-height);
	color: var(--item-color);
}

.center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.dg {
	display: none;
}

/*
@media screen and (orientation: portrait) {
	.vislab-logo {
		display: none;
	}
}
*/





