#content {
	display: flex;
	flex-direction: row;
}
.content__section {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.content__section--left {
	border-right: thin solid #CCCCCC;
	padding-right: 20px;
}

.content__section--right {
	width: 90%;
	padding-left: 20px;
}

.contactItem {
	padding: 0.5rem;
}

.contactItem > p {
	margin: 0;
}

/* Forms */

form {
	color: rgb(82, 82, 82);
}

.form__fieldset {
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1rem;
	margin-left: 0;
	border: 0;
}

.fieldset__legend {
	padding-bottom: 0.75rem;
}

.form__group {
	padding-left: 1rem;
	padding-right: 1rem;
}

.form__group--half {
	width: 50%;
	float: left;
	padding: 0 0.5rem 0 0rem;
	box-sizing: border-box;
}

.form__group--third {
	width: 33%;
	float: left;
	padding: 0 0.5rem 0 0rem;
	box-sizing: border-box;
}

.form__group--quarter {
	width: 25%;
	float: left;
	padding: 0 0.5rem 0 0rem;
	box-sizing: border-box;
}

.form__group--threequarter {
	width: 75%;
	float: left;
	padding: 0 0.5rem 0 0rem;
	box-sizing: border-box;
}

.form__group--singleLine::after {
	content: "";
	display: table;
	clear: both;
}

.form__group--singleLine > .form__group:last-child {
	padding-right: 0;
}

.form__group--conditional[aria-hidden="true"] {
	display: none;
}

.form__fieldset--conditional[aria-hidden="true"] {
	display: none;
}

.checkbox__item--conditional[aria-hidden="true"] {
	display: none;
}

.form__input {
	width: 100%;
	padding: 0.25rem;
	font-size: 18px;
	margin-bottom: 0.25rem;
	box-sizing: border-box;
	border: 1px solid #bcbcbc;
    border-radius: 0px;
    box-shadow: none;
}

.form__input--radio {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
	margin: 0;
	opacity: 0;
}

.form__input--checkbox {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	cursor: pointer;
	margin: 0;
	opacity: 0;
}

.form__required {
	color: #c41230;
	padding-left: 0.25rem;
	transform: translateY(8px);
	position: absolute;
}

label .form__required {
	transform: translateY(3px);
    font-weight: normal;
}

.fieldset__legend > h3 > label > .form__required {
	transform: translateY(4px);
}

.form__label {
	padding-top: .25rem;
	padding-bottom: 0.3rem;
	display: inline-block;
	font-weight: 600;
}

.form__label--radio {
	display: inline-block;
	margin-bottom: 0;
	padding: 8px 15px 5px;
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

.form__label--radio::before {
	content: "";
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 36px;
	height: 36px;
	border: 2px solid #bcbcbc;
	border-radius: 50%;
	background: transparent;
}

.form__label--radio::after {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 0;
	height: 0;
	border: 8px solid currentColor;
	border-radius: 50%;
	opacity: 0;
	background: currentColor;
}

.form__label--checkbox {
	cursor: pointer;
    padding: 8px 10px 9px 12px;
    display: block;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.form__label--checkbox::before {
	content: "";
	border: 2px solid #bcbcbc;
	background: transparent;
	width: 34px;
	height: 34px;
	position: absolute;
	top: 0;
	left: 0;
}

.form__label--checkbox::after {
	content: "";
	border: solid;
	border-width: 0 0 5px 5px;
	background: transparent;
	border-top-color: transparent;
	width: 17px;
	height: 7px;
	position: absolute;
	top: 10px;
	left: 8px;
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 0;
}

.form__hint {
	color: rgb(135, 133, 133);
	margin-bottom: 0.5rem;
}

.form__hint--checkbox {
	padding: 8px 10px 9px 12px;
}

form aside {
	margin-right: 0rem;
	margin-left: 0rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.radio__item {
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.25;
	display: block;
	position: relative;
	min-height: 36px;
	margin-bottom: 10px;
	padding: 0 0 0 36px;
	margin-right: 18px;
	margin-top: 0.5rem;
	float: left;
	clear: none;
}

.checkbox__item {
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.25rem;
	display: block;
	position: relative;
	min-height: 36px;
	margin-bottom: 0.75rem;
	padding: 0 0 0 36px;
	margin-right: 18px;
	margin-top: 0.5rem;
}


.form__input--radio:checked+.form__label--radio::after {
	opacity: 1;
}

.form__input--checkbox:checked+.form__label--checkbox::after {
	opacity: 1;
}

.button {
	padding: 0.5em 1em;
	margin: 0.5rem 0rem;
	background-color: #696969;
	color: white;
	font-family: 'Open Sans', Arial;
	font-size: 1rem;
	border-radius: 3px;
	border: none;
	cursor: pointer;
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
	margin-left: 1rem;
}

.button:hover, .button:focus {
	background-color: #333333;
}

.hidden {
	display: none;
}

/* Focus Styles */

.form__input--radio:focus+.form__label--radio::before {
	outline: 2px solid transparent;
	outline-offset: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgb(59, 153, 252);
	box-shadow: 0 0 0px 2px rgb(59, 153, 252);
}

.form__input--checkbox:focus+.form__label--checkbox::before {
	outline: 2px solid transparent;
	outline-offset: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgb(59, 153, 252);
	box-shadow: 0 0 0px 2px rgb(59, 153, 252);
}

.form__input:focus {
	outline: 2px solid transparent;
	outline-offset: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgb(59, 153, 252);
	box-shadow: 0 0 0px 2px rgb(59, 153, 252);
}

.button:focus {
	outline: 2px solid transparent;
	outline-offset: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgb(59, 153, 252);
	box-shadow: 0 0 0px 2px rgb(59, 153, 252);
}

.captcha {
	margin-top: 2rem;
    margin-right: 0rem;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
}


/* Media Queries */

@media only screen and (max-width: 944px) {

	#content {
		min-width: 0px;
		flex-direction: column;
	}

	.content__section {
		width: 100%;
	}

	.content__section--left {
		border-right: 0px;
		border-bottom: thin solid #CCCCCC;
		padding: 0;
	}

	.form__group {
		padding: 0;
	}

	.form__group--half, .form__group--quarter, .form__group--threequarter {
		width: 100%;
	}
}