html, body {
	position: relative;
	width: 100%;
	height: 100%;
	margin:0px;
	padding: 0px;
}

body {
	color: #333;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

main {
	margin: 0.5em;
	padding-bottom:3em;
}


a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}


h1,h2{
	text-transform: uppercase;
	/* color: #0d4ec9; */
}



h3{
	font-size: 1.15rem !important;
}

.accordion-body h2{
	font-size: 22px;
	border-bottom: 1px solid black;
}

.form-label.type-radio{
	display: block;
}

/* .radio-options .radio:not(:first-child){
	margin-left: 1em;
} */

.radio-options .radio{
	margin-right: 1em;
}


/*Radio Buttons are displayed either as block or inline-block */
.radio.block.form-check{
	display: block;
	margin-left: 0;
}
.radio.block.form-check label
.checkbox.form-check label
.radio.inline.form-check label{
	margin-left: 0;
}

.radio.inline.form-check{
	display: inline-block;
}

/*All Form Labels*/
.form-label{
	font-weight: 600;
	font-size: .85rem;
	text-transform: uppercase;
	margin-bottom: 0.25rem !important;
}

/*Accordion Headers*/
.accordion-button{
	font-weight: 500;
	text-transform: uppercase;
}

tr:hover{
	cursor: pointer;
}

/*Make radio buttons and checkboxes bigger on mobile*/
@media only screen and (max-device-width: 480px){
	.form-check.checkbox input,
	.form-check.radio.inline input,
	.form-check.radio.block input{
		width: 2em;
		height: 2em;
	}

	.form-check.radio.block,
	.form-check.checkbox{
		min-height: 2.5rem;
	}
	
	.form-check.radio.inline label,
	.form-check.radio.block label,
	.form-check.checkbox label{
		margin-top: 12px;
		margin-left: 12px;
		line-height: 1.2;
	}

	.form-check.radio.block label,
	.form-check.checkbox label{
		max-width: 14rem;
	}


	.form-check.radio.inline label{
		width: 1rem;
	}
}


/*Prevent Accordions from going on top of the bottom status bar*/
.accordion-header button,
.accordion-header button:hover{
	z-index: 0;
}

/*Prevent multi-selects at the bottom of an accordion from cutting off*/ /*Side effect - looks very weird when changing accordions*/
/* .accordion-collapse{
	overflow:visible !important;
} */