html {
  height: 100%;
  width: 100%;
}
body {
  font-family: sans-serif;
  margin: 0;
  height: 100%;
}
.tournament-headers {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-bottom: 1px solid #ccc;
}
.tournament-headers h3 {
  width: 25%;
  text-align: center;
  font-weight: 400;
  border-right: 1px dashed #ccc;
  margin: 0;
  padding: 1rem;
}
.tournament-brackets {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  background: #fdfdfd;
  margin-bottom: 50px;
}
.bracket {
  padding-left: 0;
  display: flex;
  margin: 0;
  padding: 30px 0;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-around;
  list-style-type: none;
  border-right: 1px dashed #ccc;
  flex: 1;
}
.team-item {
  background-color: #dddddd;
  padding: 0.5rem;
  display: block;
  margin: 0.5rem 10px;
  position: relative;
  vertical-align: middle;
  line-height: 2;
  text-align: center;
}
.team-item:after {
  content: '';
  border-color: #000000;
  border-width: 2px;
  position: absolute;
  display: block;
  width: 10px;
  right: -11px;
}
.team-item:nth-of-type(odd):after {
  border-right-style: solid;
  border-top-style: solid;
  height: 100%;
  top: 50%;
}
.team-item:nth-of-type(even):after {
  border-right-style: solid;
  border-bottom-style: solid;
  height: 100%;
  top: -50%;
}
.team-item:before {
  content: '';
  border-top: 2px solid #000000;
  position: absolute;
  height: 2px;
  width: 10px;
  left: -10px;
  top: 50%;
}
.bracket-2 .team-item:nth-of-type(odd):after {
  height: 200%;
  top: 50%;
}
.bracket-2 .team-item:nth-of-type(even):after {
  height: 200%;
  top: -150%;
}
.bracket-3 .team-item:nth-of-type(odd):after {
  height: 350%;
  top: 50%;
}
.bracket-3 .team-item:nth-of-type(even):after {
  height: 350%;
  top: -300%;
}
.bracket-4 .team-item:nth-of-type(odd):after {
  height: 700%;
  top: 50%;
}
.bracket-4 .team-item:nth-of-type(even):after {
  height: 700%;
  top: -650%;
}
.bracket:first-of-type .team-item:before {
  display: none;
}
.bracket-4 .team-item:after {
  display: none;
}
.bracket:last-of-type .team-item:after {
  display: none;
}
.team-item time {
  display: inline-block;
  background-color: #dbdbdb;
  font-size: 0.8rem;
  padding: 0 0.6rem;
}
.rules {
  margin: 0 10%;
}
.rules ol,
.rules ul {
  text-align: left;
  width: 100%;
  display: block;
  margin: 10px 0 10px 20px;
  max-width: 100%;
}
/*# sourceMappingURL=tournament.css.map */