/*!
 * WARNING: CSS files are generated, do not edit by hand!
 * Please see README
 */

:root {
  --color-primary: #005CB9;
  --color-secondary: #666666;

  --link-color-primary: #ffcd00;
  --link-color-secondary: #ffcd00;

  --text-color-primary: #FFFFFF;
  --text-color-secondary: #000000;

  --border-color-primary: #80AEDC;
  --border-color-secondary: #adb5c4;

  --bg-color-primary: #005CB9;
  --bg-color-secondary: #FFFFFF;

  --button-color-primary: #005CB9;
  --button-bg-color-primary: #ffcd00;

  --error-color-primary: #FF0000;
}

body {
  color: var(--text-color-secondary);
  font-family: Arial, Helvetica Neue, Helvetica, Verdana, sans-serif;
  font-size: 12px;
  padding: 0;
  margin: 0;
}

body.login {
  background: var(--color-primary);
}

body div#body {
  position: relative;
  margin: 0 auto;
  min-height: max(100vh, 750px);
}

body:not(.login) div#body {
  width: 1200px;
}

body div#login-body {
  width: 900px;
  margin: 50px auto;
}

#login-banner {
  color: var(--text-color-secondary);
  background: var(--bg-color-secondary);
  line-height: 140px;
  height: 200px;
  font-size: 225%;
  font-weight: bold;
  text-align: center;
}

#login-banner img#logo {
  position: absolute;
  right: 0;
  top: 30px;
}

#login-header {
  height: 73px;
  padding: 9px 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 28px;
}

#login-text {
  float: left;
  width: 400px;
  margin-right: 40px;
  color: var(--text-color-primary);
  /* line-height: 1.25em; */
  font-size: 16px;
}

#login-text #please-login-sub-caption {
  font-size: 110%;
}

#login-text a {
  font-weight: bold;
  text-decoration: none;
  color: var(--link-color-primary);
}

#login-box {
  float: left;
  width: 386px;
  height: 272px;
  padding: 20px;
  font-size: 120%;
  line-height: 1.5em;
  background: var(--bg-color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--border-color-secondary);
}

#login-box #login-box-caption {
  font-size: 28px;
  text-align: center;
}

#login-box label {
  display: inline-block;
  width: 7em;
  color: var(--color-secondary);
  text-align: right;
  padding-right: 0.5em;
  font-weight: bold;
}

.form-group input,
.form-group select {
  border: 1px solid var(--border-color-secondary);
  font-size: inherit;
  padding: 7px;
  box-sizing: border-box;
  margin-top: 3px;
}

#login-box input,
#login-box select {
  width: 240px;
}

#login-box input[type=submit] {
  border: 0 none;
  color: var(--button-color-primary);
  font-weight: bold;
  background: var(--button-bg-color-primary);
  height: 30px;
}

#login-box a {
  color: var(--link-color-primary);
  font-weight: bold;
  text-decoration: none;
}

#login-footer-container {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bg-color-secondary);
}

#login-footer {
  max-width: 1200px;
  width: 900px;
  color: var(--color-secondary);
  text-align: left;
  font-size: 14px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
}

a, a:link, a:visited, a:active {
  color: var(--color-primary);
  text-decoration: underline;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

#errors {
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: inline-block;
  width: 120px;
}

table.summary {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 10px;
}

table.summary th {
  text-align: left;
}

table.summary th,
table.summary td {
  padding: 3px 8px;
  border: 1px solid var(--border-color-primary);
}

table.summary a {
  text-decoration: none;
}

table.summary a:hover {
  text-decoration: underline;
}

.clear {
  margin: 0;
  padding: 0;
  clear: both;
}

.text-center {
  text-align: center !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.red {
  color: var(--error-color-primary) !important;
}

#signature_container {
  display: inline-block;
  margin-bottom: 20px;
}

#attendee-edit .field-required:after {
  content: ' *';
  color: var(--error-color-primary);
}

#attendee-form input[type=submit],
#attendee-form input[type=button] {
  padding: 7px 10px;
}

.note {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}

#signin-form {
  display: inline-block;
  text-align: left;
}

#attendee-form {
  margin-bottom: 50px;
}

.row {
  display: flex;
  justify-content: space-between;
}

.col-6 {
  width: 49.5%;
}

@media screen and (max-width: 1199px) {
  #login-banner {
    text-align: left;
  }

  #login-banner img#logo {
    right: 20px;
  }

  body:not(.login) div#body {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 939px) {
  #login-banner {
    text-align: center;
    line-height: 90px;
    height: auto;
    margin-bottom: 55px;
  }

  #login-banner img#logo {
    display: block;
    margin: 0 auto;
    position: static;
  }

  #login-text {
    display: none;
  }

  body.login div #login-body {
    text-align: center;
  }

  body.login div #login-body form {
    display: inline-block;
  }

  body.login div #login-body,
  #login-footer {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }

  #login-footer {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 755px) {
  #login-banner {
    text-align: center;
    line-height: 42px;
    height: auto;
  }

  #login-box {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  #login-box label {
    text-align: left;
    width: 100%;
  }

  label.blank {
    display: none;
  }

  #login-box input[type=text],
  #login-box select,
  .form-group input[type=text],
  .form-group select {
    width: 100%;
  }

  #login-box input[type=submit] {
    width: 100%;
    background-size: cover;
  }

  #attendee-form [type=submit],
  #attendee-form [type=button] {
    width: 100%;
    margin-bottom: 10px;
  }

  #login-box .form-group {
    margin-bottom: 15px;
  }

  .row {
    display: block;
  }

  .col-6 {
    width: 100%;
  }
}