﻿:root {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --light: #ffffff;
    --grey: #f2f2f2;
    --dark: #081535;
    --green: #388E3C;
    --red: #D32F2F;
    --primary-orange: #ff9900;
    --primary-blue: #00bdd4;
    --primary-green: #8cd140;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
    outline: none;
    letter-spacing: 0.8px;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    /*height: 100vh;
    overflow: hidden;*/
    display: block;
}

.cx-webChat-btn-publicIframe {
    visibility: hidden !important;
    bottom: -100% !important;
    right: -100% !important;
}

.cx-webChat-nudge-publicIframe, .cx-omni-publicIframe {
    z-index: -2147483647 !important;
}

#ib-loader {
    width: 50px;
    height: 50px;
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 50px 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;
    border-bottom: 1px solid var(--grey);
}

.ib_logo_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 4px;
}

.ib_toggle_drawer_button {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: transparent;
    border: 2px solid var(--dark);
    border-radius: 4px;
    cursor: pointer;
}

.drawer_line {
    width: 100%;
    max-width: 24px;
    height: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    border-radius: 48px;
}

.ib_logo_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ib_logo {
    width: 100%;
    max-width: 96px;
    height: auto;
}

.header_nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
}

.header_nav_link {
    width: 84px;
    height: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--grey);
    border: 2px solid transparent;
    border-radius: 4px;
}

.logged-out.header_nav_link.contact_link {
    display: none;
}

.logged-in.header_nav_link.contact_link,
.logged-in.header_nav_link.deposits_link,
.logged-in.header_nav_link.account_link {
    display: none;
}

.header_nav_link.login_link {
    background-color: var(--primary-green);
}

    .header_nav_link.login_link:focus,
    .header_nav_link.login_link:active {
        background-color: var(--light);
        border-color: var(--primary-green);
        transition: background-color 0.2s ease-out;
    }

.header_nav_link.register_link {
    background-color: var(--primary-blue);
}

    .header_nav_link.register_link:focus,
    .header_nav_link.register_link:active {
        background-color: var(--light);
        border-color: var(--primary-blue);
        transition: background-color 0.2s ease-out;
    }

.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;
    background-color: var(--grey);
    gap: 2px;
    padding: 0 4px;
    border-radius: 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;
}

.ib_balance_cash_refresh {
    all: unset;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
}

    .ib_balance_cash_refresh[disabled="disabled"] {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .ib_balance_cash_refresh img {
        width: 100%;
        max-width: 20px;
        height: auto;
        display: block;
    }

.ib_balance_cash_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.ib_balance_cash_amount {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.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-radius: 4px;
    text-decoration: none;
}

.ib_balance_deposit_link_text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.ib_balance_deposit_link_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .ib_balance_deposit_link_icon img {
        width: 100%;
        max-width: 20px;
        height: auto;
        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: 14px;
    font-weight: bold;
    color: var(--light);
    background-color: var(--red);
    border-radius: 4px;
    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;
    background-color: var(--grey);
    gap: 2px;
    padding: 0 4px;
    border-radius: 4px;
}

.ib_balance_loyalty_link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.ib_balance_loyalty_amount {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.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;
    background-color: var(--grey);
    gap: 2px;
    padding: 0 4px;
    border-radius: 4px;
}

.ib_balance_bonus_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.5;
}

.ib_balance_bonus_button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: transparent;
    border: none;
    opacity: 0.5;
    cursor: pointer;
}

    .ib_balance_bonus_button[data-active="true"] img:nth-child(1) {
        transform: rotate(-180deg);
        transition: 0.2s ease-out;
    }

    .ib_balance_bonus_button[data-active="false"] img:nth-child(1) {
        transition: 0.2s ease-out;
    }

.wiggle {
    display: inline-block;
    animation: wiggle 0.5s ease-in-out infinite;
}

@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: -124px;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    background-color: var(--light);
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    z-index: 9;
}

    .ib_balance_bonus_container::after {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid var(--primary-green);
        content: " ";
        position: absolute;
        top: -12px;
        right: 4px;
        margin-left: auto;
        margin-right: auto;
    }

    .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: 1px;
    background-color: var(--grey);
}

