<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;
}

@media screen and (max-width: 768px) {
  .tournament-headers {
    display: none;
  }
}
.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;
}

@media screen and (max-width: 768px) {
  .tournament-brackets {
    overflow: scroll;
  }
}

.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 {
  background-color: #f4f4f4;
  padding: 0.5rem;
  display: block;
  margin: 0.5rem 10px;
  position: relative;
  vertical-align: middle;
  line-height: 2;
  text-align: center;
  border: 1px solid #dee2e6;
  height: 240px;
}

.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;
}

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

.match-item:nth-of-type(odd):after {
  border-right-style: solid;
  border-top-style: solid;
  height: 100%;
  top: 50%;
}

.match-item:nth-of-type(even):after {
  border-right-style: solid;
  border-bottom-style: solid;
  height: 100%;
  top: -50%;
}

.match-item:before {
  content: "";
  border-top: 2px solid #000000;
  position: absolute;
  height: 2px;
  width: 10px;
  left: -10px;
  top: 50%;
}

.backet-round2 .match-item:nth-of-type(odd):after {
  height: 200%;
  top: 50%;
}
.backet-round2 .match-item:nth-of-type(even):after {
  height: 200%;
  top: -150%;
}


.bracket:first-of-type .match-item:before {
  display: none;
}

.bracket-round1 .match-item:before {
  display: none;
}


.bracket-round2 .match-item:after {
  border-right-style: none!important;
}

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


.bracket-winner .match-item:nth-of-type(even):before {
  content: "";
  border-top: 2px solid black;
  position: absolute;
  height: 2px;
  width: 10px;
  left: -10px;
  top: 49%;
}

@media screen and (max-width: 768px) {
  .match-item {
    height: 250px;
    width: 160px;
  }
  .bracket-winner .match-item:nth-of-type(even):before {
    top: 49%;
  }

  .bracket-winner .match-item:nth-of-type(odd):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;
}</pre></body></html>