.spin-wheel * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.spin-wheel-body {
  height: 100vh;
  background: linear-gradient(135deg, #c3a3f1, #6414e9);
}

.spin-wheel-wrapper {
  width: 90%;
  max-width: 34.37em;
  max-height: 90vh;
  background-color: #ffffff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  padding: 3em;
  border-radius: 1em;
  box-shadow: 0 4em 5em rgba(27, 8, 53, 0.2);
  z-index: 1050;
}

.spin-wheel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#spin-wheel {
  max-height: inherit;
  width: inherit;
  top: 0;
  padding: 0;
}

@keyframes spin-wheel-rotate {
  100% {
    transform: rotate(360deg);
  }
}

#spin-wheel-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 26%;
  width: 26%;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: radial-gradient(#fdcf3b 50%, #d88a40 85%);
  color: #c66e16;
  text-transform: uppercase;
  font-size: 1.8em;
  letter-spacing: 0em;
  font-weight: 600;
}

.spin-wheel-img {
    position: absolute;
    width: auto;
    top: 32%;
    right: -33px;
    transform: rotate(180deg);
}

#spin-wheel-final-value {
  font-size: 1.5em;
  text-align: center;
  margin-top: 1.5em;
  color: #202020;
  font-weight: 500;
}

.toast-container {
  z-index: 1080;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

.toast {
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .spin-wheel-wrapper {
    font-size: 12px;
  }
}
