@charset "utf-8";

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: Poppins, sans-serif;
}

html {
	font-size: 12px;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

img {
	display: block;
}

a {
	cursor: pointer;
	text-decoration: none;
	color: #3A4980;
}

a:hover {
	color: #E8943D;
}

strong {
	font-weight: 600;
}

table {
	margin: auto;
	border-collapse: collapse;
	border: 2px solid;
	font-size: 1.2rem;
}

td,
th {
	padding: 5px;
	border: 1px solid #AAA;
}

thead,
th {
	font-weight: 600;
}

ul,
li {
	list-style: none;
}

button,
input[type="submit"] {
	display: inline-block;
	border-style: none;
	border-radius: 5px;
	text-align: center;
	font-size: 1.3rem;
	cursor: pointer;
	padding: 5px 10px;
	background-color: #3A4980;
	color: white;
}

button:hover,
input[type="submit"]:hover {
	background-color: #E8943D;
}

button.else {
	padding: 3px 8px;
	background-color: white;
	color: #3A4980;
	border: solid 2px #3A4980;
}

button.else:hover {
	color: #E8943D;
	border-color: #E8943D;
}

button[disabled],
button.else[disabled],
button[disabled]:hover,
button.else[disabled]:hover {
	cursor: default;
	color: lightgrey;
	background-color: white;
	border: solid 2px lightgrey;
}

form {
	display: flex;
	flex-direction: column;
	width: min-content;
	margin: 0 auto;
	row-gap: 20px;
}

form .formLine {
	color: #3A4980;
}

form .formLine label {
	font-size: 1.5rem;
}

form .formLine label sup {
	vertical-align: super;
	color: red;
}

form .formLine:last-child {
	margin-top: 20px;
}

label {
	display: block;
	margin-bottom: 5px;
}

input,
textarea,
select {
	font-size: 1.3rem;
	color: #3A4980;
	border: solid 1px;
	border-radius: 5px;
	padding: 5px 10px;
	background-color: white;
}

progress {
	height: 30px;
}

progress.disabled {
	opacity: .33;
}

.container {
	width: 100%;
}

.errors {
	font-size: 1.2rem;
	color: red;
}

#breadcrumbs {
	color: #3A4980;
	background-color: white;
}

#breadcrumbs.sticky {
	position: sticky;
	z-index: 9;
	top: 130px;
}

#breadcrumbs nav {
	width: 1600px;
	height: 100px;
	margin: 0 auto;
	font-size: 2rem;
	line-height: 100px;
}