.spin-wheel {
    display: flex;
    flex-direction: column;
    z-index: 4;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
}
.spin-wheel-container {
    padding-top: 80px;
    text-align: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.spin-wheel-container .spin-wheel-title {
    width: 624px;
    max-width: 83%;
    height: auto;
}

.spin-wheel-container .spin-wheel-content,
.spin-wheel-container .spin-wheel-content .spin-wheel-main {
    position: relative;
    z-index: 1;
    width: 572px;
    overflow: visible;
    margin: 20px auto;
}

.spin-wheel-container .spin-wheel-bg {
    position: absolute;
    left: -5%;
    bottom: 0;
    z-index: 0;
    width: 650px;
    height: auto;
}

.spin-wheel-container .spin-wheel-halo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 650px;
    height: auto;
}

.spin-wheel-container .spin-wheel-coin {
    position: absolute;
    right: 14%;
    bottom: -1%;
    z-index: 2;
    width: 117px;
    height: auto;
}

.spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-bottom {
    position: relative;
    z-index: 0;
    width: 572px;
    height: auto;
    transition: all 4s cubic-bezier(0.5, 0.93, 0.43, 1);
}

.spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-light {
    position: absolute;
    left: 1%;
    top: 1%;
    z-index: 1;
    width: 562px;
    height: auto;
    animation: light-rotate 3s steps(2) infinite forwards;
}

.spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-pointer {
    position: absolute;
    left: 50%;
    bottom: 50%;
    z-index: 1;
    transform: translate(-50%, 4%);
    width: 250px;
    height: auto;
}

.spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-button {
    position: absolute;
    left: 36%;
    top: 36%;
    z-index: 2;
    width: 160px;
    height: auto;
    transition: all linear 0.2s;
    border-radius: 50%;
    border: none;
}

.spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-button:active {
    transform: scale(0.9);
}

.spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-button img {
    width: 100%;
    height: auto;
}

.spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: -2px -2px 0 #a40106, 2px -2px 0 #a40106, -2px 2px 0 #a40106, 2px 2px 0 #a40106;
}

@keyframes light-rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(30deg);
    }
}

@media (max-width: 750px) {
    .spin-wheel-container {
        padding-top: calc(80 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-content,
    .spin-wheel-container .spin-wheel-content .spin-wheel-main {
        width: calc(572 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-bg,
    .spin-wheel-container .spin-wheel-halo {
        width: calc(650 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-coin {
        width: calc(117 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-bottom {
        width: calc(572 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-light {
        width: calc(562 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-pointer {
        width: calc(250 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-button {
        width: calc(160 * (1vw / 7.5));
    }

    .spin-wheel-container .spin-wheel-content .spin-wheel-main .spin-wheel-button span {
        font-size: calc(48 * (1vw / 7.5));
    }
}

.close-btn-left {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 30px;
}