#inventory_hotbar {
  position: fixed;
  display: block;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.inventory_hotbar_item {
  display: inline-block;
  
  border: 3px solid black;
  background-color: rgba(64, 64, 64, 0.6);
  position: relative;
}

.inventory_hotbar_icon {
  width: 40px;
  height: 40px;
  
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
  /*TODO: test cross-browser*/
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
}

.inventory_hotbar_item_count {
  color: white;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  
  padding-right: 3px;
  
  width: 40px;
  height: 28px;
  
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
}

.inventory_hotbar_item_life {
  width: 50px;
  height: 5px;
  paddin-bottom: 5px;
  
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
