/**
 * CSS Reset
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  -webkit-text-size-adjust: none; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

strong {
  font-weight: 600; }

em {
  font-style: italic; }

textarea {
  font-family: inherit; }

sub {
  font-size: 0.7em;
  vertical-align: text-bottom;
  line-height: 1em; }

sup {
  font-size: 0.7em;
  vertical-align: text-top;
  line-height: 1em; }

small {
  font-size: 0.8em; }

img {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic; }

.clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0px;
  line-height: 0px;
  clear: both; }

/**
 * Base styles
 */
body {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  color: #333333;
  -webkit-font-smoothing: antialiased; }

.constraint {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1.5em; }

a {
  color: #009fdd;
  text-decoration: underline; }
  a:hover {
    color: #005677; }

h1 {
  font-weight: bold;
  font-size: 2em;
  line-height: 1.25em;
  margin-bottom: 1rem;
  text-transform: uppercase; }

h2 {
  font-size: 1.75em;
  line-height: 1.25em;
  font-weight: bold;
  margin-bottom: 1rem; }

h3 {
  font-size: 1.4em;
  line-height: 1.25em;
  font-weight: bold;
  margin-bottom: 1rem; }

h4 {
  font-size: 1.3em;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 0;
  color: #009fdd; }

h5 {
  font-weight: bold; }

hr {
  border: 2px solid #f9e000;
  border-bottom-width: 1px;
  margin: 2rem 0; }

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=tel] {
  box-sizing: border-box;
  width: 100%;
  font-family: inherit;
  font-size: 1.5rem;
  vertical-align: middle;
  border: 1px solid #ffffff;
  border-radius: 0px;
  outline: none;
  background-color: white;
  padding: .5rem;
  margin: 0 0 1em;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25); }
  input[type=text].error,
  input[type=number].error,
  input[type=email].error,
  input[type=password].error,
  input[type=tel].error {
    border-color: #B71C1C;
    background: #ef5d52; }
  input[type=text]:focus,
  input[type=number]:focus,
  input[type=email]:focus,
  input[type=password]:focus,
  input[type=tel]:focus {
    background: #fff;
    color: #01315c; }

input[type=radio] {
  position: absolute;
  left: -1000rem; }
  input[type=radio] + label {
    position: relative;
    cursor: pointer;
    margin-right: 1.5rem;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #ffffff; }
    input[type=radio] + label::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 1.2rem;
      width: 1.2rem;
      border-radius: 100%;
      background-color: #ffffff;
      font-family: sans-serif; }
    input[type=radio] + label::after {
      content: '';
      transition: background-color 0.15s; }
  input[type=radio]:checked + label::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 100%;
    border: 0.25rem solid #fff;
    background-color: #211;
    text-align: center; }
  input[type=radio]:focus + label::before {
    box-shadow: 0 1 0 #b3b3b3; }
  input[type=radio].error + label::before {
    background: #ffc1bc; }

input[type=checkbox] {
  position: absolute;
  left: -1000rem; }
  input[type=checkbox] + label {
    position: relative;
    cursor: pointer;
    margin-right: 1.5rem;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #ffffff; }
    input[type=checkbox] + label::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 1.2rem;
      width: 1.2rem;
      border-radius: 0.3rem;
      background-color: #ffffff;
      font-family: sans-serif; }
    input[type=checkbox] + label::after {
      content: '';
      opacity: 0;
      transition: opacity 0.15s; }
  input[type=checkbox]:checked + label::after {
    content: '';
    position: absolute;
    display: block;
    opacity: 1;
    left: 0.3rem;
    top: 0;
    width: 0.3rem;
    height: 0.7rem;
    border: solid #211;
    border-width: 0 0.25rem 0.25rem 0;
    transform: rotate(45deg);
    line-height: 1.5rem; }
  input[type=checkbox]:focus + label::before {
    box-shadow: 0 1px 0 #b3b3b3; }

.select-wrap {
  position: relative;
  color: inherit; }
  .select-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: .5rem;
    font-family: inherit;
    font-size: 1em;
    border: 1px solid #ffffff;
    border-radius: 0px;
    outline: none;
    background-color: transparent;
    color: #ffffff; }
    .select-wrap select.error {
      border-color: #B71C1C;
      background: #ef5d52; }
    .select-wrap select:focus {
      background: #fff;
      color: #01315c; }
      .select-wrap select:focus + .dropdown-arrow {
        color: #01315c; }
  .select-wrap .dropdown-arrow {
    top: 0.35rem;
    position: absolute;
    right: 0.75rem;
    pointer-events: none; }

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 25px 0; }

input[type=range]:focus {
  outline: none; }

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  box-shadow: 1px 1px 0px #000000, 0px 0px 1px #0d0d0d;
  background: #ffffff;
  border-radius: 0px;
  border: 0px solid #000000; }

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 1px #670000, 0px 0px 0px #810000;
  border: 0px solid #ff1e00;
  height: 40px;
  width: 20px;
  border-radius: 0px;
  background: #ffbb00;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -13px; }

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ffffff; }

input[type=range]::-moz-range-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  box-shadow: 1px 1px 0px #000000, 0px 0px 1px #0d0d0d;
  background: #ffffff;
  border-radius: 0px;
  border: 0px solid #000000; }

input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 1px #670000, 0px 0px 0px #810000;
  border: 0px solid #ff1e00;
  height: 40px;
  width: 20px;
  border-radius: 0px;
  background: #ffbb00;
  cursor: pointer; }

input[type=range]::-ms-track {
  width: 100%;
  height: 14px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent; }

input[type=range]::-ms-fill-lower {
  background: #f2f2f2;
  border: 0px solid #000000;
  border-radius: 0px;
  box-shadow: 1px 1px 0px #000000, 0px 0px 1px #0d0d0d; }

input[type=range]::-ms-fill-upper {
  background: #ffffff;
  border: 0px solid #000000;
  border-radius: 0px;
  box-shadow: 1px 1px 0px #000000, 0px 0px 1px #0d0d0d; }

input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 1px #670000, 0px 0px 0px #810000;
  border: 0px solid #ff1e00;
  height: 40px;
  width: 20px;
  border-radius: 0px;
  background: #ffbb00;
  cursor: pointer;
  height: 14px; }

input[type=range]:focus::-ms-fill-lower {
  background: #ffffff; }

input[type=range]:focus::-ms-fill-upper {
  background: #ffffff; }

input[type="submit"], a.button, button.button {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  border: 0px;
  padding: 1em 2em;
  border-radius: 3px;
  color: #ffffff;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  background: #3f51b5;
  white-space: unset; }

a.button {
  background: #3f51b5;
  transition: 150ms ease; }

a.button:hover, input[type="submit"]:hover {
  background: #2196F3;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px); }

a.button.secondary {
  background: transparent;
  border: 1px solid;
  color: #333;
  font-weight: normal;
  display: inline-block;
  font-size: 1rem; }

a.button.secondary:hover {
  background: #fff; }

a.button.tertiary, button.button {
  background: #f9e000;
  color: #01315c; }

a.button.tertiary:hover, button.button:hover {
  background: #ffe714; }

input[type="submit"]:active, a.button:active {
  transform: translateY(0px); }

.no-js .no-js-hide {
  display: none; }

header {
  background: #313131;
  padding: 1.5rem;
  text-align: center; }
  header h1 {
    color: #fff; }
  header img {
    max-width: 460px;
    width: 90%; }

#court {
  position: relative;
  background: url("../images/floor.jpg?1");
  overflow: hidden;
  padding: 2rem 0 4rem; }
  #court::before {
    content: "";
    width: 100%;
    height: 500px;
    background: url("../images/key.svg") top center no-repeat;
    display: block;
    position: absolute;
    top: -8px;
    background-size: contain; }
  #court::after {
    content: "";
    width: 100%;
    height: 500px;
    background: url("../images/key.svg") center -8px no-repeat;
    display: block;
    position: absolute;
    bottom: 0;
    background-size: contain;
    transform: rotateX(180deg);
    z-index: 0; }
  #court > * {
    position: relative;
    z-index: 1; }

#half-court {
  background: url("../images/half-court.svg") center no-repeat;
  height: 150px;
  background-size: contain;
  margin: 0 0 8rem;
  position: relative; }
  #half-court::before {
    content: '';
    position: absolute;
    left: 0;
    width: calc(50% - 50px);
    height: 8px;
    background: #f88106;
    top: 50%;
    margin-top: -4px; }
  #half-court::after {
    content: '';
    position: absolute;
    right: 0;
    width: calc(50% - 50px);
    height: 8px;
    background: #f88106;
    top: 50%;
    margin-top: -4px; }

.content {
  max-width: 500px;
  padding: 1.5rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  /* color: #fff; */
  font-size: 1.2rem;
  line-height: 1.4em; }
  .content p {
    margin-bottom: 1.5em; }

.step {
  text-transform: uppercase;
  text-align: center;
  margin: 3rem auto;
  font-weight: bold;
  font-size: 2.5em;
  line-height: 1em;
  max-width: 570px;
  padding: 0 1.5rem; }
  .step span {
    display: block;
    margin: 0 auto 1rem;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    border-radius: 100%;
    background: #f88202;
    color: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5); }
  .step small {
    font-size: 1rem;
    display: block;
    line-height: 1.5em;
    margin-top: 1em; }

form {
  max-width: 500px;
  min-height: 350px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.form-field {
  flex-basis: 100%; }

.form-field.firstName, .form-field.lastName {
  flex-basis: 48%; }

label {
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.75); }

input {
  background: #fff; }

footer {
  background: #313131;
  padding: 3rem 1.5rem;
  color: #fff;
  text-align: center; }
  footer p {
    margin-bottom: 2.5em; }
  footer a {
    color: #fff; }
  footer img {
    max-width: 250px; }

#bracket {
  padding: 1rem; }

.division {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; }
  .division::after {
    content: "";
    width: 40%;
    height: 60%;
    position: absolute;
    top: 20%;
    left: 25%;
    z-index: -1;
    border-top: 4px dashed #f88202;
    border-bottom: 4px dashed #f88202;
    border-right: 4px dashed #f88202; }
  .division:last-child {
    flex-direction: row-reverse; }
    .division:last-child::after {
      border-right: 0;
      border-left: 4px dashed #f88202;
      left: unset;
      right: 25%; }

.competition {
  margin: 2rem 0; }

.round {
  flex-basis: 48%; }

.competitor {
  border: 1px solid #fff;
  padding-top: 52.333%;
  position: relative;
  overflow: hidden; }
  .competitor a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .competitor .tile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    background-size: cover;
    cursor: pointer;
    transition: 250ms ease-out;
    opacity: 1;
    will-change: opacity, transform; }
    .competitor .tile.initial-state {
      transform: scale(1.1);
      opacity: 0; }
    .competitor .tile[data-adid='wordface-male-blue'] {
      background-image: url("../images/wordface-male-blue.jpg"); }
    .competitor .tile[data-adid='wordface-male-yellow'] {
      background-image: url("../images/wordface-male-yellow.jpg"); }
    .competitor .tile[data-adid='wordface-female-blue'] {
      background-image: url("../images/wordface-female-blue.jpg"); }
    .competitor .tile[data-adid='wordface-female-yellow'] {
      background-image: url("../images/wordface-female-yellow.jpg"); }
    .competitor .tile[data-adid='career-male-blue'] {
      background-image: url("../images/career-male-blue.jpg"); }
    .competitor .tile[data-adid='career-male-yellow'] {
      background-image: url("../images/career-male-yellow.jpg"); }
    .competitor .tile[data-adid='career-female-blue'] {
      background-image: url("../images/career-female-blue.jpg"); }
    .competitor .tile[data-adid='career-female-yellow'] {
      background-image: url("../images/career-female-yellow.jpg"); }
    .competitor .tile[data-adid='placeholder'] {
      background-image: url("../images/placeholder.png");
      cursor: auto; }
  .competitor::before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transition: 250ms ease; }
  .competitor.loser::before {
    opacity: 1;
    background: rgba(190, 190, 190, 0.75); }
  .competitor.winner::before {
    opacity: 1;
    box-shadow: inset 0px 0px 50px #4CAF50; }

.championship {
  position: relative; }
  .championship .round {
    max-width: 75%;
    margin: 0 auto; }
  .championship::before {
    content: "";
    position: absolute;
    top: -75%;
    height: 75%;
    right: 20%;
    border-right: 4px dashed #f88202;
    z-index: -1; }
  .championship::after {
    content: "";
    position: absolute;
    bottom: -75%;
    height: 75%;
    left: 20%;
    border-right: 4px dashed #f88202;
    z-index: -1; }

@media (min-width: 850px) {
  #bracket {
    display: flex;
    position: relative;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto 35%; }
    #bracket::after {
      content: "";
      position: absolute;
      width: 25%;
      border-top: 4px dashed #f88202;
      left: 37%;
      top: 50%;
      z-index: -1;
      margin-top: -2px; }
    #bracket::before {
      content: "";
      position: absolute;
      height: 50%;
      top: 50%;
      left: 50%;
      border-right: 4px dashed #f88202;
      margin-left: -2px;
      z-index: -1; }

  .division {
    flex-basis: 48%; }

  .championship {
    flex: none;
    position: absolute;
    top: 80%;
    width: 50%;
    left: 25%; }
    .championship::before, .championship::after {
      content: none; } }

/*# sourceMappingURL=main.css.map */
