.spinner_element {
  margin: 0;
  padding: 0 0 30px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.spin-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spin-container__button {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.1em;
  border: 4px solid rgba(0, 0, 0, 0.75);
  cursor: pointer;
  user-select: none;
}
.spin-container__button::before {
  content: "";
  position: absolute;
  top: -28px;
  width: 20px;
  height: 30px;
  background: #fff;
  clip-path: polygon(50% 0%, 15% 100%, 85% 100%);
}

.spin-container__wheel {
  overflow: hidden;
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #333, 0 0 0 15px #fff, 0 0 0 18px black;
  transition: transform 5s ease-in-out;
}

.spin-container__wheel__item {
  height: 2.2em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  text-align: center;
  width: calc(50% - 36px);
}

.spin-container__wheel__item span {
  display: block;
  font-size: 0.8em;
  font-weight: 700;
  padding: 0px 0.5em;
  line-height: 1em;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 410px) {
  .spin-container {
    width: 310px;
    height: 310px;
  }
  .spin-container__wheel__item span {
    font-size: 0.7em;
  }
}
