.form {

	text-align: center;
}

.form .button {
	
	display: inline-block;
}

.form .fields {
	
	width: 500px;
	margin: 0 auto;
}

.form .input-field {
	
	margin-bottom: .5em;
	text-align: center;
}

.form .input-field > * {
	
	display: inline-block;
	vertical-align: middle;
}

.form p {
	
	display: inline-block;
}

#how-to-find {
	
	text-align: center;
}

#part-list {
	
	width: 700px;
	max-width: 100%;
	margin: 0px auto;
}

#part-list .cost {
	
	text-align: right;
}

#part-list .total {
	
	text-align: right;
}

#part-list .title {
	
	font-weight: bold;
	color: white;
	background-color: #007AC3;
	padding: .5em;
}

#part-list table {
	
	border-collapse: collapse;
	width: 100%;
}

#part-list table tr td, #part-list table tr th {
	
	padding: .5em;
}

#part-list table tbody tr:hover td {
	
	background-color: rgba(0,0,0,0.1);
}

#part-list table tfoot {
	
	border-top: 1px solid black;
}


#ssa-loader {
	
	position: relative;
}

#results .eligibility {
	
	padding: 1.5em 2em;
	text-align: center;
	margin: 1em auto;
	font-size: 15pt;
	width: 500px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

#results .eligibility.failed {
	background-color: darkred;
	color: white;
}

#results .eligibility.passed {
	
	background-color: green;
	color: white;
}

#results .eligibility.warning {
	
	background-color: orange;
	color: white;
}

#results .error {
	
	border: 3px solid red;
	background-color: white;
	color: red;
	padding: 1em;
	margin: 1em;
	text-align: center;
}

#results table {
	
	min-width: 500px;
	border: 3px solid #007AC3; 
	margin: 2.5em auto;
	border-collapse: collapse;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

#results table tr:nth-of-type(even) {
	
	background-color: rgba(0,0,0,0.1);
}

#results table tr td {
	
	padding: 1em;
}

#results table tr th {
	
	padding: 1em;
	width: 150px;
	text-transform: capitalize;
}

#results table .test .result {
	
}

#results table .test .result.failed {
	
	color: red;
}

#results table .test .result.passed {
	
	color: green;
}