html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  border: 0;
  padding: 0;
}

#app {
  width: 100%;
  height: 100%;
  background: #fff;
  background-image: url("assets/background.png");
  display: flex;
  background-size: inherit;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.doors {
  display: flex;
  margin-top: 17vh;
}

.door {
  background: #fafafa;
  background-image: url("assets/box_card.png");
  background-size: cover;
  width: 8vw;
  height: 8.9vw;
  overflow: hidden;
  border-radius: 1ex;
  margin: 4px;
}

.boxes {
  transition: transform 1s ease-in-out;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4vw;
  font-weight: 600;
  color: #ef224e;
}

.buttons {
  margin: 1rem 0 2rem 0;
}

button {
  cursor: pointer;
  margin: 0 0.2rem 0 0.2rem;
}

.info {
  position: fixed;
  display: none;
  bottom: 0;
  width: 100%;
  text-align: center;
}

#spinner {
  background-image: url("assets/button_spin.png");
  background-size: contain;
  width: 360px;
  height: 77px;
  border-style: hidden;
  background-color: transparent;
}


#reseter {
  background-image: url("assets/button_reset.png");
  background-size: contain;
  width: 360px;
  height: 77px;
  margin-left: 20px;
  border-style: hidden;
  background-color: transparent;
}

.slot-machine-control {
  display: flex;
  background-size: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.board-receive-reward {
  width: 15vw;
  height: 15vw;
  margin-top: 6vh;
  position: absolute;
  right: 2vw;
  background-color: transparent;
  border-style: hidden;
  background-image: url("assets/board.png");
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.board-receive-reward .receive-reward {
  text-align: center;
  width: 14vw;
  height: 11vw;
  margin-top: 6.7vh;
  overflow-y: scroll;
  font-size: 1.5vw;
  font-weight: 600;
  font-size: 1.6vw;
  color: #683c11;
  border-style: hidden;
  background-color: transparent;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.receive-reward::-webkit-scrollbar {
  display: none;
}
