﻿:root {
    --primary-orange: rgba(255, 153, 0, 1) !important;
    --primary-orange-hover: rgba(255, 153, 0, 0.75) !important;
    --primary-blue: rgba(0, 189, 212, 1) !important;
    --primary-blue-hover: rgba(0, 189, 212, 0.75) !important;
    --primary-green: rgba(76, 175, 80, 1) !important;
    --primary-green-hover: rgba(76, 175, 80, 0.75) !important;
    --light: rgba(255, 255, 255, 1);
    --dark: rgba(8, 21, 53, 1);
    --red: rgba(244, 67, 54, 1);
    --green: rgba(76, 175, 80, 1);
    /*--primary-green: rgba(140, 209, 64, 1) !important;
    --primary-green-hover: rgba(140, 209, 64, 0.75) !important;*/
}

.light {
    --text: rgba(28, 28, 32, 1);
    --text-state: rgba(255, 255, 255, 1);
    --opacity: rgba(255, 255, 255, 0.9);
    --background: rgba(244, 246, 253, 1);
    --surface-1: rgba(239, 241, 248, 1);
    --surface-2: rgba(233, 236, 245, 1);
    --surface-3: rgba(224, 229, 242, 1);
    --button-default: transparent;
    --button-state: rgba(20, 40, 80, 1);
    --border-default: rgba(160, 170, 200, 0.4);
    --border-blue: rgba(0, 189, 212, 1);
    --icon: rgba(40, 40, 50, 1);
    --icon-state: rgba(255, 255, 255, 1);
    --exchange-offer: rgb(205, 229, 246);
    --exchange-bid: rgb(234, 234, 234);
}

.dark {
    --text: rgba(230, 230, 240, 1);
    --text-state: rgba(8, 21, 53, 1);
    --opacity: rgba(8, 21, 53, 0.85);
    --background: rgba(8, 21, 53, 1);
    --surface-1: rgba(20, 35, 65, 1);
    --surface-2: rgba(32, 48, 80, 1);
    --surface-3: rgba(50, 66, 100, 1);
    --button-default: transparent;
    --button-state: rgba(0, 189, 212, 1);
    --border-default: rgba(120, 140, 170, 0.25);
    --border-blue: rgba(0, 189, 212, 1);
    --icon: rgba(210, 210, 220, 1);
    --icon-state: rgba(8, 21, 53, 1);
    --exchange-offer: rgb(38, 81, 112);
    --exchange-bid: rgb(70, 70, 70);
}

*, *::before, *::after {
    position: relative;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

    body::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

table {
    width: 100%;
    background-color: var(--surface-1);
    border: 1px solid var(--border-blue);
    border-collapse: collapse;
    border-spacing: 0;
}

#root, #__next {
    isolation: isolate;
}

.global_icon_fill {
    fill: var(--icon);
}

#ib-loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-blue);
    border-top-color: var(--light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    background-color: var(--surface-1);
}

.ib_logo_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ib_toggle_drawer_button {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.drawer_line {
    width: 100%;
    max-width: 24px;
    height: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--text);
    border-radius: 48px;
}

