html, body { margin: 0; padding: 0; }
body { background: #ddd; font-family: sans-serif; }

.group:after {
  content: "";
  display: table;
  clear: both;
}

.pull-left { float: left; }
.pull-right { float: right; }

.all-dice {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* max-width: 1088px; */
  /* margin: 30px auto 40px; */
  margin: 0px auto 40px;
}

.play-a {
  cursor: pointer;
  display: inline-block;
  position: relative;
  background: #fff;
  text-align: center;
  padding: 15px 0px 5px;
  width: 50%;
  border-top: solid 1px #ccc;
}
.play-a:first-child {
  width: 100%;
}

.play-a:nth-child(even) {
  border-color: #ccc;
  border-bottom: 0px;
  border-left: 0px;
  border-right: solid 1px #ccc;
  width: calc(50% - 1px);
}

.play-a img {
  max-height: 50px;
  width: auto;
  margin: 0 auto;
}

.play-a .roll-count-container {
  position: absolute;
  top: 10px; left: 10px;
}

.play-a .sound { position: relative; display: inline-block; font-size: 60px; line-height: 60px; padding: 15px 0; }
