body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: 'Courier New', Courier, monospace;
}

p,
li {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#dice_container {
  margin: 0 auto;
  width: 470px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}

.cell {
  height: 150px;
  position: relative;
}

.dice {
  width: 100px;
  height: 100px;
  background-color: white;
  position: absolute;
  left: 25px;
  top: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid gray;
  border-radius: 20px;
}

.dice p {
  font-size: 35px;
  line-height: 100px;
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.controls {
  width: 470px;
  background-color: antiquewhite;
  margin: 0 auto;
}

#roll_dice {
  width: 150px;
  margin: 0 auto;
}

#roll_dice p {
  background: white;
  margin: 0;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

#reset {
  width: 90px;
  margin: 0 auto 0 0;
  padding-top: 15px;
  display: none;
  padding-bottom: 0;
}

#reset p {
  background: white;
  margin: 0;
  padding: 5px;
  text-align: center;
  cursor: pointer;
}

#sum_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#sum,
#sum_held,
#rolls {
  margin: 0 auto;
  padding: 0px 10px 15px 10px;
  display: none;
  width: 100%;
}

#sum p,
#sum_held p,
#rolls p {
  background-color: white;
  padding: 10px;
  margin: 0;
}

#add_remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 50px;
}

#add_dice p, #remove_dice p {
  background: white;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

#extentions {
  width: 150px;
  margin: 0 auto;
  padding: 20px;
}

#extentions p {
  background: #333333;
  color: white;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
}

#add_ons {
  position: relative;
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

#add_ons ul {
  position: absolute;
}

#add_ons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  line-height: 20px;
  margin-bottom: 20px;
}

.button_container {
  margin-left: 20px;
  width: 30px;
  height: 20px;
  background-color: #f8f8f8;
  border-radius: 90px;
  position: relative;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}

.button_circle {
  height: 20px;
  width: 20px;
  background-color: #f8f8f8;
  border-radius: 90px;
  position: absolute;
  -webkit-transition: left 0.1s linear;
  transition: left 0.1s linear;
  left: 0;
  border: 1px solid #e5e5e5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button_slide {
  left: calc(100% - 20px) !important;
}

#balut_container {
  width: 470px;
  margin: 0 auto;
}

#balut,
#balut_scoreboard, #balut_header {
  display: none;
}

#balut_scoreboard {
  padding-bottom: 20px;
}

td {
  background-color: lightgrey;
}

th {
  text-align: center;
}

#balut {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#balut tr {
  cursor: pointer;
}

#balut tr td {
  color: #b1b1b1;
}

#balut tr td:first-child, #balut tr td[done] {
  color: #000000;
}

.balut_style #remove_dice,
.balut_style #add_dice {
  display: none;
}

.balut_style #dice_container {
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.balut_style #dice_container .cell {
  height: 110px;
}

.balut_style #dice_container .cell .dice {
  height: 80px;
  width: 80px;
  left: 3px;
  top: 10px;
}

.balut_style #dice_container .cell .dice p {
  line-height: 80px;
}

.balut_style #balut,
.balut_style #balut_header,
.balut_style #balut_scoreboard {
  display: table;
}

.balut_style #reset {
  display: block !important;
}

.balut_style #sum,
.balut_style #sum_held,
.balut_style #rolls {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
/*# sourceMappingURL=style.css.map */