body {
  font-family: 'Roboto', sans-serif;
  background-color: #300;
}

/* table */
.text-container {
  flex-grow: 1;
  height: 90px;
}

.text-box p, .text-box span {
  font-size: 1em;
}

.text-box {
  font-family: 'Dosis', sans-serif;
  font-weight: 200;
  font-size: 1em;
  letter-spacing: 2px;
  display: flex;
  /*margin: 0 5px;*/
  height: 60px;
  box-sizing: border-box;
}

.text-box p {
  font-weight: 600;
  font-size: 1.5em;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.statistics-container {
  display: flex;
  margin-left: 10px;
  width: 685px;
  height: 210px;
  color: white;
  /*flex-direction: row;*/
  flex-wrap: wrap;
  /*align-content: center;*/
  justify-content: space-between;
  /*align-items: center;*/
}


.hotCold {
  display: flex;
  /*width: 115px;
  height: 150px;*/
  list-style-type: none;
  color: white;
}

#hotNumbersList{
  background-color: darkred;
  border: 3px solid darkred;
  padding: 0;
  display: inline-flex;
  width: 35px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  margin-right: 5px;
  padding-top: 5px;
  padding-bottom: 10px;
  margin: 0px 5px;
  padding: unset;
}

#coldNumbersList{
  background-color: darkblue;
  border: 3px solid darkblue;
  padding: 0;
  display: inline-flex;
  width: 35px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  margin-left: 5px;
  padding-top: 5px;
  padding-bottom: 10px;
  margin: 0px 5px;
  padding: unset;
}

#hotNumbersList li {
  width: 100%;
  /*height: 20px;*/
  margin: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#coldNumbersList li {
  width: 100%;
  /*height: 20px;*/
  margin: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-line {
  display: flex;
  justify-content: space-between;
  margin: 0 10px 20px 10px;
}

.stat-line span {
  font-size: 0.8em;
}

.stat-line span span {
  font-size: 1.1em;
  font-style: italic;
  font-family: math;
  font-weight: bold;
}

.other-stats {
    width: 575px;
    height: 135px;
    border: 2px solid crimson;
}

#boardButtons {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex-direction: row-reverse;
}

#boardButtons button {
  padding: 10px;
  font-size: 25px;
  background-color: hsla(0,0%,45.9%,.4588235294117647);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 115px;
}

#boardButtons button:hover {
  background-color: #0056b3;
}

#chip-bar {
  display: flex;
  /* width: 400px; */
  /* height: 60px; */
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.chip-container {
  display: inline-block;
}

.chip-button {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
  color: white;
  cursor: pointer;
  margin: 0 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border: 3px dashed white;
  position: relative;
}

.chip-button:before,
.chip-button:after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  content: '';
}

.chip-button:before {
  margin: -5px;
  border: 2px dashed white;
}

.chip-button:after {
  margin: 5px;
  background: rgba(0, 0, 0, 0.2);
}

/* Chip colors */
.chip-button[data-value='5'] {
  background-color: #FF4D4D;
}

.chip-button[data-value='10'] {
  background-color: #4CAF50;
}

.chip-button[data-value='25'] {
  background-color: #2196F3;
}

.chip-button[data-value='50'] {
  background-color: #FFC107;
}

.chip-button[data-value='100'] {
  background-color: #9C27B0;
}

.chip-button.selected
{
  transform: scale(1.1);
  border-radius: 50% !important;
}

.chip-container:hover .chip-button {
  transform: scale(1.1);
  border-radius: 50% !important;
}

.chip-container:active .chip-button {
  transform: scale(0.9);
  border-radius: 50% !important;
}

#message-box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 690px;
  color: white;
  height: 140px;
  top: 220px;
  left: 390px;
}

#message {
  flex-direction: column;
  text-align: center;
  text-shadow: 2px 2px 1px #000;
  transition: .5s all;
  overflow: hidden;
}

#message p {
  font-size: 1em;
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 0px;
}

#playerNameInput {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid white;
  color: white;
  text-align: end;
  outline: transparent;
  font-size: 20px;
}


#playersList {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  padding-top: 5px;
  padding-bottom: 15px;
}
.player {
  height: 30px;
  /*width: 150px;*/
  display: flex;
  color: #fff;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: start;
}

/* Jeton */
.chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 12px; */
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: margin-top 0.2s;
  margin-left: 12px;
  margin-top: 10px;
  box-shadow: -8px 20px 5px rgba(0, 0, 0, 0.3);
  border: 3px dashed ivory;
}

