@media (max-width: 768px) {
  .v-luckywheel .wheel-wrapper {
    width: 300px;
    height: 300px;
    position: relative;
  }
  .v-luckywheel .wheel-pointer {
    width: 90px;
    height: 90px;
    background: url(https://i.imgur.com/DAHLRjT.png);
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    left: 50%;
    top: 49.7%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 60px;
    z-index: 10;
  }
  .v-luckywheel .wheel-bg {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    overflow: hidden;
    transition: transform 4s ease-in-out;
    background-size: 100% 100% !important;
  }
  .v-luckywheel .wheel-bg.freeze {
    transition: none;
    background: red;
  }
  .v-luckywheel .prize-list {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
  }
  .v-luckywheel .prize-item-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
  }
  .v-luckywheel .prize-item {
    width: 100%;
    height: 100%;
    transform-origin: bottom;
  }
  .v-luckywheel .prize-item .prize-name {
    padding: 14px 0;
    font-weight: 700;
  }
}

@media (min-width: 769px) {
  .v-luckywheel .wheel-wrapper {
    width: 450px;
    height: 450px;
    position: relative;
  }
  .v-luckywheel .wheel-pointer {
    width: 122px;
    height: 122px;
    background: url(https://i.imgur.com/DAHLRjT.png);
    background-size: 71%;
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    left: 50%;
    top: 48.7%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .v-luckywheel .wheel-bg {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    overflow: hidden;
    transition: transform 4s ease-in-out;
    background-size: 100% 100% !important;
  }
  .v-luckywheel .wheel-bg.freeze {
    transition: none;
    background: red;
  }
  .v-luckywheel .prize-list {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
  }
  .v-luckywheel .prize-item-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
  }
  .v-luckywheel .prize-item {
    width: 100%;
    height: 100%;
    transform-origin: bottom;
  }
  .v-luckywheel .prize-item .prize-name {
    padding: 14px 0;
    font-weight: 700;
  }
}

.v-luckywheel img {
  border-radius: 1000px;
  overflow: hidden;
}
