<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::before,
*::after {
  box-sizing: border-box;
}

.tournament-headers {
  display: flex;
  flex-direction: row;
  background: #fdfdfd;
  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;
  flex-basis: 30%;
}

.tournament-header {
  padding-left: 0;
  display: flex;
  margin: 0;
  padding: 30px 0;
  flex-grow: 1;
  justify-content: center;
  list-style-type: none;
  border-right: 1px dashed #ccc;
  flex: 1;
  flex-basis: 30%;
}

#tournament-header-group {
  flex-basis: 10%;
}

.bracket-group {
  flex-basis: 10%;
}

.match-item {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  margin: 0.5rem 10px;
  position: relative;
  vertical-align: middle;
  line-height: 2;
  text-align: center;
  height: 100%;
}

.match-item__table-container {
  border: 1px solid #dee2e6;
  background-color: #f4f4f4;
  padding: 0.5rem;
  min-height: 300px;
  margin-bottom: 20px;
}

.match-item__table-container .table.highlight {
  background: rgb(167, 213, 252);
}

.group-item {
  padding: 0.5rem;
  display: block;
  margin: 0.5rem 10px;
  position: relative;
  vertical-align: middle;
  line-height: 2;
  text-align: center;
}

.group-item.completedGroup {
  color: darkgreen;
}

.bracket .match-item__table-container:after {
  content: "";
  border-color: #000000;
  border-width: 2px;
  position: absolute;
  display: block;
  width: 10px;
  right: -11px;
}


.bracket .match-item__table-container:nth-of-type(odd):after {
  border-right-style: solid;
  border-top-style: solid;
  height: 50%;
  top: 25%;
}

.bracket .match-item__table-container:nth-of-type(even):after {
  border-right-style: solid;
  border-bottom-style: solid;
  height: 25%;
  top: 50%;
}





.bracket:last-of-type .match-item__table-container:after {
  display: none;
}



.bracket  .match-item__table-container:nth-of-type(odd):before {
  content: "";
  border-top: 2px solid #201e1e;
  position: absolute;
  height: 2px;
  width: 10px;
  left: -10px;
  top: 25%;
}

.bracket  .match-item__table-container:nth-of-type(even):before {
  content: "";
  border-top: 2px solid #201e1e;
  position: absolute;
  height: 2px;
  width: 10px;
  left: -10px;
  top: 75%;
}

#bracket-round1 .match-item__table-container:before {
  display: none;
}

.bracket:last-of-type .match-item__table-container:before {
  top: 50%;
}



.bracket-match__actionButtonsContainer {
  display: flex;
  justify-content: center;
}

.bracket-match__actionButtonsContainer .bracket-match__actionButtons {
  margin-right: 10px;
}

.match-item time {
  display: inline-block;
  background-color: #dbdbdb;
  font-size: 0.8rem;
  padding: 0 0.6rem;
}

.table-bordered td, .table-bordered th {
  border: 1px solid black;
}

.ongoingMatch {
  color: rgb(23, 23, 152);
}

.completedMatch {
  color: darkgreen;
}

.matchWinner {
  font-weight: bold;
}

/* Arrow buttons to navigate between matches */
.stage-bracket__nextMatchBtn {
  display: none;
  top: 48%;
  right: -5%;
}
.stage-bracket__prevMatchBtn {
  display: none;
  top: 25%;
  left: -19px;
}

.stage-bracket__prevMatchBtn::before {
  border-top: 2px solid #000000;
}

.stage-bracket__prevMatchBtn::after {
  border-top: 2px solid #000000;
  right: -20%;
  width: 6px;
}


.tournament-rounds-select {
  display: none;
}

@media screen and (max-width: 768px) {
  .tournament-headers .tournament-header {
    display: none;
  }

  .tournament-brackets .bracket {
    display: none;
  }

  .tournament-brackets .bracket:first-of-type {
    display: flex;
  }

  .stage-bracket__nextMatchBtn {
    display: block;
  }
  .stage-bracket__prevMatchBtn {
    display: block;
  }

  .match-item .match-item__table-container:last-of-type .stage-bracket__prevMatchBtn {
    top: 75%;
  }

  .bracket:last-of-type .stage-bracket__prevMatchBtn {
    top: 40%!important;
  }

  .tournament-rounds-select {
    display: block;
  }

  .match-item__table-container {
    padding: 1.5rem 0.75rem;
    margin: 1rem 1.5rem;
    min-height: 200px;
  }


  .bracket .match-item__table-container:after  {
    width: 32px;
  }

  .bracket .match-item__table-container:nth-of-type(odd):after {
    height: 23%;
  }

  .bracket .match-item__table-container:nth-of-type(even):after {
    height: 20%;
    top: 55%;
  }

  .bracket .match-item__table-container:before {
    /* left: 10px!important;
    width: 12px!important;
    top : 27.5%!important; */
    display: none;
  }

  
}</pre></body></html>