.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.tournament-bracket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-direction: row;
  overflow-x: scroll;
  padding-left: 5px;
}

.fixture-phase {
  display: inline-block;
  margin-left: -3px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 280px;
  min-width: 280px;
}

.fixture-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  min-height: 100%;
  border-bottom: 1px dashed #e5e5e5;
  padding-bottom: 2em;
  margin-bottom: 2em;
  -webkit-transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out;
  padding-left: 0 !important;
}

.fixture-phase:last-child .fixture-list {
  border: 0;
}

.fixture-game {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding: 2% 0;
  width: 48%;
  -webkit-transition: padding 0.2s linear;
  transition: padding 0.2s linear;
  padding: 0.5em 1em;
  width: 100%;
}

.fixture-game > span {
  padding-left: 12px;
  font-size: 14px;
  color: #182342;
}

.fixture-game:nth-child(odd) {
  margin-right: 2%;
}

.fixture-game:nth-child(even) {
  margin-left: 2%;
}

.fixture-game::after {
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
}

@media (max-width: 24em) {
  .fixture-game {
    width: 100%;
  }
  .fixture-game:nth-child(odd), .fixture-game:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
}

.fixture-game:nth-child(odd), .fixture-game:nth-child(even) {
  margin: 0;
}

.fixture-game::after {
  position: absolute;
  right: 0;
  content: '';
  display: block;
  width: 1em;
  height: 55%;
  border-right: 2px solid #E81F3E;
}

.fixture-game:nth-child(odd)::after {
  top: 50%;
  border-top: 2px solid #E81F3E;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.tournament-bracket--rounded .fixture-game:nth-child(odd)::after {
  border-top-right-radius: 0.6em;
}

.fixture-game:nth-child(even)::after {
  bottom: 50%;
  border-bottom: 2px solid #E81F3E;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.tournament-bracket--rounded .fixture-game:nth-child(even)::after {
  border-bottom-right-radius: 0.6em;
}

.fixture-phase:first-child .fixture-game {
  padding-left: 0;
}

.fixture-phase:last-child .fixture-game {
  padding-right: 0;
}

.fixture-phase:last-child .fixture-game::after {
  display: none;
}

@media (min-width: 72em) {
  .fixture-game {
    padding: 0.5em 1.5em;
  }
  .fixture-game::after {
    width: 1.5em;
  }
}

.fixture-match {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
  padding: 0;
  outline: none;
  cursor: pointer;
  -webkit-transition: padding 0.2s ease-in-out, border 0.2s linear;
  transition: padding 0.2s ease-in-out, border 0.2s linear;
  background-color: #FFFFFF;
  border: 2px solid #D5D5D5;
  border-radius: 8px;
}

.fixture-match table {
  width: 100%;
  border: 0;
  border-radius: 0px 0px 12px 12px;
}

.fixture-match table tbody {
  background-color: #fff;
  border-radius: 12px;
}

.fixture-match table tbody tr {
  border-radius: 0px 0px 12px 12px;
}

.fixture-match table tbody tr td {
  vertical-align: middle;
  letter-spacing: 0px;
  color: #182342;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #7C7C7C;
}

.fixture-match table tbody tr td a {
  text-decoration: none;
  color: #7C7C7C;
}

.fixture-match table tbody tr td:first-child {
  text-align: left;
}

.fixture-match table tbody tr td:nth-child(2) {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #7C7C7C;
}

.fixture-match table tbody tr:last-child {
  border-top: 2px solid #D5D5D5;
}

.fixture-match table tbody tr.winner td {
  color: #182342;
}

.fixture-match table tbody tr.winner td a {
  color: #182342;
}

.fixture-match table tbody tr.winner td:nth-child(2) {
  color: #E81F3E;
}

.fixture-match:focus {
  border-color: #2196F3;
}

.fixture-match::before, .fixture-match::after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-left: 1px;
}

@media (max-width: 24em) {
  .fixture-match {
    padding: 0.75em 0.5em;
  }
}

.fixture-match::before, .fixture-match::after {
  position: absolute;
  left: 0;
  z-index: 1;
  content: '';
  display: block;
  width: 1em;
  height: 10%;
  border-left: 2px solid #E81F3E;
}

.fixture-match::before {
  bottom: 50%;
  border-bottom: 2px solid #E81F3E;
  -webkit-transform: translate(0, 1px);
          transform: translate(0, 1px);
}

.fixture-match::after {
  top: 50%;
  border-top: 2px solid #E81F3E;
  -webkit-transform: translate(0, -1px);
          transform: translate(0, -1px);
}

@media (min-width: 72em) {
  .fixture-match::before, .fixture-match::after {
    width: 1.5em;
  }
  .fixture-match::before {
    -webkit-transform: translate(0, 1px);
            transform: translate(0, 1px);
  }
  .fixture-match::after {
    -webkit-transform: translate(0, -1px);
            transform: translate(0, -1px);
  }
}

.fixture-phase:first-child .fixture-match::before, .fixture-phase:first-child .fixture-match::after {
  display: none;
}

.fixture-select {
  margin-bottom: 2.5rem;
}

.fixture-select select {
  background-color: #FFFFFF;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #182342;
  padding: 10px 20px;
  border: 0;
  width: 100%;
}

.fixture-select select:after {
  content: "";
  margin-right: 10px;
}
.sheet {
    overflow: visible;
}
/*# sourceMappingURL=fixtures.css.map */