:root {
	/* Utility colors */
	--black: #000;
	--white: #fff;
	--teal-dark: #00544f;
	--gray-dark: #333;
	--brown-dark: #231F20;
	--purple-dark: #352568;
	--gray-medium: #666666;
	--red: #c60f13;
	--gray-light: #cccccc;
	--off-white: #EAF0F6;

	/* Colors */
	--color-primary: var(--black);
}

header {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
}
header a:hover {
	color: var(--gray-medium);
	text-decoration: none;
}
body {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
}
h1 {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	font-weight: 700;
	font-size: 23px;
	color: var(--color-primary);
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	text-rendering: optimizeLegibility;
}
h2 {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--color-primary);
	border-bottom: 1.5px solid var(--color-primary);
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	letter-spacing: 1px;
	text-rendering: optimizeLegibility;
}
h3, h4, h5 {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: var(--color-primary);
	text-rendering: optimizeLegibility;
}
h6 {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 5px;
	color: var(--color-primary);
	text-rendering: optimizeLegibility;
}

#content a {
	color: var(--color-primary);
	text-decoration: underline;
}

#content a:hover {
	color: var(--gray-medium);
	text-decoration: underline;
}

#content .alert a {
	color: var(--white);
}

input[type="button"], input[type="submit"], input[type="reset"], button, .button, #content a.button {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	color: var(--white);
	background: var(--color-primary);
	font-size: 18px;
	font-weight: 400;
	border-radius: 6px;
	line-height: 1;
	margin: 0;
	padding: 10px 28px 11px;
	text-align: center;
	transition: background-color .15s ease-in-out;
	border: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
}

input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover, .button:hover, #content a.button:hover {
	color: var(--white);
	background: var(--gray-medium);
	cursor: pointer;
	text-decoration: none;
}


label {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	color: var(--brown-dark);
	font-size: 18px;
}*/

label, input[type="text"] {
	font-size: 16px;
	color: var(--color-primary);
}

select {
	font-family: "Helvetica Neue", helvetica, arial, sans-serif;
	color: var(--brown-dark);
	font-size: 18px;
	border: 1px solid var(--gray-light);
	border-radius: 2px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	padding: 5px;
	line-height: 1.3;
	height: 32px;
	-webkit-appearance: menulist-button;
	-moz-appearance: menulist-button;
	appearance: menulist-button;
}

.input-feedback {
	margin-bottom: 15px;
	margin-top: -5px;
	color: var(--red);
}

/* spinner */
#loaderWrap {
  /* The div that shows/hides. */
  display: none; /* starts out hidden */
  z-index: 40001; /* High z-index to ensure it appears above all content */
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loaderOverlay {
  /* Shades out background when selector is active */
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 40001;
}
.vertical-offset {
  /* Fixed position to provide the vertical offset */
  position: absolute;
  bottom: 40%;
  width: 100%;
  z-index: 40002; /* ensures box appears above overlay */
}
.loaderBox {
  /* The actual box, centered in the fixed-position div */
  max-width: 550px; /* Whatever width you want the box to be */
  position: relative;
  margin: 0 auto; /* Everything below is just visual styling */
  padding: 20px 20px 0 20px;
}

/* loading spinner */
.loader {
  margin: auto;
  border: 20px solid var(--off-white); /*circle background*/
  border-radius: 50%;
  border-top: 20px solid var(--color-primary); /*spinning color*/
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}