* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.board {
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url("../images/bakground.jpg") center/cover no-repeat !important;
}

.game{
    background: transparent;
}

.wheel {
  width: 260px;
  height: 260px;
  margin: 20px auto;
  border-radius: 50%;
  border: 10px solid #8b5a2b;
  background-color: #81451d;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
}

.half {
  width: 97%;
  height: 50%;
  margin: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  border: 2px solid #fff;
}

.up {
  background: #4CAF50;
  border-radius: 200px 200px 0 0;
}

.down {
    border-radius: 0 0 200px 200px ;
  background: #c27c2c;
}

.bottle {
  position: absolute;
  width: 140px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 3.5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.info {
  text-align: center;
  font-size: 12px;
  opacity: .8;
}

.amount {
  font-size: 16px;
}


.slider {
  width: 100%;
}

.chips{
  background: #16293f;
  box-shadow: inset 10px 0 10px #080f17;
}

.actions {
  display: flex;
  width: 100%;
  margin-top: 10px;
  position: absolute;
  bottom: 0;
}

.actions button {
  flex: 1;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  color: #fff;
}

.up-btn {
  background: #0a7f28;
}

.down-btn {
  background: #b56a25;
}