.stacked-chip {
  margin-top: -30px;
  margin-left: 15px;
}

.chip::before{
  border: 2px dashed white;
}


.hide {
  display: none;

}

#game {
  /*position: relative;*/
  /*margin: auto;*/
  width: 960px;
  height: 600px;
  /*overflow: hidden;*/
}

#board {
  position: relative;
  margin: auto;
  width: 98.85%;
  height: 55.83%;
  background: url("../board.png") no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

#boardVisual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#boardInteraction {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.zoneChip p.percent {
    position: absolute;
    display: inline-block;
    color: #FFF;
    font-size: 1.5em;
    text-shadow: 2px 2px 2px #000;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
}

.zoneChip.cd1 p.percent, .zoneChip.cd2 p.percent, .zoneChip.cd3 p.percent {
  top: 14%;
}

.zoneChip.ccol1 p.percent, .zoneChip.ccol2 p.percent, .zoneChip.ccol3 p.percent {
  top: 25%;
}

.zoneChip.cMANQUE p.percent, .zoneChip.cPAIR p.percent, .zoneChip.cROUGE p.percent, .zoneChip.cNOIR p.percent, .zoneChip.cIMPAIR p.percent, .zoneChip.cPASSE p.percent {
  top: 14%;
}

.zoneChip.cROUGE p.percent, .zoneChip.cNOIR p.percent {
  left: 5%;
}

.zoneChip .bgVisual, .zoneChip .bgStats, .zoneChip .bgResult {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

#board .c0 {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 56px;
  height: 220px;
}

#board .c1 {
  position: absolute;
  left: 62px;
  top: 154px;
  width: 69px;
  height: 72px;
}

#board .c2 {
  position: absolute;
  left: 62px;
  top: 79px;
  width: 69px;
  height: 75px;
}

#board .c3 {
  position: absolute;
  left: 62px;
  top: 6px;
  width: 69px;
  height: 73px;
}

#board .c4 {
  position: absolute;
  left: 131px;
  top: 154px;
  width: 68px;
  height: 72px;
}

#board .c5 {
  position: absolute;
  left: 131px;
  top: 79px;
  width: 68px;
  height: 75px;
}

#board .c6 {
  position: absolute;
  left: 131px;
  top: 6px;
  width: 68px;
  height: 73px;
}

#board .c7 {
  position: absolute;
  left: 199px;
  top: 154px;
  width: 69px;
  height: 72px;
}

#board .c8 {
  position: absolute;
  left: 199px;
  top: 79px;
  width: 69px;
  height: 75px;
}

#board .c9 {
  position: absolute;
  left: 199px;
  top: 6px;
  width: 69px;
  height: 73px;
}

#board .c10 {
  position: absolute;
  left: 268px;
  top: 154px;
  width: 68px;
  height: 72px;
}

#board .c11 {
  position: absolute;
  left: 268px;
  top: 79px;
  width: 68px;
  height: 75px;
}

#board .c12 {
  position: absolute;
  left: 268px;
  top: 6px;
  width: 68px;
  height: 73px;
}

#board .c13 {
  position: absolute;
  left: 336px;
  top: 154px;
  width: 69px;
  height: 72px;
}

#board .c14 {
  position: absolute;
  left: 336px;
  top: 79px;
  width: 69px;
  height: 75px;
}

#board .c15 {
  position: absolute;
  left: 336px;
  top: 6px;
  width: 69px;
  height: 73px;
}

#board .c16 {
  position: absolute;
  left: 405px;
  top: 154px;
  width: 68px;
  height: 72px;
}

#board .c17 {
  position: absolute;
  left: 405px;
  top: 79px;
  width: 68px;
  height: 75px;
}

#board .c18 {
  position: absolute;
  left: 405px;
  top: 6px;
  width: 68px;
  height: 73px;
}

#board .c19 {
  position: absolute;
  left: 473px;
  top: 154px;
  width: 69px;
  height: 72px;
}

#board .c20 {
  position: absolute;
  left: 473px;
  top: 79px;
  width: 69px;
  height: 75px;
}

#board .c21 {
  position: absolute;
  left: 473px;
  top: 6px;
  width: 69px;
  height: 73px;
}

#board .c22 {
  position: absolute;
  left: 542px;
  top: 154px;
  width: 68px;
  height: 72px;
}

#board .c23 {
  position: absolute;
  left: 542px;
  top: 79px;
  width: 68px;
  height: 75px;
}

#board .c24 {
  position: absolute;
  left: 542px;
  top: 6px;
  width: 68px;
  height: 73px;
}

