/* --------- Page --------- */

html, body {
	margin: 0px;
	padding: 0px;
	color: #363636;
	background-color:#FFFFFF;
	height: 100%;
	width: 100%;
	max-width: 100%;
}

body {
	display: grid;
	grid-template-columns: 0fr 1fr;
	grid-template-rows: 0fr 1fr;
}


/* --------- Global css --------- */

button {
	border: none;
	background: none;
	text-align: left;
	white-space: nowrap;
	padding: 8px 10px;
	cursor: pointer;
}

html, body, div, a, td, th, button, input, select, textarea {
	font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}

input {
	background-color: white;
	border: solid thin #BBB;
	border-radius: 4px;
	padding: 6px;
}

select {
	background-image: url(img/icons/select_arrow.png), linear-gradient(to bottom, #F8F8F8, #E8E8E8);
	background-repeat: no-repeat;
	background-position: right center;
	border: solid thin #BBB;
	border-radius: 4px;
	padding: 6px;
	-webkit-appearance: none;
 	-moz-appearance: none;
}

/* --------- nav --------- */

.notification {
	text-align: right;
	padding: 10px;
	padding-right: 30px;
	color: #256;
	font-weight: bold;
	border-top: solid thin #ABC;
	background-color: #EFE;
}

.notification_error {
	position: fixed;
	top: 0px;
	left: 0px;
	width:100%;
	text-align: center;
	padding: 10px;
	padding-right: 30px;
	color: #842;
	font-weight: bold;
	border-top: solid thin #ABC;
	background-color: #FEE;
}

.std_form {
	display: flex;
	flex-direction: column;
	margin-left: 40px;
}

.std_form .form_fields .form_input {
	display: flex;
	flex-direction: column;
}

.std_form .form_input label {
	margin-top: 25px;
	margin-bottom: 4px;
	font-family: sans;
	font-size: 12px;
	font-weight: bold;
}

.std_form .form_input input {
	font-family: sans;
	font-size: 13px;
	padding: 9px 10px;
}

.std_form .form_controls {
	margin: 40px;
	padding-right: 80px;
	text-align: right;
}

.std_form .form_controls .form_control {
	background-image: linear-gradient(to bottom, #89A, #456);
	/* color: #344; */
	/* color: #FF4; */
	color: #FFF;
	font-family: sans;
	font-size: 12px;
	font-weight: bold;
	border-radius: 5px;
	white-space: nowrap;
	/* border: solid thin #BBB; */
	border: solid thin #789;
	border-bottom: solid 2px #67A;
	/* padding: 10px 25px; */
	padding: 10px 20px;
	margin-left: 25px;
	margin-bottom: 30px;
  	text-decoration: none;
}