.ib_balance_bonus_title_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.ib_balance_bonus_amount_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.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: rgba(255, 255, 255, 0.75);
    z-index: 2;
}

.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(--dark);
    border-radius: 16px;
}

.reverse_withdrawals_dialog_title {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: var(--light);
    text-align: center;
}

.reverse_withdrawals_dialog_text {
    font-size: 16px;
    line-height: 24px;
    color: var(--light);
    text-align: center;
}

    .reverse_withdrawals_dialog_text a {
        color: var(--light);
        text-decoration: underline;
    }

.reverse_withdrawals_dialog_amount {
    font-weight: bold;
}

.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 {
    all: unset;
    width: calc(50% - 48px);
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: var(--dark);
    background-color: var(--light);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .reverse_withdrawals_dialog_button.close:focus,
    .reverse_withdrawals_dialog_button.close:active {
        border-color: var(--primary-green);
        transition: border-color 0.2s ease-out;
    }

    .reverse_withdrawals_dialog_button.proceed {
        background-color: var(--red);
        color: var(--light);
    }

        .reverse_withdrawals_dialog_button.proceed:focus,
        .reverse_withdrawals_dialog_button.proceed:active {
            color: var(--red);
            background-color: var(--light);
            border-color: var(--red);
            transition: background-color 0.2s ease-out;
        }

.install_pwa_container {
    width: 100%;
    min-height: 56px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.install_pwa {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 4px;
    background-color: var(--grey);
    border-radius: 4px;
}

.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: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
}

    .install_pwa_icon img {
        width: 34px;
        height: 34px;
    }

.install_pwa_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
}

.install_pwa_button {
    width: 72px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    background-color: var(--light);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .install_pwa_button:nth-child(1) {
        border-color: var(--dark);
    }

    .install_pwa_button:nth-child(2) {
        background-color: var(--primary-green);
    }

.global_alert_message {
    width: 100%;
    display: block;
    padding: 8px;
}

.global_alert_message_text {
    width: 100%;
    display: block;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.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;
    background-color: rgba(8, 21, 53, 0.95);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease-in-out;
}

.stickey_scroll_banner {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.sticky_scroll_banner_text {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--light);
}

.sticky_scroll_banner_mobile_link {
    min-height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--primary-green);
    border-radius: 4px;
    transition: 0.2s ease-in-out;
}

.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;
    align-items: flex-start;
}

.ib_nav_drawer_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 2;
}

.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;
    padding: 2px;
    background-color: var(--dark);
    border-top-right-radius: 4px;
    overflow: scroll;
    /* -webkit-overflow-scrolling: touch; */
}

.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: 8px;
    padding: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.odds_display_settings {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px 0 0;
}

.odds_display_button {
    all: unset;
    width: 100%;
    min-height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light);
    border: 2px solid transparent;
    border-radius: 48px;
    cursor: pointer;
}

    .odds_display_button:focus,
    .odds_display_button:active {
        border-color: var(--primary-orange);
        transition: background-color 0.2s ease-out;
    }

.odds_display_button_text {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.odds_display_button_icon {
    width: 100%;
    width: 24px;
    height: auto;
    display: block;
    margin-right: 8px;
}

.odds_display_menu {
    position: absolute;
    top: 52px;
    width: calc(100% - 32px);
    height: 100px;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--light);
    border: 2px solid var(--primary-orange);
    border-radius: 16px;
    z-index: 2;
}

    .odds_display_menu::after {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid var(--primary-orange);
        content: " ";
        position: absolute;
        top: -12px;
        left: 12px;
        margin-left: auto;
        margin-right: auto;
    }

    .odds_display_menu[data-active="true"] {
        display: flex;
    }

.odds_display_menu_item {
    all: unset;
    width: 50%;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    background-color: var(--grey);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .odds_display_menu_item:focus,
    .odds_display_menu_item:active {
        border-color: var(--primary-green);
        transition: background-color 0.2s ease-out;
    }

.close_nav_drawer {
    all: unset;
    width: 32px;
    height: 32px;
    display: flex;
    flex: auto 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 50%;
    cursor: pointer;
}

.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: 1px;
    overflow: scroll;
    /* -webkit-overflow-scrolling: touch;
    transform: translateZ(0);*/
}

