.inventory-screen,
.inventory-content,
.item-description {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.inventory-screen {
  display: none;
  z-index: 200;
}

.item-description {
  z-index: 300;
}

.inventory-backdrop,
.item-description-shield {
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}

.inventory-list {
  position: absolute;
}
.inventory-list .inventory-list-backdrop,
.item-description-modal-backdrop {
  position: absolute;
  background: #444499;
  height: 100%;
  width: 100%;
  border-radius: .3em;
}

.inventory-list .inventory-list-backdrop {
  opacity: .3;
}

.inventory-list .inventory-list-title {
  box-sizing: border-box;
  padding: 1% 4%;
  position: relative;
  color: #fff;
}
.inventory-list ul {
  box-sizing: border-box;
  position: relative;
  list-style: none;
  padding: 3%;
  margin: 0;
  font-size: .9em;
  color: #fff;
  overflow-y: auto;
  height: 82%;
  width: 92%;
}

.inventory-list li {
  box-sizing: border-box;
  background-color: #444499;
  padding: 2% 5%;
  border-radius: .3em;
  margin: 0 0 2% 0;
}

.inventory-list li:hover {
  cursor: pointer;
  background: #4444DD
}

.inventory-list li span {
  float: right;
}

.item-description-modal {
  position: absolute;
  margin: auto;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  color: #fff;
}

.item-description-title {
  box-sizing: border-box;
  position: relative;
  padding: 1% 3%;
}

.item-description-description {
  box-sizing: border-box;
  position: relative;
  font-size: .9em;
  padding: 0 3%;
  display: inline-block;
}

.item-description-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: .3em;
  margin: 0 3%;
}

.drop-button {
  box-sizing: border-box;
  position: absolute;
  bottom: 4%;
  right: 3%;
  background: #444499;
  border: .1em solid #fff;
  border-radius: .3em;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 1em;
  padding: 1%;
}
.drop-button:hover {
  background: #4444DD;
  cursor: pointer;
}

/*
  When an item has an image: 

  .item-description.[ITEMNAME] .item-description-description {
    width: 55%;
  }

  .item-description.[ITEMNAME] .item-description-image {
    backgroun: IMAGE HERE;
    width: 30%;
    height: 50%;
  }

*/