*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html,
body {
  color: #333;
  width: 100%;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  font-family: 'Inter', sans-serif;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-weight:500;
}

html, body {
  background: #243a52;
  height: 100%;
}
body > div,
div.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'clearface';
}

.small-font-85 {
  font-size: 0.85em;
}
.u-text-center {
  text-align: center;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"],
textarea {
  width: 100%;
  color: #333;
  text-align: left;
}
textarea {
  min-height: 150px;
}
.form-container input[type="text"],
.form-container input[type="date"],
.form-container select {
  border: solid 1px #ddd;
  background: #fefefe;
  border-radius: 2px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
}

.button {
  border: none !important;
  display: block;
  font-size: 16px;
  text-transform: none;
  height: 65px;
  line-height: 65px;
  min-width: 160px;
  letter-spacing: -0.5px;
  border-radius: 50px;
  transition: all 0.2s;
  height: auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.button.inline {
  display: inline-block !important;
  width: auto !important;
  margin: 0 auto;
}
.button.medium {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  min-width: 0;
}
.button.small {
  height: 30px;
  line-height: 30px;
  font-size: 13px;
}
.button.xsmall {
  height: 20px;
  line-height: 20px;
  font-size: 11px;
}

.button.blank{
  background: none;
  color: #62aedc;
}
.button.yellow {
  background: #f9d359;
  color: #000;
}
.button.blue {
  background: #17a2b8;
  color: #fff;
}
.button.purple {
  background: #522979;
  color: #fff;
}
.button:disabled,
.button.disabled {
  background: #f8f8f8 !important;
  color: #ddd !important;
  opacity: 0.8;
  cursor: default !important;
}
.button.red {
  background: #c4250d;
  color: #fff;
  border-radius: 100px;
  text-transform: initial;
  letter-spacing: -0.5px;
}
.button.white {
  background: #fff;
  color: #c4250d;
}
.button.grey {
  background: #222;
  color: #fff;
}
.button.green,
.green {
  background: #5da027;
  color: #fff;
  height: auto;
  transition: all 0.2s;
}
.button.blank:hover{
  color: #85bee0;
}
.button.green:hover,
.green:hover {
  background: #5a9a26;
  color: #fff;
}
.button.purple:hover {
  background: #7039a5;
}
.button.grey:hover {
  background: #777;
}

.button.invert {
  background: none;
  border: solid 5px #222 !important;
  color: #222 !important;
}
.button.invert.unfavourable {
  border: none !important;
}

.button.text {
  color: #222 !important;
  background: none;
  border: none;
}
.button.block {
  display: block;
  width: 100%;
}
.button.bold {
  font-weight: 700;
}
.button.button-l {
  padding: 0.3em 1.3em;
  font-size: 30px;
  line-height: 1em;
  height: auto;
}
.button.button-xl {
  padding: 0.3em 1.3em;
  font-size: 60px;
  line-height: 1em;
  height: auto;
}
.button.button-xxl {
  padding: 0.6em 1.4em;
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  display: inline-block;
  margin: 1em 0;
}

.button.button-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 0.4em 0.6em;
  display: block;
  font-size: 61px;
  border-radius: 0;
}

.button.profile {
  float: right;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 20px 0;
}
.button.help.fixed {
  position: fixed;
  bottom: 5px;
  right: 5px;
}
.button.help {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 20px 0;
}
.button img {
  margin: 0 8px 0 0;
  width: 15px;
}
.button.help img {
  width: 30px;
}

form .alert {
  line-height: 1.5em;
  margin-bottom: 35px;
}

.alert {
  display: block;
  margin: 0 0 10px;
  border: solid 1px;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 14px;
  border-radius: 0;
}

.alert.red {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert.yellow {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert.blue {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.input-error {
  display: block;
  margin: -15px 0 0;
  font-size: 12px;
  color: #c4250d;
  padding: 2px;
}

.checkbox {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  margin: 0 0 10px;
}
.checkbox input {
  margin: 3px 10px 0 0;
  display: block;
  padding: 0;
  width: 20px;
  height: 20px;
  flex-wrap: wrap;
}
.checkbox label {
  margin: 0;
  font-size: 14px;
  width: calc(100% - 30px);
}


.container {
  max-width: 1200px;
}
.waitlist {
  color: #fff;
  display: flex;
  align-items: center;
}
.waitlist .column {
  margin: 0;
  padding: 0;
  width: calc(100% - 500px);
}
.waitlist .column:first-child {
  width: 500px;
}
.waitlist h2 {
  color: #ecc661;
  margin: 0;
  padding: 0;
}
.waitlist h5 {
  line-height: 1.3em;
  margin: 0 0 40px;
}
.waitlist label {
  font-size: 11px;
  margin: 20px 0 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.waitlist-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  color: #333;
  min-width: 300px;
}
.signature {
  font-size: 11px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}


@media (max-width: 820px) {
  body > div, div.content {
    display: block;
    height: auto;
  }
  .waitlist h5 {
    font-size: 23px;
  }
  .waitlist {
    flex-wrap: wrap;
    justify-content: center;
  }
  .waitlist .column {
    width: 90%;
    margin: 0 0 30px;
  }
  .waitlist .column:first-child {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
    margin-bottom: 0;
  }
  .signature {
    justify-content: center;
    width: 100%;
    margin: 0 0 30px;
  }
  .waitlist .column:first-child,
  .waitlist .column {
    width: 100%;
    padding: 20px;
  }

}

@media screen and (max-width: 600px) {
  .waitlist .column:first-child {
    padding: 20px;
    text-align: center;
  }
}