.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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    text-decoration: none;
}

    .ib_nav_drawer_menu_link:last-child {
        border-bottom: none;
    }

    .ib_nav_drawer_menu_link:focus,
    .ib_nav_drawer_menu_link:active {
        background-color: var(--light);
        border-radius: 4px;
        transition: 0.2s ease-out;
    }

    .ib_nav_drawer_menu_link[data-active="true"] {
        background-color: var(--light);
        border-radius: 4px;
    }

.ib_nav_drawer_menu_link_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .ib_nav_drawer_menu_link_icon img {
        width: 100%;
        max-width: 32px;
        height: auto;
        display: block;
    }

.ib_nav_drawer_menu_link_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--light);
}

.ib_nav_drawer_menu_link:focus .ib_nav_drawer_menu_link_text,
.ib_nav_drawer_menu_link:active .ib_nav_drawer_menu_link_text {
    font-weight: 600;
    color: var(--dark);
}

.ib_nav_drawer_menu_link[data-active="true"] .ib_nav_drawer_menu_link_text {
    font-weight: 600;
    color: var(--dark);
}

#savvySaverDrawerMenuLink {
    display: none;
}

main::-webkit-scrollbar {
    display: none;
}

main {
    width: 100%;
    /*height: 100svh;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

.ib_main_menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ib_main_menu_nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    padding: 4px;
}

.ib_main_menu_nav_link {
    width: calc(20% - 1.6px);
    min-height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    text-decoration: none;
    background-color: var(--dark);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .ib_main_menu_nav_link:focus,
    .ib_main_menu_nav_link:active {
        background-color: var(--light);
        border-color: var(--dark);
        transition: border-color 0.2s ease-out;
    }

    .ib_main_menu_nav_link[data-active="true"] {
        background-color: var(--light);
        border-color: var(--dark);
    }

.ib_main_menu_nav_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    .ib_main_menu_nav_icon img {
        width: 100%;
        max-width: 28px;
        height: auto;
    }

.ib_main_menu_nav_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--light);
    text-align: center;
}

.ib_main_menu_nav_link:focus .ib_main_menu_nav_text,
.ib_main_menu_nav_link:active .ib_main_menu_nav_text {
    color: var(--dark);
}

.ib_main_menu_nav_link[data-active="true"] .ib_main_menu_nav_text {
    color: var(--dark);
}

#savvySaverMenuNavLink {
    display: none;
}

.carousel_banner_wrapper {
    width: 100%;
    display: none;
    flex-direction: column;
}

.carousel_banner_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 4px;
    background-color: var(--light);
}

.carousel_banner_control_left {
    width: 36px;
    height: 36px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border: 2px solid var(--dark);
    border-radius: 50%;
    cursor: pointer;
}

    .carousel_banner_control_left img {
        width: 24px;
        height: 24px;
        display: flex;
    }

.carousel_banner::-webkit-scrollbar {
    display: none;
}

.carousel_banner {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.carousel_banner_link {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    scroll-snap-align: center;
}

.carousel_banner_link_image {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.carousel_banner_link_text {
    width: 100%;
    max-width: 60ch;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px;
}

.carousel_banner_link_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--dark);
}

.carousel_banner_link_description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
}

.carousel_featured .carousel_banner_link_text {
    display: none;
}

.carousel_featured .carousel_banner_link_title {
    display: none;
}

.carousel_featured .carousel_banner_link_description {
    display: none;
}

.carousel_banner_control_right {
    width: 36px;
    height: 36px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border: 2px solid var(--dark);
    border-radius: 50%;
    cursor: pointer;
}

    .carousel_banner_control_right img {
        width: 24px;
        height: 24px;
        display: flex;
    }

.ib_betslip_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: end;
    background-color: rgba(255, 255, 255, 0.75);
    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;
    background-color: var(--dark);
    border-top-left-radius: 4px;
    overflow: scroll;
}

.ib_betslip_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.betslip_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    border-bottom: 1px solid var(--light);
}

.betslip_title {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}

.betslip_title_icon {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_title_icon img {
        width: 100%;
        max-width: 32px;
        height: auto;
        display: block;
    }

.betslip_title_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
}

.betslip_counter {
    padding-left: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-green);
}

.betslip_title_actions {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.remove_all_bets_button {
    display: none;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

    .remove_all_bets_button[disabled="disabled"] {
        pointer-events: none;
        opacity: 0.5;
    }

.remove_all_bets_button_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
}

.remove_all_bets_button_icon {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
}

.close_betslip_button {
    all: unset;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    background-color: var(--light);
    border-radius: 50%;
    cursor: pointer;
}

.betslip_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
}

.betslip_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
}

.betslip_info_group {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.betslip_min_bet {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.betslip_min_bet_text {
    font-size: 14px;
    font-weight: 400;
    color: var(--light);
}

.betslip_min_bet_amount {
    font-size: 14px;
    font-weight: 400;
    color: var(--light);
}

.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: 14px;
    font-weight: 400;
    color: var(--light);
}

.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;
}

.betslip_odds_boost_text {
    font-size: 14px;
    font-weight: 400;
    color: var(--light);
}

.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: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_multiple_indicator_icon img {
        width: 100%;
        max-width: 24px;
        height: auto;
        display: block;
    }

.betslip_multiple_indicator_text {
    font-size: 12px;
    font-weight: 400;
    color: var(--light);
}

.betslip_ticket_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.betslip_ticket {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px;
    background-color: var(--light);
    border-radius: 4px;
}

.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;
    border-bottom: 2px solid var(--grey);
}

.betslip_ticket_header_group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.betslip_ticket_header_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.betslip_ticket_event {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.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;
    background-color: vaR(--grey);
    border-radius: 4px;
}

.sport_bonus_selection_checkbox {
    width: 20px;
    height: 20px;
}

.sport_bonus_selection_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

.delete_betslip_ticket {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
}

    .delete_betslip_ticket[disabled="disabled"] {
        pointer-events: none;
        opacity: 0.5;
    }

.betslip_ticket_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0;
    border-bottom: 2px solid var(--grey);
}

.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: 400;
    line-height: 1.2;
    color: var(--dark);
}

.betslip_ticket_event_date {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
}

.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 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.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(--grey);
    border-radius: 4px;
}

.betslip_ticket_odds_text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.betslip_ticket_odds_value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.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(--grey);
    border-radius: 4px;
}

.betslip_ticket_profit_text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.betslip_ticket_profit_amount {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.betslip_ticket_profit_currency {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.betslip_ticket_profit_value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.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;
    background-color: var(--grey);
    border-radius: 4px;
}

.single_betslip_ticket_number {
    width: 100%;
    display: none;
    padding: 0 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 2px;
}

.single_betslip_ticket_message_text {
    width: 100%;
    display: none;
    padding: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 2px;
}

    .single_betslip_ticket_message_text a {
        font-size: inherit;
        color: inherit;
    }

.single_betslip_inrunning_message {
    width: 100%;
    display: none;
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 2px;
}

.single_betslip_inrunning_message_text {
    width: 100%;
    display: none;
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 2px;
}

.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;
        opacity: 0.5;
    }

.betslip_ticket_stake_button {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    color: var(--dark);
    background-color: var(--grey);
    border: 2px solid var(--dark);
    border-radius: 50%;
    cursor: pointer;
}

.betslip_ticket_stake_control {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
}


.betslip_ticket_stake_currency {
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    color: var(--dark);
}

.betslip_ticket_stake_input {
    width: 100%;
    height: 36px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--light);
    border: 2px solid var(--dark);
    border-radius: 4px;
}

.place_single_bet_button {
    flex: 1;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    background-color: var(--primary-green);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .place_single_bet_button[disabled="disabled"] {
        pointer-events: none;
        opacity: 0.5;
    }

.betslip_ticket_multiple_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.betslip_ticket_multiple_title {
    padding: 8px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
}

.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;
    background-color: var(--grey);
    border-radius: 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(--light);
    border-radius: 4px;
}

.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;
    border-bottom: 2px solid var(--grey);
}

.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(--grey);
    border-radius: 4px;
}

.betslip_ticket_multiple_odds_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.betslip_ticket_multiple_odds_value {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.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(--grey);
    border-radius: 4px;
}

.betslip_ticket_multiple_profit_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--dark);
}

.betlsip_ticket_multiple_profit_amount {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.betslip_ticket_multiple_profit_currency {
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    color: var(--dark);
}

.betslip_ticket_multiple_profit_value {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.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: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    color: var(--dark);
    background-color: var(--grey);
    border: 2px solid var(--dark);
    border-radius: 50%;
    cursor: pointer;
}

.betslip_ticket_multiple_stake_control {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
}

.betslip_ticket_multiple_stake_currency {
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    color: var(--dark);
}

.betslip_ticket_multiple_stake_input {
    width: 100%;
    height: 36px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    color: var(--dark);
    background-color: var(--light);
    border: 2px solid var(--dark);
    border-radius: 4px;
}

.place_multiple_bet_button {
    flex: 1;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    color: var(--dark);
    background-color: var(--primary-green);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .place_multiple_bet_button[disabled="disabled"] {
        pointer-events: none;
        opacity: 0.5;
    }

.multiple_betslip_ticket_message {
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 4px;
    background-color: var(--grey);
    border-radius: 4px;
}

.multiple_betslip_ticket_number {
    width: 100%;
    display: none;
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 2px;
}

.multiple_betslip_ticket_message_text {
    width: 100%;
    display: none;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 2px;
}

    .multiple_betslip_ticket_message_text a {
        font-size: inherit;
        color: inherit;
    }

.betslip_win_limits {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.betslip_win_limits_button {
    all: unset;
    width: calc(100% - 20px);
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    background-color: var(--light);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .betslip_win_limits_button[data-active="true"] {
        border-color: var(--primary-orange);
    }

    .betslip_win_limits_button:focus,
    .betslip_win_limits_button:active {
        border-color: var(--primary-orange);
        transition: border-color 0.2s ease-out;
    }

.betslip_win_limits_button_text {
    font-size: 14px;
    font-weight: 600;
}

.betslip_win_limits_button_icon {
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .betslip_win_limits_button_icon img {
        width: 100%;
        max-width: 24px;
        height: auto;
        display: block;
    }

.betslip_win_limits_button[data-active="true"] .betslip_win_limits_button_icon {
    transform: rotate(-180deg);
    transition: 0.2s ease-out;
}

.betslip_win_limits_button[data-active="false"] .betslip_win_limits_button_icon {
    transition: 0.2s ease-out;
}

.betslip_win_limits_list {
    width: 100%;
    min-height: 100px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 4px;
}

    .betslip_win_limits_list[data-active="true"] {
        display: flex;
    }

.betslip_win_limits_list_message {
}

.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;
    border-bottom: 2px solid var(--grey);
}

.betslip_win_limits_list_title {
    width: 33.33%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--dark);
}

.betslip_win_limits_list_body {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    padding: 4px;
}

.betslip_win_limits_list_item {
    width: calc(33.33% - 2px);
    display: flex;
    flex-direction: column;
    padding: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    background-color: var(--grey);
    border-radius: 4px;
}

.betslip_notice_board {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.betslip_notice {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--light);
    border-radius: 4px;
}

.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_text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: var(--dark);
}

.betslip_notice_msg_link {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--primary-green);
    border: 2px solid transparent;
    border-radius: 4px;
}

    .betslip_notice_msg_link:focus,
    .betslip_notice_msg_link:active {
        background-color: var(--light);
        border-color: var(--primary-green);
        transition: 0.5s ease-in-out;
    }

    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4px 2px;
    }

.footer_container {
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    background-color: #081535;
    border: none;
    border-radius: 4px;
}

.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: 1px;
    display: block;
    margin: 12px auto;
    background-color: #ffffff;
}

.footer_disclaimer_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
}

.footer_disclaimer_icon {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
    border: 2px solid var(--red);
    border-radius: 50%;
}

.footer_disclaimer_text {
    width: 100%;
    max-width: 600px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: var(--light);
}

    .footer_disclaimer_text a strong {
        text-decoration: underline;
    }

    .footer_disclaimer_text span {
        font-size: 14px;
        line-height: 22px;
        color: var(--light);
    }

    .footer_disclaimer_text strong {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        color: var(--light);
    }

.footer_site_links_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 12px;
}

.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-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
    text-align: center;
}

.footer_site_links_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .footer_site_links_nav a {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        text-decoration: underline !important;
        color: var(--light);
        text-align: center;
        cursor: pointer;
    }

        .footer_site_links_nav a:focus,
        .footer_site_links_nav a:active {
            font-weight: 600;
            transition: font-weight 0.2s ease-out;
        }

    .footer_site_links_nav.social_media {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
    }

        .footer_site_links_nav.social_media a {
            width: 48px;
            height: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 2px solid transparent;
            border-radius: 50%;
            cursor: pointer;
        }

            .footer_site_links_nav.social_media a:focus,
            .footer_site_links_nav.social_media a:active {
                border: 2px solid var(--primary-blue);
                transition: border 0.2s ease-out;
            }

            .footer_site_links_nav.social_media a img {
                padding: 4px;
            }

.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 !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
}

.footer_deposit_options_container a {
    width: calc(33.33% - 6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #ffffff;
    background-color: #ffffff;
    border: 2px solid #081535;
    border-radius: 48px;
    cursor: pointer;
}

    .footer_deposit_options_container a img {
        width: 100%;
        max-width: 180px;
        height: auto;
        max-height: 50px;
        border-radius: 48px;
    }

    .footer_deposit_options_container a:focus,
    .footer_deposit_options_container a:active {
        border: 2px solid #8cd140;
        transition: border ease-in-out 0.2s;
    }

.footer_copyright_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
}

.footer_copyright_text {
    width: 100%;
    max-width: 600px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
}

    .footer_copyright_text a {
        color: var(--light);
    }

        .footer_copyright_text a strong {
            text-decoration: underline;
        }

    .footer_copyright_text strong {
        font-size: 14px;
        line-height: 22px;
        color: #ffffff;
    }

.ib_bottom_bar {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 3;
}

.ib_bottom_bar_nav {
    width: 100%;
    min-height: 72px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    background-color: var(--light);
    border: none;
    border-top: 1px solid var(--grey);
    border-radius: 0;
}

.ib_bottom_bar_nav_link {
    min-width: calc(33.33% - 0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 0;
    text-decoration: none;
    border: 1px solid transparent;
}

.logged-in.ib_bottom_bar_nav_link {
    min-width: calc(25% - 0px);
    flex: 1;
}

.ib_bottom_bar_nav_link.register_link {
    background-color: var(--primary-blue);
}

.ib_bottom_bar_nav_link_icon {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
}

    .ib_bottom_bar_nav_link_icon img {
        width: 100%;
        max-width: 24px;
        height: auto;
        display: block;
    }

.ib_bottom_bar_nav_link_text {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: var(--dark);
}

.ib_bottom_bar_nav_button {
    position: relative !important;
    all: unset;
    min-width: calc(33.33% - 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 0;
    background-color: var(--primary-green);
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

    .ib_bottom_bar_nav_button:focus,
    .ib_bottom_bar_nav_button:active {
        background-color: var(--grey);
        border-color: var(--primary-green);
        transition: background-color 0.2s ease-out;
    }

.betslip_pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background-color: #6fae2b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-animation 1s infinite;
    opacity: 0;
}

@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: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
}

    .ib_bottom_bar_nav_button_icon img {
        width: 100%;
        max-width: 24px;
        height: auto;
        display: block;
    }

.ib_bottom_bar_nav_button_text {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--dark);
}

.betslip_mobile_counter {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--dark);
}

.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;
    padding: 16px;
}

.error {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
    border: 2px solid var(--grey);
    border-radius: 8px;
}

.error_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: var(--dark);
}

.error_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: var(--dark);
}

.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-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--grey);
    border: 2px solid transparent;
    border-radius: 4px;
}

    .error_link:focus,
    .error_link:active {
        background-color: var(--light);
        border-color: var(--dark);
        transition: 0.2s ease-out;
    }

.testimonial_shorts_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 3;
}

.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-size: 18px !important;
    font-weight: bold !important;
    font-style: italic;
    color: #081535;
}

.testimonial_shorts_close {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: bold !important;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial_shorts_progress {
    width: 100%;
    min-height: 4px;
    visibility: hidden;
    margin: 8px 0 4px 0;
    background-color: #f2f2f2;
    border-radius: 48px;
}

.testimonial_shorts_progress_line {
    width: 100%;
    min-height: 4px;
    background-color: #081535;
    border-radius: 48px;
    opacity: 0.2;
}

.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;
    background-color: transparent;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    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-size: 18px;
    font-weight: bold !important;
    text-decoration: none;
    color: #081535;
    background-color: rgba(0, 174, 219, 1);
    border-radius: 8px;
}

.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: rgba(255, 255, 255, 0.95);
    transition: 0.3s ease-in-out;
    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(--light);
    border: 2px solid var(--green);
    border-radius: 16px;
    overflow-y: auto;
}

.xmas_delivery_model_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.xmas_delivery_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.xmas_delivery_title {
    font-size: 24px;
    font-weight: 900;
    color: var(--green);
}

.xmas_delivery_description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
}

.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;
    border-radius: 16px;
}

.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;
    opacity: .5;
}

.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-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--light);
    border: 2px solid var(--dark);
    border-radius: 4px;
    cursor: pointer;
}

.xmas_delivery_cta_2 {
    width: 50%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    cursor: pointer;
}

.xmas_delivery_cta_3 {
    width: 50%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    cursor: pointer;
}

.xmas_delivery_cta_4 {
    width: 50%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    cursor: pointer;
}

.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 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    padding: 8px 4px;
}

.dd_form_control_input {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    background-color: var(--grey);
    border: none;
    border-radius: 4px;
}

.dd_form_control_error {
    display: none;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
}

@media only screen and (min-width: 420px) {
    .carousel_banner_link_image {
        height: 200px;
    }
}

@media only screen and (min-width: 540px) {
    .cx-webChat-publicIframe {
        top: 4px !important;
        right: 4px !important;
        bottom: 4px !important;
        max-width: 350px !important;
    }
}

@media only screen and (min-width: 680px) {
    .ib_balances {
        min-width: 364px;
        max-width: 364px;
        gap: 4px;
    }

    .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);
    }

    .ib_main_menu_nav_link {
        min-height: 62px;
        padding: 4px;
        gap: 4px;
    }

    .ib_main_menu_nav_icon img {
        max-width: 32px;
    }

    .ib_main_menu_nav_text {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) {   
    .carousel_banner_link {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        align-items: center;
    }

    .carousel_banner_link_image {
        width: 50%;
    }

    .carousel_banner_link_text {
        width: 50%;
    }

    .carousel_featured .carousel_banner_link_text {
        display: flex;
    }

    .carousel_featured .carousel_banner_link_title {
        display: block;
    }

    .carousel_featured .carousel_banner_link_description {
        display: block;
    }
}

@media only screen and (min-width: 960px) {
    .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 #ffffff;
    }

    .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;
    }

    .ib_toggle_drawer_button {
        display: none;
    }

        .ib_toggle_drawer_button[data-display="true"] {
            display: flex;
        }

    .ib_logo {
        max-width: 120px;
    }

    .header_nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 4px;
    }

    .header_nav_link {
        width: 120px;
        height: 48px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        text-decoration: none;
        color: var(--dark);
        background-color: var(--grey);
        border: 2px solid transparent;
        border-radius: 4px;
    }

        .header_nav_link.login_link:hover {
            background-color: var(--light);
            border-color: var(--primary-green);
            transition: 0.2s ease-in-out;
        }

        .header_nav_link.register_link:hover {
            background-color: var(--light);
            border-color: var(--primary-blue);
            transition: 0.2s ease-out;
        }

    .logged-out.header_nav_link.contact_link {
        display: flex;
    }

        .logged-out.header_nav_link.contact_link:hover {
            background-color: var(--light);
            border-color: var(--primary-green);
            transition: 0.2s ease-in-out;
        }

    .logged-in.header_nav_link.contact_link,
    .logged-in.header_nav_link.deposits_link,
    .logged-in.header_nav_link.account_link {
        display: flex;
    }

        .logged-in.header_nav_link.contact_link:hover {
            background-color: var(--light);
            border-color: var(--primary-green);
            transition: 0.2s ease-in-out;
        }

        .logged-in.header_nav_link.deposits_link:hover {
            background-color: var(--light);
            border-color: var(--primary-green);
            transition: 0.2s ease-in-out;
        }

        .logged-in.header_nav_link.account_link:hover {
            background-color: var(--light);
            border-color: var(--primary-green);
            transition: 0.2s ease-in-out;
        }

    .header_nav_link.login_link {
        background-color: var(--primary-green);
    }

        .header_nav_link.login_link:focus,
        .header_nav_link.login_link:active {
            background-color: var(--primary-light);
            border-color: var(--primary-green);
            transition: background-color 0.2s ease-out;
        }

    .header_nav_link.register_link {
        background-color: var(--primary-blue);
    }

        .header_nav_link.register_link:focus,
        .header_nav_link.register_link:active {
            background-color: var(--primary-light);
            border-color: var(--primary-blue);
            transition: background-color 0.2s ease-out;
        }

    .header_nav_link:focus,
    .header_nav_link:active {
        background-color: var(--primary-light);
        border-color: var(--primary-green);
        transition: background-color 0.2s ease-out;
    }

    .header_nav_link_icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .header_nav_link_icon img {
            width: 100%;
            max-width: 36px;
            height: auto;
            display: block;
        }

    .install_pwa_container {
        display: none;
    }

    .sticky_scroll_banner_desktop {
        position: fixed;
        bottom: 0;
        left: 50%;
        width: calc(100% - 610px);
        min-height: 72px;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgba(8, 21, 53, 0.95);
        opacity: 0;
        z-index: 1000;
        transition: 0.5s ease-in-out;
        transform: translate(-50%, 0px);
    }

        .sticky_scroll_banner_desktop .stickey_scroll_banner {
            justify-content: center;
        }

        .sticky_scroll_banner_desktop .sticky_scroll_banner_text {
            flex: initial;
        }

    .sticky_scroll_banner_desktop_link {
        min-height: 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 8px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        text-decoration: none;
        color: var(--dark);
        background-color: var(--primary-green);
        border-radius: 4px;
        transition: 0.2s ease-in-out;
    }

    .ib_balances {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ib_main_menu_nav {
        gap: 2px;
        padding: 0;
    }

    .ib_main_menu_nav_link {
        width: calc(20% - 2.6px);
    }

        .ib_main_menu_nav_link:hover {
            background-color: var(--light);
            border-color: var(--dark);
            transition: 0.2s ease-in-out;
        }

            .ib_main_menu_nav_link:hover .ib_main_menu_nav_text {
                color: var(--dark);
                transition: 0.2s ease-in-out;
            }

    .ib_nav_drawer_overlay {
        position: relative;
        top: initial;
        left: initial;
        max-width: 300px;
        display: flex;
        height: 100svh;
    }

        .ib_nav_drawer_overlay[data-display="false"] {
            display: none;
        }

    .odds_display_settings {
        padding: 0;
    }

    .odds_display_button {
        border-radius: 48px;
    }

    .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 !important;
    }

    .ib_nav_drawer_overlay[data-display="false"] .close_nav_drawer {
        display: flex !important;
    }

    .ib_nav_drawer_menu_link:hover {
        background-color: var(--light);
    }

        .ib_nav_drawer_menu_link:hover .ib_nav_drawer_menu_link_text {
            color: var(--dark);
        }

    .carousel_banner_link:hover {
        border: 2px solid var(--dark);
        border-radius: 8px;
        transition: 0.2s ease-in-out;
    }

    .carousel_banner_control_left {
        display: flex;
    }

        .carousel_banner_control_left[data-hide="true"] {
            display: none !important;
        }

        .carousel_banner_control_right {
            display: flex;
        }

            .carousel_banner_control_right[data-hide="true"] {
                display: none !important;
            }

    .ib_betslip_overlay {
        position: relative;
        top: initial;
        left: initial;
        max-width: 300px;
        display: flex;
    }

    .betslip_header {
        flex-direction: row;
    }

    .betslip_win_limits_button:hover {
        background-color: var(--primary-orange);
        transition: 0.2s ease-in-out;
    }

    .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;
    }

    .betslip_notice_msg_link:hover {
        background-color: var(--light);
        border-color: var(--primary-green);
        transition: 0.5s ease-in-out;
    }

    .footer_site_links_nav a:hover {
        font-weight: 700;
        transition: 0.2s ease-in-out;
    }

    .footer_deposit_options_container a:hover {
        border-color: var(--primary-green);
        transition: 0.2s ease-in-out;
    }
}
