body { 
    margin: 0;
    background: #111; 
    overflow-x: hidden;
}
canvas { 
    height: 70vh;
}

*{
  margin: 0px;
  color: white;
}

.topBar{
  height: 5vh;
  width: 100vw;
  background-color: #222;
  border-bottom: solid #111 2px;
  display: flex;
  justify-content: center;
  align-items: center ;
  flex-direction: row;
}

.betAmountLabel{
  margin-bottom: 1vh
}

.purseContainer{
  background-color: #111;
  padding: .2vh 1vw .2vh 1vw;
  min-width: 6vw;
  border-radius: .5vw;
  border: solid #333333 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.moneySign {
  margin-top: .5vh;
  font-size: 2vh;
}

.gameBox{
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80vw;
  border-bottom: 2px solid #222;
}

.container{
  display: flex;
  flex-direction: row;
}

canvas.bin{
    border-radius: 10%;
}
.menu{
  background-color: #222;
  width: 25vw;
  display: flex;
  flex-direction: column;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

#purse{
    color: white;
    font-size: 3vh;
}

input[type="text"] {
  font-size: 2vw;
  width: 12vw;
  color: white;
  border: none;
  background-color: transparent;
}

input[type="text"]:focus {
  outline: none;
  border: none;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.betBox{
  width: 22vw;
  display: flex;
  flex-direction: row;
  border: 2px #333333 solid;
  box-shadow: 0px 2px 2px #111;
}

.betButtons{
  width: 5vw;
  height: 5vw;
  border: none;
  transition: .2s;
  background-color: #333333;
}

.betButtons:active {
  transform: scale(0.9);
}

.twoY{
  position: relative;
}


.twoY::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%; /* centers it vertically (100% - 50%) / 2 */
  height: 50%;
  border-right: 1px solid #222;
}

.playStyle{
  justify-content: space-between;
  margin-top: 5vh;
  margin-bottom: 5vh;
  width: 22.4vw;
  height: 5vw;
  display: flex;
  flex-direction: row;
}

.playOption{
  height: 5vw;
  width: 11vw;
  border-radius: .5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 2px #111;
  transition: .2s;
}

.playOption:hover{
  border-radius: 1vw;
}

.playOption:active{
  background-color: #111;
}

.active{
  background-color: #333333;
}

.unactive {
  background-color: #222;
}

#placeBet{
  border: none;
  border-radius: .5vw;
  margin-top: 5vh;
  width: 22.4vw;
  height: 5vw;
  transition: .1s;
}

#placeBet:hover{
  border-radius: 1vw;
  box-shadow: 2px 2px 3px rgb(64, 83, 34);
}

#placeBet:active {
  color: white;
  background-color: rgb(102, 158, 11);
  box-shadow: none;
}

.deactive {
  color: white;
  background-color: rgb(102, 158, 11);
  box-shadow: none;
}

.betActive{
  color: black;
  background-color: greenyellow;
  box-shadow: 2px 2px 5px rgb(64, 83, 34);
}

#resentWins {
  position: absolute;
  z-index: 10;
  right: 0;
  margin-right: 2vw;
  display: flex;
  /* gap: 0.5rem; */
  width: 8vw;
  height: 18vh;
  display: flex;
  flex-direction: column;
}

.win-entry {
  background: #e9e9e98a;
  width: 8vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6vh;
  color: rgb(94, 94, 94);
  font-weight: bold;
}