﻿.numbers_events_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.numbers_events_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.numbers_events {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ib-numbers-country-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.country-nav-left {
    width: 36px;
    height: 36px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
    cursor: pointer;
}

    .country-nav-left:focus,
    .country-nav-left:active,
    .country-nav-left:hover {
        background-color: var(--button-state);
    }

    .country-nav-left svg {
        width: 24px;
        height: 24px;
        display: block;
    }

    .country-nav-left:focus .global_icon_fill,
    .country-nav-left:active .global_icon_fill,
    .country-nav-left:hover .global_icon_fill {
        fill: var(--icon-state);
    }

.country-nav-right {
    width: 36px;
    height: 36px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
    cursor: pointer;
}

    .country-nav-right:focus,
    .country-nav-right:active,
    .country-nav-right:hover {
        background-color: var(--button-state);
    }

.country-nav-right svg {
    width: 24px;
    height: 24px;
    display: block;
}

    .country-nav-right:focus .global_icon_fill,
    .country-nav-right:active .global_icon_fill,
    .country-nav-right:hover .global_icon_fill {
        fill: var(--icon-state);
    }

.ib-numbers-country-nav-container::-webkit-scrollbar {
    display: none;
}

.ib-numbers-country-nav-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
}

.ib-numbers-country-nav-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ib-numbers-country-nav-items-link {
    min-width: 96px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
    cursor: pointer;
}

    .ib-numbers-country-nav-items-link:focus,
    .ib-numbers-country-nav-items-link:active,
    .ib-numbers-country-nav-items-link:hover {
        background-color: var(--button-state);
    }

