/* New table cell width classes for Awards table */
.table__cell--5,
.table__cell--8,
.table__cell--9,
.table__cell--10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
}

@media only screen and (min-width: 831px) {
  .table__cell--5,
  .table__cell--8,
  .table__cell--9,
  .table__cell--10 {
    padding-right: 12.5px;
    padding-left: 0!important;
  }

  .table__cell--5 {
    -webkit-flex-basis: 20.83333%;
    -moz-flex-basis: 20.83333%;
    -ms-flex-preferred-size: 20.83333%;
    flex-basis: 20.83333%;
    max-width: 20.83333%;
  }

  .table__cell--8 {
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .table__cell--9 {
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    flex-basis: 37.5%;
    max-width: 37.5%;
  }

  .table__cell--10 {
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

.tabs {
  margin-bottom: 2rem;
}

.tabs__navigation {
  display: flex;
  gap: 1rem;

}

.tabs__button {
  background: none;
  border: none;
  padding: 0;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  font-family: 'Helvetica Now', Helvetica, Arial, sans-serif;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.tabs__button:hover {
  color: #333;
}

.tabs__button:focus {
  outline: none;
  color: #000;
}

.tabs__button--active {
  color: #000;
}

.tabs__button--active::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  bottom: 5px;
  position: absolute;
}

.tabs__panel {
  display: none;
}

.tabs__panel--active {
  display: block;
}

@media (max-width: 768px) {
  .tabs__navigation {
    flex-direction: column;
    border-bottom: none;
    gap: 0;
  }

  .tabs__button {
    text-align: left;
    margin-bottom: 0;
    width: fit-content;
    font-size: 1.5625rem;
    color: #000;
  }
  .tabs__button--active {
    text-decoration: underline;
    color: #000;
  }
  .tabs__button--active::after {
    display: none;
  }
  .table__cell--5, .table__cell--8, .table__cell--9, .table__cell--10 {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Sorting indicators */
.js-sort {
  position: relative;
  transition: color 0.2s;
}

.js-sort:hover {
  color: #333;
}

.sort--asc,
.sort--desc {
  color: #000;
  font-weight: 600;
}
