#standings {
  color: #fff;
  padding: 19px;
  background-color: #252525;
  box-shadow: 0px 3px 6px #00000029;
}
.standings-table {
  width: 100%;
  text-align: left;
}
.conference-tabs {
  display: flex;
}
.standings-tab {
  flex: 1;
  text-align: center;
  background-color: #707070;
  padding-top: 28px;
  padding-bottom: 28px;
}
.standings-tab:first-child {
  border-right: 0.24px solid #252525;
}
.conference-image-container img {
  height: 72px;
  width: auto;
}
.standings-tab:not(.active-tab) .conference-image-container img {
  mix-blend-mode: luminosity;
  opacity: 0.5;
}
.team-logo-container {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  padding: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.team-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.standings-row {
  display: none;
}
.standings-row.active-tab {
  display: table-row;
}
.standings-row.active-tab:not(.last-team-in-group-row),
.standings-row.bordered-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.standings-row > td:first-child {
  padding-left: 16px;
  width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standings-row > td:not(:first-child) {
  text-align: center;
}
.standings-row > td {
  font-size: 18px;
  font-family: "Lato";
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 18px;
}
.standings-row > td > div {
	display: flex;
    align-items: center;
}
.table-header-row {
  height: 52px;
  background-color: #f86d05;
  font-size: 20px;
}
.table-header-row > th:not(:first-child) {
  text-align: center;
}
.table-head-team {
  padding-left: 16px;
}

@media only screen and (max-width: 1024px) {
  #standings {
    padding: 0;
  }
  .standings-row > td {
    font-size: 16px;
  }
  .standings-row > td:first-child {
    width: auto;
    white-space: normal;
  }
  .standings-row > td:not(:first-child) {
    white-space: nowrap;
  }
  .table-header-row {
    font-size: 16px;
}
  .table-header-row > th:last-child {
    padding-right: 16px;
  }
  .team-logo-container {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  .team-fullname {
    display: inline-block;
  }
}
@media only screen and (max-width: 768px) {
  .standings-row > td {
    font-size: 14px;
  }
  .table-header-row {
    font-size: 14px;
  }
}
