#compactForm {
	line-height: 1.5em;
	font-size: 16px;
	line-height: 2.00em;
}

#compactForm *,
#compactForm *:before,
#compactForm *:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#compactForm.compactFormSubmitted {
	display: none;
}

#compactForm .input {
	display: block;
	width: 100%;
	color: #000000;
	margin: 5px 0;
	padding: 6px;
	border: 1px solid rgba(179, 179, 179, 1.00);
	background: #ffffff;
	transition: all 300ms ease-in-out;
	outline: none;
	box-shadow: none;
	border-radius: 0px;
}

#compactForm .input:focus {
	color: #000000;
	border: 1px solid rgba(76, 76, 76, 1.00);
	background: #ffffff;
}

#compactForm #input7 {
	display: none;
}

#compactForm .messageBox {
	height: 150px;
	border-radius: 0px;
	color: #000000;
}

/* Submit Button */

#submitArea {
	display: block;
	text-align: right;
}

#compactFormSubmit {
	display: inline;
	font-weight: bold;
	padding: 10px 20px;
	background: rgba(122, 186, 37, 1.00);
	border-radius: 4px;
	border: none;
	box-shadow: none;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	font-size: 16px;
}

#compactFormSubmit:hover {
	background: rgba(122, 186, 37, 1.00);
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

#compactFormSubmit:focus,
#compactFormSubmit:active {
	outline: none;
	border: none;
	box-shadow: none;
	background: rgba(122, 186, 37, 1.00);
	color: rgba(255, 255, 255, 1.00);
}

#compactForm .error {
	border: 1px solid rgba(255, 0, 0, 0.75);
}

#compactForm label.error {
	background: rgba(255, 0, 0, 0.75);
	color: rgba(255, 255, 255, 1.00);
	font-weight: bold;
	display: block;	
	padding: 0.25rem;
}

/* Compliance checkbox */

#compactForm .form-check {
	position: relative;
	display: block;
	padding-left: 1.5rem;
	padding-bottom: 0.5rem;
}

#compactForm .form-check-input {
	position: absolute;
	left: 0;
	top: 0;
	margin-top: .3rem;
	margin-left: 0rem;
	width: auto;
}

#compactForm .form-check-label {
	font-weight: normal;
	margin-bottom: 0;
	display: inline-block;
}