.ib-numbers-country-nav-items-link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ib-numbers-country-nav-items-link-text {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.ib-numbers-country-nav-items-link:focus .ib-numbers-country-nav-items-link-text,
.ib-numbers-country-nav-items-link:active .ib-numbers-country-nav-items-link-text,
.ib-numbers-country-nav-items-link:hover .ib-numbers-country-nav-items-link-text {
    color: var(--text-state);
}

.ib-numbers-country-open-bets {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin-top: 4px;
}

.ib-numbers-draw-dropdown {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
    cursor: pointer;
}

    .ib-numbers-draw-dropdown:focus,
    .ib-numbers-draw-dropdown:active,
    .ib-numbers-draw-dropdown:hover {
        background-color: var(--button-state);
    }

.ib-numbers-draw-dropdown-icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ib-numbers-draw-dropdown-icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.ib-numbers-draw-dropdown:focus .global_icon_fill,
.ib-numbers-draw-dropdown:active .global_icon_fill,
.ib-numbers-draw-dropdown:hover .global_icon_fill {
    fill: var(--icon-state);
}

.ib-numbers-draw-active {
    font-weight: 600;
}

.ib-numbers-draw-dropdown:focus .ib-numbers-draw-active,
.ib-numbers-draw-dropdown:active .ib-numbers-draw-active,
.ib-numbers-draw-dropdown:hover .ib-numbers-draw-active {
    color: var(--text-state);
}

.ib-numbers-country-open-bets-wrapper {
    width: 100%;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-top: 4px;
    padding: 4px;
    background-color: var(--surface-1);
    border-radius: 8px;
}

.open-bets-wrapper-active {
    display: flex;
}

.ib-numbers-open-bets-item {
    width: calc(50% - 4px);
    min-height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .ib-numbers-open-bets-item:focus,
    .ib-numbers-open-bets-item:active,
    .ib-numbers-open-bets-item:hover {
        background-color: var(--button-state);
    }

.numbers-open-bets-active {
    background-color: var(--button-state);
}

.ib-numbers-open-bets-item a {
    width: 100%;
    min-height: 36px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ib-numbers-open-bets-item:focus a,
.ib-numbers-open-bets-item:active a,
.ib-numbers-open-bets-item:hover a {
    color: var(--text-state);
}

.numbers-open-bets-active a {
    color: var(--text-state);
}

.ib-numbers-country-beting-component {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.ib-numbers-bet-type-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 4px;
}

.ib-numbers-bet-type-heading {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    border-top: 1px solid var(--border-blue);
    border-bottom: 1px solid var(--border-blue);
}

    .ib-numbers-bet-type-heading > img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }

    .ib-numbers-bet-type-heading > span {
        font-size: 12px;
        font-weight: 600;
    }

.ib-media-panel--numbers {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

    .ib-media-panel--numbers > a {
        width: 100%;
        min-height: 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background-color: var(--button-default);
        border: 1px solid var(--border-blue);
        border-radius: 48px;
        cursor: pointer;
    }

        .ib-media-panel--numbers > a:focus,
        .ib-media-panel--numbers > a:active,
        .ib-media-panel--numbers > a:hover {
            color: var(--text-state);
            background-color: var(--button-state);
        }

.ib-number-bet-type-scroll-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 4px;
}

.type-items-left {
    width: 36px;
    height: 36px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
    cursor: pointer;
}

.type-items-right {
    width: 36px;
    height: 36px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
    cursor: pointer;
}

.ib-number-bet-type-scroll-container::-webkit-scrollbar {
    display: none;
}

.ib-number-bet-type-scroll-container {
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
}

.ib-number-bet-type-scroll-items {
    width: 100%;
    min-width: 270px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

    .ib-number-bet-type-scroll-items > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
        background-color: var(--surface-1);
        border-radius: 8px;
    }

.ib-numbers-bet-type-desc {
    width: 100%;
    min-height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

    .ib-numbers-bet-type-desc > span {
        font-weight: 600;
    }

.ib-numbers-stake-limits {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

    .ib-numbers-stake-limits > span {
        font-weight: 600;
    }

.ib-numbers-bet-type-odds {
    width: 100%;
    min-height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

    .ib-numbers-bet-type-odds > span {
        font-weight: 600;
    }

.ib-number-bet-type-scroll-item-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .ib-number-bet-type-scroll-item-link > span {
        font-weight: 600;
    }

.numbers_checkmark {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}

.ib-number-bet-type-scroll-item-link:focus .numbers_checkmark,
.ib-number-bet-type-scroll-item-link:active .numbers_checkmark,
.ib-number-bet-type-scroll-item-link:hover .numbers_checkmark {
    color: var(--text-state);
    background-color: var(--button-state);
}

.numbers-bet-type-active-link .numbers_checkmark {
    background-color: var(--button-state);
}

.numbers_checkmark::after {
    content: '✔';
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.ib-number-bet-type-scroll-items > div > .ib-numbers-bet-type-odds > .numbers-bet-type-active-link > .numbers_checkmark::after {
    content: '✔';
    color: white;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.ib-numbers-bet-type-ball-selections {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 4px;
}

    .ib-numbers-bet-type-ball-selections > #numbers-balls-div {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

.ib-numbers-ball-selection-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ball-selection-title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.ball-selection-title-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

    .ball-selection-title-container p {
        font-weight: 600;
    }

.numbers-balls {
    width: 98%;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 0px;
    border: 1px dashed #39445d;
    margin: 5px auto;
    border-radius: 4px;
}

    .numbers-balls > span {
        width: 25%;
        max-width: 90px;
        padding: 0px 5px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #081535;
    }

.ib-numbers-ball-selection-wrapper > .ib-numbers-balls-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ib-numbers-balls-wrapper > .ib-numbers-balls {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--surface-1);
    border-radius: 8px;
}

.numberball-grid {
    width: 100%;
    min-height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-blue);
}

.powerball-grid {
    width: 100%;
    min-height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-blue);
}

.number_of_balls_selected {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

    .number_of_balls_selected span:nth-child(1) {
        font-weight: 600;
    }

.ball_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.gridBall {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer !important;
    outline: none;
    margin: 0px !important;
}

.ball span {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 50%;
}

.ball-selected {
    opacity: 0.50;
}

.orange-ball {
    background: rgb(255,87,34) !important;
    background: radial-gradient(circle, rgba(255,87,34,1) 0%, rgba(255,138,101,1) 100%) !important;
}

.amber-ball {
    background: rgb(255,193,7) !important;
    background: radial-gradient(circle, rgba(255,193,7,1) 0%, rgba(255,213,79,1) 100%) !important;
}

.green-ball {
    background: rgb(76,175,80) !important;
    background: radial-gradient(circle, rgba(76,175,80,1) 0%, rgba(129,199,132,1) 100%) !important;
}

.blue-ball {
    background: rgb(3,169,244) !important;
    background: radial-gradient(circle, rgba(3,169,244,1) 0%, rgba(79,195,247,1) 100%) !important;
}

.indigo-ball {
    background: rgb(63,81,181) !important;
    background: radial-gradient(circle, rgba(63,81,181,1) 0%, rgba(121,134,203,1) 100%) !important;
}

.power-pink {
    background: rgb(216,27,96) !important;
    background: radial-gradient(circle, rgba(216,27,96,1) 0%, rgba(240,98,146,1) 100%) !important;
}

.numbers_results_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background-color: var(--opacity);
    z-index: 99999;
}

.numbers_results_modal {
    width: 100%;
    max-width: 480px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--dark);
    border-radius: 8px;
}

.numbers_results_modal_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.numbers_results_modal_title {
    font-weight: 600;
}

.close_numbers_results_modal {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}

    .close_numbers_results_modal:focus,
    .close_numbers_results_modal:active,
    .close_numbers_results_modal:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.numbers_results_modal_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.results_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.results {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 8px;
}

.results_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.results_body {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.numbers_payouts_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background-color: var(--opacity);
    z-index: 99999;
}

.numbers_results_modal {
    width: 100%;
    max-width: 480px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--surface-1);
    border-radius: 8px;
}

.numbers_payouts_modal_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.numbers_payouts_modal_title {
    font-weight: 600;
}

.close_numbers_payouts_modal {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}

    .close_numbers_payouts_modal:focus,
    .close_numbers_payouts_modal:active,
    .close_numbers_payouts_modal:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.numbers_payouts_modal_body {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.payouts_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payouts {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 8px;
}

.payouts_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.payouts_body {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.payouts_body_text {
    font-weight: 600;
}

    .betslip_header.numbers > .betslip_title_actions > .betslip_title {
        flex-direction: row;
    }

.clear_all_numbers_bets {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.clear_all_numbers_bets_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .clear_all_numbers_bets_icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.numbers_place_all_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    border-top: 1px solid var(--border-blue);
    border-bottom: 1px solid var(--border-blue);
}

.currency-symbol-numbers {
    position: absolute;
    pointer-events: none;
    top: 36px;
    left: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--surface-3);
    border-radius: 50%;
    z-index: 1;
}

#set_default_stake {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.default_stake_input_control input {
    width: 100%;
    min-height: 36px;
    padding: 0 8px 0 24px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
    outline: 0;
}

    .default_stake_input_control input:disabled {
        opacity: 0.5;
        pointer-events: none;
    }

.default_stake_input_control {
    width: calc(50% - 4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .default_stake_input_control label {
        width: 100%;
        min-height: 36px;
        font-weight: 600;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

#total_stake {
    display: inline-block;
}

.ib-numbers-place-bet {
    width: 100%;
    min-height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 48px;
}

    .ib-numbers-place-bet:focus,
    .ib-numbers-place-bet:active,
    .ib-numbers-place-bet:hover {
        background-color: var(--primary-green-hover);
    }

    #numbers_betslip_message {
        width: 100%;
        display: none;
        padding: 8px;
        font-weight: 600;
        text-align: center;
        color: var(--red);
    }

        #numbers_betslip_message a {
            text-decoration: underline;
        }

        #bet_entry_ {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

.ib-numbers-add-bet {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
}

.ib-numbers-add-bet-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

    .ib-numbers-add-bet-header img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }

.remove_numbers_bet_entry {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 auto;
    padding-bottom: 3px;
    font-weight: 600;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}

    .remove_numbers_bet_entry:focus,
    .remove_numbers_bet_entry:active,
    .remove_numbers_bet_entry:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.balls_selected_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    background-color: var(--surface-3);
    border-radius: 48px;
}

