.game_Wheel {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    border-radius: 6px;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-flex: auto;
    flex: auto;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    
}

.wheel {
    background: none;
}

.wheel .btn {
    width: 33.33%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    padding: 5px 10px;
    margin-right: 15px;
    -webkit-transition: none;
    transition: none;
    border: 1px solid;
    font-weight: 600;
}

.wheel .btn:last-child {
    margin-right: 0
}

.wheel-game {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-content {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-content .wheel-img {
    width: 300px;
    height: 300px;
    max-width: 300px;
    max-height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-content .wheel-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wheel-content .arrow {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.wheel-content .time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
    margin: 0;
}

[data-theme="light"] .wheel-content .wheel-img {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

[data-theme="light"] .time .block .title {
    color: #64748b !important;
}

[data-theme="light"] .time .block .value {
    color: #0f172a !important;
    font-weight: 800 !important;
}

@media (max-width: 820px) {
    .wheel-game,
    .wheel-content,
    .wheel-content .wheel-img {
        width: 260px;
        height: 260px;
        max-width: 260px;
        max-height: 260px;
    }
}

.history_wrapper {
    padding: 0 20px;
    width: 100%
}

.history_history {
    min-height: 10px;
    margin-bottom: 10px;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden
}

.history_item {
    width: 7.14%;
    height: 5px;
    border-radius: 3px;
    background: transparent;
    margin-right: 10px;
    cursor: pointer;
}

.history_item:last-child {
    margin-right: 0
}

.history_item.history_red {
    background: #e86376
}

.history_item.history_green {
    background: #62ca5b
}

.history_item.history_black {
    background: #0b0d10;
}

.history_item.history_yellow {
    background: #ffc645
}

.history_isAnimate {
    -webkit-animation: shiftFromLeft .3s linear;
    animation: shiftFromLeft .3s linear
}

.hash {
    width: 100%;
    padding: 10px;
        background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
}

.bet-type {
    font-weight: 700;
}

.bet-type.bet_black {
    color: #8a96ab;
}

.bet-type.bet_red {
    color: #e86376;
}

.bet-type.bet_green {
    color: #62ca5b;
}

.bet-type.bet_yellow {
    color: #ffd000;
}
@media screen and (max-width: 1099px) {
    .wheel-game {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 768px) {
    .wheel-game {
        transform: scale(1);
    }
}

@media screen and (max-width: 420px) {
    .wheel-game {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 380px) {
    .wheel-game {
        transform: scale(0.7);
    }
}

@media screen and (max-width: 320px) {
    .wheel-game {
        transform: scale(0.8);
    }
}