.ib_logo_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.light .ib_logo_link {
    width: 84px;
    height: 64px;
    background-image: url(/Content/images/logos/png/interbet-dark.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}

.dark .ib_logo_link {
    width: 84px;
    height: 64px;
    background-image: url(/Content/images/logos/png/interbet-light.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}

.ib_logo {
    width: 100%;
    max-width: 84px;
    height: auto;
}

.header_nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.header_nav_link {
    min-width: 96px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .header_nav_link:focus,
    .header_nav_link:active,
    .header_nav_link:hover {
        background-color: var(--button-state);
    }

.header_nav_link_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .header_nav_link_icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.header_nav_link:focus .global_icon_fill,
.header_nav_link:active .global_icon_fill,
.header_nav_link:hover .global_icon_fill {
    fill: var(--icon-state);
}

.header_nav_link_text {
    font-size: 14px;
}

.header_nav_link:focus .header_nav_link_text,
.header_nav_link:active .header_nav_link_text,
.header_nav_link:hover .header_nav_link_text {
    color: var(--text-state);
}

.header_nav_link.login_link {
    font-weight: 600;
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

    .header_nav_link.login_link:focus,
    .header_nav_link.login_link:active,
    .header_nav_link.login_link:hover {
        background-color: var(--primary-green-hover);
    }

.header_nav_link.register_link {
    font-weight: 600;
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

    .header_nav_link.register_link:focus,
    .header_nav_link.register_link:active,
    .header_nav_link.register_link:hover {
        background-color: var(--primary-blue-hover);
    }

.logged-out.contact_link {
    display: none;
}

.logged-in.contact_link,
.logged-in.deposits_link,
.logged-in.account_link {
    display: none;
}

.ib_balances {
    max-width: 196px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.ib_balance_wallet {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 4px;
}

.ib_balance_cash {
    width: 100%;
    min-height: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 0px 4px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

.ib_balance_cash_refresh {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

    .ib_balance_cash_refresh svg {
        width: 16px;
        height: 16px;
        display: block;
    }

.ib_balance_cash_text {
    font-size: 12px;
    font-weight: 600;
}

.ib_balance_deposit_link {
    width: 100%;
    min-height: 24px;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 48px;
}

.ib_balance_deposit_link_text {
    font-size: 12px;
    font-weight: 600;
}

.ib_balance_deposit_link:focus,
.ib_balance_deposit_link:active,
.ib_balance_deposit_link:hover {
    background-color: var(--primary-green-hover);
}

.ib_balance_deposit_link_icon {
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ib_balance_deposit_link_icon svg {
        width: 16px;
        height: 16px;
        display: block;
    }

.ib_balance_withdrawal {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.ib_balance_withdrawal_cancel_button {
    all: unset;
    width: 100%;
    min-height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--red);
    border: 1px solid var(--red);
    border-radius: 48px;
    cursor: pointer;
}

.ib_balance_loyalty {
    width: calc(100% - 2px);
    min-height: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 0 4px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

.ib_balance_loyalty_link {
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
}

.ib_balance_bonus {
    width: calc(100% - 2px);
    min-height: 24px;
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 0 4px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

.ib_balance_bonus_text {
    font-size: 12px;
    font-weight: 600;
}

.ib_balance_bonus_button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    .ib_balance_bonus_button svg:nth-child(1) {
        width: 16px;
        height: 16px;
        display: block;
    }

    .ib_balance_bonus_button svg:nth-child(2) {
        width: 16px;
        height: 16px;
        display: block;
    }

    .ib_balance_bonus_button[data-active="true"] img:nth-child(1) {
        transform: rotate(-180deg);
    }

.wiggle {
    display: inline-block;
    animation: wiggle 1s ease-in-out;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.ib_balance_bonus_container {
    position: absolute;
    bottom: -136px;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
    z-index: 9;
}

    .ib_balance_bonus_container::after {
        width: 0;
        height: 0;
        content: " ";
        position: absolute;
        top: -6px;
        right: 4px;
        margin-left: auto;
        margin-right: auto;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var(--surface-2);
    }

    .ib_balance_bonus_container[data-active="true"] {
        display: flex;
    }

.ib_balance_bonus_container_group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ib_balance_bonus_spacer {
    width: 100%;
    height: 0.5px;
    background-color: var(--border-blue);
}

.reverse_withdrawals_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--opacity);
    z-index: 4;
}

.reverse_withdrawals_dialog {
    width: 100%;
    max-width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
    background-color: var(--surface-1);
    border: 1px solid var(--red);
    border-radius: 8px;
}

.reverse_withdrawals_dialog_title {
    color: var(--red);
    text-align: center;
}

.reverse_withdrawals_dialog_text {
    text-align: center;
}

    .reverse_withdrawals_dialog_text a {
        font-weight: 600;
        text-decoration: underline;
    }

.reverse_withdrawals_dialog_amount {
    font-weight: 600;
}

.reverse_withdrawals_dialog_actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.reverse_withdrawals_dialog_button {
    width: calc(50% - 48px);
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--button--transparent-25);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .reverse_withdrawals_dialog_button.proceed {
        background-color: var(--red);
        border: 1px solid var(--red);
    }

    .reverse_withdrawals_dialog_button:focus,
    .reverse_withdrawals_dialog_button:active,
    .reverse_withdrawals_dialog_button:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }



.install_pwa_container {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-blue);
    border-bottom: 1px solid var(--border-blue);
}

.install_pwa {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.install_pwa_group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

    .install_pwa_group:nth-child(1) {
        gap: 8px;
    }

    .install_pwa_group:nth-child(2) {
        gap: 8px;
    }

.install_pwa_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .install_pwa_icon svg {
        width: 24px;
        height: 24px;
    }

.install_pwa_button {
    width: 72px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

#dismissPWA:focus,
#dismissPWA:active,
#dismissPWA:hover {
    color: var(--text-state);
    background-color: var(--button-state);
}

#installPWA {
    font-weight: 600;
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

    #installPWA:focus,
    #installPWA:active,
    #installPWA:hover {
        background-color: var(--primary-green-hover);
    }

.global_alert_message {
    width: 100%;
    display: block;
    padding: 8px;
}

.global_alert_message_text {
    width: 100%;
    display: block;
    padding: 8px 0;
}

.sticky_scroll_banner_mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1200px;
    min-height: 72px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-blue);
    z-index: 2;
}

.sticky_scroll_banner_desktop {
    display: none;
}

.stickey_scroll_banner {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px;
}

.sticky_scroll_banner_text {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-weight: 600;
}

.sticky_scroll_banner_mobile_link {
    width: 120px;
    min-height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 48px;
}

    .sticky_scroll_banner_mobile_link:focus,
    .sticky_scroll_banner_mobile_link:active,
    .sticky_scroll_banner_mobile_link:hover {
        background-color: var(--primary-blue-hover);
    }

.app_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app_container {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
}

.ib_nav_drawer_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 4;
    background-color: var(--opacity);
}

.ib_nav_drawer::-webkit-scrollbar {
    display: none;
}

.ib_nav_drawer {
    width: 100%;
    max-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background-color: var(--surface-1);
    overflow: scroll;
}

.ib_nav_drawer_settings {
    width: 100%;
    min-height: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.odds_display_settings {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.odds_display_button {
    width: 100%;
    min-height: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .odds_display_button:focus,
    .odds_display_button:active,
    .odds_display_button:hover {
        background-color: var(--button-state);
    }

    .odds_display_button svg {
        width: 24px;
        height: 24px;
        display: block;
        margin-right: 8px;
    }

    .odds_display_button:focus .global_icon_fill,
    .odds_display_button:active .global_icon_fill,
    .odds_display_button:hover .global_icon_fill {
        fill: var(--icon-state);
    }

    .odds_display_button:focus .odds_display_button_text,
    .odds_display_button:active .odds_display_button_text,
    .odds_display_button:hover .odds_display_button_text {
        color: var(--text-state);
    }

.odds_display_menu {
    position: absolute;
    top: 52px;
    width: 100%;
    height: 60px;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--surface-1);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
    z-index: 2;
}

    .odds_display_menu::after {
        width: 0;
        height: 0;
        content: " ";
        position: absolute;
        top: -4px;
        left: 12px;
        margin-left: auto;
        margin-right: auto;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var(--surface-1);
    }

    .odds_display_menu[data-active="true"] {
        display: flex;
    }

.odds_display_menu_item {
    all: unset;
    width: 50%;
    min-height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
    cursor: pointer;
}

    .odds_display_menu_item:focus,
    .odds_display_menu_item:active,
    .odds_display_menu_item:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.close_nav_drawer {
    width: 36px;
    height: 36px;
    display: flex;
    flex: auto 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}
    .close_nav_drawer:focus,
    .close_nav_drawer:active,
    .close_nav_drawer:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.ib_nav_drawer_menu::-webkit-scrollbar {
    display: none;
}

.ib_nav_drawer_menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    overflow: scroll;
}

.ib_nav_drawer_menu_link {
    width: 100%;
    min-height: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    padding: 0 8px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .ib_nav_drawer_menu_link:focus,
    .ib_nav_drawer_menu_link:active,
    .ib_nav_drawer_menu_link:hover {
        background-color: var(--button-state);
    }

    .ib_nav_drawer_menu_link[data-active="true"] {
        background-color: var(--button-state);
    }

#watchMeButton1 {
    cursor: pointer;
}

#themeMode {
    cursor: pointer;
}

.ib_nav_drawer_menu_link_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ib_nav_drawer_menu_link_icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.ib_nav_drawer_menu_link:focus .global_icon_fill,
.ib_nav_drawer_menu_link:active .global_icon_fill,
.ib_nav_drawer_menu_link:hover .global_icon_fill {
    fill: var(--icon-state);
}

.ib_nav_drawer_menu_link[data-active="true"] .global_icon_fill {
    fill: var(--icon-state);
}

.ib_nav_drawer_menu_link_group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.theme_text {
    font-weight: 600;
}

.ib_nav_drawer_menu_link:focus .ib_nav_drawer_menu_link_text,
.ib_nav_drawer_menu_link:active .ib_nav_drawer_menu_link_text,
.ib_nav_drawer_menu_link:hover .ib_nav_drawer_menu_link_text {
    color: var(--text-state);
}

.ib_nav_drawer_menu_link[data-active="true"] .ib_nav_drawer_menu_link_text {
    color: var(--text-state);
}

.ib_nav_drawer_menu_link:focus .theme_text,
.ib_nav_drawer_menu_link:active .theme_text,
.ib_nav_drawer_menu_link:hover .theme_text {
    color: var(--text-state);
}

#savvySaverDrawerMenuLink {
    display: none;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    main::-webkit-scrollbar {
        display: none;
    }

.main_menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-blue);
}

.main_menu_button {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}

    .main_menu_button:focus,
    .main_menu_button:active,
    .main_menu_button:hover {
        background-color: var(--button-state);
    }

    .main_menu_button.left {
        display: none;
    }

    .main_menu_button.right {
        display: none;
    }

    .main_menu_button svg {
        width: 24px;
        height: 24px;
    }

    .main_menu_button:focus .global_icon_fill,
    .main_menu_button:active .global_icon_fill,
    .main_menu_button:hover .global_icon_fill {
        fill: var(--icon-state);
    }

.ib_main_menu_nav::-webkit-scrollbar {
    display: none;
}

.ib_main_menu_nav {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow-x: auto;
}

.ib_main_menu_nav_link {
    min-width: 60px;
    min-height: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
}

    .ib_main_menu_nav_link:focus,
    .ib_main_menu_nav_link:active,
    .ib_main_menu_nav_link:hover {
        background-color: var(--button-state);
    }

.ib_main_menu_nav_link_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ib_main_menu_nav_link_icon img {
        width: 24px;
        height: 24px;
    }

    .ib_main_menu_nav_link_icon svg {
        width: 24px;
        height: 24px;
    }

.ib_main_menu_nav_link:focus .global_icon_fill,
.ib_main_menu_nav_link:active .global_icon_fill,
.ib_main_menu_nav_link:hover .global_icon_fill {
    fill: var(--icon-state);
}

.ib_main_menu_nav_link_text {
    font-size: 12px;
}

.ib_main_menu_nav_link:focus .ib_main_menu_nav_link_text,
.ib_main_menu_nav_link:active .ib_main_menu_nav_link_text,
.ib_main_menu_nav_link:hover .ib_main_menu_nav_link_text {
    color: var(--text-state);
}

.main_menu_breadcrumb {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px 8px;
    background-color: var(--surface-1);
    border-radius: 48px;
}

.main_menu_breadcrumb_nav {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.main_menu_breadcrumb_home_link {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .main_menu_breadcrumb_home_link svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.main_menu_breadcrumb_spacer {
    width: 1px;
    height: 36px;
    display: block;
    background-color: var(--border-blue);
}

.main_menu_breadcrumb_button {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.main_menu_breadcrumb_button_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .main_menu_breadcrumb_button_icon svg {
        width: 24px;
        height: 24px;
    }

.main_menu_breadcrumb_button[data-active="true"] .main_menu_breadcrumb_button_icon {
    transform: rotate(180deg);
}

.main_menu_dropdown {
    position: absolute;
    top: 52px;
    width: 200px;
    min-height: 200px;
    display: none;
    flex-direction: column;
    margin-left: 36px;
    gap: 4px;
    padding: 4px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
    z-index: 4;
}

    .main_menu_dropdown::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 20px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var(--surface-2);
    }

    .main_menu_dropdown[data-active="true"] {
        display: flex;
    }

.main_menu_dropdown_link {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .main_menu_dropdown_link:focus,
    .main_menu_dropdown_link:active,
    .main_menu_dropdown_link:hover {
        background-color: var(--button-state);
    }

.main_menu_dropdown_link_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .main_menu_dropdown_link_icon img {
        width: 24px;
        height: 24px;
    }

    .main_menu_dropdown_link_icon svg {
        width: 24px;
        height: 24px;
    }

.main_menu_dropdown_link:focus .global_icon_fill,
.main_menu_dropdown_link:active .global_icon_fill,
.main_menu_dropdown_link:hover .global_icon_fill {
    fill: var(--icon-state);
}

.main_menu_dropdown_link:focus .main_menu_dropdown_link_text,
.main_menu_dropdown_link:active .main_menu_dropdown_link_text,
.main_menu_dropdown_link:hover .main_menu_dropdown_link_text {
    color: var(--text-state);
}

.carousel_banner_wrapper {
    width: 100%;
    display: none;
    flex-direction: column;
    margin-bottom: 4px;
}

.carousel_banner_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.carousel_banner_button {
    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%;
}

    .carousel_banner_button[data-hide="true"] {
        display: none;
    }

    .carousel_banner_button:focus,
    .carousel_banner_button:active,
    .carousel_banner_button:hover {
        background-color: var(--button-state);
    }

    .carousel_banner_button svg {
        width: 24px;
        height: 24px;
        display: block;
    }

    .carousel_banner_button:focus .global_icon_fill,
    .carousel_banner_button:active .global_icon_fill,
    .carousel_banner_button:hover .global_icon_fill {
        fill: var(--icon-state);
    }

    .carousel_banner_scroller::-webkit-scrollbar {
        display: none;
    }

.carousel_banner_scroller {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
}

.carousel_banner_link {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel_banner_info {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    background-color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    z-index: 1;
}

    .carousel_banner_info:focus,
    .carousel_banner_info:active,
    .carousel_banner_info:hover {
        background-color: var(--primary-blue-hover);
    }

    .carousel_banner_link img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

.carousel_banner_indicators {
    position: absolute;
    bottom: 4px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.carousel_banner_indicator_button {
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-1);
    border-radius: 50%;
}

    .carousel_banner_indicator_button[data-active="true"] {
        background-color: var(--primary-blue);
    }

    .carousel_modal_overlay {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 8px;
        background-color: var(--opacity);
        z-index: 99999999;
    }

.carousel_modal::-webkit-scrollbar {
    display: none;
}

.carousel_modal {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
    padding: 8px;
    background-color: var(--surface-1);
    border-radius: 8px;
    overflow-y: auto;
}

.carousel_modal_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-blue);
}

.carousel_model_title {
    font-weight: 900;
}

.carousel_modal_close {
    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%;
}

    .carousel_modal_close:focus,
    .carousel_modal_close:active,
    .carousel_modal_close:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.carousel_modal_body {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel_banner_info_container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel_banner_info_container_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .carousel_banner_info_container_inner > img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
    }

    .carousel_banner_info_container_inner h3 {
        color: var(--text) !important;
    }

    .carousel_banner_info_container_inner h3 strong {
        color: var(--text) !important;
    }

    .carousel_banner_info_container_inner p {
        font-size: 14px;
    }

    .carousel_banner_info_container_inner p strong {
        color: var(--text) !important;
    }

    .carousel_banner_info_container_inner ol {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0 24px;
        list-style: auto;
    }

    .carousel_banner_info_container_inner ol li {
        color: var(--text) !important;
    }

        .carousel_banner_info_container_inner ol li span {
            color: var(--text) !important;
        }

        .carousel_banner_info_container_inner ol li strong {
            color: var(--text) !important;
        }

    .carousel_banner_info_container_inner p img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
    }

    .ib_betslip_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        flex-direction: column;
        align-items: end;
        background-color: var(--opacity);
        z-index: 4;
    }

.ib_betslip::-webkit-scrollbar {
    display: none;
}

.ib_betslip {
    width: 100%;
    max-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px;
    background-color: var(--surface-1);
    overflow: scroll;
}

.ib_betslip_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.betslip_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.betslip_title {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.betslip_title_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_title_icon svg {
        width: 24px;
        height: 24px;
    }

.betslip_counter {
    padding: 0 4px;
}

.betslip_title_actions {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.remove_all_bets_button {
    display: none;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

    .remove_all_bets_button[disabled="disabled"] {
        pointer-events: none;
    }

.remove_all_bets_button_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .remove_all_bets_button_icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.close_betslip_button {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}

    .close_betslip_button:focus,
    .close_betslip_button:active,
    .close_betslip_button:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.betslip_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.betslip_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 8px;
}

.betslip_info_group {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.betslip_accept_odds {
    width: 100%;
    min-height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.betslip_accept_odds_text {
    font-size: 12px;
}

.betslip_accept_odds_text_input {
    width: 24px;
    height: 24px;
}

.betslip_odds_boost {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    border-top: 1px solid var(--border-blue);
    border-bottom: 1px solid var(--border-blue);
}

.betslip_odds_boost_text {
    font-size: 12px;
}

.betslip_odds_boost_icon {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_odds_boost_icon img {
        width: 100%;
        max-width: 20px;
        height: auto;
    }

.betslip_multiple_indicators {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.betslip_multiple_indicator {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.betslip_multiple_indicator_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_multiple_indicator_icon img {
        width: 100%;
        max-width: 20px;
        height: auto;
        display: block;
    }

.betslip_multiple_indicator_text {
    font-size: 12px;
}

.betslip_ticket_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.betslip_ticket {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
}

.betslip_ticket_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 0 0 2px 0;
}

.betslip_ticket_header_group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.betslip_ticket_header_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_ticket_header_icon img {
        width: 24px;
        height: 24px;
        display: block;
    }

.betslip_ticket_event {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_header_actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.sport_bonus_selection {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
}

.sport_bonus_selection_checkbox {
    width: 20px;
    height: 20px;
}


.delete_betslip_ticket {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .delete_betslip_ticket[disabled="disabled"] {
        pointer-events: none;
    }

.betslip_ticket_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0;
    border-top: 1px solid var(--border-blue);
    border-bottom: 1px solid var(--border-blue);
}

.betslip_ticket_body_group {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
}

.betslip_ticket_event_description {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_body_inner_group {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.betslip_ticket_participant {
    flex: 1;
    display: flex;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_body_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.betslip_ticket_odds_container {
    width: calc(50% - 2px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.betslip_ticket_odds {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

.betslip_ticket_odds_text {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_odds_value {
    font-size: 12px;
    font-weight: 600;
}


.betslip_ticket_profit_container {
    width: calc(50% - 2px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.betslip_ticket_profit {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

.betslip_ticket_profit_text {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_profit_amount {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.betslip_ticket_profit_currency {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_profit_value {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0 0 0;
}

.betslip_ticket_actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
}

.single_betslip_ticket_message {
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 4px;
}

.single_betslip_ticket_message_text {
    font-weight: 600;
    text-align: center;
}

.single_betslip_ticket_number {
    width: 100%;
    display: none;
    padding: 0 4px;
}

.single_betslip_ticket_message_text {
    width: 100%;
    display: none;
    padding: 4px;
}

.single_betslip_inrunning_message {
    width: 100%;
    display: none;
    padding: 4px;
}

.single_betslip_inrunning_message_text {
    width: 100%;
    display: none;
    padding: 4px;
}

.betslip_ticket_stake {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
}

    .betslip_ticket_stake[disabled="disabled"] {
        pointer-events: none;
    }

.betslip_ticket_stake_button {
    width: 24px;
    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: 4px;
}

    .betslip_ticket_stake_button:focus,
    .betslip_ticket_stake_button:active,
    .betslip_ticket_stake_button:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.betslip_ticket_stake_control {
    flex: 1;
    min-height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
    padding: 0 4px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

.betslip_ticket_stake_currency {
    line-height: 0;
}

.betslip_ticket_stake_input {
    width: 100%;
    height: 36px;
    padding: 0 4px;
    background-color: inherit;
    border: none;
    border-radius: 48px;
    outline: none;
}

.place_single_bet_button {
    flex: 1;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 48px;
}

    .place_single_bet_button:focus,
    .place_single_bet_button:active,
    .place_single_bet_button:hover {
        background-color: var(--primary-green-hover);
    }

    .place_single_bet_button[disabled="disabled"] {
        pointer-events: none;
        opacity: 0.50;
    }

.betslip_ticket_multiple_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.betslip_ticket_multiple_title {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 900;
}

.sport_bonus_multiple_selection {
    width: calc(50% - 2px);
    height: 36px;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 0 0 auto;
    padding: 4px;
}

.sport_bonus_multiple_selection_checkbox {
    width: 20px;
    height: 20px;
}

.betslip_ticket_multiple {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
}

.betslip_ticket_multiple_body {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 2px 0;
}

.betslip_ticket_multiple_odds_container {
    width: calc(50% - 2px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.betslip_ticket_multiple_odds {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

.betslip_ticket_multiple_odds_text {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_multiple_odds_value {
    font-size: 12px;
    font-weight: auto;
}

.betslip_ticket_multiple_profit_container {
    width: calc(50% - 2px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.betslip_ticket_multiple_profit {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 48px;
}

.betslip_ticket_multiple_profit_text {
    font-size: 12px;
    font-weight: 600;
}

.betlsip_ticket_multiple_profit_amount {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.betslip_ticket_multiple_profit_currency {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_multiple_profit_value {
    font-size: 12px;
    font-weight: 600;
}

.betslip_ticket_multiple_footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0 0 0;
}

.betslip_ticket_multiple_actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
}

.betslip_ticket__multiple_stake {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
}

.betslip_ticket_multiple_stake_button {
    width: 24px;
    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: 4px;
}

    .betslip_ticket_multiple_stake_button:focus,
    .betslip_ticket_multiple_stake_button:active,
    .betslip_ticket_multiple_stake_button:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

.betslip_ticket_multiple_stake_control {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
    padding: 0 4px;
    background-color: var(--surface-2);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

.betslip_ticket_multiple_stake_currency {
    line-height: 0;
}

.betslip_ticket_multiple_stake_input {
    width: 100%;
    height: 36px;
    padding: 0 4px;
    background-color: inherit;
    border: none;
    border-radius: 48px;
    outline: none;
}

.place_multiple_bet_button {
    flex: 1;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 48px;
}

    .place_multiple_bet_button:focus,
    .place_multiple_bet_button:active,
    .place_multiple_bet_button:hover {
        background-color: var(--primary-green-hover);
    }

    .place_multiple_bet_button[disabled="disabled"] {
        pointer-events: none;
        opacity: 0.50;
    }

.multiple_betslip_ticket_message {
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 4px;
    font-weight: 600;
    text-align: center;
}

.multiple_betslip_ticket_number {
    width: 100%;
    display: none;
    padding: 4px;
}

.multiple_betslip_ticket_message_text {
    width: 100%;
    display: none;
    padding: 0 4px;
}

.betslip_win_limits {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.betslip_win_limits_button {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .betslip_win_limits_button:focus,
    .betslip_win_limits_button:active,
    .betslip_win_limits_button:hover {
        background-color: var(--button-state);
    }

    .betslip_win_limits_button[data-active="true"] {
        background-color: var(--button-state);
    }

    .betslip_win_limits_button:focus .betslip_win_limits_button_text,
    .betslip_win_limits_button:active .betslip_win_limits_button_text,
    .betslip_win_limits_button:hover .betslip_win_limits_button_text {
        color: var(--text-state);
    }

    .betslip_win_limits_button[data-active="true"] .betslip_win_limits_button_text {
        color: var(--text-state);
    }

.betslip_win_limits_button_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.betslip_win_limits_button[data-active="true"] .betslip_win_limits_button_icon {
    transform: rotate(-180deg);
}

.betslip_win_limits_button_icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.betslip_win_limits_button:focus .global_icon_fill,
.betslip_win_limits_button:active .global_icon_fill,
.betslip_win_limits_button:hover .global_icon_fill {
    fill: var(--icon-state);
}

.betslip_win_limits_button[data-active="true"] .global_icon_fill {
    fill: var(--icon-state);
}

.betslip_win_limits_list {
    width: 100%;
    min-height: 100px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_win_limits_list[data-active="true"] {
        display: flex;
    }

.betslip_win_limits_list_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 4px;
    text-align: center;
}

.betslip_win_limits_list_title {
    width: 33.33%;
}

.betslip_win_limits_list_body {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    padding: 4px;
}

.betslip_win_limits_list_item {
    flex: calc(33.33% - 2px);
    display: flex;
    flex-direction: column;
    padding: 4px;
    text-align: center;
    background-color: var(--surface-2);
    border-radius: 4px;
}

.betslip_notice_board {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px;
    background-color: var(--surface-2);
    border-radius: 8px;
}

.betslip_notice {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border-bottom: 1px solid var(--border-blue);
}

    .betslip_notice:last-child {
        border: none;
    }

    .betslip_notice_icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .betslip_notice_icon img {
        width: 48px;
        height: 48px;
    }

.betslip_notice_msg {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.betslip_notice_msg_link {
    width: 100%;
    height: 48px;
    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;
}

    .betslip_notice_msg_link:focus,
    .betslip_notice_msg_link:active,
    .betslip_notice_msg_link:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 4px;
        padding: 4px;
        background-color: var(--surface-1);
        border-radius: 8px;
    }

.footer_container {
    width: 100%;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}

.footer_container_grouped {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer_hr_spacer {
    width: calc(100% - 16px);
    height: 0.5px;
    display: block;
    margin: 12px auto;
    background-color: var(--border-blue);
}

.footer_disclaimer_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}

.footer_disclaimer_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--red);
    border-radius: 50%;
}

.footer_disclaimer_text {
    width: 100%;
    max-width: 600px;
    font-size: 12px;
    text-align: center;
}

.footer_site_links_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 16px;
}

.footer_site_links_container_grouped {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer_site_links_container_title {
    font-weight: 600;
}

.footer_site_links_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .footer_site_links_nav a {
        text-decoration: underline;
        text-align: center;
    }


    .footer_site_links_nav.social_media {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
    }

        .footer_site_links_nav.social_media a {
            width: 36px;
            height: 36px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            .footer_site_links_nav.social_media a img {
                width: 36px;
                height: 36px;
            }

.footer_deposit_options_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
}

.footer_deposit_options_container_title {
    width: 100%;
    padding: 0 0 12px 0;
    font-weight: 600;
    text-align: center;
}

.footer_deposit_options_container a {
    width: calc(33.33% - 6px);
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

    .footer_deposit_options_container a:focus,
    .footer_deposit_options_container a:active,
    .footer_deposit_options_container a:hover {
        background-color: var(--button-state);
    }

    .footer_deposit_options_container a img {
        width: 100%;
        height: auto;
        border-radius: 48px;
    }

.footer_copyright_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}

.footer_copyright_text {
    width: 100%;
    max-width: 600px;
    font-size: 12px;
    text-align: center;
}

.ib_bottom_bar {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: var(--surface-1);
    transform: translateX(-50%);
    z-index: 3;
}

.ib_bottom_bar_nav {
    width: 100%;
    min-height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
}

.ib_bottom_bar_nav_link {
    min-height: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px;
    background-color: var(--button-default);
}

.logged-in.ib_bottom_bar_nav_link {
    min-width: calc(25% - 0px);
    flex: 1;
    display: flex;
}


.ib_bottom_bar_nav_link_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ib_bottom_bar_nav_link_icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.front_notification {
    position: absolute;
    right: -12px;
    top: -6px;
    width: 12px;
    height: 12px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    border-radius: 50%;
    border: 1px solid var(--text);
}

    .front_notification[data-active="true"] {
        display: flex;
    }

    .ib_bottom_bar_nav_link_text {
        width: 100%;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
    }

.ib_bottom_bar_nav_button {
    position: relative;
    min-height: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    background-color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 8px;
}

.betslip_pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    animation: pulse-animation 1s infinite;
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.logged-in.ib_bottom_bar_nav_button {
    min-width: calc(20% - -8px);
}

.ib_bottom_bar_nav_button_icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ib_bottom_bar_nav_button_icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.ib_bottom_bar_nav_button_text {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
}

.betslip_mobile_counter {
    padding: 0 2px;
}

.error_wrapper {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.error_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
    padding: 16px;
    background-color: var(--surface-1);
    border-radius: 8px;
}

.error {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}


.error_actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error_link {
    width: 204px;
    height: 48px;
    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;
}

    .error_link:focus,
    .error_link:active,
    .error_link:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

    .testimonial_shorts_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 12px;
        background-color: var(--background);
        z-index: 4;
    }

.testimonial_shorts_video_container {
    width: 100%;
    height: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 auto;
    padding: 4px;
}

.testimonal_shorts_header {
    width: 100%;
    height: 72px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.testimonal_shorts_title {
    font-weight: 600;
}

.testimonial_shorts_close {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button-default);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
}

    .testimonial_shorts_close:focus,
    .testimonial_shorts_close:active,
    .testimonial_shorts_close:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

    .testimonial_shorts_progress {
        width: 100%;
        min-height: 4px;
        visibility: hidden;
        margin: 8px 0 4px 0;
    }

.testimonial_shorts_progress_line {
    width: 100%;
    min-height: 4px;
}

.testimonal_shorts_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial_shorts_scroll_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial_shorts_video_item {
    scroll-snap-align: start;
}

.testimonial_shorts_video {
    width: 100%;
    min-height: calc(100svh - 156px);
    padding: 4px;
    object-fit: cover;
}

.testimonal_shorts_footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial_sign_up_link {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 48px;
}

    .testimonial_sign_up_link:focus,
    .testimonial_sign_up_link:active,
    .testimonial_sign_up_link:hover {
        background-color: var(--primary-blue-hover);
    }

.xmas_delivery_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background-color: var(--opacity);
    transform: translateY(-100%);
    z-index: 99999999999;
}

.xmas_delivery_modal::-webkit-scrollbar {
    display: none;
}

.xmas_delivery_modal {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--surface-1);
    border-radius: 8px;
    overflow-y: auto;
}

.xmas_delivery_model_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.xmas_delivery_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.xmas_delivery_title {
    font-size: 24px;
}

.xmas_delivery_description {
    text-align: center;
}

.xmas_delivery_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.xmas_delivery_gift {
    width: 100%;
    max-width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.st0 {
    mask: url(#mask-1);
}

.st1 {
    fill: #d7d7d7;
}

.st2 {
    mask: url(#mask);
}

.st3 {
    mask: url(#mask-2);
}

.st4 {
    isolation: isolate;
}

.st5 {
    filter: url(#luminosity-noclip1);
}

.st6 {
    fill: #efefef;
}

.st7 {
    filter: url(#luminosity-noclip2);
}

.st8 {
    display: none;
}

.st9 {
    filter: url(#luminosity-noclip);
}

.st10 {
    mix-blend-mode: multiply;
}

.gift_wiggle {
    animation: wiggle 2.2s ease-in-out infinite;
    transform-origin: 50% 50%;
}

@keyframes wiggle {
    0%, 100% {
        transform: translate(0,0) rotate(0deg);
    }

    15% {
        transform: translate(3px,-2px) rotate(-2deg);
    }

    30% {
        transform: translate(-3px,2px) rotate(2deg);
    }

    45% {
        transform: translate(2px,-3px) rotate(-1.5deg);
    }

    60% {
        transform: translate(-2px,3px) rotate(1.5deg);
    }

    75% {
        transform: translate(1px,-2px) rotate(-1deg);
    }
}

.xmas_delivery_cta {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.xmas_delivery_cta_1 {
    width: 50%;
    height: 48px;
    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;
}

    .xmas_delivery_cta_1:focus,
    .xmas_delivery_cta_1:active,
    .xmas_delivery_cta_1:hover {
        color: var(--text-state);
        background-color: var(--button-state);
    }

    .xmas_delivery_cta_2 {
        width: 50%;
        height: 48px;
        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;
    }

        .xmas_delivery_cta_2:focus,
        .xmas_delivery_cta_2:active,
        .xmas_delivery_cta_2:hover {
            background-color: var(--primary-green-hover);
        }

.xmas_delivery_cta_3 {
    width: 50%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 48px;
}

    .xmas_delivery_cta_3:focus,
    .xmas_delivery_cta_3:active,
    .xmas_delivery_cta_3:hover {
        background-color: var(--primary-hover-green);
    }

    .xmas_delivery_cta_4 {
        width: 50%;
        height: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-weight: 600;
        background-color: var(--button-default);
        border: 1px solid var(--text-state);
        border-radius: 48px;
    }

        .xmas_delivery_cta_4:focus,
        .xmas_delivery_cta_4:active,
        .xmas_delivery_cta_4:hover {
            color: var(--text-state);
            background-color: var(--button-state);
        }

        .delivery_details_form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.dd_form_control {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
}

.dd_form_control_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dd_form_control_label {
    padding: 8px 4px;
    font-size: 12px;
    font-weight: 600;
}

.dd_form_control_input::placeholder {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: var(--text);
    opacity: 0.50;
}

.dd_form_control_input {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 8px;
    background-color: var(--surface-1);
    border: 1px solid var(--border-blue);
    border-radius: 48px;
}

select.dd_form_control_input {
    cursor: pointer;
}

.dd_form_control_error {
    display: none;
    padding: 4px 8px;
    font-weight: 600;
    color: var(--red);
}

@media only screen and (min-width: 640px) {
    .ib_main_menu_nav_link {
        min-width: 84px;
    }
}

@media only screen and (min-width: 680px) {
    .ib_balances {
        min-width: 364px;
        max-width: 364px;
        gap: 2px;
    }

    .ib_balance_wallet {
        gap: 4px;
    }

    .ib_balance_cash {
        flex: 1;
    }

    .ib_balance_deposit_link {
        flex: 1;
    }

    .ib_balance_bonus {
        width: calc(50% - 2px);
    }

    .ib_balance_loyalty {
        width: calc(50% - 2px);
    }
}

@media only screen and (min-width: 960px) {
    .carousel_banner_button {
        display: flex;
    }

    .footer_container_grouped {
        flex-direction: row;
        align-items: initial;
        justify-content: initial;
    }

    .footer_site_links_container {
        width: 50%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-right: 1px solid var(--border-blue);
    }

    .footer_site_links_container_grouped {
        width: calc(50% - 24px);
        align-items: center;
        justify-content: center;
    }

    .footer_site_links_nav {
        align-items: center;
        justify-content: center;
    }

    .footer_site_links_container_grouped.social_media {
        width: 100%;
    }

    .footer_deposit_options_container {
        width: 50%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: initial;
        justify-content: initial;
    }
}

@media only screen and (min-width: 1200px) {
    body {
        height: 100vh;
        overflow: hidden;
    }

    .app_wrapper {
        gap: 16px;
    }

    .ib_toggle_drawer_button {
        display: none;
    }

        .ib_toggle_drawer_button[data-display="true"] {
            display: flex;
        }

    .light .ib_logo_link {
        width: 108px;
        height: 76px;
    }

    .dark .ib_logo_link {
        width: 108px;
        height: 76px;
    }

    .header_nav_link {
        min-width: 120px;
    }

    .logged-out.contact_link {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 8px;
    }

    .logged-in.contact_link,
    .logged-in.deposits_link,
    .logged-in.account_link {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 8px;
    }

    .front_notification {
        right: -10px;
    }

    .app_container {
        gap: 16px;
    }

    .install_pwa_container {
        display: none;
    }

    .sticky_scroll_banner_desktop {
        position: fixed;
        bottom: 0;
        left: 50%;
        width: calc(100% - 640px);
        min-height: 72px;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--surface-1);
        z-index: 1000;
        transform: translate(-50%, 0px);
    }

        .sticky_scroll_banner_desktop .stickey_scroll_banner {
            justify-content: center;
        }

        .sticky_scroll_banner_desktop .sticky_scroll_banner_text {
            flex: initial;
            font-weight: 600;
        }

    .sticky_scroll_banner_desktop_link {
        width: 120px;
        min-height: 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background-color: var(--primary-blue);
        border: 1px solid var(--primary-blue);
        border-radius: 48px;
    }

        .sticky_scroll_banner_desktop_link:focus,
        .sticky_scroll_banner_desktop_link:active,
        .sticky_scroll_banner_desktop_link:hover {
            background-color: var(--primary-blue-hover);
        }

    .ib_balances {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ib_nav_drawer_overlay {
        position: relative;
        top: initial;
        left: initial;
        max-width: 300px;
        display: flex;
        height: 100svh;
        background-color: transparent;
    }

        .ib_nav_drawer_overlay[data-display="false"] {
            display: none;
        }

    .ib_nav_drawer {
        background-color: transparent;
    }

    .odds_display_settings {
        padding: 0;
    }

    .logged-out.ib_nav_drawer_settings {
        display: none;
    }

    .tote.ib_nav_drawer_settings {
        display: none;
    }

    .close_nav_drawer {
        display: none;
    }

    .ib_nav_drawer_overlay[data-display="false"] .ib_nav_drawer_settings {
        display: flex;
    }

    .ib_nav_drawer_overlay[data-display="false"] .close_nav_drawer {
        display: flex;
    }

    .ib_betslip_overlay {
        position: relative;
        top: initial;
        left: initial;
        max-width: 300px;
        display: flex;
        background-color: transparent;
    }

    .ib_betslip {
        background-color: transparent;
    }

    .betslip_header {
        flex-direction: row;
    }

    .betslip_title {
        flex-direction: row;
    }

    .close_betslip_button {
        display: none;
    }

    .remove_all_bets_link {
        flex-direction: row;
    }

    .ib_bottom_bar {
        display: none;
    }

    .ib_nav_drawer_menu {
        height: 100svh;
    }

    .ib_betslip {
        height: 100svh;
    }

    main {
        height: 100svh;
    }

    footer {
        background-color: transparent;
    }
}
