/** Default styling - mobile portrait mode **/

:root {
    --game-menu-size: 50px;
    --game-menu-landscape-size: 58px;
}

/* Menu components */
#gameMenu {
    height: calc(var(--game-menu-size) - var(--game-menu-border-padding));
    width: 100%;
    position: absolute;
}

#gameMenu * {
    box-sizing: border-box;
}

.gameMenuButtons {
    width: 100%;
    height: var(--game-menu-size);
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.gameMenuItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: inherit;
    cursor: pointer;
    background: var(--spk-site-game-nav-item-background-color-default);
    color: var(--spk-site-game-nav-item-text-color-default);
    position: relative;
}

.gameMenuItem.gameMenu-homeButton {
    text-decoration: none;
}

.gameMenuItem-icon {
    margin: 0 auto;
}

.hamburger-menu-icon,
.hamburger-menu-close {
    color: var(--spk-site-game-drawer-header-icon-color-primary);
    display: inline-block;
    display: flex;
    align-items: center;
}

.hamburger-menu-close {
    position: absolute;
    right: 12px;
    cursor: pointer;
}

.hamburger-sub-menu-header .hamburger-menu-icon {
    cursor: pointer;
}

.gameMenuItem-text {
    margin: 0 auto;
}

.gameMenuItem-active, .gameMenuItem:hover {
    background: var(--spk-site-game-nav-item-background-color-active);
    color: var(--spk-site-game-nav-item-text-color-active);
}

.hamburger-menu-wrapper,
.quickDepositDrawer,
.gameSearchDrawer,
.gameDrawer {
    z-index: 10;
    width: 100%;
    bottom: calc(var(--game-menu-size) - var(--game-menu-border-padding));
    position: absolute;
    box-shadow: var(--general-game-page-box-shadow);
    border-top-left-radius: var(--game-drawer-border-radius);
    border-top-right-radius: var(--game-drawer-border-radius);
}

.hamburger-menu-wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--spk-site-game-drawer-body-background-color-primary);
}

.hamburger-menu-wrapper>* {
    width: 100%;
}

.quickDepositDrawer iframe,
.gameSearchDrawer iframe {
    width: 100%;
    border-top-left-radius: var(--game-drawer-border-radius);
    border-top-right-radius: var(--game-drawer-border-radius);
    position: absolute;
    bottom: 0;
    border: none;
}

.gameDrawer {
    padding: 16px;
    background: var(--spk-site-game-drawer-body-background-color-primary);
}

.gameDrawerTitle {
    color: var(--spk-site-game-drawer-body-header-text-color-primary);
    margin: 0 0 8px 0;
    font-size: 12px;
}

.gameDrawerContent {
    font-size: 12px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    color: var(--spk-site-game-drawer-body-text-color-primary);
    background: var(--spk-site-game-drawer-body-background-color-primary);
    max-height: 180px;
}

.game-info-wrapper {
    padding: 16px;
    background: var(--spk-site-game-drawer-body-background-color-primary);
}

.gameDrawer > .game-info-wrapper {
    padding: 0;
    border-top-left-radius: var(--game-drawer-border-radius);
    border-top-right-radius: var(--game-drawer-border-radius);
}

/* Move overflow scroll to parent div when hamburger menu is used*/
.game-info-wrapper .gameDrawerContent {
    overflow-y: unset;
    max-height: unset;
}

.game-info-wrapper {
    overflow-y: scroll;
    max-height: 202px;
}

.gameDrawerContent p {
    margin: 0 0 10px;
    font-size: 12px;
}

.gameDrawerContent a {
    color: var(--spk-site-game-drawer-header-link-color-default);
    font-size: 12px;
}

.gameDrawerContent h2 {
    margin-top: 14px;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 19.6px;
    color: var(--spk-site-game-drawer-body-header-text-color-primary);
}

.gameDrawerContent h3 {
    margin-top: 14px;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 16.8px;
    color: var(--spk-site-game-drawer-body-header-text-color-primary);
}
.gameDrawerContent ul, 
.gameDrawerContent ol {
    margin-left: 10px;
    list-style: none;
}

