:root {
	--debug-display: none;
}

body {
	margin: 0px;
	display: flex;
	--current-color: white;
	color: var(--current-color);
	border-color: var(--current-color);
	background-color: var(--current-color);
	overflow: scroll;
}

button,
input {
	font-family: inherit;
	color: inherit;
}

#sidebar {
	border: 0px;
	height: 94vh;
	width: 40%;
	border: 3vh solid;
	border-right: 0px;
	border-color: inherit;
	background-color: inherit;
}

main {
	width: 60%;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	overflow: scroll;
	justify-content: flex-start;
	align-content: center;
}

main > * {
	background-color: white;
	margin: 3vh;
	border-radius: 3vw;
}

#units {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	font-size: 2vw;
	border: 0.75vw solid var(--current-color);
	margin: 0.75vw;
	border-radius: 3vw;
}

#units section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 1vw 0.5vw;
}

#units p {
	margin: 0vw 0.25vw;
}

#units p:hover {
	text-decoration: underline;
	cursor: pointer;
}

div > button {
	font-size: 2.5vw;
	border-radius: 3vw;
	background-color: var(--current-color);
	color: white;
	border: none;
	margin: 1vw;
}

input,
select {
	font-size: 2.5vw;
	padding: 0.25vw;
	text-align: center;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#cartContents {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	font-size: 2vw;
	margin: 0vw 2vw 1vw 2vw;
}

#cartContents > * {
	margin: 0.5vw 1vw;
	display: block;
}

#bank {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
}

#bank div {
	margin: 1vw;
	margin-bottom: 2vw;
}

#bank input {
	width: 40px;
}

main h1 {
	margin: 1vh 2vw;
	font-size: 4vw;
}

#next {
	font-size: 4vw;
	font-weight: bold;
}

#reset {
	font-size: 2vw;
	width: 25%;
	margin: 0 auto;
}

.debug {
	display: var(--debug-display);
}
