html,
body {
  border: 0px;
  padding: 0px;
  margin: 0px;
  height: 100%;
}
.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body {
  background-color: #f5f5f5;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #666666;
  border: 0px;
  padding: 0px;
  margin: 0px;
  min-height: 100vh;
}

@media screen and (max-width: 1200px) {
  body {
    font-size: 14px;
  }
}
a,
a:active,
a:link,
a:visited {
  color: #21b0e8;
  text-decoration: none;
}
a:hover,
a:active:hover,
a:link:hover,
a:visited:hover {
  text-decoration: underline;
}
header {
  background-color: #ffffff;
  position: relative;
  width: 100%;
  height: 120px;
  margin-bottom: 28px;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  header {
    text-align: center;
    height: 82px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1250px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
  }
}
#content {
  width: 100%;
}
#content .container {
  background-color: #E9ECEF;
  padding: 47px;
  box-sizing: border-box;
  -webkit-box-shadow: 0 2px 4px 0 rgba(121, 117, 117, 0.5);
  -moz-box-shadow: 0 2px 4px 0 rgba(121, 117, 117, 0.5);
  box-shadow: 0 2px 4px 0 rgba(121, 117, 117, 0.5);
  min-height: 500px;
}
h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  color: #666666;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
}
.toggle {
  display: none;
}
.toggle + label {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 143px;
  height: 36px;
  border-radius: 18px;
  background-color: #E9ECEF;
}
.toggle + label .content {
  overflow: hidden;
  text-indent: -99999px;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
}
.toggle + label .thumb {
  display: block;
  width: 32px;
  height: 32px;
  background-color: #e4e5e5;
  position: relative;
  left: 109px;
  top: 2px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .toggle + label .thumb {
    width: 20px;
    height: 20px;
    top: 1px;
    left: 62px;
  }
}
.toggle + label:after {
  content: "Inactive";
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #666666;
  font-weight: 600;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 120px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .toggle + label:after {
    width: 70px;
    height: 22px;
    line-height: 22px;
    border-right: 11px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #666666;
    color: #ffffff;
  }
}
@media screen and (max-width: 1200px) {
  .toggle + label {
    width: 83px;
    height: 22px;
    border-right: 11px;
  }
}
.toggle:checked + label {
  background-color: #FFFFFF;
}
.toggle:checked + label .thumb {
  left: 2px;
}
@media screen and (max-width: 1200px) {
  .toggle:checked + label .thumb {
    left: 1px;
  }
}
.toggle:checked + label:after {
  content: "Active";
  left: 20px;
}
@media screen and (max-width: 1200px) {
  .toggle:checked + label:after {
    left: 15px;
  }
}
.prefs {
  width: 100%;
  border-spacing: 0px;
}
thead {
  background-color: #3300FF;
}
thead tr {
  background-color: #3300FF;
  height: 50px;
  color: #ffffff;
}
thead tr th {
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
  padding-top: 11px;
  padding-bottom: 15px;
  box-sizing: border-box;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  thead tr th {
    font-size: 14px;
    padding-left: 10px;
  }
}
thead tr th.status {
  text-align: center;
  padding-left: 0px;
  max-width: 200px;
  width: 200px;
}
@media screen and (max-width: 1200px) {
  thead tr th.status {
    max-width: 100px;
    width: 100px;
  }
}
tbody tr {
  height: 60px;
}
tbody tr td {
  border-bottom: solid 1px #9b9b9b;
  border-collapse: collapse;
}
@media screen and (max-width: 1200px) {
  tbody tr td {
    border-bottom-color: #e0e0e0;
  }
}
tbody tr td:first-child {
  padding-left: 25px;
  border-left: solid 1px #9b9b9b;
}
@media screen and (max-width: 1200px) {
  tbody tr td:first-child {
    padding-left: 0px;
    border-left: none;
  }
}
tbody tr td:last-child {
  text-align: center;
  border-right: solid 1px #9b9b9b;
}
@media screen and (max-width: 1200px) {
  tbody tr td:last-child {
    text-align: right;
    border-right: none;
  }
}
tfoot td {
  padding-top: 25px;
  border: none;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  tfoot td {
    text-align: left;
  }
}
#form_global {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin: 0;
}
input[type='email'],
input[type='text'] {
  -webkit-appearance: none;
  width: 382px;
  max-width: 100%;
  height: 40px;
  border: solid 1px #9b9b9b;
  display: inline-block;
  box-sizing: border-box;
  padding: 5px 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #666666;
}
input[type='email']:focus,
input[type='text']:focus {
  -webkit-appearance: none;
}
@media screen and (max-width: 1200px) {
  input[type='email'],
  input[type='text'] {
    width: 100%;
  }
}
input[type='email'].error,
input[type='text'].error {
  border-color: #d0021b;
  color: #d0021b;
}
input[type='submit'],
button[type='submit'] {
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  height: 40px;
  color: #ffffff;
  background-color: #3300FF;
  width: 180px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  input[type='submit'],
  button[type='submit'] {
    width: 100%;
    margin-top: 20px;
  }
}
.email_form {
  position: relative;
}
.email_form label {
  margin-right: 10px;
}
.small {
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  .small {
    font-size: 11px;
  }
}
@media screen and (max-width: 1200px) {
  .mobile-hidden {
    display: none;
  }
}
.mobile-only {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mobile-only {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .paragraph {
    text-align: center;
  }
  .paragraph strong {
    font-size: 18px;
  }
}
.errors {
  color: #d0021b;
  float: left;
  position: absolute;
  left: 130px;
}
@media screen and (max-width: 1200px) {
  .errors {
    float: none;
    position: relative;
    left: 0px;
  }
}
ul {
  padding: 0;
}
ul li {
  list-style-type: none;
}
.center {
  text-align: center;
}
.right {
  float: right;
}
.thank-you {
  font-size: 18px;
  font-weight: 300;
}
.logo {
  position: relative;
  top: 34px;
}
@media screen and (max-width: 1200px) {
  .logo {
    top: 22px;
    width: 80px;
  }
}
.phone {
  position: absolute;
  right: 0px;
  top: 65px;
  font-weight: 300;
  max-height: 30px;
}
@media screen and (max-width: 1200px) {
  .phone {
    right: 21px;
    top: 44px;
  }
}
.phone p {
  margin: 0;
  padding: 0;
  font-size: 30px;
  max-height: 30px;
  line-height: 30px;
}
.phone p img {
  vertical-align: middle;
  margin-right: 10px;
}
.copyright {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .copyright {
    text-align: left;
  }
}
.copyright a,
.copyright a:link,
.copyright a:active,
.copyright a:visited {
  color: #666666;
}
.links {
  float: right;
}
@media screen and (max-width: 1200px) {
  .links {
    margin-top: 10px;
    float: none;
    display: block;
    text-align: left;
  }
}
.hidden {
  display: none;
}
.afcc-logo {
  margin-left: 25px;
}
table {
  border-color: #D0D0D0;
}
tbody {
  background-color: #FFFFFF;
}
tbody tr td {
  border-color: #D0D0D0 !important;
}
.toggle + label {
  border: solid 1px #3300FF;
}
.toggle + label .thumb {
  background-color: #3300FF;
}
.toggle + label:after {
  color: #3300FF;
}
footer {
  background-color: #f5f5f5;
  color: #525259;
  font-size: 14px;
}
footer a,
footer a:active,
footer a:link,
footer a:visited {
  color: #1F1F23;
}
#content .container {
  box-shadow: 0px 4px 4px rgba(104, 104, 104, 0.25);
}
