.battle-message {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.battle-message-shield {
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}

.battle-message-modal-backdrop {
  position: absolute;
  background: #444499;
  height: 100%;
  width: 100%;
  border-radius: .3em;
}
.battle-message-modal {
  position: absolute;
  margin: auto;
  top: 30%;
  left: 20%;
  width: 60%;
  height: 40%;
  color: #fff;
}

.battle-message-description {
  box-sizing: border-box;
  position: relative;
  font-size: .9em;
  padding: 3% 3% 0 3%;
  display: inline-block;
  width: 94%;
  text-align: center;
}

.battle-message-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: .3em;
  margin: 0 3%;
}

.battle-message-ok-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%;
}
.battle-message-ok-button:hover {
  background: #4444DD;
  cursor: pointer;
}

.battle-image {
  background-size: 100%;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  /*background: red;*/
}
/*.battle-image.half {
  background: green;
}
.battle-image.critical {
  background: pink;
}

*/

.battle-log {
  box-sizing: border-box;
  position: relative;
  font-size: .7em;
  padding: 3% 3% 0 3%;
  display: inline-block;
  width: 94%;
  text-align: left; 
  background: #444499;
  border-radius: .3em;
  color: #fff;
  overflow: auto;
  white-space: pre-wrap;

}