#numbers_selected {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 4px;
}

    #numbers_selected span:nth-child(1) {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        margin-right: 4px;
    }

.betslip-ball {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    margin: 0 1px;
}

.ib-numbers-bet-odds {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 4px;
    justify-content: flex-end;
}

    .ib-numbers-bet-odds > span {
        font-weight: 600;
    }

.ib-numbers-add-bet-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px;
    background-color: var(--surface-3);
    border-radius: 8px;
}

.stake_profit_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-blue);
}

.ib-numbers-stake-field {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.ib-numbers-stake-decrease {
    display: block;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
}

.stake_input_control {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .stake_input_control .currency-symbol-numbers {
        position: absolute;
        pointer-events: none;
        top: -5px;
        left: 0;
        width: 18px;
        height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        background-color: var(--surface-3);
    }

    .stake_input_control input {
        width: calc(100% - 8px);
        min-height: 36px;
        padding: 4px 16px;
        font-weight: 600;
        background-color: var(--surface-3);
        border: 1px solid var(--border-blue);
        border-radius: 8px;
        outline: 0;
    }

.ib-numbers-stake-increase {
    display: block;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
}

.ib-numbers-bet-profit {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

    .ib-numbers-bet-profit > span {
        font-weight: 600;
    }

.ib-numbers-bet-limits {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 0 0;
}

    .ib-numbers-bet-limits > span {
        width: 50%;
        font-size: 12px;
        font-weight: 600;
    }

    .ib-numbers-bet-limits > span {
        width: 50%;
        font-size: 12px;
        font-weight: 600;
    }

        .ib-numbers-bet-limits > span:nth-child(2) {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

#LottoHighLowDiv {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.BonusBallLow {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    cursor: pointer;
}

.BonusBallHigh {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    cursor: pointer;
}

.bonus-ball-low, .bonus-ball-high {
    width: 40px;
    height: 40px;
}

#LottoHighLowDiv .gridBall span {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 50%;
}

.bonus-ball-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .bonus-ball-arrow svg {
        width: 24px;
        height: 24px;
        display: block;
    }

#BonusBallSingleNumberDiv {
    width: 50%;
    display: block;
    margin: 0px auto;
}

.BonusBallSingleNumber {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

    .BonusBallSingleNumber .gridBall span {
        width: 36px;
        height: 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        border-radius: 50%;
    }

    .BonusBallSingleNumber svg {
        width: 24px;
        height: 24px;
        display: block;
    }

    .numbers_betslip_container {
        display: none;
    }

@media only screen and (min-width: 640px) {
    .ib-media-panel--numbers {
        max-width: 270px;
    }
}

@media only screen and (min-width: 960px) {
    .ib-numbers-country-nav-items {
        flex: 1;
    }

    .ib-numbers-country-nav-items-link {
        width: 100%;
    }

    .ib-numbers-draw-dropdown {
        display: none;
    }

    .ib-numbers-country-open-bets-wrapper {
        display: flex;
        justify-content: flex-start;
        padding: 0 0 4px 0;
        background-color: transparent;
        border-bottom: 1px solid var(--border-blue);
    }

    .ib-numbers-country-beting-component {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ib-numbers-bet-type-items {
        width: calc(50% - 4px);
    }

    .ib-numbers-bet-type-heading {
        flex-wrap: nowrap;
        padding: 0;
        border-top: none;
        border-bottom: none;
    }

    .ib-number-bet-type-scroll-container {
        flex-direction: column;
        align-items: center;
    }

    .ball-selection-title-container {
        min-height: 36px;
    }

    .ib-numbers-bet-type-ball-selections {
        width: calc(50% - 4px);
    }
}

@media only screen and (min-width: 1200px) {
    .country-nav-left {
        display: flex;
    }

    .country-nav-right {
        display: flex;
    }

    .ib-numbers-open-bets-item {
        width: calc(33.33% - 4px);
    }
}
