/*SLOTS*/

#slots::before,
#slots::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
#slots{
  position: absolute;
  top:1630px;
  height: 370px;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
  transition: all 0.5s ease;
  text-align: center;
  color: var(--color);
}
#fruits {
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.doors {
  display: flex;
}

.door {
  background: #fafafa;
  color: black;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4) inset;
  width: 100px;
  height: 150px;
  overflow: hidden;
  border-radius: 1ex;
  margin: 1ch;
}

.boxes {
  /* transform: translateY(0); */
  transition: transform 1s ease-in-out;
}

.box {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}
.buttons {
  margin: 1rem 0 2rem 0;
}