* {
  box-sizing: border-box;
}
body {
  background-color: var(--color-background-primary);
  color: var(--color-foreground-primary);
  font-family: Comfortaa;
  margin: 0;
}
header {
  background-color: var(--color-background-secondary);
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
}
header > span {
  display: inline-block;
  margin: 1em;
}
content {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}
nav {
	display: block;
	padding: 10px;
	margin-left: 0px;
	min-height: calc(100vh - 50px - 160px);
	min-width: 300px;
	flex-shrink: 0;
}
.view {
  display: block;
  padding: 10px;
  margin-right: 0px;
  min-height: calc(100vh - 50px - 160px);
  width: 1600px;
}
@media (max-width: 1256px) {
  content {
    width: 1000px;
  }
}
@media (max-width: 1056px) {
  content {
    width: calc(100% - 40px);
  }
}
.inventory-row {
	display: flex;
}
.inventory-row > div {
	display: inline-block;
	min-width: 150px;
	text-align: right;
}
.actions {
	margin-left: 10px;
}
button {
	min-width: 90px;
	background-color: #777;
	padding: 5px;
	border-radius: 3px;
	border-bottom: 1px solid #f04;
}
footer {
	min-height: 100px;
	max-height: 150px;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 10;
	border-top: 1px solid #f04;
	margin: 0px auto;
}
.task-data {
	margin: 0px auto;
	height: 50px;
	display: flex;
}
.task-data > div {
	display: inline-block;
	min-width: 120px;
	text-align: right;
}
.task-eta {
	margin-left: auto;
	padding-right: 15px;
}
#current-task-progress {
	background-color: #0b0;
	height: 20px;
	width: 75%;
	margin-left: 0px;
}
#total-task-progress {
	background-color: #f0f;
	height: 20px;
	width: 35%;
	margin-left: 0px;
}