.game_Wheel {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-flex: auto;
    flex: auto;
    
}

.wheel {
    background: none;
}

.block-stats-wrapp {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.block-stats-wrapp .block-stats-color-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    justify-content: space-between;
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title .left-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title .left-item .left-item-title {
    width: 45px;
    pointer-events: none;
    height: 45px;
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title .left-item .left-item-title img {
    width: 100%;
    height: 100%;
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title .left-item .left-item-name {
    font-size: 24px;
    font-weight: 800;
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title .right-item {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title .right-item span {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.block-stats-wrapp .block-stats-color-item .block-stats-color-item-title .right-item img {
    width: 24px;
    opacity: 0.75;
    height: 24px;
}

.block-stats-color-item.black .block-stats-color-item-title{
    background: #102F50;
}

.block-stats-color-item.red .block-stats-color-item-title{
    background: #CE013B;
}

.block-stats-color-item.green .block-stats-color-item-title{
    background: #36CE01;
}

.block-stats-color-item .block-stats-color-item-bets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    border-radius: 15px;
    background: var(--background-navbar);
}

.block-stats-color-item .block-stats-color-item-bets .block-stats-color-item-bets-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 16px;
    border-radius: 15px;
}

.block-stats-color-item .block-stats-color-item-bets .block-stats-color-item-bets-item .block-stats-color-item-bets-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
}


.block-stats-color-item .block-stats-color-item-bets .block-stats-color-item-bets-item .block-stats-color-item-bets-item-title img {
    border-radius: 5px;
    width: 30px;
    height: 30px;
}

.block-stats-color-item .block-stats-color-item-bets .block-stats-color-item-bets-item .block-stats-color-item-bets-item-title span {
    font-size: 14px;
    font-weight: 500;
}

.block-stats-color-item .block-stats-color-item-bets .block-stats-color-item-bets-item .block-stats-color-item-bets-item-sum {
    display: flex;
    align-items: center;
    gap: 8px;
}

.block-stats-color-item .block-stats-color-item-bets .block-stats-color-item-bets-item .block-stats-color-item-bets-item-sum img {
    width: 16px;
    height: 16px;
}

.block-stats-color-item .block-stats-color-item-bets .block-stats-color-item-bets-item .block-stats-color-item-bets-item-sum span {
    font-size: 14px;
    font-weight: 500;
}

.button-group__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.button-group__content .btn {
    justify-content: center;
    align-items: center;
}

.button-group__content .btn img {
    width: 28px;
    height: 28px;
}

.wheel .btn {
    margin: 0
}

.wheel-content {
    width: 100%;
    position: relative;
    margin: 20px auto;
}

.wheel-content .wheel-img {
    max-width: 497px;
    max-height: 497px;
}

.wheel-content img {
    width: 100%;
    height: auto;
}

.wheel-content .arrow {
    position: absolute;
    bottom: -65px;
    left: calc(50% - .5px);
    transform: translate(-50%, -50%) rotate(180deg);
}

.time .block {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 100%;
    z-index: 1;
}

.time .block .title {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
}

.time .block .value {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 45px;
}

@media (max-width: 820px) {
    .wheel-content .wheel-img {
        max-width: 320px;
        max-height: 320px;
    }
    .wheel-content .arrow {
        bottom: 0;
    }
}

.history_wrapper {
    width: 100%;
    padding: 14px 25px;
    background: var(--background-navbar);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.history_wrapper .last-100-games {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.history_wrapper .last-100-games .last-100-games-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
}

.history_wrapper .last-100-games .last-100-games-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.history_wrapper .last-100-games .last-100-games-list .last-100-games-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    min-width: 52px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
}

.history_wrapper .last-100-games .last-100-games-list .last-100-games-item.black {
    background: var(--background-black-wheel);
    color: #74A7DE;
}

.history_wrapper .last-100-games .last-100-games-list .last-100-games-item.red {
    background: var(--background-red-wheel);
    color: #FF9FBA;
}

.history_wrapper .last-100-games .last-100-games-list .last-100-games-item.green {
    background: var(--background-green-wheel);
    color: #EFFFF7;
}

.bet-component {
    gap: 14px;
}


.history_history {
    min-height: 10px;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-align-items: center;
    align-items: center;
    gap: 5px;
    overflow: hidden
}

.history_item {
    width: 7.14%;
    height: 5px;
    border-radius: 3px;
    background: transparent;
    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 .right-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}

.hash .right-content .btn {
    background: none;
    border: none;
    padding: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hash .right-content .btn svg path{
    width: 100%;
    height: 100%;
    transition: 0.2s ease;
    stroke: var(--text);
}

.hash .right-content .btn:hover svg path{
    stroke: var(--main-color);
}

.hash {
    width: 100%;
    padding: 10px;
    background-color: var(--background-navbar);
    max-width: unset;
    justify-content: space-between;
    gap: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hash .text {
    margin-left: 0;
    width: max-content;
}

.hash .title {
    width: max-content !important;
}

.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);
    }
}