body {
	font-family: arial, serif;
	font-size: 12px;
	margin: 0;
	background-color: white;
}

hr {
	border: none;
	border-bottom: 1px solid #ccc;
	margin: 20px 0;
}

hr.invisible {
	border-color: transparent;
}

.text-fail {
	color: #d90000;
}

.text-warning {
	color: #ADA900;
}

.text-success {
	color: #39AD00;
}


#header {
	position: relative;
	height: 50px;
	width: 100%;
	background: rgba(15, 15, 15, 1) linear-gradient(rgba(63, 63, 63, 1), rgba(15, 15, 15, 1));
	color: white;
	line-height: 50px;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}

	#header div.title {
		float: left;
		height: 50px;
		width: auto;
	}

		#header div.title a {
			font-size: 15px;
			color: white;
			text-decoration: none;
		}

		#header div.title a:hover {
			text-decoration: underline;
		}

	#header div.header-menu {
		float: left;
		padding-left: 100px;
	}

	#header div.header-button {
		float: left;
		height: 50px;
		margin-right: 30px;
		color: white;
	}

		#header div.header-button a {
			color: white;
			text-decoration: none;
		}

		#header div.header-button a:hover {
			text-decoration: underline;
		}

#content {
	height: auto;
	min-height: calc(100vh - 150px);
	padding: 20px;
	background-color: white;
}

	#content h1 {
		color: rgba(62, 59, 59, 1);
	}

	#content .sub-header {
		font-weight: normal;
		font-size: .9em;
		color: #999;
		padding: 5px 0 0 5px;
	}

	#content a {
		color: blue;
		text-decoration: none;
	}

	#content a:hover {
		text-decoration: underline;
	}


	#content .form {
		margin: 25px 0;
	}

		#content .form hr {
			margin: 5px 0 15px;
		}

		#content .form .input-group, #content .form .buttons {
			padding-bottom: 10px;
		}

		#content .form .input-group > label {
			font-weight: bold;
			line-height: 22px;
			font-size: 13px;
		}

		#content .form .input-group > .input-info {
			padding-bottom: 5px;
			color: #999;
		}

		#content .form .input-group > .input-group {
			padding-left: 25px;
		}

		#content .form .input-group > .input-group:first-of-type {
			padding-top: 10px;
		}

		#content .form .input-group > .input-group > label {
			font-size: 12px;
		}

		#content .form .input {
		}

			#content .form .input input, #content .form .input textarea, #content .form .input select {
				background: #fefefe;
				border: 1px solid rgba(200, 200, 200, 1);
				border-radius: 3px;
				margin-bottom: 5px;
				padding: 0 10px;
				box-shadow: inset 1px 1px 3px rgba(230, 230, 230, 1);
			}

			#content .form .input input:focus, #content .form .input input:focus, #content .form .input select:focus {
				border: 1px solid rgba(137, 137, 137, 1);
			}

			#content .form .input input {
				min-width: 180px;
			}

			#content .form .input input[type="number"] {
				padding-left: 15px;
				padding-right: 0;
				min-width: 70px;
				width: 70px;
			}

			#content .form .input input[type="checkbox"],
			#content .form .input input[type="radio"] {
				border: none;
				box-shadow: none;
				min-width: inherit;
				vertical-align: middle;
				margin: 6px 0 8px 5px;
				cursor: pointer;
			}

			#content .form .input input[type="checkbox"]+label,
			#content .form .input input[type="radio"]+label {
				padding-left: 3px;
				margin-right: 15px;
				cursor: pointer;
				-webkit-user-select: none;
				-moz-user-select: none;
				-ms-user-select: none;
				user-select: none;
			}

			#content .form .input textarea {
				min-height: 150px;
				min-width: 400px;
				line-height: 18px !important;
				padding-top: 8px;
				padding-bottom: 8px;
			}

			#content .form .input input,
			#content .form .input textarea,
			#content .form .input.input-labeled.input-labeled-left > *:first-child,
			#content .form .input.input-labeled.input-labeled-right > *:last-child {
				line-height: 33px;
			}

			#content .form .input select {
				padding: 8px 10px 9px;
				min-width: 200px;
			}

			#content .form .input select option[value=""] {
				color: #ccc;
			}

			#content .form .input.input-labeled.input-labeled-left > *:first-child,
			#content .form .input.input-labeled.input-labeled-right > *:last-child {
				background: #eee;
				border: 1px solid rgba(200, 200, 200, 1);
				border-radius: 3px;
				display: inline-block;
				margin: 0 0 0 3px;
				padding: 0 10px;
				position: absolute;
			}

			#content .form .input.input-action > *:first-child,
			#content .form .input.input-labeled > *:first-child {
				border-top-right-radius: 0 !important;
				border-bottom-right-radius: 0 !important;
				margin-right: -4px;
			}
			#content .form .input.input-action > *:last-child,
			#content .form .input.input-labeled > *:last-child {
				border-top-left-radius: 0 !important;
				border-bottom-left-radius: 0 !important;
			}


	#content .buttons {
		margin: 15px 0;
	}

	#content .form .buttons {
		margin: 0;
 	}

	#content .buttons.buttons-horizontal .button {
		display: block;
		margin-top: 10px;
	}

	#content .buttons.buttons-horizontal .button:first-child {
		margin-top: 0;
	}

		#content .button {
			background: #dddddd;
			background: linear-gradient(#ffffff, #eaeaea);
			border: 1px solid rgba(200, 200, 200, 1);
			border-radius: 3px;
			font-family: arial, serif;
			transition: all 0.2s;

			height: auto;
			min-width: 200px;
			width: 200px;
			line-height: 31px;
			font-size: 13px;
			text-align: center;
			color: rgba(57, 57, 57, 1);
			text-decoration: none;

			-webkit-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
			user-select: none;
		}

		#content a.button {
			display: inline-block;
		}

		#content .button:hover {
			box-shadow: 1px 1px 4px #dbdbdb;
			text-decoration: none;
			cursor: pointer;
		}

			#content .button.button-large,
			#content .buttons.button-large .button {
				min-width: 300px;
				width: 300px;
				font-size: 15px;
				line-height: 45px;
				color: rgba(57, 57, 57, 1);
			}

			#content .button.button-primary,
			#content .buttons.button-primary .button {
				background: #666;
				background: linear-gradient(#999, #666);
				border-color: #444;
				color: #fff;
			}

			#content .button.button-primary:hover,
			#content .button.button-primary:active,
			#content .buttons.button-primary .button:hover,
			#content .buttons.button-primary .button:active {
				background: #777;
				background: linear-gradient(#777777, #444);
				border-color: #333;
				color: #fff;
			}

			#content .button.button-disabled {
				background: #f1f1f1;
				border-color: #f1f1f1;
				box-shadow: none;
				cursor: not-allowed;
				color: #bbb;
			}


	#content .table {
		margin: 25px 0;
		border-collapse: collapse;
		border: none;
	}

	#content .table-compact {
		margin: 5px 0;
	}

		#content .table thead th {
			line-height: 38px;
			padding: 2px 15px 0;
			border: 1px solid rgba(179, 176, 176, 1);
			background: #eeeeee;
			background: linear-gradient(#ffffff, #eaeaea);
			font-size: 13px;
		}

		#content .table tfoot th {
			line-height: 33px;
			text-align: left;
			padding: 0 10px;
			font-weight: normal;
			color: #999;
		}

		#content .table tbody td {
			line-height: 21px;
			padding: 9px 10px;
			border: 1px solid rgba(179, 176, 176, 1);
		}

		#content .table tbody > tr:hover {
			background-color: rgba(234, 234, 234, 1);
		}

		#content .table tbody > tr.warning {
			background-color: #fcf897;
		}

		#content .table a {
			color: rgb(148, 148, 255);
		}
		#content .table tbody > tr:hover a {
			color: blue;
		}


	#content .notifications {
	}

		#content .notification {
			height: auto;
			width: 100%;
			margin: 15px 0;
			text-align: center;
			border: 1px solid;
			border-radius: 3px;
			padding: 15px 10px;
			box-sizing: border-box;
		}

			#content .notification.notification-fail {
				background-color: #fcacac;
				border-color: red;
			}

			#content .notification.notification-warning {
				background-color: #fcf897;
				border-color: #ffe600;
			}

			#content .notification.notification-success {
				background-color: rgba(182, 255, 183, 1);
				border-color: green;
			}


#footer {
	position: relative;
	width: 100%;
	background-color: white;
	padding: 15px 20px;
	box-sizing: border-box;
	color: grey;
}

#footer ul {
	list-style: none;
}

#footer li {
	display: inline-block;
}

#footer li:not(:last-child):after {
	content: '|';
	color: #444444;
	padding: 0 6px;
}

#footer a {
	color: #888888;
}

#footer a:hover {
	color: #666666;
}