/*
* This file contains styles for the Leaderboard page.
*/
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#leaderboard {
  font-family: 'Gudea', sans-serif;
  font-size: 13px;
  color: #404040;
  position: relative;
}
#leaderboard-wrapper {
  position: relative;
}
#leaderboard-divider {
  position: absolute;
  top: 150px;
  text-align: right;
  border-top: 1px dashed #d0d2d3;
  font-size: 10px;
  line-height: 10px;
  height: 10px;
  color: #787878;
}
.leaderboard-column {
  text-align: center;
  position: absolute;
  color: #485E65;
  font-variant: small-caps;
  font-weight: 300;
}
.leaderboard-cell {
  font-variant: normal;
  padding: 0px;
  border-left: 1px solid #D0D2D3;
  text-align: left;
  line-height: 23px;
  cursor: pointer;
  position: relative;
  height: 25px;
  clear: both;
}
.leaderboard-cell div {
  /*FIXME: disabling mouse events on the cell children, who were firing mouseover/mouseout... use mouseenter/mouseleave instead */

  pointer-events: none;
}
.leaderboard-cell .rank {
  font-weight: normal;
  display: none;
  float: right;
  background-color: #F5E6BE;
  font-size: 11px;
  line-height: 15px;
  height: 15px;
  padding: 2px 3px 2px 5px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  margin-top: -1px;
}
.leaderboard-cell .title {
  padding-top: 9px;
  height: 14px;
  line-height: 14px;
  vertical-align: bottom;
  padding-left: 4px;
  float: left;
  font-size: 14px;
}
.leaderboard-cell .metrics {
  position: absolute;
  width: 100%;
  height: 100%;
}
.leaderboard-cell .position {
  padding-top: 12px;
  height: 11px;
  line-height: 11px;
  letter-spacing: -1px;
  vertical-align: bottom;
  color: #839496;
  padding-left: 3px;
  float: left;
  font-size: 11px;
  max-width: 5px;
  text-wrap: none;
}
.leaderboard-cell .value {
  padding: 3px 3px 0 5px;
  float: right;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  text-align: right;
}
.leaderboard-cell.hovered {
  background-color: #FDF6E3;
  cursor: pointer;
}
.hide {
  display: none !important;
}
.leaderboard-cell.selected {
  border-left: 0px solid #ea5156;
  background-color: #008ECE;
  color: white !important;
}
.leaderboard-cell.selected .rank {
  background-color: #0075AA;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
  color: white;
}
.leaderboard-cell.selected .position {
  color: #eee;
}
.leaderboard-cell.selected .title {
  color: white;
  font-weight: 500;
}
.leaderboard-cell.selected .value {
  color: white;
  font-weight: 500;
}
.cell-out-of-range {
  margin-top: 20px;
  display: none;
  height: 18px;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.cell-out-of-range .rank {
  top: 3px;
}
.cell-out-of-range .title {
  padding-top: 3px;
  font-size: 13px;
}
.cell-out-of-range .position {
  display: none;
}
.cell-out-of-range .value {
  font-size: 15px;
  padding-top: 0px;
}
#toolbar select {
  width: auto;
}
.format-choice {
  font-family: "Courier New", Courier, fixed;
}
.no-data {
  opacity: 0.4;
}
.no-data .rank {
  display: none !important;
}
.leaderboard-cell.cell-out-of-range.selected,
.leaderboard-cell.cell-out-of-range.hovered {
  display: block;
}
.leaderboard-cell.hovered .rank,
.leaderboard-cell.selected .rank {
  display: block;
}
.data-notes-container {
  margin-top: 10px;
}