#board .c25 {
  position: absolute;
  left: 610px;
  top: 154px;
  width: 69px;
  height: 72px;
}

#board .c26 {
  position: absolute;
  left: 610px;
  top: 79px;
  width: 69px;
  height: 75px;
}

#board .c27 {
  position: absolute;
  left: 610px;
  top: 6px;
  width: 69px;
  height: 73px;
}

#board .c28 {
  position: absolute;
  left: 679px;
  top: 154px;
  width: 68px;
  height: 72px;
}

#board .c29 {
  position: absolute;
  left: 679px;
  top: 79px;
  width: 68px;
  height: 75px;
}

#board .c30 {
  position: absolute;
  left: 679px;
  top: 6px;
  width: 68px;
  height: 73px;
}

#board .c31 {
  position: absolute;
  left: 747px;
  top: 154px;
  width: 69px;
  height: 72px;
}

#board .c32 {
  position: absolute;
  left: 747px;
  top: 79px;
  width: 69px;
  height: 75px;
}

#board .c33 {
  position: absolute;
  left: 747px;
  top: 6px;
  width: 69px;
  height: 73px;
}

#board .c34 {
  position: absolute;
  left: 816px;
  top: 154px;
  width: 68px;
  height: 72px;
}

#board .c35 {
  position: absolute;
  left: 816px;
  top: 79px;
  width: 68px;
  height: 75px;
}

#board .c36 {
  position: absolute;
  left: 816px;
  top: 6px;
  width: 68px;
  height: 73px;
}

#board .ccol1 {
  position: absolute;
  left: 884px;
  top: 154px;
  width: 60px;
  height: 72px;
}

#board .ccol2 {
  position: absolute;
  left: 884px;
  top: 79px;
  width: 60px;
  height: 75px;
}

#board .ccol3 {
  position: absolute;
  left: 884px;
  top: 6px;
  width: 60px;
  height: 73px;
}

#board .cd1 {
  position: absolute;
  left: 62px;
  top: 231px;
  width: 273px;
  height: 51px;
}

#board .cd2 {
  position: absolute;
  left: 335px;
  top: 231px;
  width: 274px;
  height: 51px;
}

#board .cd3 {
  position: absolute;
  left: 609px;
  top: 231px;
  width: 275px;
  height: 51px;
}

#board .cMANQUE {
  position: absolute;
  left: 62px;
  top: 282px;
  width: 137px;
  height: 50px;
}

#board .cPAIR {
  position: absolute;
  left: 199px;
  top: 282px;
  width: 136px;
  height: 50px;
}

#board .cROUGE {
  position: absolute;
  left: 335px;
  top: 282px;
  width: 139px;
  height: 50px;
}

#board .cNOIR {
  position: absolute;
  left: 474px;
  top: 282px;
  width: 135px;
  height: 50px;
}

#board .cIMPAIR {
  position: absolute;
  left: 609px;
  top: 282px;
  width: 139px;
  height: 50px;
}

#board .cPASSE {
  position: absolute;
  left: 748px;
  top: 282px;
  width: 136px;
  height: 50px;
}

