.wheel-container {
  width: 430px;
  height: 430px;
  background: radial-gradient(
    154.84% 154.84% at 110.92% 26.37%,
    #3ab2fd 0%,
    #1150f1 47.12%,
    #e04989 100%
  );

  border: 8px solid #fff;
  box-shadow: 0px 18.13px 99.85px -1.3px #2696ffb2;
  border-radius: 100%;
  padding: 8px;

  position: relative;

  user-select: none;
}

.wheel {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    93.02% 93.02% at 27.75% 10.56%,
    #3ab2fd 0%,
    #1150f1 47.12%,
    #e04989 100%
  );
  border: 8px solid #fcf780;
  border-radius: 100%;

  position: relative;
  overflow: hidden;
}

.wheel-picker-container {
  position: absolute;
  width: 68px;
  height: 108px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.wheel-picker {
  width: 100%;
  height: 100%;
}

.wheel-center {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: #f8f17d;
  border: 8px solid #ba9f47;

  border-radius: 100%;
}

.wheel-item-container {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 50%;
  transform-origin: 0% 100%;
  display: flex;
  justify-content: center;
}

.wheel-item-content {
  font-weight: bold;
  text-align: center;
  transform: rotate(-75deg);
  transform-origin: center center;
  white-space: nowrap;
  position: relative;
  overflow: visible;
}

.wheel-item-text {
  position: absolute;
  right: 10px;
  top: 22.5px;
  max-width: 80px;
  overflow: visible;
}

.wheel-item-text.text-large {
  font-size: 16px;
}

.wheel-item-text.text-medium {
  font-size: 14px;
}

.wheel-item-text.text-small {
  font-size: 12px;
}

.wheel-item-text.text-xsmall {
  font-size: 10px;
}

.wheel-item-img {
  position: absolute;
  right: -60px;
  top: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-item-img img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.wheel-item-icon {
  font-size: 24px;
  line-height: 1;
  display: block;
  text-align: center;
}

.wheel-item-white {
  background-color: #fff;
  color: #2783f8;
}

.wheel-item-transparent {
  background-color: transparent;
  color: #ffffff;
}

.minimal {
  width: 120px;
  height: 120px;
  border: 3px solid #fff;
  padding: 4px;
}

.minimal-picker {
  width: 34px;
  height: 54px;
  top: 4px;
}

.minimal-content {
  border: 3px solid #fcf780;
}

.minimal-center {
  width: 20px;
  height: 20px;
  border: 4px solid #ba9f47;
  box-shadow: 0px 9.73px 31.25px 0px #ff376d;
}

@media (max-width: 991px) {
  .minimal {
    width: 90px !important;
    height: 90px !important;
  }

  .wheel-picker-container {
    width: 51px;
    height: 81px;
  }
}

@media (max-width: 661px) {
  .wheel-container {
    width: 320px;
    height: 320px;
  }

  .wheel-item-text {
    position: absolute;
    right: 0px;
    top: 15px;
    max-width: 60px;
  }

  .wheel-item-text.text-large {
    font-size: 12px;
  }

  .wheel-item-text.text-medium {
    font-size: 10px;
  }

  .wheel-item-text.text-small {
    font-size: 9px;
  }

  .wheel-item-text.text-xsmall {
    font-size: 8px;
  }

  .wheel-item-img {
    position: absolute;
    right: -50px;
    top: 0;
    width: 40px;
    height: 40px;
  }

  .wheel-item-img img {
    width: 40px;
    height: 40px;
  }

  .wheel-item-icon {
    font-size: 18px;
  }
}
