#flash { 
 display:none; 
 background-color:#090300; 
 color:#fff
}

h1 {
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin: 0;
}
h1.kings {
  color: #090300;
}
h2 {
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
}

h3 {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #090300;
  margin: 0;
}

label {
  display: block;
  margin: 20px 0 10px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.29;
  letter-spacing: -0.2px;
  color: #090300;
}
label sup {
  color: red;
}
.information {
  border-right: solid 1px #090300;
  padding: 20px 90px 20px 0 !important;
}
.subscriptions {
  padding: 20px 0 20px 60px !important;
}
.subscriptions label {
  font-size: 18px;
}
.subscriptions label span {
  font-size: 16px;
}
input[type="text"], input[type="date"], input[type="tel"],select {
  border: solid 1px #090300 !important;
}
#interests {
  margin-left: 35px;
}
#interests .all-interests {
  margin-bottom: 40px;
}
#form-submit {
  margin: 40px auto;
}
button.submit {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 50px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 18px;
  border-radius: 3px;
  color: #FFC72C;
  font-weight: 700;
}
button.kings {
  background-color: #090300;
}

/*** Custom Checkbox ***/

/* The checkbox-container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #ffffff;
  border: solid 1px #090300;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #A7A8AA;
}

/* When the checkbox is checked, add a white */
.checkbox-container input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer {
  color: #ffffff;
  font-size: 14px;
}

.header {
  margin: 20px;
}
.header-nav {
  height: auto;
}

.header-nav .row {
  position: relative !important;
}

.social img {
  margin: 0 5px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .header-nav {
    height: 105px;
  }
  .header-nav .row {
    position: absolute !important;
  }
}

