/* Ride simulator leaderboards shared by public, beta, and staff displays. */
div.SimulatorView .views-field-field-ride-sim-id {
  display: inline-block;
  width: 34%;
  padding-top: 15px;
  padding-bottom: 15px;
}

div.SimulatorView .views-field-field-throughput-count {
  display: inline-block;
  width: 34%;
  padding-top: 15px;
  padding-bottom: 15px;
}

div.SimulatorView .views-field-field-ride-sim-id a,
div.SimulatorView .views-field-field-throughput-count a {
  color: #000;
  text-decoration: underline;
}

div.SimulatorView .views-label-field-ride-sim-id {
  background-color: #86e61f;
}

div.SimulatorView .views-label-field-throughput-count {
  background-color: #ebba32;
  text-transform: none;
}

.RideSimLeaderboardTabs {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 0;
  box-shadow: none;
}

.RideSimLeaderboardTab {
  width: 33.3333333333%;
  padding: 8px;
  border: 0;
  background: transparent;
  color: #000;
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
}

.RideSimLeaderboardTab:hover,
.RideSimLeaderboardTab:focus,
.RideSimLeaderboardTab.is-active {
  background-color: #0e4f74;
  color: #fff;
}

.RideSimLeaderboardPanel[hidden] {
  display: none;
}

.RideSimLeaderboardCurrentUser td,
.RideSimLeaderboardCurrentUser a {
  background: #0e4f74 !important;
  color: #fff !important;
}

@media only screen and (max-width: 768px) {
  div.SimulatorView .views-field-field-ride-sim-id,
  div.SimulatorView .views-field-field-throughput-count {
    width: 100%;
  }
}
