#game {
  border: 6px solid #000000;
  min-width: 800px;
  max-width: 1080px;
  margin: auto;
}

.game_header {
  height: 30px;
  width: 500px;
  margin: auto;
  font-size: 0; /* remove space between contained elements */
}

.game_header div {
  width: 250px;
  display: inline-block;
  border: 4px solid #000000;
  margin: -4px -2px; /* 1/2 the border width: overlap the border between */
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.bribe_row {
  margin-top: 50px;
  height: 70px;
  width: 100%;
  display: flex;
}

.bribe_container {
  border: 2px solid #000000;
  display: inline-block;
  width: 150px;
  height: 70px;
  margin: auto;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6em;
}

.bribe_color_choice {
  display: flex;
}

.bribe_color {
  display: inline-block;
  height: 33px;
  border: 2px solid #000000;
  border-radius: 8px;
  width: 50%; /* will have to be changed if have more than 2 choices */
}

.my_bribe, .theirbribe {
  width: 100%;
  height: 50%;
}

.my_bribe {
  margin-top: -1px;
}

.bribe_cancel, .bribe_less, .bribe_more {
  margin-top: 1px;
  display: inline-block;
  width: 32px;
  cursor: pointer;
  height: 100%;
  -moz-user-select: none; 
  -webkit-user-select: none; 
  -ms-user-select:none; 
  user-select:none;
  -o-user-select:none;
}

.bribe_amt {
  border: none;
  height:32px;
}

.theirbribe {
  border-top: 1px solid #000000;
}

.bribe_amt {
  width: 46px;
  text-align: center;
}

.people {
  width: 100%;
  height: 400px;
  position: relative;
  margin-top: -10px;
}

.neighbor_row {
  margin-top: 1px;
  height: 200px;
  width: 100%;
  display: flex;
}

.player {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-block;
  border: 6px solid #000000;
  background-color: #FFFFFF;
  margin:auto;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  font-size: 30px;
  font-weight: bold;
}

.neighbor {
  line-height: 4.2em;
}

.my_row {
  margin-top: 1px;
  height: 200px;
  width: 100%;
  display: flex;
}

#me {
  padding-top: 25px;
}

#connections {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 400px;
}

.incentives_footer {
  width: 100%;
}

.incentive {
  display: inline-block;
  /* height: 100px; */
  width: 35%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: 6px solid #000000;
  line-height: 3em;
}

.game_footer {
  font-size: 20px;
  line-height: 4em;
  font-weight: bold;
  border-top: 4px solid #000000; 
}

.game_footer div {
  display: inline-block;
  text-align: center;
}

.choice_button {
  width: 35%;
  border: 4px solid #000000;
  border-radius: 20px;
  /* cursor: pointer;
  border-left: 4px solid #000000; 
  border-right: 4px solid #000000; 
  -moz-user-select: none; 
  -webkit-user-select: none; 
  -ms-user-select:none; 
  user-select:none;
  -o-user-select:none; */
}

.rank_bar {
  width: 29%;
  text-align: center;
}

