h1 {
  display: flex;
  align-items: center;
}
h1 small {
  display: block;
  color:gray;
  font-size:12px;
  font-weight: normal;
}
h1 i.avatar {
  width: 145px;
  height: 75px;
  border-radius: 3px;
  border: 1px solid rgba(40, 40, 40, 0.5);
  background-position: center center;
  box-sizing: content-box;
  margin-right: 20px;
}

table.ban {

}
  table.ban td.heroAvatar {
    text-align: center;
    width: 30px;
    padding: 2px 8px;
  }
  table.ban td.heroAvatar i.avatar {
    width: 24px;
    height: 24px;
  }

table.teamRank {
  margin-bottom: 0;
}
table.teamRank caption {
  font-size: 18px;
  padding: 4px 5px;
  text-align: center;
  font-weight: bold;
  background-color: #f5f5f5;
  border-bottom: 1px solid #aaa;
}
table.teamRank th {
  min-width: 60px;
}
table.teamRank td {
  width: 80px;
  text-align: right;
}
table.teamRank td.diff {
  padding-right: 20px;
  background: url('/images/icons/arrow-up-green.png') no-repeat right center;
  background-size: 16px 16px;
}
table.teamRank td.diff.diff-negative {
  background-image: url('/images/icons/arrow-down-red.png');
}


table.game .player {
  width: 130px;
  font-size: 120%;
}

table.game i.avatar {
  min-width: 40px;
  min-height: 40px;
}
table.game td.team {
  font-size:0;
}
table.game .lifeTime {
  text-align: right;
  width:70px;
}
table.game td.team.team-win i {
  display: block;
  width: 16px;
  height: 16px;
  background: url('/images/icons/heroes-nexus.png') no-repeat center center transparent;
  background-size: contain;
}
table.game tr.team.team-1 {
  background-color: #e6edff;
}
table.game tr.team.team-1:hover {
  background-color: #d3defa;
}
table.game tr.team.team-1 td {
  border-bottom: 2px groove #e6edff;
}
table.game tr.team.team-2 {
  background-color: #fde7f4;
}
table.game tr.team.team-2:hover {
  background-color: #ffd1eb;
}
table.game tr.team.team-2 td{
  border-bottom: 2px groove #ffd7ef;
}

table.game tr.team:target td.heroAvatar {
  border-left: 4px solid #402969;
}

table.game .score {
  text-align: right;
  width: 120px;
}
table.game .score.scoreTop {
  font-weight: bold;
}
table.game .score[data-value='0'] {
  color:gray;
}




table.rank td.toolTip div.toolTip {
  position: absolute;
  display: none;
  min-width: 300px;
  max-width: 400px;
  font-size: 13px;
  background-color: white;
  border-radius: 2px;
  text-align: left;
  border: 1px solid rgba(50, 50, 50, 0.1);
  box-shadow: 4px 4px 3px #666  ;
  z-index:10;
}
  table.rank td.toolTip div.toolTip div.name {
    padding:5px;
    background-color: #e3f2fd;
    border-bottom:2px solid #2196f3;
    white-space: nowrap;
    font-weight: bold;
  }
  table.rank td.toolTip div.toolTip div.description {
    padding:5px;
  }

  table.rank td.toolTip:hover div.toolTip {
    display: block;
  }


#battleground {
  overflow: auto;
  flex: 0 0 800px;
  background-color: #f5f5f5;
}

  #battleground div.title {
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    padding: 2px 10px;
  }
