#hotbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  height: 50px;
  width: 500px;
  margin-left: -250px;
  z-index: 1001;
  /* cursor: url(../img/cursor-point.png) 50 50, default; */
  zoom: 1;
  padding: 1px;
  transition: 1s bottom;
  text-align: center;
}
#hotbar.hidden {
  bottom: -60px;
}

#hotbar canvas {
  border: 2px solid #c6c6c6;
  padding: 3px 5px 0px 5px;
  background: rgba(0,0,0,.4);
  box-shadow: inset 0px 1px 2px rgba(0,0,0,1),
              0 0 0 1px black;
  margin-right: 1px;
}

#hotbar canvas.selected {
  border: 4px outset;
  padding: 3px 5px 0px 5px;
  box-shadow: 0 0 0px 1px rgba(0,0,0,1),
              inset 0 0 0 1px rgba(0,0,0,1);
  position: relative;
  top: -3px;
  background: rgba(255,255,255,.9);
  margin-left: -1px;
}

#inventory-panel {
  padding: 11px 14px;
  zoom: 1;
  background: #c6c6c6;
  width: 360px;
  height: 250px;
  margin-left: -180px;
  margin-top: -125px;
  border-left: 4px solid white;
  border-top: 4px solid white;
  border-right: 4px solid #565656;
  border-bottom: 4px solid #565656;
  border-radius: 4px;
  box-shadow: 0px 0px 0px 1px black;  
  padding: 0 15px;
  font-size: 12px;
}
#inventory-panel .tab {
  width: 50px;
  height: 44px;
  border-left: 4px solid white;
  border-top: 4px solid white;
  border-right: 4px solid #565656;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: -50px;
  position: relative;
  top: -65px;
  margin-left: -16px;
  margin-right: 20px;
  background: #c6c6c6;
  display: inline-block;
  box-shadow: -1px 0px 0px 0px black,
              1px 0px 0px 0px black,
              0px -1px 0px 0px black;
  overflow: hidden;
  vertical-align: bottom;
}

#inventory-panel .tab canvas {
  padding-left: 5px;
  margin-bottom: -5px;
  padding-top: 3px;
}

#inventory-panel .tab.selected {
  height: 52px;
  top: -60px;
  box-shadow: 4px -2px 0px -3px black,
              -4px -2px 0px -3px black,
              0px -1px 0px 0px black;
}
#inventory-cancel-button {
  position: absolute;
  top: 84px;
  left: 135px;
}
#inventory-panel .title {
  padding-top: 9px;
  padding-bottom: 6px;
  font-size: 16px;
  color: black;
  text-transform: capitalize;
}

.inventory-item {
  margin-right: 2px;
  margin-bottom: 1px;
  padding: 3px 5px 0px 5px;
  background: rgba(0,0,0,.2);
  border: 1px inset;
  box-shadow: inset 0px 1px 2px rgba(0,0,0,1);
}

.inventory-item:hover {
  position: relative;
  background: rgba(255,255,255,.9);
}