.gameBox {
  background: #000;
  width: 700px;
  height: 450px;
  text-align: center;
}

.gameBox * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gameBox .rules {
  padding: 50px;
  font-size: 25px;
}

.gameBox .gameBTN {
  background: #eee;
  color: #000;
  text-transform: none;
  outline: none;
  border: none;
  border-radius: 2px;
  font-size: 25px;
}

.gameBox.withGame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  vertical-align: middle;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.gameBox.withGame .sweeperBox {
  width: 420px;
  height: 420px;
  background: #eee;
  padding: 2px;
  display: inline-block;
}

.gameBox.withGame .sweeperBox .cells {
  height: 50px;
  margin-top: 2px;
  margin-left: 1px;
}

.gameBox.withGame .sweeperBox .cells .cell {
  margin: 0px;
  padding: 0px;
  background: #bebebe;
  width: 48px;
  height: 48px;
  margin-right: 0px;
  border-radius: 1px;
  padding: 0px;
  display: inline-block;
  color: #000;
  font-weight: 900;
  font-size: 25px;
  text-align: center;
  overflow: hidden;
  line-height: 48px;
}

.gameBox.withGame .sweeperBox .cells .cell.flag {
  background: url(../images/flag.png);
  background-size: contain;
  background-position: center;
  background-color: #bebebe;
  background-position: 5px 1px;
}

.gameBox.withGame .sweeperBox .cells .cell.mine {
  background: url(../images/mine.png);
  background-size: contain;
  background-position: center;
  background-color: #bebebe;
  background-position: 0px 1px;
}

.gameBox.withGame .buttonBox {
  display: inline-block;
  width: 220px;
  text-align: center;
}

.gameBox.withGame .buttonBox .gameBTN {
  width: 100%;
  margin-left: 15px;
}

.gameBox.withGame .buttonBox .message {
  position: unset;
  text-align: center;
  display: block;
  font-size: 30px;
  width: 100%;
  font-weight: 600;
  margin-top: 80px;
  margin-left: 15px;
  height: 48px;
}

.gameBox.withoutGame {
  padding: 50px;
}

.gameBox.withoutGame .gameBTN {
  width: 300px;
}
/*# sourceMappingURL=custom.css.map */