html {
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
}

body {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
}

header {
	background-color: #dddddd;
	border-bottom: 4px solid;
	border-image: linear-gradient(to right, black, #00f584) 1;
	padding: 20px;
	width: 100%;
}

main {
	flex: 1;
	padding: 20px 100px 20px 100px;
	width: 100%;
}

footer {
	margin-top: 15px;
	width: 100%;
}

a.link-button {
	color: blue;
	cursor: pointer;
}

div.header-container {
	align-items: center;
	display: flex;
}

div.header-primary-logo-container {
	display: flex;
}

img.header-logo {
	height: 80px;
}

div.header-title-container {
	flex-grow: 1;
	flex-wrap: wrap;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

h2.header-title {
	color: #000000;
	font-size: 36px;
	font-weight: bold;
	white-space: normal;
	word-wrap: break-word;
}

img.header-secondary-logo {
	height: 80px;
	margin-left: auto;
}

div.footer-container {
	background-color: black;
	color: white;
	font-size: 12px;
	text-align: center;
}

a.footer-link {
	text-decoration: none;
	cursor: pointer;
	color: #00f584;
	font-size: 12px;
	text-decoration: underline;
}

span.required {
	color: red;
}

.field-validation-error {
	color: red;
}

.input-validation-error {
	background: pink;
}

.validation-summary-valid {
	display: none;
}

.field-validation-valid {
	display: none;
}

input.form-control {
	max-width: 220px;
}

@media print {
	.noprint {
		display: none;
	}

	.printmediumtext {
		font-size: 15px;
		font-weight: bold;
		width: 100%;
	}

	.printsmalltext {
		font-size: 10px;
		width: 100%;
	}
}