body {
  background-color: #ffffff !important;
}

.theme {
  height: 100%;
  width: 100%;
  overflow-x: auto;
}

.theme h1 {
  position: absolute;
  width: 100%;
  padding: 20px 0 10px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  color: #686868;
}

.theme h2 {
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  color: #5f5f5f;
  margin-bottom: 0;
}

.bracket {
  padding: 60px 50px 0;
  margin: 5px;
}
.bracket {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
}
.column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: space-around;
  align-content: center;
}
.match {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 260px;
  /* height: 62px; */
  height: 100px;
  /* margin: 12px 24px 12px 0; */
  margin: 12px 50px 12px 0;
}
.match .match-top {
  border-radius: 2px 2px 0 0;
}
.match .match-bottom {
  border-radius: 0 0 2px 2px;
}
.match .team {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  position: relative;
}
.match .team span {
  padding-left: 8px;
}
.match .team span:last-child {
  padding-right: 8px;
}
.match .team .score {
  margin-left: auto;
}
.match .team:first-child {
  margin-bottom: -1px;
}
.match-lines {
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin-top: 0px;
  right: -1px;
}
.match-lines .line {
  background: red;
  position: absolute;
}
.match-lines .line.one {
  height: 1px;
  width: 12px;
}
.match-lines .line.two {
  height: 44px;
  width: 1px;
  left: 11px;
}
.match-lines.alt {
  left: -12px;
}
.match:nth-child(even) .match-lines .line.two {
  transform: translate(0, -100%);
}
.column:first-child .match-lines.alt {
  display: none;
}
.column:last-child .match-lines {
  display: none;
}
.column:last-child .match-lines.alt {
  display: block;
}
.column:nth-child(2) .match-lines .line.two {
  height: 88px;
}
.column:nth-child(3) .match-lines .line.two {
  height: 175px;
}
.column:nth-child(4) .match-lines .line.two {
  height: 262px;
}
.column:nth-child(5) .match-lines .line.two {
  height: 349px;
}
.disable-image .image,
.disable-seed .seed,
.disable-name .name,
.disable-score .score {
  display: none !important;
}
.disable-borders {
  border-width: 0px !important;
}
.disable-borders .team {
  border-width: 0px !important;
}
.disable-seperator .match-top {
  border-bottom: 0px !important;
}
.disable-seperator .match-bottom {
  border-top: 0px !important;
}
.disable-seperator .team:first-child {
  margin-bottom: 0px;
}
.escudo {
    width: 30px;
    height: 30px;
    object-fit: cover;
    overflow-clip-margin: unset;
    border-radius: 50%;
    background: white;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.match-info {
  padding-top: 3px;
}

p.match-info.match-info-ida {
  color:#0068d0;
}

.match-info p {
  color: #1e2f40;
  font-size: 15px;
  text-align: center;
  line-height: 16px;
  margin-bottom: 0;
}

.column.two, .column.three, .column.four {
  justify-content: center;
}

.semifinal .team {
  justify-content: space-between;
}

.semifinal .team .result span {
  padding: 0 12px;
}

.column.two .match {
  margin: 30px 50px 10px 0;
}

.column.three .match {
  margin: 40px 50px 40px 0;
}

/* Dark Theme */
.theme-dark {
  background: #0e1217;
  border-color: #040607;
}
.match-lines .line {
  /* background: #36404e; */
  background: transparent;
}
.team {
  background: #182026;
  border-color: #232c36;
  /* color: #6b798c; */
  color: #e2e2e2;
  padding: 3px;
}
.theme-dark .winner-top .match-top,
.theme-dark .winner-bottom .match-bottom {
  background: #232c36;
  color: #e3e8ef;
  border-color: #36404e;
  z-index: 1;
}

.theme-dark .winner-top .match-bottom, .theme-dark .winner-bottom .match-top {
  color: #4f5864;
}

.theme-dark .winner-top .match-top .score,
.theme-dark .winner-bottom .match-bottom .score {
  color: #03d9ce;
}
.theme-dark .match .seed {
  font-size: 12px;
  min-width: 10px;
}
.theme-dark .match .score {
  font-size: 14px;
}

@media (max-width: 768px) {

  .theme h1 {
    padding: 10px 0px 20px;
  }

  .bracket {
    padding: 70px 20px 10px 20px;
  }

  .theme h2 {
    font-size: 20px;
  }

  .match {
    height: 105px;
  }
}