#board .ct012 {
  position: absolute;
  left: 45px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .ct023 {
  position: absolute;
  left: 45px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .ct1 {
  position: absolute;
  left: 79px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .ct2 {
  position: absolute;
  left: 147px;
  top: 209px;
  width: 35px;
  height: 38px;
}

#board .ct3 {
  position: absolute;
  left: 216px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .ct4 {
  position: absolute;
  left: 284px;
  top: 209px;
  width: 35px;
  height: 38px;
}

#board .ct5 {
  position: absolute;
  left: 353px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .ct6 {
  position: absolute;
  left: 421px;
  top: 209px;
  width: 35px;
  height: 38px;
}

#board .ct7 {
  position: absolute;
  left: 490px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .ct8 {
  position: absolute;
  left: 558px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .ct9 {
  position: absolute;
  left: 626px;
  top: 209px;
  width: 35px;
  height: 38px;
}

#board .ct10 {
  position: absolute;
  left: 695px;
  top: 209px;
  width: 35px;
  height: 38px;
}

#board .ct11 {
  position: absolute;
  left: 764px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .ct12 {
  position: absolute;
  left: 832px;
  top: 209px;
  width: 35px;
  height: 38px;
}

#board .ch1 {
  position: absolute;
  left: 45px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch2 {
  position: absolute;
  left: 45px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch3 {
  position: absolute;
  left: 45px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch4 {
  position: absolute;
  left: 79px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .ch5 {
  position: absolute;
  left: 79px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .ch6 {
  position: absolute;
  left: 147px;
  top: 133px;
  width: 35px;
  height: 38px;
}

#board .ch7 {
  position: absolute;
  left: 147px;
  top: 58px;
  width: 35px;
  height: 38px;
}

#board .ch8 {
  position: absolute;
  left: 216px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .ch9 {
  position: absolute;
  left: 216px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .ch10 {
  position: absolute;
  left: 284px;
  top: 133px;
  width: 35px;
  height: 38px;
}

#board .ch11 {
  position: absolute;
  left: 284px;
  top: 58px;
  width: 35px;
  height: 38px;
}

#board .ch12 {
  position: absolute;
  left: 353px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .ch13 {
  position: absolute;
  left: 353px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .ch14 {
  position: absolute;
  left: 421px;
  top: 133px;
  width: 35px;
  height: 38px;
}

#board .ch15 {
  position: absolute;
  left: 421px;
  top: 58px;
  width: 35px;
  height: 38px;
}

#board .ch16 {
  position: absolute;
  left: 490px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .ch17 {
  position: absolute;
  left: 490px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .ch18 {
  position: absolute;
  left: 558px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .ch19 {
  position: absolute;
  left: 558px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .ch20 {
  position: absolute;
  left: 626px;
  top: 133px;
  width: 35px;
  height: 38px;
}

#board .ch21 {
  position: absolute;
  left: 626px;
  top: 58px;
  width: 35px;
  height: 38px;
}

#board .ch22 {
  position: absolute;
  left: 695px;
  top: 133px;
  width: 35px;
  height: 38px;
}

#board .ch23 {
  position: absolute;
  left: 695px;
  top: 58px;
  width: 35px;
  height: 38px;
}

#board .ch24 {
  position: absolute;
  left: 764px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .ch25 {
  position: absolute;
  left: 764px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .ch26 {
  position: absolute;
  left: 832px;
  top: 133px;
  width: 35px;
  height: 38px;
}

#board .ch27 {
  position: absolute;
  left: 832px;
  top: 58px;
  width: 35px;
  height: 38px;
}

#board .ch28 {
  position: absolute;
  left: 113px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch29 {
  position: absolute;
  left: 113px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch30 {
  position: absolute;
  left: 113px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch31 {
  position: absolute;
  left: 182px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch32 {
  position: absolute;
  left: 182px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch33 {
  position: absolute;
  left: 182px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch34 {
  position: absolute;
  left: 250px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch35 {
  position: absolute;
  left: 250px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch36 {
  position: absolute;
  left: 250px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch37 {
  position: absolute;
  left: 319px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch38 {
  position: absolute;
  left: 319px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch39 {
  position: absolute;
  left: 319px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch40 {
  position: absolute;
  left: 387px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch41 {
  position: absolute;
  left: 387px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch42 {
  position: absolute;
  left: 387px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch43 {
  position: absolute;
  left: 456px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch44 {
  position: absolute;
  left: 456px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch45 {
  position: absolute;
  left: 456px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch46 {
  position: absolute;
  left: 524px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch47 {
  position: absolute;
  left: 524px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch48 {
  position: absolute;
  left: 524px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch49 {
  position: absolute;
  left: 592px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch50 {
  position: absolute;
  left: 592px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch51 {
  position: absolute;
  left: 592px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch52 {
  position: absolute;
  left: 661px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch53 {
  position: absolute;
  left: 661px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch54 {
  position: absolute;
  left: 661px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch55 {
  position: absolute;
  left: 730px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch56 {
  position: absolute;
  left: 730px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch57 {
  position: absolute;
  left: 730px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .ch58 {
  position: absolute;
  left: 798px;
  top: 171px;
  width: 34px;
  height: 38px;
}

#board .ch59 {
  position: absolute;
  left: 798px;
  top: 96px;
  width: 34px;
  height: 37px;
}

#board .ch60 {
  position: absolute;
  left: 798px;
  top: 20px;
  width: 34px;
  height: 38px;
}

#board .cs1 {
  position: absolute;
  left: 113px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs2 {
  position: absolute;
  left: 182px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs3 {
  position: absolute;
  left: 250px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs4 {
  position: absolute;
  left: 319px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs5 {
  position: absolute;
  left: 387px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs6 {
  position: absolute;
  left: 456px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs7 {
  position: absolute;
  left: 524px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs8 {
  position: absolute;
  left: 592px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs9 {
  position: absolute;
  left: 661px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs10 {
  position: absolute;
  left: 730px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cs11 {
  position: absolute;
  left: 798px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cc0 {
  position: absolute;
  left: 45px;
  top: 209px;
  width: 34px;
  height: 38px;
}

#board .cc1 {
  position: absolute;
  left: 113px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc2 {
  position: absolute;
  left: 113px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc3 {
  position: absolute;
  left: 182px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc4 {
  position: absolute;
  left: 182px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc5 {
  position: absolute;
  left: 250px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc6 {
  position: absolute;
  left: 250px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc7 {
  position: absolute;
  left: 319px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc8 {
  position: absolute;
  left: 319px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc9 {
  position: absolute;
  left: 387px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc10 {
  position: absolute;
  left: 387px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc11 {
  position: absolute;
  left: 456px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc12 {
  position: absolute;
  left: 456px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc13 {
  position: absolute;
  left: 524px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc14 {
  position: absolute;
  left: 524px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc15 {
  position: absolute;
  left: 592px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc16 {
  position: absolute;
  left: 592px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc17 {
  position: absolute;
  left: 661px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc18 {
  position: absolute;
  left: 661px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc19 {
  position: absolute;
  left: 730px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc20 {
  position: absolute;
  left: 730px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .cc21 {
  position: absolute;
  left: 798px;
  top: 133px;
  width: 34px;
  height: 38px;
}

#board .cc22 {
  position: absolute;
  left: 798px;
  top: 58px;
  width: 34px;
  height: 38px;
}

#board .chc1 {
  position: absolute;
  left: 896px;
  top: 133px;
  width: 35px;
  height: 38px;
}

#board .chc2 {
  position: absolute;
  left: 896px;
  top: 58px;
  width: 35px;
  height: 38px;
}

#board .chd1 {
  position: absolute;
  left: 319px;
  top: 247px;
  width: 34px;
  height: 37px;
}

#board .chd2 {
  position: absolute;
  left: 592px;
  top: 247px;
  width: 34px;
  height: 37px;
}

#boardVisual .ct012 {
  position: absolute;
  left: 33px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct023 {
  position: absolute;
  left: 33px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct1 {
  position: absolute;
  left: 67px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct2 {
  position: absolute;
  left: 135px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct3 {
  position: absolute;
  left: 204px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct4 {
  position: absolute;
  left: 272px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct5 {
  position: absolute;
  left: 341px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct6 {
  position: absolute;
  left: 409px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct7 {
  position: absolute;
  left: 478px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct8 {
  position: absolute;
  left: 546px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct9 {
  position: absolute;
  left: 614px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct10 {
  position: absolute;
  left: 683px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct11 {
  position: absolute;
  left: 752px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ct12 {
  position: absolute;
  left: 820px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch1 {
  position: absolute;
  left: 33px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch2 {
  position: absolute;
  left: 33px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch3 {
  position: absolute;
  left: 33px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch4 {
  position: absolute;
  left: 67px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch5 {
  position: absolute;
  left: 67px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch6 {
  position: absolute;
  left: 135px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch7 {
  position: absolute;
  left: 135px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch8 {
  position: absolute;
  left: 204px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch9 {
  position: absolute;
  left: 204px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch10 {
  position: absolute;
  left: 272px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch11 {
  position: absolute;
  left: 272px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch12 {
  position: absolute;
  left: 341px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch13 {
  position: absolute;
  left: 341px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch14 {
  position: absolute;
  left: 409px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch15 {
  position: absolute;
  left: 409px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch16 {
  position: absolute;
  left: 478px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch17 {
  position: absolute;
  left: 478px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch18 {
  position: absolute;
  left: 546px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch19 {
  position: absolute;
  left: 546px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch20 {
  position: absolute;
  left: 614px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch21 {
  position: absolute;
  left: 614px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch22 {
  position: absolute;
  left: 683px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch23 {
  position: absolute;
  left: 683px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch24 {
  position: absolute;
  left: 752px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch25 {
  position: absolute;
  left: 752px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch26 {
  position: absolute;
  left: 820px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch27 {
  position: absolute;
  left: 820px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch28 {
  position: absolute;
  left: 101px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch29 {
  position: absolute;
  left: 101px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch30 {
  position: absolute;
  left: 101px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch31 {
  position: absolute;
  left: 170px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch32 {
  position: absolute;
  left: 170px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch33 {
  position: absolute;
  left: 170px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch34 {
  position: absolute;
  left: 238px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch35 {
  position: absolute;
  left: 238px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch36 {
  position: absolute;
  left: 238px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch37 {
  position: absolute;
  left: 307px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch38 {
  position: absolute;
  left: 307px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch39 {
  position: absolute;
  left: 307px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch40 {
  position: absolute;
  left: 375px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch41 {
  position: absolute;
  left: 375px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch42 {
  position: absolute;
  left: 375px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch43 {
  position: absolute;
  left: 444px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch44 {
  position: absolute;
  left: 444px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch45 {
  position: absolute;
  left: 444px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch46 {
  position: absolute;
  left: 512px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch47 {
  position: absolute;
  left: 512px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch48 {
  position: absolute;
  left: 512px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch49 {
  position: absolute;
  left: 580px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch50 {
  position: absolute;
  left: 580px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch51 {
  position: absolute;
  left: 580px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch52 {
  position: absolute;
  left: 649px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch53 {
  position: absolute;
  left: 649px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch54 {
  position: absolute;
  left: 649px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch55 {
  position: absolute;
  left: 718px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch56 {
  position: absolute;
  left: 718px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch57 {
  position: absolute;
  left: 718px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch58 {
  position: absolute;
  left: 786px;
  top: 159px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch59 {
  position: absolute;
  left: 786px;
  top: 84px;
  width: 58px;
  height: 66px;
}

#boardVisual .ch60 {
  position: absolute;
  left: 786px;
  top: 8px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs1 {
  position: absolute;
  left: 101px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs2 {
  position: absolute;
  left: 170px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs3 {
  position: absolute;
  left: 238px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs4 {
  position: absolute;
  left: 307px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs5 {
  position: absolute;
  left: 375px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs6 {
  position: absolute;
  left: 444px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs7 {
  position: absolute;
  left: 512px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs8 {
  position: absolute;
  left: 580px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs9 {
  position: absolute;
  left: 649px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs10 {
  position: absolute;
  left: 718px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cs11 {
  position: absolute;
  left: 786px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc0 {
  position: absolute;
  left: 33px;
  top: 197px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc1 {
  position: absolute;
  left: 101px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc2 {
  position: absolute;
  left: 101px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc3 {
  position: absolute;
  left: 170px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc4 {
  position: absolute;
  left: 170px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc5 {
  position: absolute;
  left: 238px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc6 {
  position: absolute;
  left: 238px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc7 {
  position: absolute;
  left: 307px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc8 {
  position: absolute;
  left: 307px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc9 {
  position: absolute;
  left: 375px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc10 {
  position: absolute;
  left: 375px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc11 {
  position: absolute;
  left: 444px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc12 {
  position: absolute;
  left: 444px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc13 {
  position: absolute;
  left: 512px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc14 {
  position: absolute;
  left: 512px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc15 {
  position: absolute;
  left: 580px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc16 {
  position: absolute;
  left: 580px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc17 {
  position: absolute;
  left: 649px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc18 {
  position: absolute;
  left: 649px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc19 {
  position: absolute;
  left: 718px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc20 {
  position: absolute;
  left: 718px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc21 {
  position: absolute;
  left: 786px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .cc22 {
  position: absolute;
  left: 786px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .chc1 {
  position: absolute;
  left: 884px;
  top: 121px;
  width: 58px;
  height: 66px;
}

#boardVisual .chc2 {
  position: absolute;
  left: 884px;
  top: 46px;
  width: 58px;
  height: 66px;
}

#boardVisual .chd1 {
  position: absolute;
  left: 307px;
  top: 223px;
  width: 58px;
  height: 66px;
}

#boardVisual .chd2 {
  position: absolute;
  left: 580px;
  top: 223px;
  width: 58px;
  height: 66px;
}

/* roulette wheel */
.number:nth-child(1) {
  transform: rotateZ(9.72972973deg);
}
.number:nth-child(2) {
  transform: rotateZ(19.45945946deg);
}
.number:nth-child(3) {
  transform: rotateZ(29.18918919deg);
}
.number:nth-child(4) {
  transform: rotateZ(38.91891892deg);
}
.number:nth-child(5) {
  transform: rotateZ(48.64864865deg);
}
.number:nth-child(6) {
  transform: rotateZ(58.37837838deg);
}
.number:nth-child(7) {
  transform: rotateZ(68.10810811deg);
}
.number:nth-child(8) {
  transform: rotateZ(77.83783784deg);
}
.number:nth-child(9) {
  transform: rotateZ(87.56756757deg);
}
.number:nth-child(10) {
  transform: rotateZ(97.2972973deg);
}
.number:nth-child(11) {
  transform: rotateZ(107.02702703deg);
}
.number:nth-child(12) {
  transform: rotateZ(116.75675676deg);
}
.number:nth-child(13) {
  transform: rotateZ(126.48648649deg);
}
.number:nth-child(14) {
  transform: rotateZ(136.21621622deg);
}
.number:nth-child(15) {
  transform: rotateZ(145.94594595deg);
}
.number:nth-child(16) {
  transform: rotateZ(155.67567568deg);
}
.number:nth-child(17) {
  transform: rotateZ(165.40540541deg);
}
.number:nth-child(18) {
  transform: rotateZ(175.13513514deg);
}
.number:nth-child(19) {
  transform: rotateZ(184.86486486deg);
}
.number:nth-child(20) {
  transform: rotateZ(194.59459459deg);
}
.number:nth-child(21) {
  transform: rotateZ(204.32432432deg);
}
.number:nth-child(22) {
  transform: rotateZ(214.05405405deg);
}
.number:nth-child(23) {
  transform: rotateZ(223.78378378deg);
}
.number:nth-child(24) {
  transform: rotateZ(233.51351351deg);
}
.number:nth-child(25) {
  transform: rotateZ(243.24324324deg);
}
.number:nth-child(26) {
  transform: rotateZ(252.97297297deg);
}
.number:nth-child(27) {
  transform: rotateZ(262.7027027deg);
}
.number:nth-child(28) {
  transform: rotateZ(272.43243243deg);
}
.number:nth-child(29) {
  transform: rotateZ(282.16216216deg);
}
.number:nth-child(30) {
  transform: rotateZ(291.89189189deg);
}
.number:nth-child(31) {
  transform: rotateZ(301.62162162deg);
}
.number:nth-child(32) {
  transform: rotateZ(311.35135135deg);
}
.number:nth-child(33) {
  transform: rotateZ(321.08108108deg);
}
.number:nth-child(34) {
  transform: rotateZ(330.81081081deg);
}
.number:nth-child(35) {
  transform: rotateZ(340.54054054deg);
}
.number:nth-child(36) {
  transform: rotateZ(350.27027027deg);
}
.roulette.wheel {
  width: 100%;
  height: 355px;
  display: flex;
  /*margin-bottom: 50px;*/
}
.plate {
  background-color: gray;
  width: 350px;
  height: 350px;
  margin: 12px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-animation: rotate 24s infinite linear;
          animation: rotate 24s infinite linear;
}
.plate:after,
.plate:before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
}
.plate:after {
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border: 6px solid gold;
  box-shadow: inset 0px 0px 0px 2px #b39700, 0px 0px 0px 2px #ffeb80;
}
.plate:before {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid silver;
  box-shadow: inset 0px 0px 0px 2px #808080;
  top: 12%;
  left: 12%;
  right: 12%;
  bottom: 12%;
  z-index: 1;
}
.number {
  width: 32px;
  height: 175px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 0;
  left: calc(50% - (32px/2));
  transform-origin: 50% 100%;
  background-color: transparent;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 175px solid black;
  box-sizing: border-box;
}
.number:nth-child(odd) {
  border-top-color: red;
}
.number:nth-child(37) {
  border-top-color: green;
}
.pit {
  color: #fff;
  padding-top: 12px;
  width: 32px;
  display: inline-block;
  font-size: 12px;
  transform: scale(1, 1.8);
  position: absolute;
  top: -175px;
  left: -16px;
}
.inner {
  display: block;
  height: 350px;
  width: 350px;
  position: relative;
  padding-left: 0;
}
.inner:after,
.inner:before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
}
.inner:after {
  z-index: 3;
  top: 24%;
  right: 24%;
  bottom: 24%;
  left: 24%;
  background-color: #4d4d4d;
  border: 3px solid #808080;
}
.inner:before {
  top: 24%;
  bottom: 21%;
  left: 24%;
  right: 22%;
  content: '';
  color: #fff;
  font-size: 60px;
  z-index: 5;
  border-radius: 0;
}
.inner[data-spinto='1']:before {
  transform: rotateZ(-2602deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='2']:before {
  transform: rotateZ(-2774deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='3']:before {
  transform: rotateZ(-2850deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='4']:before {
  transform: rotateZ(-2793deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='5']:before {
  transform: rotateZ(-2642deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='6']:before {
  transform: rotateZ(-2734deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='7']:before {
  transform: rotateZ(-2526deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='8']:before {
  transform: rotateZ(-2673deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='9']:before {
  transform: rotateZ(-2564deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='10']:before {
  transform: rotateZ(-2652deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='11']:before {
  transform: rotateZ(-2693deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='12']:before {
  transform: rotateZ(-2868deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='13']:before {
  transform: rotateZ(-2714deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='14']:before {
  transform: rotateZ(-2582deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='15']:before {
  transform: rotateZ(-2813deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='16']:before {
  transform: rotateZ(-2622deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='17']:before {
  transform: rotateZ(-2755deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='18']:before {
  transform: rotateZ(-2545deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='19']:before {
  transform: rotateZ(-2803deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='20']:before {
  transform: rotateZ(-2592deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='21']:before {
  transform: rotateZ(-2784deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='22']:before {
  transform: rotateZ(-2554deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='23']:before {
  transform: rotateZ(-2662deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='24']:before {
  transform: rotateZ(-2632deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='25']:before {
  transform: rotateZ(-2764deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='26']:before {
  transform: rotateZ(-2840deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='27']:before {
  transform: rotateZ(-2724deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='28']:before {
  transform: rotateZ(-2877deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='29']:before {
  transform: rotateZ(-2535deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='30']:before {
  transform: rotateZ(-2684deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='31']:before {
  transform: rotateZ(-2573deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='32']:before {
  transform: rotateZ(-2822deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='33']:before {
  transform: rotateZ(-2612deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='34']:before {
  transform: rotateZ(-2745deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='35']:before {
  transform: rotateZ(-2499deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='36']:before {
  transform: rotateZ(-2703deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner[data-spinto='0']:before {
  transform: rotateZ(-2831deg);
  transition: transform 9s ease-out;
  content: '\2022';
}
.inner.rest:before {
  transition: top 0.5s ease-in, right 0.5s ease-in, bottom 0.5s ease-in, left 0.5s ease-in;
  top: 25%;
  right: 25%;
  bottom: 24%;
  left: 25%;
}
.btn {
  background: green;
  border: 1px solid #000000;
  border-top-color: #00b300;
  border-left-color: #00b300;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-size: 15px;
  width: 175px;
  padding: 12px;
  margin: 12px;
  cursor: pointer;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  border-radius: 3px;
}
.btn .btn-label {
  padding: 12px;
  white-space: nowrap;
}
.btn.btn-reset {
  background: darkgreen;
  border: 1px solid #000000;
  border-top-color: #009700;
  border-left-color: #009700;
}
.btn.disabled {
  opacity: 0.2;
  transition: opacity 0.24s linear;
  cursor: not-allowed;
}
@-webkit-keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.data {
  display: block;
  position: absolute;
  top: 30%;
  right: 30%;
  bottom: 30%;
  left: 30%;
  border-radius: 50%;
  animation: rotate 24s reverse linear infinite;
  perspective: 2000px;
  z-index: 100;
}
.data .data-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.72s;
  transform-style: preserve-3d;
}
.data.reveal .data-inner {
  transform: rotateY(180deg);
}
.data .mask,
.data .result {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.data .mask {
  color: #fff;
  font-size: 24px;
  margin: auto;
  line-height: 1.4;
  padding-top: 36px;
}
.data .result {
  background-color: green;
  color: white;
  transform: rotateY(180deg);
  align-items: center;
  color: #fff;
}
.data .result-number {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 12px;
}
.data .result-color {
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1;
}
.previous-results {
  max-width: 685px;
  /*margin: 24px 12px;*/
  display: flex;
  position: relative;
  /*margin-left: -20px;*/
}

.previous-result {
  width: 10px;
  display: flex;
  /*margin: 1px;*/
  padding: 10px;
  color: #fff;
  justify-content: center;
  border: 1px solid white;
}

.previous-list {
  padding: 0;
  display: inline-flex;
  overflow: hidden;
  margin: 0;
  height: fit-content;
}

.previous-result:first-child {
  -webkit-animation: flipin 0.5s ease-out;
          animation: flipin 0.5s ease-out;
}
.previous-result .previous-number {
  flex: 1;
}
.color-green {
  background-color: green;
}
.color-black {
  background-color: black;
}
.color-red {
  background-color: red;
}
.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
@-webkit-keyframes flipin {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@keyframes flipin {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
