*, *::before, *::after {
	box-sizing: border-box;
	font-family: "Open Sans","Arial","sans-serif";
}

html {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	tab-size: 4;
	scroll-padding-top: 150px;
}

body {
	margin: 0;
	min-height: 100svh;
	color: dimgrey;
	min-width: 300px;
}

a, a:link, a:visited, a:hover, a:active {
	color: inherit;
}
a:hover {
	text-decoration-color: #e02b20;
}

p {
	margin: auto;
}

div.top-decoration {
	height: 10px;
	background-color: #e02b20;
}

header {
	height: 70px;
	@media screen and (max-width: 800px) {
		height: 60px;
	}
	padding: 10px;
	background: white;
	border-bottom: 1px solid lightgrey;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
	position: sticky;
	top: -1px;
	& > a {
		height: 100%;
		& img {
			height: 100%;
		}
	}
	& h1 {
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
		@media screen and (max-width: 800px) {
			font-size: x-large;
		}
	}
	& nav {
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		row-gap: 5px;
	}
}

main {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	row-gap: 10px;
	padding: 5px;
	text-align: center;
	line-height: 1.25;
	margin-bottom: 200px;
}

footer {
	background: black;
	color: grey;
	padding: 1rem;
	position: fixed;
	bottom: 0px;
	width: 100%;
	text-align: center;
	font-size: smaller;
}

/********************************************************************************/

form#order {
	display: block;
	min-width: 300px;
	max-width: 600px;
	padding-bottom: 200px;
}

p.introduction {
	font-size: small;
	padding: 1rem;
}

fieldset {
	border-radius: 0.25rem;
	padding: 0.5rem;
	text-align: left;
}

label {
	margin-top: 0.5rem;
	font-size: x-small;
}

span.mandatory {
	color: red;
}

input {
	width: 100%;
	padding: 0.125rem;
	text-align: center;
}

input#remarks {
	margin-bottom: 1rem;
}

select {
	width: 100%;
	text-align-last: center;
	text-align: center;
	padding: 0.125rem;
}

table {
	margin: 1rem auto;
	min-width: 150px;
}

th {
	background: dimgrey;
	color: white;
	text-align: center;
	font-size: xx-small;
	text-shadow: 0 0 black;
}

td {
	text-align: center;
}

td.size {
	width: 65%;
}

td.size label {
	font-size: medium;
}



