body {
	background: #e5e2da;
	margin: 0;
	font-family: Arial Narrow, sans-serif;
}

#header-section {
	width: 100%;
	background-color: #fef200;
}

.site-logo-div img {
	padding: 10px 0 0 10px;
}

.content-wrapper, .disclaimer-wrapper { 
	box-shadow: 8px 4px 8px 0 rgba(0, 0, 0, 0.2), -4px 6px 20px 0 rgba(0, 0, 0, 0.4); 
	background: #f4f3f0;
	padding: 10px;
	border: 1px solid #000;
}

.content-wrapper {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 1%);
	width: 400px;
	margin-left: auto;
	margin-right:auto;
}

.disclaimer-wrapper {
	position: relative;
}

	@media only screen and (max-width: 980px) {
		.content-wrapper { 
			top: 140px;
			transform: translate(-50%, 8.5%); 
		}
		.disclaimer-wrapper {
			top: 20px;
			left: unset;
			margin: 0 auto;
			width: 330px;
		}
	}

	@media only screen and (min-width: 981px) {
		.disclaimer-wrapper {
			top: 40px;
			left: 10px;
			width: calc(50vw - 250px);
			max-width: 440px;
		}
	}

.form-content {
  padding: 5px;
}
input {
  width: 95%;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
label {
  font-size: 18px;
}
h1, h2, h3, h4 {
  text-align: center;
  font-weight: 700;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 8px;
}
.select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}
.submit {
  width: 100%;
  font-size: 23px;
  background: #000;
  color: #fff;
  cursor: pointer;
  padding: 5px;
}
.message {
  text-align: center;
  font-size: 33px;
  margin-top: 5%;
  margin-bottom: 10px;
}
.error-link {
  text-align: center;
  font-size: 23px;
}
.error-link a {
  text-decoration: none;
}
span.optional {
  font-size: 10px;
}

.modal {
/*  display: none; /* Hidden by default */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,255,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #f00;
  border-radius: 8px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

