.game-area .game-area-content {
	display: block;
}

.game-history {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.game-history.scrollable {
    margin-bottom: -10px;
    padding-bottom: 10px
}

.game-history__wrap {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.game-history .item {
    margin-right: 10px;
    border: 1px solid hsla(0,0%,59.2%,.1);
    padding: 9px 12px;
    padding: 5px 20px;
    border-radius: 3px;
        background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.game-history .item.isAnimate {
    -webkit-animation: shiftFromLeft .3s linear;
    animation: shiftFromLeft .3s linear
}

.game-history .item:last-child {
    margin-right: 0
}

.game-history .item .item-bet {
    font-size: 14px;
    line-height: 24px;
    /* margin-bottom: 4px; */
    font-family: Exo\ 2,Open Sans,sans-serif;
}

.game-history .item .item-result {
    font-size: 11px;
    color: #5e687e
}

.game-history .item .item-result i {
    font-size: 8px
}

@media (max-width: 768px) {
    .game-history {
        padding: 5px 0;
        display: flex;
        gap: 2px; /* Минимальное расстояние между элементами */
        overflow-x: auto;
    }

    .game-history__wrap {
        padding: 5px;
    }

    .game-history .item {
        margin-right: 2px; /* Ещё меньше отступов между элементами */
        padding: 2px 4px; /* Минимальные внутренние отступы */
        width: 60px; /* Ограничение ширины элемента */
        height: 40px; /* Ограничение высоты элемента */
        font-size: 9px; /* Уменьшение шрифта */
        line-height: 14px; /* Линия текста */
        border-radius: 2px;
        box-shadow: none; /* Убираем тень */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .game-history .item .item-bet {
        font-size: 9px;
        line-height: 12px;
    }

    .game-history .item .item-result {
        font-size: 8px;
        line-height: 10px;
        color: #999; /* Более светлый цвет для уменьшения визуального шума */
    }
}


.crash__connected {
    pointer-events: none;
    border-radius: 6px 6px;
    position: relative;
    font-size: 25px;
    z-index: 2;
    margin-top: 60px;
}

.crash__connected h2 {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    color: #ffc645;
    text-shadow: 1px 1px 2px rgba(25, 29, 36, 0.30);
}

.crash-prefix .game-area {
    border: 1px transparent;
    padding: 24px 10px 0;
}

.crash-prefix .game-block {
    padding: 0
}

.crash-prefix .game-component.isMobile .game-block {
    border-radius: 6px
}

.hash {
    width: 100%;
    padding: 10px;
}

.bet-wrap {
	display: flex;
    justify-content: flex-end;
    align-items: center;
}

.bet-wrap span {
	margin-right: 2px;
}

.bet-wrap.wait {
    color: #ffc645;
	font-weight: 800;
}

.bet-wrap.win {
    color: #62ca5b;
	font-weight: 800;
}

.bet-wrap.lose {
    color: #e86376;
	font-weight: 800;
}
