/* I always reset all the html elements */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
	min-height: 100vh;
	color: #555;

}

p {
	margin: 10px 0px;
}

.mainMenu {
	max-width: 90%;
	/* border: thin solid #e4e4e4; */
	padding: 0px 40px;
	border-radius: 5px;
	margin: 0 auto;
	display: flex;
}

.mainMenu li {
	display: inline-block;
	flex-grow: 1;
	text-align: center;

}

.mainMenu li a {
	padding: 10px 15px;
	text-decoration: none;
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.mainMenu li a.active {
	background-color: #e4e4e4;
}

.mainMenu li a:hover {
	background-color: #32749a;
	color: white;
}

.mainMenuDivider {
	flex-grow: 3 !important;
}

.userMenuItem {
	background-image: url(components/user.png);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 10% 52%;
}

.page {
	max-width: 90%;
	border: thin solid #e4e4e4;
	padding: 20px 40px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	margin: 0 auto;
}

form h2,
.page h2 {
	font-size: 32px;
	line-height: 52px;
	color: #555;
	margin-bottom: 5px;
}

form h4,
.page h4 {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: thin solid #e4e4e4;
	line-height: 26px;
	display: inline-block;
}

form h4 span {
	color: #af0c0c;
	font-weight: normal;
}

form>div {
	margin-bottom: 20px;
}

form .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 50px;
}

form label {
	display: block;
	margin-bottom: 10px;
	padding-left: 5px;
}

form input {
	display: block;
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	font-size: 16px;
	border: thin solid #e4e4e4;
	margin-bottom: 30px;
	border-radius: 5px;
}

/*form input not .inlineForm*/
form input.inline {
	display: inline-block;
	width: 250px;
}

form input:focus {
	outline: none;
}

form button,
.button,
a.button {
	background: #32749a;
	color: white;
	border: none;
	padding: 10px 30px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	margin-bottom: 10px;
	text-decoration: none;
}

form button:active,
.button:active,
a.button:active {
	background-color: green;
}

select {
	height: 35px;
	padding: 5px 10px;
}

.tableButton {
	margin-bottom: 0px !important;
}

form p {
	margin-top: 15px;
}

form p a {
	display: inline-block;
	/*margin-left: 10px;*/
	color: #006dbc;
	text-decoration: none;
}

form p a:hover {
	text-decoration: underline;
}

a {
	display: inline-block;
	color: #006dbc;

}

a.confirm-deletion {
	text-decoration: none;
	color: red;
	margin-left: 10px;
}

.error {
	margin-top: 30px;
	color: #af0c0c;
	line-height: 26px;
}

.success {
	margin-top: 30px;
	color: green;
}

table {
	border-collapse: collapse;
}

td {
	padding-left: 5px;
	padding-right: 5px;
}

.modernTable {
	border: 1px solid #D6D6D6;
	width: 100%;
	border-radius: 3px;
}

table input[type="button"],
table input[type="submit"] {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.modernTable tr {
	/*height:22px;*/
	border-bottom: 1px solid #D6D6D6;
}

.modernTable td,
.modernTable th {
	padding: 4px 10px;
}

.modernTable tr:nth-child(even) {
	background-color: #F1F1F1;
}

.modernTable tr:hover {
	background-color: #d1f5c2;
}

.modernTable tr:first-child:hover {
	background-color: white;
}

.alignRight {
	text-align: right;
}

.alignCenter {
	text-align: right;
}

label {
	display: inline-block;
	font-weight: bold;
	width: 200px;
}

.objPrint__line {
	height: 45px;
}

.objPrint__line label {}