.gameDrawerContent ul,
.gameDrawerContent ol,
.gameDrawerContent ul li::before,
.gameDrawerContent ol li::before {
    color: var(--spk-site-game-drawer-body-text-color-primary);
}

.gameDrawerContent ul li::before {
    content: "•  ";
    margin-right: 8px;
}

.gameDrawerContent ol li::before {
    margin-left: 8px;
    left: -38px;
}

.gameDrawerContent ol li {
    margin-left: 16px;
}

.gameDrawerContent table {
    margin: 15px 0 15px 0;
    width: 300px;
    table-layout: fixed;
}

.gameDrawerContent th, td {
    padding: 8px;
    text-align: left;
    overflow: auto;
}

.gameDrawerContent tr:nth-child(even), .gameDrawerContent thead { 
    background: var(--spk-site-game-drawer-body-text-color-primary);
}

.list-option {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: var(--hamburger-menu-border);
}

#voucher-teleport-target:not(:empty) {
    border-top: var(--hamburger-menu-border);
    display: block;
}

.hamburger-menu-header,
.hamburger-sub-menu-header {
    background-color: var(--spk-site-game-drawer-header-background-color-primary);
    display: flex;
    align-items: center;
    padding: 12px;
    height: 48px;
}

.header-option {
    flex: 1;
    display: flex;
    align-items: center;
}

.list-option-title {
    margin: 0 0 0 4px;
    color: var(--spk-site-game-drawer-header-link-color-default);
}

.list-option-title,
.hamburger-sub-menu-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-option-link {
    display: flex;
    align-items: center;
}

.hamburger-sub-menu-header {
    justify-content: space-between;
}

.hamburger-sub-menu-header .header-option {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    max-width: 85%;
    font-size: 14px;
}

.hamburger-menu-responsible-gambling-wrapper {
    text-align: center;
    padding: 12px 0;
}

.hamburger-menu-responsible-gambling-wrapper a {
    cursor: pointer;
}

.cash-and-bonus-wrapper {
    background-color: var(--hamburger-menu-border-color);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: var(--hamburger-cash-and-bonus-wrapper-gap);
    border-top: var(--hamburger-menu-border);
}

.cash-and-bonus-title {
    color: var(--spk-site-game-drawer-body-header-text-color-primary);
}

.cash-and-bonus-value {
    color: var(--spk-site-game-drawer-body-text-color-primary);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    font-size: 11px;
    background-color: var(--spk-site-game-drawer-body-background-color-primary);
}

.hamburger-menu-title,
.hamburger-sub-menu-title {
    color: var(--spk-site-game-drawer-header-text-color-primary);
    justify-content: center;
}

.hamburger-menu-home {
    color: var(--spk-site-game-drawer-header-link-color-default);
    margin-left: 5px;
}

.hamburger-menu-home:hover {
    color: var(--spk-site-game-drawer-header-link-color-hover);
}

.hamburger-menu-home-link {
    display: flex;
}

.game-favourite-input {
    display: none;
}


