* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

#wheel {
    display: flex;
    justify-content: center;
    align-items: center;
}

#wheel .wheelcanva {
    position: relative;
    padding: 10px 30px;
}

#wheel .start-wheel-btn {
    position: absolute;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px;
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    z-index: 2;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#wheel .start-wheel-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 3rem;
    height: 3rem;
    border-radius: 50% 0px 50% 50%;
    transform: rotate(-45deg);
    background: rgb(34, 34, 34);
    z-index: 2;
}

#wheel .start-wheel-btn::after {
    content: "SPIN";
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    inset: 0px;
    z-index: 3;
    -webkit-tap-highlight-color: transparent;
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    color: rgb(255, 255, 255);
    user-select: none;
    -webkit-text-stroke: 0.5px rgb(248, 248, 248);
    text-shadow: rgb(0, 0, 0) 0px 1px 4px;
    letter-spacing: 0.7px;
}

.celebrate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.8;
}

.celebrate .resultbox {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.celebrate .resultbox .resultSpan {
    font-size: 3rem;
    color: #cacaca;
}

.celebrate #celebrate_vid {
    width: 100%;
    height: 100%;
    background: #000;
}

#spinnermodal svg[data-bs-dismiss] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

#spinnermodal svg[data-bs-dismiss] path {
    fill: #f7f7f7;
}

.modal-backdrop.show {
    opacity: 0.7;
}

[data-bs-dismiss] {
    cursor: pointer;
}

@media (max-width: 426px) {
    .motal-refer-link {
        font-size: small !important;
    }
}