#hiscore_button_new {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  color: white;
  background-color: #B0A000;
  border-radius: 20px;
  border: 2px solid #706000;
  padding: 8px 16px;
  font-size: 40px;
  font-weight: bold;
  font-family: Arial, Helvetica, Serif;
  white-space: nowrap; 
  /* visibility: hidden; */
  cursor: pointer;
  width: 230px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}
#hiscore_button_new:hover {
  background-color: #8080FF;
}
#hiscore_panel {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  border-radius: 10px;
  border: 4px solid #083000;
  display: block;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #106000;
  width: 300px;
  height: 410px;
  visibility: hidden;
  overflow: hidden;
}
#hiscore_label_hiscores {
  display: block;
  background-color: #083000;
  color: #FFFFFF;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
}
#hiscore_panel_list {
  display: block;
  width: 280px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 30px;
  margin-right: -20px;
  box-sizing: content-box;
}
.hiscore_panel_score {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  width: 280px;
}
.hiscore_img_score {
  width: 64px;
  height: 64px;
  background-color: #004000;
  vertical-align: top;
  border-radius: 10px;
  border: 1px solid white;
  /* float: left; */
}
.hiscore_panel_detail {
  float: right;
  text-align: right;
  /* background-color: #C0C0C0; */
  width: 210px;
  height: 64px;
  overflow: hidden;
}
.hiscore_label_name {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  /* vertical-align: top; */
  /* float: left; */
  /* line-height: 64px; */
}
.hiscore_label_score {
  color: #FFFF00;
  font-size: 36px;
  font-weight: bold;
  display: block;
  vertical-align: top;
  /* line-height: 64px; */
}