.login {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 15px;
}
.login input {
  width: 200px;
}
h1,
h2 {
  text-align: center;
}
.box {
  margin: 15px 5px;
  box-shadow: 2px 2px 8px -2px grey;
  height: 72px;
  display: flex;
}
.logged-in .box:hover {
  background-color: rgba(255, 255, 0, 0.2);
  cursor: move;
}
.box .character-image {
  width: 72px;
  height: 72px;
  background-size: contain;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}
.box .character-dta {
  flex-grow: 1;
  flex-shrink: 0;
  margin-top: 12px;
}
.box .character-dta .name {
  font-size: 2rem;
  line-height: 2rem;
}
.box .character-dta .timestamp {
  font-size: 0.7rem;
  line-height: 0.7rem;
  font-style: italic;
}
.box .character-dta .character-class {
  font-size: 1rem;
  line-height: 1rem;
}
.box .chapter-data .chapter {
  width: 38px;
  font-size: 12px;
  text-align: right;
  font-family: monospace;
  box-shadow: 0 0 1px 0px grey;
}
.logged-in .box .chapter-data .chapter {
  background: #f0f0f0;
  height: 36px;
  cursor: pointer;
}
.box .inline-block {
  display: inline-block;
  padding-left: 15px;
}
.box img {
  vertical-align: bottom;
  width: 64px;
  max-height: 72px;
}
.box-empty {
  margin: 15px 5px;
  box-shadow: 2px 2px 8px -2px grey;
  background: rgba(128, 128, 128, 0.1);
  height: 72px;
}
.box-empty.dummy {
  background: none;
  box-shadow: none;
}
ul.character-data li {
  list-style-type: none;
}
