* {
  padding: 0 0;
  margin: 0 0;
}
body {
  overflow: auto;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  background-color: #ddc7a6;
  /* For browsers that do not support gradients */
  background-image: linear-gradient(to right, #ddc7a6, #9a8b74);
  position: relative;
  /*Generic classes*/
}
body .audioElem {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
body .audioDiv {
  position: relative;
}
body .audioDiv .audioDiv--controls {
  position: absolute;
  top: 0;
  right: 0;
}
body .audioDiv--controls .audioDiv--controls--icons {
  color: #59564e;
  padding: 0.5rem;
  cursor: pointer;
}
body .audioDiv--controls .audioDiv--controls--icons:active {
  transform: translateY(0.25rem);
  color: #FFFFFF;
  text-shadow: 0 -1px 4px #FFF, 0 -2px 10px #ff0, 0 -10px 20px #ff8000, 0 -18px 40px #F00;
}
body header {
  text-align: center;
}
body header h1 {
  text-align: center;
}
body header #gameResultStatement {
  color: red;
  padding: 0.33rem;
}
body header button {
  margin: 0.5rem auto;
  display: inline-block;
  border-radius: 0.25rem;
  border: none;
  text-align: center;
  font-size: 1.25rem;
  padding: 0.5rem;
  transition: all 0.5s;
  cursor: pointer;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
body header button.mainAction {
  background-color: #f4511e;
  color: #ffffff;
  border: 1px solid #000;
  width: 100px;
}
body header button.secondaryAction {
  background-color: #511ef4;
  color: #ffffff;
  border: 1px solid #000;
  width: 100px;
}
body header button.testAction {
  background-color: #ffffff;
  color: #f4511e;
  border: 1px solid #000;
  width: 200px;
}
body header button:hover span {
  padding-right: 1.6rem;
}
body header button:hover span:after {
  opacity: 1;
  right: 0;
}
body header button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
body header button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -1.6rem;
  transition: 0.5s;
}
body header button.btn:disabled {
  background-color: silver;
  cursor: not-allowed;
}
body .container {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}
body .container .board {
  width: 100%;
  margin: 0 auto;
}
body .container .board .tile {
  width: 25%;
  height: 25%;
  background-color: #e3d2b7;
  background-image: url("../../pics/darkTileBasic.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  float: left;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  align-content: space-around;
}
body .container .board .tile.x3.y1,
body .container .board .tile.x1.y3 {
  background-image: url("../../pics/darkTileThumbClosed.png");
}
body .container .board .tile.x4.y2,
body .container .board .tile.x3.y3 {
  background-image: url("../../pics/darkTileThumbOpen.png");
}
body .container .board .tile.x3.y4 {
  background-image: url("../../pics/grayTileFireAndWaterAndBridges.png");
}
body .container .board .tile.x4.y3 {
  background-image: url("../../pics/grayTileFireAndWater.png");
}
body .container .board .tile[tiletype="finish"] {
  background-image: url("../../pics/darkTileTreasure.png");
}
body .container .board .tile[tiletype="start"] {
  background-image: url("../../pics/tileStart.png");
}
body .container .board .tile .tile__centre > i.hero {
  color: orange;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
}
body .container .board .tile .tile__doors--enter {
  color: #fff;
}
body .container .board .tile .tile__doors--exit {
  color: #fff;
}
body .container .board .tile .doorBlocked {
  pointer-events: none;
  opacity: 0.25;
}
body .container .board .tile .tile--inside {
  width: 33%;
  height: 33%;
  display: flex;
  align-items: center;
  align-content: space-around;
  justify-content: center;
}
body .container .board .tile .tile--inside i {
  cursor: pointer;
  color: #000;
  background-color: rgba(130, 130, 130, 0.35);
  padding: 2px;
  border-radius: 4px;
}
body .container .board .tile .tile--inside i .hero.fas {
  font-size: 0.6em;
}
body .container .board .tile .pathDoors {
  cursor: pointer;
}
body .container .board .tile .pathDoors:hover {
  color: #fff;
}
body .container .board .tile .hidden {
  pointer-events: none;
  opacity: 0;
}
body .container footer {
  padding: 1.25rem 1.25rem;
}
body .container footer > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  list-style-type: none;
}
body .container footer > ul > li > a {
  font-size: 200%;
}
body .container footer a {
  text-decoration: none;
}
body .modal-content .modal-header {
  border-bottom: 0;
  padding: 1rem 1rem 0 1rem;
}
body .modal-content .modal-body {
  display: block;
}
body .modal-content .modal-body .modal--content {
  display: flex;
  justify-content: space-evenly;
  padding: 0.5rem 0;
}
body .modal-content .modal-body--sectionOne {
  min-height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .modal-content .modal-body--sectionOne h3 {
  text-align: center;
  padding: 0.5rem 0;
}
body .modal-content .modal-body--sectionThree .battleDialog {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 4rem;
}
body .modal-content .modal-body--sectionThree .battleDialog .battleDialog--section {
  width: 50%;
  padding: 1rem;
  background-color: #fff;
}
body .modal-content .modal-body--sectionThree .battleDialog .battleDialog--section .figureBar {
  border: 1px solid #000;
  border-radius: 4px;
  height: 1rem;
  width: 100%;
  margin: 0.25rem 0;
}
body .modal-content .modal-body--sectionThree .battleDialog .battleDialog--section .figureBar .figureBarLevel {
  width: 100%;
  height: 100%;
  padding: 0.25rem 0;
}
body .modal-content .modal-body--sectionThree .battleDialog .battleDialog--section .figureBar .healthBarLevel {
  background-color: red;
}
body .modal-content .modal-body--sectionThree .battleDialog .battleDialog--section .figureBar .manaBarLevel {
  background-color: blue;
}
body .modal-content .modal-exit {
  color: red;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: red;
}
body .textAlignCenter {
  text-align: center;
}
@media screen and (max-width: 800px) {
  body div.board > div.tile > div.tile__centre > i.hero {
    font-size: 3vw;
  }
  body div.board > div.tile > div.tile__centre > i.monster {
    font-size: 5vw;
  }
}
@media screen and (min-width: 801px) {
  body div.board > div.tile > div.tile__centre > i.monster {
    font-size: 155%;
  }
}
