.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: radial-gradient(820px 420px at 18% 18%, rgba(200,4,105,.18), transparent 60%),
                radial-gradient(760px 420px at 85% 12%, rgba(124,58,237,.14), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    
    box-shadow: 0 18px 44px -26px rgba(0,0,0,.78);
    overflow: hidden;
}

.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 rgba(255,255,255,.14);
    font-weight: 700;
    letter-spacing: .2px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    box-shadow: 0 14px 34px -26px rgba(0,0,0,.75);
    color: rgba(255,255,255,.90);
    opacity: .96;
    transition: transform .15s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.wheel .btn:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 18px 44px -28px rgba(0,0,0,.85);
}

.wheel .btn:active {
    transform: translateY(0);
}

.wheel .btn:last-child {
    margin-right: 0;
}

.wheel-content {
    width: 100%;
    position: relative;
    margin: 20px auto;
}

.wheel-content .wheel-img {
    max-width: 497px;
    max-height: 497px;
    filter: drop-shadow(0 24px 60px rgba(0,0,0,.55));
}

.wheel-content img {
    width: 100%;
    height: auto;
    display: block;
}

.wheel-content .arrow {
    position: absolute;
    bottom: 10px;
    font-size: 32px;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
    opacity: .95;
}

.time .block {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 100%;
    z-index: 1;
    background: radial-gradient(180px 180px at 50% 50%, rgba(0,0,0,.26), rgba(0,0,0,0));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.time .block .title {
    color: rgba(255,255,255,.68);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .2px;
    text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.time .block .value {
    font-size: 42px;
    font-weight: 800;
    color: #ffc645;
    font-family: Exo\ 2, Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 45px;
    text-shadow: 0 10px 26px rgba(0,0,0,.55);
}

@media (max-width: 820px) {
    .wheel-content .wheel-img {
        max-width: 320px;
        max-height: 320px;
    }
    .wheel-content .arrow {
        bottom: 0;
    }
}

.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: 999px;
    background: transparent;
    margin-right: 10px;
    cursor: pointer;
    opacity: .92;
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
    transition: transform .15s ease, opacity .2s ease, filter .2s ease;
}

.history_item:hover {
    opacity: 1;
    transform: translateY(-1px);
    filter: saturate(1.08);
}

.history_item:active {
    transform: translateY(0);
}

.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: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border-top: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 44px -30px rgba(0,0,0,.80);
    border-radius: 0 0 12px 12px;
}

.bet-type {
    font-weight: 800;
    letter-spacing: .2px;
    text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.bet-type.bet_black {
    color: rgba(255,255,255,.72);
}

.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);
    }
}
