html, body, div, h1, h2, h3 {
	margin: 0;
	padding: 0;
}

body {
	font-family: Helvetica, sans-serif;
	width: 100vw;
	height: 100vh;
	color: #000;
}

h1, h2, h3 {
	color: #323232;
}

.input, select, input[type="date"], input[type="number"], input[type="password"], input[type="text"], input[type="email"] {
	border-radius: 4px;
	border: 1px solid #696969;
	padding: 0.25rem;
	margin: 0;
	background-color: #fff;
	min-width: 9rem;
	box-sizing: border-box;
	font-family: inherit;
}

[readonly] {
	border: 1px solid transparent !important;
}

.list-box {
	max-height: 5rem;
	overflow-y: scroll;
	padding-right: 1rem;
}
.list-box>li {
	margin: 0.25rem;
}
.list-box>li::marker {
	content: '';
}

button, .button, input[type="submit"] {
	border-style: none;
	background-color: #000;
	border-radius: 2rem;
	color: #fff;
	font-family: inherit;
	font-weight: bold;
	padding: 0.5rem 1.5rem;
	text-decoration: none;
	cursor: pointer;
}

button.secondary, .button.secondary, input[type="submit"].secondary {
	padding: initial;
	text-decoration: underline;
	background-color: initial;
	color: initial;
	font-weight: initial;
}

.field {
	display: flex;
	align-content: space-between;
	align-items: center;
	margin: 0.5rem 0 0 0;
}
.label {
	font-weight: bold;
}
.label.secondary {
	font-weight: normal;
}

.w3 { width: 3rem; }
.w4 { width: 4rem; }
.w7 { width: 7rem; }
.w9 { width: 9rem; }
.w11 { width: 11rem; }

.shadow {
	box-shadow: 0px 0 8px 0px rgba(0, 0, 0, 0.4);
}
