body, html {
  width: 100%;
  height: 100%;
  font-size: 16px;
  margin: 0;
  overflow: hidden;
  background-color: #151515;
  cursor: default;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
}
*{
  font-family: 'Prompt', sans-serif;
  font-weight: 400;
  -webkit-user-select: none;  /* Chrome 49+ */
  -moz-user-select: none;     /* Firefox 43+ */
  -ms-user-select: none;      /* No support yet */
  user-select: none;
}
input, textarea{
  -webkit-user-select: auto !important;  /* Chrome 49+ */
  -moz-user-select: auto !important;     /* Firefox 43+ */
  -ms-user-select: auto !important;      /* No support yet */
  user-select: auto !important;
}
button, input{
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0px;
}
button:focus, input:focus{
  border: none;
  outline: none;
}
button:disabled{
  cursor: not-allowed !important;
}
img{
  -webkit-pointer-events: none;  /* Chrome 49+ */
  -moz-pointer-events: none;     /* Firefox 43+ */
  -ms-pointer-events: none;    
  pointer-events: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* -------------------------------------------------------------------------------- */
.action-start-game{
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.action-start-game p{
  color: #898989;
  font-size: 28px;
  text-align: center;
}



.loading{
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.loading .bar-load{
  margin-top: 40px;
  height: 16px;
  width: 70%;
  max-width: 500px;
  background-color: rgba(255,255,255,0.1);
}
.loading .bar-load .bar-load-active{
  height: 100%;
  width: 0%;
  background-color: #03d000;
}



.bingo-page{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}


.bingo-head{
  width: 100%;
  height: 60px;
  background-color: #242424;
  border-radius: 0p 0px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* justify-content: space-between; */
  padding: 0px 8px;
  position: relative;
}
.bingo-head .head-name{
  position: absolute;
  left: 16px;
  color: #ffffff;
  font-size: 20px;
}
.bingo-head .btn-head{
  margin-right: 8px;
  height: calc(100% - 20px);
  min-width: 80px;
  padding: 0px 12px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.bingo-head .btn-head:last-child{
  margin-right: 0px;
}
.bingo-head .btn-head p{
  color: #ffffff;
  font-size: 18px;
}
#bingo_start{
  display: flex;
  background: linear-gradient(180deg, #00b208 0%, #007005 100%);
}
#bingo_stop{
  display: none;
  background: linear-gradient(180deg, #d80101 0%, #7a0000 100%);
}
#btn_break_game{
  display: none;
  background: linear-gradient(180deg, #dda300 0%, #7a5300 100%);
}


.bingo-body{
  width: calc(100% - 16px);
  height: calc(100% - (60px + 80px + 16px));
  margin: 8px 0px 8px 0px;
  background-color:#1b1b1b;
  border-left: 0px;
  border-right: 0px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bingo-body .body-text{
  color: #ffffff;
  font-size: 40px;
}
.bingo-body .body-time{
  color: #ffffff;
  font-size: 96px;
}
.bingo-body .body-number{
  color: #ffffff;
  font-size: 170px;
  font-weight: 500;
  margin-top: 30px;
}


.bingo-footer{
  width: 100%;
  height: 80px;
  background-color: #242424;
  border-radius: 8px 8px 0px 0px;
}
.bingo-footer .bingo-footer-list{
  height: 100%;
  width: auto;
  display: flex;
  overflow-y: hidden;
  overflow-x: auto;
}
.bingo-footer .bingo-footer-list .number-history{
  padding: 0px 12px;
  min-width: 70px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.bingo-footer .bingo-footer-list .number-history p{
  font-size: 32px;
  color: #ffffff;
}
      