* {
  position: relative;
}
html {
  height: 100%;
  min-width: 200px;
  min-height: 400px;
  width: 100%;
  position: relative;
}
body {
  position: relative;
  padding: 0;
  margin: 0;
  height: 100%;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] {
  padding: 5px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] canvas[data-region="map"] {
  z-index: 0;
  position: relative;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] canvas[data-region="bombs"] {
  z-index: 1;
  position: absolute;
  top: 5px;
  left: 5px;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] canvas[data-region="players"] {
  z-index: 2;
  position: absolute;
  top: 5px;
  left: 5px;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] .simple-button {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] menu.bombs {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 3;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] menu.move {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 3;
  bottom: 5px;
  right: 5px;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] menu.move .up-arrow-container {
  padding-left: 54px;
  padding-bottom: 4px;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] menu.move button {
  font-size: 25px;
  font-weight: bold;
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] [data-region="score-table"] {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}
[data-module="game_scene"][data-application="game_scene"][data-template="default"] [data-region="score-table"]:not(:empty) {
  display: block;
}
[data-module="game_scene"][data-application="score_table"][data-template="default"] {
  color: #fff;
  min-width: 200px;
  max-width: 600px;
  margin: 0 auto;
}
[data-module="games_select"][data-application="games_select"][data-template="default"] {
  height: 100%;
  position: relative;
}
[data-module="games_select"][data-application="games_select"][data-template="default"] [data-region="content"] {
  height: 100%;
}
[data-module="main"][data-application="scene"][data-template="default"] {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: Arial, sans-serif;
}
[data-module="main"][data-application="scene"][data-template="default"]:after {
  content: '';
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("/images/background.jpg");
  width: 100%;
  height: 100%;
  -webkit-filter: blur(7px);
  z-index: -100;
}
[data-module="main"][data-application="scene"][data-template="default"] [data-region="main-menu"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
[data-module="main"][data-application="scene"][data-template="default"] [data-region="main-menu"]:empty {
  padding: 0;
}
[data-module="main"][data-application="scene"][data-template="default"] [data-region="game-scene"]:empty {
  position: relative;
  width: 100%;
  height: 0;
}
[data-module="main"][data-application="scene"][data-template="default"] [data-region="game-scene"]:not(:empty) {
  height: 100%;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
.simple-button {
  background-color: #f00;
  color: #fff;
}
.simple-button:hover {
  background-color: #f77;
}
button.bomb-trigger {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border: 5px inset #f00;
  background-color: #f33;
  color: #fff;
  font-weight: bold;
}
button.bomb-trigger:hover {
  background-color: #f55;
}
