.slot__wrap {
  overflow: hidden;
  padding: 30px;
  position: relative;
}
@media (max-width: 990px) {
  .slot__wrap {
    padding: 20px;
  }
}
.slot__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 47px;
  margin: 0 0 15px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .slot__title {
    font-size: 24px;
    line-height: normal;
  }
}
.slot .doors {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot .door {
  background: #fafafa;
  width: 100px;
  height: 110px;
  overflow: hidden;
  border-radius: 8px;
  margin: 8px;
}
@media (max-width: 390px) {
  .slot .door {
    height: 80px;
    margin: 6px;
    width: 80px;
  }
}
.slot .boxes {
  transition: transform 0.5s ease-in-out;
}
.slot .box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}
.slot .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot .buttons__item {
  margin: 15px 0 20px 0;
}
.slot button {
  cursor: pointer;
  font-size: 20px;
  border: none;
  padding: 10px 20px;
  max-width: 230px;
  font-weight: bold;
}
.slot .info {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.slot .disabled-slot {
  opacity: 0.6;
  pointer-events: none;
}
.slot__winner {
  margin-bottom: 10px;
  display: none;
}
.slot .active-winner {
  display: block;
}
.slot__winner-text {
  text-align: center;
  font-weight: 500;
  max-width: 500px;
  margin: 15px auto 20px auto;
  opacity: 0.9;
}
.slot__winner-btn {
  margin: 15px auto 0 auto;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  max-width: 160px;
}
@media (max-width: 576px) {
  .slot__winner-btn {
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
  }
}

/*# sourceMappingURL=slot.css.map */
