.wheel-box {
    border-radius: 32px;

    width: 100%;
    max-width: 1200px;

    background-color: #ffffff;

    margin-top: 32px;
    margin-bottom: 32px;

    padding-top: 105px;
    padding-bottom: 105px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-scope-box {
    border-radius: 32px;

    width: 990px;
    height: 500px;

    background: radial-gradient(circle, #f8f8f8 88%, transparent 100%);

    display: flex;
    align-items: center;

}

.wheel-scope-box.disabled {
    position: relative;
}

.wheel-scope-box.disabled::after {
    border-radius: 32px;

    content: "";
    position: absolute;
    inset: 0;

    cursor: not-allowed;
    pointer-events: auto;
}

.wheel-scope-left-box {
    border-radius: 32px;

    width: 480px;
    height: 480px;

    background-color: #ffffff;

    margin-left: 10px;
    margin-right: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-left-box {
    border-radius: 24px;

    width: 460px;
    height: 460px;

    position: relative;
}

.wheel-full-box {
    border-radius: 50%;

    width: 44px;
    height: 44px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;

    z-index: 1024;

    opacity: 0;

    transform: perspective(800px) rotateX(25deg) scale(.7);

    filter: blur(10px);

    transform-origin: top right;

    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, filter .3s ease;

    pointer-events: none;
}

.wheel-full-box.show {
    opacity: 1;

    transform: perspective(800px) rotateX(0deg) scale(1);

    filter: blur(0);

    pointer-events: auto;
}

.wheel-full-inner-box {
    border-radius: 50%;

    width: 36px;
    height: 36px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-orientation-box {
    border-radius: 50%;

    width: 44px;
    height: 44px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    right: 0;

    z-index: 1024;

    opacity: 0;

    transform: perspective(800px) rotateX(25deg) scale(.7);

    filter: blur(10px);

    transform-origin: top right;

    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, filter .3s ease;

    pointer-events: none;
}

.wheel-orientation-box.show {
    opacity: 1;

    transform: perspective(800px) rotateX(0deg) scale(1);

    filter: blur(0);

    pointer-events: auto;
}

.wheel-orientation-inner-box {
    border-radius: 50%;

    width: 36px;
    height: 36px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-sound-box {
    border-radius: 50%;

    width: 44px;
    height: 44px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    bottom: 0;
    left: 0;

    z-index: 1024;

    opacity: 0;

    transform: perspective(800px) rotateX(25deg) scale(.7);

    filter: blur(10px);

    transform-origin: top right;

    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, filter .3s ease;

    pointer-events: none;
}

.wheel-sound-box.show {
    opacity: 1;

    transform: perspective(800px) rotateX(0deg) scale(1);

    filter: blur(0);

    pointer-events: auto;
}

.wheel-sound-inner-box {
    border-radius: 50%;

    width: 36px;
    height: 36px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-share-box {
    border-radius: 50%;

    width: 44px;
    height: 44px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    bottom: 0;
    right: 0;

    z-index: 1024;

    opacity: 0;

    transform: perspective(800px) rotateX(25deg) scale(.7);

    filter: blur(10px);

    transform-origin: top right;

    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, filter .3s ease;

    pointer-events: none;
}

.wheel-share-box.show {
    opacity: 1;

    transform: perspective(800px) rotateX(0deg) scale(1);

    filter: blur(0);

    pointer-events: auto;
}

.wheel-share-inner-box {
    border-radius: 50%;

    width: 36px;
    height: 36px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-spin-box {
    border-radius: 50%;

    width: 460px;
    height: 460px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    transform-origin: center center;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.75s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.45s ease;
}

.my-wheel {
    border-radius: 50%;

    box-shadow: 0 0 0 4px #f8f8f8;
}

.my-wheel canvas {
    border-radius: 50%;
}

.wheel-spin-box-expand {
    border-radius: 0;

    width: 100vw !important;
    height: 100vh !important;

    background-color: #ffffff;

    position: fixed;
    inset: 0;

    z-index: 20480;

    animation: expandPulse 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes expandPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.9;
    }

    60% {
        transform: scale(1.02);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.wheel-scope-right-box {
    border-radius: 32px;

    width: 480px;
    height: 480px;

    background-color: #ffffff;

    margin-left: 5px;
    margin-right: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-right-box {
    border-radius: 24px;

    width: 460px;
    height: 460px;
}

.wheel-panel-operate-box {
    border-radius: 22px;

    width: 460px;
    height: 44px;

    display: flex;
    align-items: center;
}

.wheel-panel-operate-left-box {
    border-radius: 22px;

    width: 192px;
    height: 44px;

    background-color: #f8f8f8;

    display: flex;
    align-items: center;
}

.wheel-panel-operate-entries-box {
    border-radius: 18px;

    width: 90px;
    height: 36px;

    background: linear-gradient(to right, transparent, #ffffff 50%, #ffffff 50%, transparent);

    margin-left: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: background-color 1s ease;
}

.wheel-panel-operate-results-box {
    border-radius: 18px;

    width: 90px;
    height: 36px;

    background: linear-gradient(to right, transparent, #ffffff 50%, #ffffff 50%, transparent);

    margin-left: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: background-color 1s ease;
}

.wheel-panel-operate-entries-box:hover, .wheel-panel-operate-results-box:hover {
    background-color: #ffffff;
}

.wheel-panel-operate-entries-and-results-box-active {
    background-color: #ffffff;
}

.wheel-panel-operate-right-box {
    border-radius: 22px;

    width: 258px;
    height: 44px;

    margin-left: auto;

    display: flex;
    align-items: center;
}

.wheel-panel-operate-show-box {
    border-radius: 50%;

    width: 44px;
    height: 44px;

    background-color: #f8f8f8;

    margin-right: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;

    transform: perspective(800px) rotateX(25deg) scale(.7);

    filter: blur(10px);

    transform-origin: top right;

    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, filter .3s ease;

    pointer-events: none;
}

.wheel-panel-operate-show-box.show {
    opacity: 1;

    transform: perspective(800px) rotateX(0deg) scale(1);

    filter: blur(0);

    pointer-events: auto;
}

.wheel-panel-operate-show-inner-box {
    border-radius: 50%;

    width: 36px;
    height: 36px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-operate-show-inner-box:hover {
    animation: physics-shake 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes physics-shake {
    0% {
        transform: rotate(0deg) scale(1);
    }

    15% {
        transform: rotate(-14deg) scale(1.06);
    }

    30% {
        transform: rotate(10deg) scale(1.05);
    }

    45% {
        transform: rotate(-6deg) scale(1.03);
    }

    60% {
        transform: rotate(4deg) scale(1.02);
    }

    80% {
        transform: rotate(-2deg) scale(1.01);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

.wheel-panel-operate-preset-box {
    border-radius: 50%;

    width: 44px;
    height: 44px;

    background-color: #f8f8f8;

    margin-left: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.wheel-panel-operate-preset-inner-box {
    border-radius: 50%;

    width: 36px;
    height: 36px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-operate-preset-inner-box:hover {
    animation: physics-shake 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wheel-preset-box {
    border-radius: 24px;

    width: 206px;
    height: 184px;

    background-color: #f8f8f8;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

    display: none;
    justify-content: center;
    align-items: center;

    cursor: auto;

    position: absolute;
    top: 54px;
    right: 0;

    z-index: 1024;
}

.default-preset {
    background: linear-gradient(to right, transparent, #e0e0e0 50%, #e0e0e0 50%, transparent);
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.3s ease;
}

.wheel-preset-text-box {
    border-radius: 24px;

    width: 198px;
    height: 176px;

    background-color: #ffffff;
}

.wheel-preset-text-add-box {
    border-radius: 22px;

    width: 198px;
    height: 44px;

    display: flex;
    align-items: center;
}

.wheel-preset-text-add-input-box {
    border-radius: 16px;

    width: 148px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-preset-text-add-input-box > input {
    width: 100%;
    height: 100%;

    resize: none;
    border: none;
    outline: none;
    background: transparent;
    caret-color: black;

    font-size: 15px;

    padding-left: 12px;
    padding-right: 12px;

    box-sizing: border-box;
}

.wheel-preset-text-add-add-box {
    border-radius: 16px;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-preset-text-add-add-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-preset-text-overflow-box {
    border-radius: 24px;

    width: 198px;
    height: 132px;

    overflow: auto;
}

.wheel-preset-text-item-box {
    border-radius: 22px;

    width: 198px;
    height: 44px;

    display: flex;
    align-items: center;
}

.wheel-preset-text-item-input-box {
    border-radius: 16px;

    width: 148px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-preset-text-item-input-box > input {
    width: 100%;
    height: 100%;

    resize: none;
    border: none;
    outline: none;
    background: transparent;
    caret-color: black;

    font-size: 15px;

    padding-left: 12px;
    padding-right: 12px;

    box-sizing: border-box;

    cursor: pointer;
}

.wheel-preset-text-add-item-box {
    border-radius: 16px;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-preset-text-item-add-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-entries-box {
    border-radius: 24px;

    width: 460px;
    height: 406px;

    margin-top: 10px;
}

.wheel-panel-entries-operate-box {
    border-radius: 22px;

    width: 460px;
    height: 44px;

    margin-bottom: 10px;
}

.wheel-panel-entries-operate-left-box {
    border-radius: 22px;

    width: 286px;
    height: 44px;

    background-color: #f8f8f8;

    display: flex;
    align-items: center;
}

.wheel-panel-entries-operate-shuffle-box {
    border-radius: 18px;

    width: 90px;
    height: 36px;

    background-color: #ffffff;

    margin-left: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.wheel-panel-entries-operate-shuffle-box:hover {
    transform: rotate(-15deg);
}

.wheel-panel-entries-operate-shuffle-box.disabled {
    pointer-events: none;

    opacity: 0.6;

    cursor: not-allowed;
}

.wheel-panel-entries-operate-sort-box {
    border-radius: 18px;

    width: 90px;
    height: 36px;

    background-color: #ffffff;

    margin-left: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.wheel-panel-entries-operate-sort-box:hover {
    transform: rotate(-15deg);
}

.wheel-panel-entries-operate-sort-box.disabled {
    pointer-events: none;

    opacity: 0.6;

    cursor: not-allowed;
}

.wheel-panel-entries-operate-advanced-box {
    border-radius: 18px;

    width: 90px;
    height: 36px;

    background-color: #ffffff;

    margin-left: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.wheel-panel-entries-operate-advanced-box:hover {
    transform: rotate(-15deg);
}

.wheel-panel-entries-operate-advanced-box-active {
    transform: rotate(-15deg);
}

.wheel-panel-entries-inputs-box {
    border-radius: 24px;

    width: 460px;
    height: 352px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-inputs-box-active {
    height: 406px;
}

.wheel-panel-entries-inputs-text-box {
    border-radius: 24px;

    width: 452px;
    height: 344px;

    background-color: #ffffff;
}

.wheel-panel-entries-inputs-text-box-active {
    height: 398px;
}

.wheel-panel-entries-inputs-text-box > textarea {
    width: 100%;
    height: 100%;

    resize: none;
    border: none;
    outline: none;
    background: transparent;
    caret-color: black;

    font-size: 15px;
    line-height: 2;

    padding: 12px;
    box-sizing: border-box;
}

.wheel-panel-entries-advanced-box {
    border-radius: 24px;

    width: 460px;
    height: 352px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
}

.wheel-panel-entries-advanced-text-box {
    border-radius: 24px;

    width: 452px;
    height: 344px;

    background-color: #ffffff;
}

.wheel-panel-entries-advanced-text-add-box {
    border-radius: 22px;

    width: 452px;
    height: 44px;

    display: flex;
    align-items: center;

    position: relative;
}

.wheel-panel-entries-advanced-text-add-range-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.wheel-panel-entries-advanced-text-add-range-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-range-box {
    border-radius: 22px;

    width: 196px;
    height: 44px;

    background-color: #ffffff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);

    display: flex;
    align-items: center;

    cursor: auto;

    position: absolute;
    top: -6px;
    left: 38px;

    z-index: 1024;

    opacity: 0;

    transform: perspective(800px) rotateX(25deg) scale(.7);

    filter: blur(10px);

    transform-origin: top right;

    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, filter .3s ease;

    pointer-events: none;
}

.wheel-range-box.show {
    opacity: 1;

    transform: perspective(800px) rotateX(0deg) scale(1);

    filter: blur(0);

    pointer-events: auto;
}

.wheel-range-off-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-range-off-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-range-rare-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-range-rare-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-range-auto-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-range-auto-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-range-boost-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-range-boost-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-range-fix-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;
    margin-right: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-range-fix-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    line-height: 28px;
    text-align: center;

    cursor: pointer;
}

.wheel-range-off-inner-box:hover, .wheel-range-rare-inner-box:hover, .wheel-range-auto-inner-box:hover, .wheel-range-boost-inner-box:hover, .wheel-range-fix-inner-box:hover {
    animation: physics-shake 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rangeActive {
    background-color: #fef6e4;

    box-shadow: inset 0 0 0 1px #f3d2c1;
}

.wheel-panel-entries-advanced-text-add-input-box {
    border-radius: 16px;

    width: 288px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-add-input-box > input {
    width: 100%;
    height: 100%;

    resize: none;
    border: none;
    outline: none;
    background: transparent;
    caret-color: black;

    font-size: 15px;
    padding-left: 12px;
    padding-right: 12px;

    box-sizing: border-box;
}

.wheel-panel-entries-advanced-text-add-background-color-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-add-background-color-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-entries-advanced-text-add-color-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-add-color-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-entries-advanced-text-add-add-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-add-add-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-entries-advanced-text-list-box {
    border-radius: 24px;

    width: 452px;
    height: 300px;
}

.wheel-panel-entries-advanced-text-overflow-box {
    border-radius: 24px;

    width: 452px;
    height: 300px;

    overflow: auto;
}

.wheel-panel-entries-advanced-text-item-box {
    border-radius: 22px;

    width: 452px;
    height: 44px;

    display: flex;
    align-items: center;
}

.wheel-panel-entries-advanced-text-item-range-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-item-range-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-entries-advanced-text-item-input-box {
    border-radius: 16px;

    width: 288px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-item-input-box > input {
    width: 100%;
    height: 100%;

    resize: none;
    border: none;
    outline: none;
    background: transparent;
    caret-color: black;

    font-size: 15px;
    padding-left: 12px;
    padding-right: 12px;

    box-sizing: border-box;
}

.wheel-panel-entries-advanced-text-item-background-color-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-item-background-color-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-entries-advanced-text-item-color-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-item-color-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-entries-advanced-text-item-add-box {
    border-radius: 50%;

    width: 32px;
    height: 32px;

    background-color: #f8f8f8;

    margin-left: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-entries-advanced-text-item-add-inner-box {
    border-radius: 50%;

    width: 28px;
    height: 28px;

    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-results-box {
    border-radius: 24px;

    width: 460px;
    height: 406px;

    margin-top: 10px;

    display: none;
}

.wheel-panel-results-operate-box {
    border-radius: 22px;

    width: 460px;
    height: 44px;

    margin-bottom: 10px;
}

.wheel-panel-results-operate-left-box {
    border-radius: 22px;

    width: 192px;
    height: 44px;

    background-color: #f8f8f8;

    display: flex;
    align-items: center;
}

.wheel-panel-results-operate-shuffle-box {
    border-radius: 18px;

    width: 90px;
    height: 36px;

    background-color: #ffffff;

    margin-left: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-results-operate-shuffle-box:hover {
    transform: rotate(-15deg);
}

.wheel-panel-results-operate-clear-box {
    border-radius: 18px;

    width: 90px;
    height: 36px;

    background-color: #ffffff;

    margin-left: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.wheel-panel-results-operate-clear-box:hover {
    transform: rotate(-15deg);
}

.wheel-panel-results-inputs-box {
    border-radius: 24px;

    width: 460px;
    height: 352px;

    background-color: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-panel-results-inputs-box-active {
    height: 406px;
}

.wheel-panel-results-inputs-text-box {
    border-radius: 24px;

    width: 452px;
    height: 344px;

    background-color: #ffffff;
}

.wheel-panel-results-inputs-text-box-active {
    height: 398px;
}

.wheel-panel-results-inputs-text-box > textarea {
    width: 100%;
    height: 100%;

    resize: none;
    border: none;
    outline: none;
    background: transparent;
    caret-color: black;

    font-size: 15px;
    line-height: 2;

    padding: 12px;
    box-sizing: border-box;
}

.toastify.toast-minimal {
    border-radius: 1024px !important;

    background: #ffffff !important;

    padding: 18px 36px !important;

    color: #000000;

    font-size: 15px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);

    cursor: default;

    width: fit-content !important;
    max-width: calc(100vw - 32px) !important;
    white-space: nowrap !important;
}

.lucky-modal {
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 99999;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    clip-path: circle(150% at 50% 50%);

    transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, visibility 0.8s ease;
}

.lucky-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    clip-path: circle(0% at 50% 50%);
}

.lucky-modal-content {
    border-radius: 18px;

    background: #fff;

    padding: 24px 88px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    text-align: center;

}

.lucky-modal-celebration {
    margin-bottom: 10px;

    font-size: 22px;
}

.lucky-modal-content p {
    margin-bottom: 20px;

    font-size: 18px;
}

.lucky-modal-content button {
    border-radius: 18px;

    border: none;
    background-color: #2bab5e;

    padding: 8px 18px;

    color: #fff;

    font-size: 14px;
    cursor: pointer;

    transition: background 0.2s ease;
}

.lucky-modal-content button:hover {
    background-color: #23984f;
}

:root {
    --primary-large-size-a: 0px;
    --primary-large-size-b: 0px;
    --primary-large-size-c: 0px;

    --primary-small-size-a: 0px;
    --primary-small-size-b: 0px;
    --primary-small-size-c: 0px;
}

@media (min-width: 726px) and (max-width: 1263.98px) {
    .wheel-box {
        padding-top: max(0px, calc((100% - (642px + var(--primary-large-size-b))) / 2));
        padding-bottom: max(0px, calc((100% - (642px + var(--primary-large-size-b))) / 2));
    }

    .wheel-scope-box {
        width: calc(642px + var(--primary-large-size-b));
        height: calc(326px + var(--primary-large-size-a));
    }

    .wheel-scope-left-box {
        width: calc(306px + var(--primary-large-size-a));
        height: calc(306px + var(--primary-large-size-a));
    }

    .wheel-panel-left-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(286px + var(--primary-large-size-a));
    }

    .wheel-spin-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(286px + var(--primary-large-size-a));
    }

    .wheel-scope-right-box {
        width: calc(306px + var(--primary-large-size-a));
        height: calc(306px + var(--primary-large-size-a));
    }

    .wheel-panel-right-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(286px + var(--primary-large-size-a));
    }

    .wheel-panel-operate-box {
        width: calc(286px + var(--primary-large-size-a));
    }

    .wheel-panel-operate-right-box { /* 需注意 */
        width: calc(90px + var(--primary-large-size-a) - var(--primary-large-size-c));
    }

    .wheel-panel-entries-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(232px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-operate-box {
        width: calc(286px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-inputs-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(178px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-inputs-box-active {
        height: calc(232px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-inputs-text-box {
        width: calc(278px + var(--primary-large-size-a));
        height: calc(170px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-inputs-text-box-active {
        height: calc(224px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(178px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-text-box {
        width: calc(278px + var(--primary-large-size-a));
        height: calc(170px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-text-add-box {
        width: calc(278px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-text-add-input-box {
        width: calc(114px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-text-list-box {
        width: calc(278px + var(--primary-large-size-a));
        height: calc(126px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-text-overflow-box {
        width: calc(278px + var(--primary-large-size-a));
        height: calc(126px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-text-item-box {
        width: calc(278px + var(--primary-large-size-a));
    }

    .wheel-panel-entries-advanced-text-item-input-box {
        width: calc(114px + var(--primary-large-size-a));
    }

    .wheel-panel-results-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(232px + var(--primary-large-size-a));
    }

    .wheel-panel-results-operate-box {
        width: calc(286px + var(--primary-large-size-a));
    }

    .wheel-panel-results-inputs-box {
        width: calc(286px + var(--primary-large-size-a));
        height: calc(178px + var(--primary-large-size-a));
    }

    .wheel-panel-results-inputs-box-active {
        height: calc(232px + var(--primary-large-size-a));
    }

    .wheel-panel-results-inputs-text-box {
        width: calc(278px + var(--primary-large-size-a));
        height: calc(170px + var(--primary-large-size-a));
    }

    .wheel-panel-results-inputs-text-box-active {
        height: calc(224px + var(--primary-large-size-a));
    }
}

@media (min-width: 746px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 10px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 766px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 20px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 786px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 30px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 806px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 40px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 826px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 50px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 846px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 60px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 866px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 70px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 886px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 80px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 906px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 90px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 926px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 100px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 946px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 110px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 966px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 120px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 986px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 130px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1006px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 140px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1026px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 150px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1046px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 160px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1066px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 170px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1086px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 180px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1106px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 190px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1126px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 200px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1146px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 210px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1166px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 220px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1186px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 230px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1206px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 240px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1226px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 250px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 1246px) and (max-width: 1263.98px) {
    :root {
        --primary-large-size-a: 260px;
        --primary-large-size-b: calc(2 * var(--primary-large-size-a));
        --primary-large-size-c: 6px;
    }
}

@media (min-width: 0px) and (max-width: 725.98px) {
    .wheel-box {
        padding-top: max(0px, calc((100% - (326px + var(--primary-small-size-a))) / 2));
        padding-bottom: max(0px, calc((100% - (326px + var(--primary-small-size-a))) / 2));
    }

    .wheel-scope-box {
        width: calc(326px + var(--primary-small-size-a));
        height: calc(642px + var(--primary-small-size-b));

        display: block;
    }

    .wheel-scope-left-box {
        width: calc(306px + var(--primary-small-size-a));
        height: calc(306px + var(--primary-small-size-a));

        margin-top: 10px;
        margin-left: 10px;
    }

    .wheel-panel-left-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(286px + var(--primary-small-size-a));
    }

    .wheel-spin-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(286px + var(--primary-small-size-a));
    }

    .wheel-scope-right-box {
        width: calc(306px + var(--primary-small-size-a));
        height: calc(306px + var(--primary-small-size-a));

        margin-top: 10px;
        margin-left: 10px;
    }

    .wheel-panel-right-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(286px + var(--primary-small-size-a));
    }

    .wheel-panel-operate-box {
        width: calc(286px + var(--primary-small-size-a));
    }

    .wheel-panel-operate-right-box { /* 需注意 */
        width: calc(90px + var(--primary-small-size-a) - var(--primary-small-size-c));
    }

    .wheel-panel-entries-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(232px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-operate-box {
        width: calc(286px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-inputs-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(178px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-inputs-box-active {
        height: calc(232px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-inputs-text-box {
        width: calc(278px + var(--primary-small-size-a));
        height: calc(170px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-inputs-text-box-active {
        height: calc(224px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(178px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-text-box {
        width: calc(278px + var(--primary-small-size-a));
        height: calc(170px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-text-add-box {
        width: calc(278px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-text-add-input-box {
        width: calc(114px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-text-list-box {
        width: calc(278px + var(--primary-small-size-a));
        height: calc(126px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-text-overflow-box {
        width: calc(278px + var(--primary-small-size-a));
        height: calc(126px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-text-item-box {
        width: calc(278px + var(--primary-small-size-a));
    }

    .wheel-panel-entries-advanced-text-item-input-box {
        width: calc(114px + var(--primary-small-size-a));
    }

    .wheel-panel-results-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(232px + var(--primary-small-size-a));
    }

    .wheel-panel-results-operate-box {
        width: calc(286px + var(--primary-small-size-a));
    }

    .wheel-panel-results-inputs-box {
        width: calc(286px + var(--primary-small-size-a));
        height: calc(178px + var(--primary-small-size-a));
    }

    .wheel-panel-results-inputs-box-active {
        height: calc(232px + var(--primary-small-size-a));
    }

    .wheel-panel-results-inputs-text-box {
        width: calc(278px + var(--primary-small-size-a));
        height: calc(170px + var(--primary-small-size-a));
    }

    .wheel-panel-results-inputs-text-box-active {
        height: calc(224px + var(--primary-small-size-a));
    }
}

@media (min-width: 380px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 20px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 400px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 30px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 420px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 40px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 440px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 60px; /* 宽加 20*/
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 460px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 80px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 480px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 100px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 500px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 120px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 520px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 140px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 540px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 160px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 560px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 180px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 580px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 200px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 600px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 220px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 620px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 240px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 640px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 260px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 660px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 280px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 680px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 300px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 700px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 320px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

@media (min-width: 720px) and (max-width: 725.98px) {
    :root {
        --primary-small-size-a: 340px;
        --primary-small-size-b: calc(2 * var(--primary-small-size-a));
        --primary-small-size-c: 6px;
    }
}