@media screen and (min-width: 812px) and (max-aspect-ratio: 16/9) {
    .gameMenuItem {
        flex-direction: row;
        -webkit-user-select: none;
        /* Safari */
        -moz-user-select: none;
        /* Firefox */
        /* IE10+/Edge */
        user-select: none;
        /* Standard */
        width: 100%;
    }

    .gameMenuItem-icon {
        margin: auto 8px auto -8px;
    }

    .gameMenuItem-text {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .gameMenuItem-icon,
    .gameMenuItem-text {
        order: unset;
    }
}

/** Landscape **/
@media screen and (max-width: 1023px) and (min-aspect-ratio: 16/9) {
    #gameMenu {
        height: 100%;
        width: var(--game-menu-landscape-size);
        right: 0;
        bottom: 0;
        padding-left: var(--game-menu-border-padding);
    }

    /* Make standard after darksaber */
    .page__content #gameMenu {
        height: calc(100% - var(--sgabarHeight));
    }

    .gameMenuButtons {
        height: 100%;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .gameMenuItem {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .gameMenuItem-icon {
        order: 2;
    }

    .gameMenuItem-text {
        order: 3;
    }

    .cash-and-bonus-wrapper {
        flex-direction: column;
    }

    .flex-direction-multiple-elements {
        flex-direction: row;
    }

    .gameSearchDrawer {
        width: 190px;
    }

    .quickDepositDrawer {
        width: 64vw;
    }

    .hamburger-menu-wrapper,
    .quickDepositDrawer,
    .gameSearchDrawer,
    .gameDrawer {
        right: var(--game-menu-landscape-size);
        height: 100%;
        bottom: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: var(--game-drawer-border-radius);
        box-shadow: var(--general-game-page-box-shadow-landscape);
    }

    .gameDrawer {
        width: 64vw;
        overflow-y: scroll;
    }

    .gameDrawerContent {
        max-height: unset;
    }

    .hamburger-menu-wrapper {
        width: 50vw;
        min-width: 320px;
        max-height: none;
    }

    .quickDepositDrawer iframe,
    .gameSearchDrawer iframe {
        border-top-right-radius: 0;
        border-bottom-left-radius: var(--game-drawer-border-radius);
        top: 0;
    }

    .gameSearchDrawer iframe {
        height: 100%;
    }

    .game-info-wrapper {
        max-height: unset;
        height: calc(90vh - 44px);
        /* 44px = height of menu header */
    }
}

/** Bigger devices - desktop, etc. **/
@media screen and (min-width: 1024px) {
    #gameMenu {
        justify-content: center;
        width: 768px;
        position: relative;
        margin: 0 auto;
    }

    .gameMenuItem {
        flex-direction: row;
        -webkit-user-select: none;
        /* Safari */
        -moz-user-select: none;
        /* Firefox */
        /* IE10+/Edge */
        user-select: none;
        /* Standard */
        width: 100%;
    }

    .gameMenuItem-icon {
        margin: auto 8px auto -8px;
    }

    .gameMenuItem-text {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .gameMenuItem-icon,
    .gameMenuItem-text {
        order: unset;
    }

    .gameMenuButtons {
        box-shadow: var(--game-menu-box-shadow);
        border-radius: var(--game-menu-border-radius-desktop);
    }

    .gameMenuButtons .gameMenuItem:nth-child(1) {
        border-top-left-radius: var(--game-menu-border-radius-desktop);
        border-bottom-left-radius: var(--game-menu-border-radius-desktop);
    }

    .gameMenuButtons .gameMenuItem:last-child {
        border-top-right-radius: var(--game-menu-border-radius-desktop);
        border-bottom-right-radius: var(--game-menu-border-radius-desktop);
    }

    .gameMenuButtons.active .gameMenuItem:nth-child(1) {
        border-top-left-radius: 0;
    }

    .gameMenuButtons.active .gameMenuItem:last-child {
        border-top-right-radius: 0;
    }

    .thrilltechIsActive .gameMenuButtons .gameMenuItem:nth-child(1) {
        border-top-left-radius: 0;
    }

    .thrilltechIsActive .gameMenuButtons .gameMenuItem:last-child {
        border-top-right-radius: 0;
    }

    .cash-and-bonus-wrapper {
        flex-direction: row;
    }

    .quickDepositDrawer {
        width: 480px;
    }

    .gameSearchDrawer,
    .gameDrawer,
    .hamburger-menu-wrapper {
        width: 768px;
    }

    .gameSearchDrawer iframe {
        height: 190px;
    }

    .quickDepositDrawer iframe,
    .gameSearchDrawer iframe {
        box-shadow: var(--general-game-page-box-shadow);
        padding: 0;
    }

    .hamburger-sub-menu-header .header-option {
        max-width: 92%;
    }
}

/*# sourceMappingURL=gameMenuStyle.caae4129d4dc56886bb5.css.map*/