@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(./var.css);


.IHuBt:hover:not(:disabled)._4jRIY:before, .IHuBt:hover:not(:disabled).cWCQr:before, .IHuBt:hover:not(:disabled)._5WeIA:before {
    box-shadow: 0 0 20px 0 rgba(239, 128, 25, .8)
}

.IHuBt:hover:not(:disabled).QYo0J:before {
    box-shadow: 0 0 20px 0 rgba(55, 147, 255, .8)
}

.app-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-wrap: nowrap;
    height: 48px;
    border-radius: var(--borderRadius);
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 32px;
    position: relative
}

.app-button.app-button--small {
    height: 40px;
    min-width: 120px;
    padding: 0
}

.app-button.app-button--main {
    background-color: var(--register-button-background);
    color: var(--register-button-text-color)
}

.app-button.app-button--main:hover {
    background-color: var(--mainActiveColorHover)
}

.app-button.app-button--outline {
    background: var(--login-button-background);
    color: var(--login-button-text-color);
    border: solid 1px var(--login-button-text-color)
}

.app-button.app-button--outline:hover {
    background-color: hsla(0, 0%, 100%, .1);
    border: solid 1px var(--mainActiveColorHover)
}

.app-button.app-button--outline:disabled {
    filter: none;
    background-color: rgba(0, 0, 0, 0);
    border: solid 1px var(--buttonSecondary)
}

.app-button:disabled {
    pointer-events: none;
    background-color: var(--buttonDisabled);
    color: var(--buttonDisabledColor)
}


.custom-banner-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
}

.custom-banner-link {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.custom-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}


@media (min-width: 768px) {
    .custom-banner-img {
        padding-left: 150px;
    }
}

@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);

.text-page {
    width: 90%;
    padding: 20px 0;
    color: var(--textPageText)
}

@media screen and (max-width: 767.99px) {

    .text-page {
        width: 100%;
        padding: 0 35px;
        margin: 30px auto 0 auto
    }
}

@media screen and (max-width: 459px) {
    .text-page {
        padding: 0 var(--mobileSidePadding)
    }
}

p.page-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 500
}

@media screen and (min-width: 768px)and (max-width: 1279px) {
    p.page-text {
        font-size: 16px
    }
}

@media screen and (max-width: 767.99px) {
    p.page-text {
        font-size: 14px
    }
}

@media screen and (max-width: 459px) {
    p.page-text {
        font-size: 12px
    }
}

.heading {
    line-height: 1.1;
    color: var(--mainActiveColor);
    text-align: center;
    margin-top: 0;
    user-select: none;
    text-transform: capitalize;
    font-weight: 700
}

.heading.heading--no-transform {
    text-transform: none
}

@media screen and (min-width: 768.99px) {
    .heading--h1 {
        font-size: 48px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 16px
    }
}

@media screen and (max-width: 767.99px) {
    .heading--h1 {
        margin-bottom: 25px;
        font-size: 36px;
        font-weight: 900
    }
}

@media screen and (max-width: 459px) {
    .heading--h1 {
        font-size: 32px
    }
}

@media screen and (min-width: 768px)and (max-width: 1279px) {
    .heading--h1 {
        font-size: 36px
    }
}

.scrolled-content {
    width: 100%
}

.scrolled-content--y {
    overflow-y: auto;
    background: var(--left-menu-background);
}

@media screen and (min-width: 768.99px) {
    .scrolled-content {
        scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
        scrollbar-width: thin
    }

    .scrolled-content--y::-webkit-scrollbar {
        width: 4px
    }

    .scrolled-content::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0)
    }

    .scrolled-content::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0)
    }

    .scrolled-content:hover:not(.scrolled-content--no-highlight-on-hover) {
        scrollbar-color: rgba(var(--mainActiveColorRgb), 0.4) rgba(0, 0, 0, 0)
    }

    .scrolled-content:hover:not(.scrolled-content--no-highlight-on-hover)::-webkit-scrollbar-thumb {
        background: rgba(var(--mainActiveColorRgb), 0.4)
    }
}

.main-content {
    margin-top: 30px;
    padding-left: 25px;
    padding-right: 25px
}

.main-content.text-page {
    padding-top: 20px;
    padding-bottom: 0
}

@media screen and (min-width: 768.99px) {
    .main-content {
        padding-left: 115px;
        padding-right: 25px
    }

    .menu-active .main-content {
        padding-left: var(--logoSideReservedSpaceLeft)
    }
}

.radio-button__container.content-transparent .radio-button__input:not(:checked) + .radio-button__content {
    background: rgba(0, 0, 0, 0)
}

.form__textarea:placeholder {
    color: var(--inputPlaceholderColor)
}

.games-search-input input:placeholder {
    color: var(--linkInactive)
}

.producer-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0 6px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--producerIconBg);
    display: flex;
    align-items: center;
    box-shadow: 0 0 0 rgba(var(--mainActiveColorRgb), 0.3);
    transition: box-shadow .2s ease
}

.producer-icon img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto
}

.svg-icon {
    display: block;
    position: relative;
    width: 1em;
    height: 1em;
    fill: currentColor;
    font-size: inherit
}

:root {
    --bodyBgColor: #0b0c21;
    --bodyBgColorRbg: 11, 12, 33;
    --white: #ffffff;
    --whiteRgb: 255, 255, 255;
    --lightWhite: #f3f3f3;
    --lightGrayBlue: #242632;
    --yellow: #fde036;
    --red: #e93e3a;
    --redRgb: 233, 62, 58;
    --redHover: #ff5151;
    --grayBlue: #32333f;
    --grayBlueRgb: 50, 51, 63;
    --green: #00982b;
    --black: #000000;
    --darkGrey: #1f2038;
    --darkerGrey: #161828;
    --textActive: #fffaf3;
    --textInactive: #94897a;
    --textIconInactive: #d4c5b1;
    --textIconInactiveRgb: 212, 197, 177;
    --textDark: #13151b;
    --textDarkRgb: 19, 21, 27;
    --iconColor: #727489;
    --textLight: #fec882;
    --linkInactive: #a8a8a8;
    --linkInactiveRgb: 168, 168, 168;
    --checboxTextFontSize: 12px;
    --mainActiveColor: #ffd400;
    --mainActiveColorRgb: 255, 212, 0;
    --mainActiveColorHover: #ffff5c;
    --iconRed: #fa5926;
    --error: #e93e3a;
    --errorDark: rgb(170.0136986301, 22.4383561644, 18.9863013699);
    --errorBg: #ffe8e7;
    --success: #00ab30;
    --warning: #f59300;
    --warningBg: #fff5c1;
    --tournamentPlace1: #e82e23;
    --tournamentPlace2: #ffd400;
    --tournamentPlace3: #0b7ce5;
    --accountSectionsSeparatorColor: #898181;
    --searchInputShadow: #4b4c56;
    --mobileCabinetBg: #191b28;
    --bonusPrimaryColor: #00982b;
    --bonusSecondaryColor: #33da5b;
    --bonusSecondaryColorRgb: 51, 218, 91;
    --accPromoMoneyGStart: #7b0260;
    --accPromoMoneyGStop: #440079;
    --linearGradientMain: linear-gradient(0deg, #313349 26.12%, #2a2b41 66.64%, #212238 97.5%);
    --imageButtonHeight: 78px;
    --imageButtonMobileHeight: 53px;
    --imageArrowHeight: 48px;
    --topPromotionsBannerPosition: 500px;
    --countdownWrapperBg: rgba(14, 41, 56, 0.5);
    --cardBorderRadius: 20px;
    --cardItemHeight: 350px;
    --asideBlockPaddingTop: 35px;
    --asideNavBg: #0b0c21;
    --asideNavPadding: 0 24px 0 24px;
    --asideNavPaddingCollapsed: 0 15px 30px 30px;
    --asideNavMobileBg: #0b0c21;
    --asideNavMobileButtonBg: #33334f;
    --asideNavMobileColor: #ffffff;
    --asideNavMobileCatBg: rgba(255, 255, 255, 0.1019607843);
    --asideNavMobileCatTitle: #ffd400;
    --asideNavMobileBorderRadius: 8px;
    --asideNavMobileFontSize: 14px;
    --asideNavMobileFontWeight: 700;
    --asideNavMobileMarginRight: 8px;
    --asideNavItemMarginTop: 16px;
    --asideNavItemFirstItemMarginTop: 0;
    --asideNavItemHeight: 50px;
    --asideNavItemFontSize: 14px;
    --asideNavItemFontWeight: 700;
    --asideNavItemLetterSpacing: 0.15px;
    --asideNavItemIconWidth: 24px;
    --asideNavItemIconHeight: 24px;
    --asideNavItemIconFontSize: 24px;
    --asideNavItemIconWidthMobile: 24px;
    --asideNavItemIconHeightMobile: 24px;
    --asideNavItemIconFontSizeMobile: 24px;
    --asideNavItemCountTop: 7px;
    --asideNavItemCountLeft: 30px;
    --asideNavItemCountLeftCollapsed: 20px;
    --asideNavItemCountLeftMobile: 32px;
    --asideNavDropdownBorderRadius: 8px;
    --asideNavDropdownBg: #33334f;
    --asideNavDropdownBgMobile: #33334f;
    --asideNavDropdownItemColor: #ffffff;
    --asideNavDropdownItemBgMobile: #4d4d76;
    --asideNavDropdownItemHeight: 50px;
    --asideNavDropdownItemHeightMobile: 50px;
    --asideNavDropdownItemIconWidth: 24px;
    --asideNavDropdownItemIconHeight: 24px;
    --asideNavDropdownItemIconFontSize: 24px;
    --asideNavDropdownArrowHeight: 16px;
    --asideNavDropdownItemsPaddingMobile: 0 12px 12px;
    --asideAviatorIconWidth: 95px;
    --asideAviatorFontSize: 24px;
    --asideAviatorFontSizeMobile: 20px;
    --asideAviatorLeftPosition: 0;
    --asideAviatorLeftPositionMobile: -3px;
    --asideAviatorPropellerFontSize: 22px;
    --asideAviatorPropellerTopPosition: 2px;
    --asideAviatorPropellerRightPosition: 11px;
    --asideAviatorPropellerRightPositionMobile: 11px;
    --asideAviatorTitleFontSize: 52px;
    --asideAviatorTitleTopPosition: 2px;
    --asideAviatorTitleLeftPosition: -10px;
    --asideAviatorTitleLeftPositionMobile: -14px;
    --headerClockBg: transparent;
    --headerClockColor: #fff5d6;
    --headerClockColorDesktop: #fff5d6;
    --headerLeftSideWidth: 100%;
    --sideNavDisplay: none;
    --sideNavDisplayDesctop: block;
    --sideNavLogoMargin: -30px;
    --sideNavLogoMarginDesctop: 0;
    --siteNavColor: #ffffff;
    --siteNavDots: #ffffff;
    --languageSwitcherPadding: 0;
    --languageArrowDisplay: none;
    --languageIsoDisplay: block;
    --languageIconWidth: 24px;
    --languageIconHeight: 24px;
    --languageIconBorderRadius: 50%;
    --headerLogoHeight: 40px;
    --headerLogoHeightMobile: 40px;
    --headerLogoAlignItems: center;
    --headerLogoGap: 12px;
    --headerLogoTextHeight: 24px;
    --headerLogoTextHeightMobile: 24px;
    --headerLogoTextMargin: 0;
    --headerLogoTextMarginMobile: 0 0 0 6px;
    --headerLogoTextAspectRatio: 9/2;
    --menuItemsBg: #05071a;
    --mobileMenuBg: #06072b;
    --mobileMenuBgRgb: 6, 7, 43;
    --mobileMenuBgHeight: 164px;
    --mobileMenuLinearGradient: linear-gradient(180deg, rgba(var(--mobileMenuBgRgb), 0) 0%, var(--mobileMenuBg) 83.18%);
    --mobileMenuOpenerBorder: rgba(250, 89, 38, 0.3);
    --mobileMenuOpenerBgStart: #fa5926;
    --mobileMenuOpenerBgEnd: #fa5926;
    --mobileMenuOpener: #4e3535;
    --mobileMenuOpenerWrapperMargin: 0 8px;
    --mobileMenuOpenerIconPadding: 0;
    --mobileMenuOpenerIconPaddingMobileLayoutSmall: 0;
    --inputBackground: #e0e1ea;
    --radioBorderColor: #727489;
    --footerModalBg: #4d4d76;
    --closeButtonBackground: #333558;
    --closeButtonFillBg: #9ca0af;
    --closeButtonOutlineColor: #161828;
    --closeButtonBoxShadow: 0 1px 1px 0 #5c6099 inset, 0 -1px 2px 0 #1f2134 inset;
    --signUpTextColor: #ffd400;
    --mainFormTextColor: #ffffff;
    --secondaryTextColor: #9ca0af;
    --tableHeadBg: #33334f;
    --tableBodyBg: #1c1c32;
    --tabelBobySecondaryBg: #4d4d76;
    --tablePlaceBadgeFirst: #e82e23;
    --tablePlaceBadgeSecond: #ffd400;
    --tablePlaceBadgeThird: #0b7ce5;
    --contentDividerBg: linear-gradient(90deg, #92e200 0%, rgba(225, 175, 23, 0.3) 50%, rgba(225, 175, 23, 0) 67%);
    --buttonMain: #ffd400;
    --buttonMainRgb: 255, 212, 0;
    --buttonSecondary: #33334f;
    --buttonSecondaryHover: #4d4d76;
    --loginButton: #23293a;
    --loginButtonRgb: 35, 41, 58;
    --loginButtonHover: #606678;
    --loginLightButton: #606678;
    --buttonDisabled: #1f2038;
    --buttonDisabledColor: #9ca0af;
    --forgotPassLinkColor: #ffffff;
    --forgotPassLinkHover: #ffd400;
    --mainColor: #072443;
    --menuSectionBorder: #c3ccd9;
    --topWrapperBg: rgba(44, 46, 67, 0.2);
    --accountDetailsBg: #252738;
    --percentScaleBg: #3e3c5a;
    --percentScaleBorderColor: rgb(150, 129, 144);
    --placeStatsBorderColor: #5e678c;
    --inputColor: #4e4842;
    --inputColorRgb: 78, 72, 66;
    --inputFocusBg: #eeeff3;
    --inputDisabled: #9ca0af;
    --inputDisabledBg: white;
    --inputBackgroundForm: #ffffff;
    --inputPlaceholderColor: rgba(50, 51, 63, 0.5);
    --inputErrorColor: #e93e3a;
    --inputErrorBg: #ffe8e7;
    --inputImageColor: #303955;
    --dropDownTextColor: #6e82a2;
    --dropDownTextActiveColor: #edf1f3;
    --producerIconBg: #231f1f;
    --inputShadow: rgba(76, 62, 102, 0.15);
    --inputBg: #e0e1ea;
    --favouritesStarBg: #33334f;
    --currencyDropdownBg: #edf1f3;
    --currencyDropdownIcon: #072443;
    --dropDownArrowWidth: 10px;
    --dropDownArrowHeight: 10px;
    --dropDownArrowPosX: 22px;
    --dropDownArrowPosY: calc(50% - 7px);
    --dropDownBorderWidth: 2px;
    --dropDownBorderColor: var(--secondaryTextColor);
    --textPageHeading: #ffd400;
    --textPageText: #ffffff;
    --textPageLink: #ffd400;
    --textPageListElements: #ffd400;
    --textPageTableHeadingBg: #13151b;
    --textPageTableHeading: #ffd400;
    --textPageTableBody: #d4c5b1;
    --textPageTableBodyBg: rgba(78, 72, 66, 0.6);
    --textPageTableBodyBorder: #0b0c21;
    --StepAsIconsArrow: #353640;
    --promotionBorderColor: rgba(255, 255, 255, 0.5);
    --transactionPositive: #33da5b;
    --transactionNegative: #ff8484;
    --accountStatsCardBg: #33334f;
    --tableBorderColor: #404052;
    --descriptionBoxBg: rgba(44, 46, 67, 0.2);
    --gameBoxContentBg: #020304;
    --gameBoxControlsBg: #010301;
    --gameControlsIconColor: #ffd400;
    --jackpotBoxPaddingTop: 240px;
    --jackpotDecorImgMaxWidth: 395px;
    --jackpotDecorImgWidth: 395px;
    --jackpotDecorImgHeight: 443px;
    --jackpotTitleColor: #ffffff;
    --jackpotTitleMarginBottom: -40px;
    --jackpotTitlePaddingTop: 15px;
    --jackpotTitleFontSize: 24px;
    --jackpotTitleFontWeight: 700;
    --jackpotTitleLineHeight: 1.33333;
    --jackpotTitleLetterSpacing: 0.48px;
    --jackpotTitleTextTransform: capitalize;
    --jackpotTitleWidth: 245px;
    --jackpotTitleHeight: 82px;
    --jackpotValueMarginTop: -10px;
    --jackpotValuePaddingTop: 10px;
    --jackpotValueWidth: 352px;
    --jackpotValueHeight: 100px;
    --jackpotValueFontSize: 48px;
    --jackpotValueFontWeight: 700;
    --jackpotValueLineHeight: 1.16667;
    --latestWinnersWrapperBcg: #0b0c21;
    --latestWinnersWrapperPadding: 24px;
    --latestWinnersWrapperBorderRadius: 20px;
    --latestWinnersTitleTransform: uppercase;
    --latestWinnersDisplayMobile: flex;
    --latestWinnersOverflowMobile: auto clip;
    --latestWinnersAlignMobile: center;
    --latestWinnersTitleFlexDirectionMobile: column;
    --latestWinnersTitlePaddingMobile: 0 0 0 20px;
    --latestWinnersTitleMarginBottomMobile: 0;
    --latestWinnersGap: 8px;
    --latestWinnersHeight: 305px;
    --latestWinnersText: #aaa8a9;
    --latestWinnersBg: linear-gradient(90deg, #10122e 2.16%, rgba(32, 32, 40, 0) 114.01%);
    --latestWinnersBorder: rgb(40.5, 40.5, 40.5);
    --latestWinnersActiveText: 0;
    --latestWinnersContentMobile: 10px;
    --latestWinnersContentOverflowMobile: initial;
    --latestWinnersContentPaddingBottomMobile: 5px;
    --latestWinnersbgImageWidth: 100px;
    --latestWinnersbgImageHeight: 240px;
    --latestWinnersbgImageRight: -25px;
    --latestWinnersbgImageDisplayMobile: none;
    --latestWinnersInfoOrder: 1;
    --latestWinnersInfoWidth: calc(100% - 70px);
    --latestWinnersInfoActiveColor: #ffffff;
    --latestWinnersInfoGameColor: #ffd400;
    --latestWinnersImageWidth: 60px;
    --latestWinnersImageHeight: 60px;
    --latestWinnersImageBorderRadius: 4px;
    --latestWinnersMarginTop: 80px;
    --latestWinnersMarginTopTablet: 90px;
    --latestWinnersHofItemWidth: 324px;
    --latestWinnersHofItemWidthMobile: 326px;
    --latestWinnersHofItemBorder: 2px solid #33334f;
    --latestWinnersHofItemBorderRadius: 8px;
    --latestWinnersHofItemBcg: #1f2038;
    --latestWinnersHofItemMargin: 0;
    --latestWinnersHofItemPadding: 4px 4px 4px 24px;
    --latestWinnersHofItemPaddingMobile: 4px 4px 4px 24px;
    --latestWinnersHofImageWidth: 96px;
    --latestWinnersHofImageHeight: 88px;
    --latestWinnersHofGap: 20px;
    --latestWinnersHofGapMobile: 8px;
    --latestWinnersHofHeightMobile: 432px;
    --latestWinnersHofImageBorder: 1px solid #ffd400;
    --latestWinnersHofInfoWidth: calc(100% - 98px);
    --latestWinnersHofInfoWidthMobile: calc(100% - 98px);
    --latestWinnersHofInfoFontSize: 16px;
    --latestWinnersHofInfoFontSizeMobile: 16px;
    --headerMenuTogglerBg: transparent;
    --headerMenuTogglerBorder: rgba(255, 255, 255, 0.5);
    --headerMenuTogglerColor: #ffffff;
    --logoSidePaddingX: 29px;
    --mainBannerControlBorder: #41444a;
    --mainBannerWidth: 85%;
    --mainBannerWidthMobile: 95%;
    --mainBannerMaxWidth: 1600px;
    --mainBannerAlignItems: start;
    --mainBannerAlignItemsMobile: center;
    --mainBannerTextAlign: left;
    --mainBannerTextAlignMobile: center;
    --mainBannerTextDisplay: block;
    --mainBannerTextFontSize: 24px;
    --mainBannerTextLineHeight: 1;
    --mainBannerTextMarginBetween: 0;
    --mainBannerTextMaxWidth: 250px;
    --mainBannerTextHeightMobile: 250px;
    --mainWelcomeBannerImagePositionLeft: 50%;
    --mainWelcomeBannerImageTransform: translate(-50%, 0);
    --mainLiveBannerImagePositionLeft: 50%;
    --mainLiveBannerImageTransform: translateX(-50%);
    --mainLiveBannerImageHeightTablet: 180px;
    --mainVipBannerImagePositionLeft: 50%;
    --mainVipBannerImageTransform: translateX(-50%);
    --mainVipBannerImageHeight: 90%;
    --mainBannerImageHeightMobile: 200px;
    --mainBannerImageHeightMobileSmall: 200px;
    --mainBannerImagePositionBottomMobile: 50px;
    --mainBannerActionMarginTop: 24px;
    --mainBannerJackpotPositionLeft: auto;
    --mainBannerJackpotPositionRight: 210px;
    --mainBannerJackpotPositionBottom: -50px;
    --mainBannerControlsStartBcg: #877212;
    --mainBannerControlsEndBcg: rgba(56, 60, 91, 0);
    --mainBannerRightBlockJustifyContent: flex-end;
    --mainNewGamesFlame: #fea800;
    --vipBgFront: #a71d1d;
    --vipBgBack: #fe9800;
    --categoryHoverBg: #1a1f26;
    --categoryIconActiveColor: #ffa700;
    --categoryIconFontSize: 40px;
    --categoryIconMarginBottom: 0;
    --producersOpenerBg: #33334f;
    --formColor: #1a1c29;
    --formColorRgb: 26, 28, 41;
    --formColorDisabled: #9ca0af;
    --inputBgDisabled: #727489;
    --formBodredColor: #a8a8a8;
    --formRadioBorderRadius: 10px;
    --liveBlockBlackjack: #1a1f2d;
    --liveBlockClassic: #302525;
    --liveBlockPoker: #1f2928;
    --liveBlockRoulette: #372637;
    --controlButtonBg: #0c0e22;
    --controlButtonBorder: #48455b;
    --controlButtonArrow: #5c5871;
    --controlButtonPromoLayerFirst: #072832;
    --controlButtonPromoLayerSecond: #2c474f;
    --controlButtonTournamentLayerFirst: #492c57;
    --controlButtonVipLayerFirst: #5b0001;
    --promoSliderArrowBg: #63a09e;
    --promoSliderArrowBorder: #092827;
    --tournamentSliderArrowBg: #e3def5;
    --tournamentActionLink: #464545;
    --tournamentActionLinkRgb: 70, 69, 69;
    --userAccountExpScaleBg: #3a435a;
    --userAccountLevel: #23293a;
    --userAccountImgHeight: 40px;
    --userAccountImgHeightDesktop: 55px;
    --userAccountImgFrameHeight: 55px;
    --userAccountImgFrameHeightDesktop: 71px;
    --userAccountInfoTextAlign: left;
    --userAccountInfoFontSize: 12px;
    --userAccountInfoLineHeight: 1.66667;
    --userAccountInfoLetterSpacing: 0.1px;
    --userAccountInfoNameMarginBottom: 0;
    --userAccountExperienceBarHeight: 4px;
    --userAccountExperienceBarRadius: 2px;
    --userAccountExperienceBarPadding: 0;
    --userAccountExperienceBarColor: #ffd400;
    --userAccountHeaderMenuLink: #191b28;
    --userAccountHeaderMenuLinkHover: #2e313b;
    --userAccountStatsBg: #191b28;
    --userAccountSlidersBg: #292a36;
    --contactUsPageBg: #0b0c21;
    --contactUsPagePadding: 90px 0 140px;
    --nextPrizeTitleBg: #151a29;
    --nextPrizeTitleBorder: #2a2d3c;
    --radioSelectBg: #fbfbfb;
    --radioSelectArrowBorder: rgba(255, 255, 255, 0.5);
    --tableTh: #1a1c29;
    --tableTdBg: #1c1c32;
    --footer: #858b99;
    --footerTopColor: #858b99;
    --footerMenuBcg: transparent;
    --footerMenuBorder: 2px solid rgba(255, 255, 255, 0.1);
    --footerMenuPadding: 4px 16px;
    --footerMenuText: rgba(255, 255, 255, 0.5);
    --footerMenuTextActive: #000000;
    --footerMenuTextActiveBcg: #ffd400;
    --footerMenuTextBorderRadius: 100px;
    --footerSectionBackground: transparent;
    --footerPaymentMethodsSectionWidth: 100%;
    --footerPaymentMethodsItemBcg: #727489;
    --footerPaymentMethodsItemBorderRadius: 8px;
    --footerPaymentMethodsItemFilter: grayscale(1);
    --footerPaymentMethodsItemWidth: 180px;
    --footerPaymentMethodsItemWidthMobile: 100px;
    --footerPaymentMethodsItemHeight: auto;
    --footerValidatorsBcg: transparent;
    --footerAgeListOrder: -1;
    --footerAdditionalLogoFilter: grayscale(1);
    --footerPointerEvents: none;
    --footerMarginTop: -130px;
    --footerMarginTopTablet: -80px;
    --footerMarginTopMobile: -50px;
    --footerSectionBottomMarginTop: 0;
    --footerSectionBottomMarginTopMobile: 0;
    --gameItemBg: #1f2038;
    --gameItemBorderRadius: 10px;
    --gameItemBorderRadiusSmall: 12px;
    --gameItemInfoPadding: 12px 8px;
    --gameItemOverlayGapMobile: 20px;
    --swipeCheckboxBg: #242632;
    --roundCheckedCheckBox: #fa5926;
    --bonusCardtitle: #4c5571;
    --bonusCardText: #0b0c21;
    --tournamentPlacesBgFrom: #ffb84a;
    --tournamentPlacesBgFromRgb: 255, 184, 74;
    --gameSearchColor: #0b0c21;
    --gameSearchBg: #ffd400;
    --gameSearchHoverBg: #ffff5c;
    --gameSearchBorderWidth: 2px;
    --gameSearchBorderRadius: 12px;
    --gameSearchHeight: 44px;
    --gameSearchIconPosY: 12px;
    --gameSearchIconPosX: 12px;
    --gameSearchInputPlaceholderFontSize: 14px;
    --searchBannerHeight: 420px;
    --searchBannerHeightMobile: 400px;
    --searchBannerImagesPositionTop: 25%;
    --searchBannerImagesHeight: 75%;
    --searchBannerCharacterLeftPositionTablet: 0;
    --searchBannerCharacterRightPositionTablet: 0;
    --searchBannerCharacterLeftPositionMobile: 0;
    --searchBannerCharacterRightPositionMobile: 0;
    --searchBannerCharacterLeftPositionMobileSmall: -50px;
    --searchBannerCharacterRightPositionMobileSmall: -75px;
    --recommendedBlockHeight: 700px;
    --recommendedBlockPaddingTop: 0;
    --recommendedBlockHeadingFontSize: 48px;
    --recommendedBlockHeadingFontSizeMobile: 32px;
    --recommendedBlockGamesPageHeadingFontSize: 48px;
    --recommendedBlockGamesPageHeadingFontSizeMobile: 32px;
    --recommendedBlockGamesPageHeadingFontWeight: 900;
    --recommendedBlockGamesPageHeadingFontWeightMobile: 700;
    --buttonAsideBorder: linear-gradient(to right, #6a11cb 10%, transparent 30%, #ffcc00 90%);
    --buttonAsideBg0: linear-gradient(to right, #2c1575 47%, #7f0dce);
    --buttonAsideBg1: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent 30%);
    --bannerContainerPadding: 145px 0 0 0;
    --bannerWrapperBcg: transparent;
    --bannerWrapperInnerBcg: linear-gradient(0deg, #313349 26.12%, #2a2b41 66.64%, #212238 97.5%);
    --bannerWrapperBorderRadius: 20px;
    --bannerWrapperPadding: 28px 13px 26px 13px;
    --bannerWrapperMaxWidth: 342px;
    --bannerTitleFontFamily: inherit;
    --bannerTitleFontWeight: 700;
    --bannerTitleFontSize: 24px;
    --bannerTitleColor: #ffffff;
    --bannerTitleColorActive: #ffd400;
    --bannerTitleMaxWidth: 70%;
    --bannerTitleTransform: uppercase;
    --bannerFormMarginTop: 16px 0 0 0;
    --bannerInputsMarginBottom: 16px;
    --bannerInputsBorderRadius: 8px;
    --bannerInputsTextColor: #9ca0af;
    --bannerInputsTextFontSize: 14px;
    --bannerBonusTextBlockMarginRight: 25px;
    --bannerBonusTextBlockMarginRightMobile: 20px;
    --bannerBonusPadding: 8px 25px 8px 8px;
    --bannerBonusPaddingMobile: 8px 25px 8px 8px;
    --bannerBonusBcgSize: 700px 100%;
    --bannerBonusBcg0: linear-gradient(90deg, #001d49 32.05%, #0b35ca 100.03%), linear-gradient(90deg, #150f4a 27.37%, #7f0dce 100%);
    --bannerBonusBcg1: linear-gradient(92deg, #791130 26.12%, #dd592d 96.68%), linear-gradient(90deg, #150f4a 27.37%, #7f0dce 100%);
    --bannerBonusBcg2: linear-gradient(90deg, #150f4a 27.37%, #7f0dce 100%);
    --bannerBonusMinHeight: 90px;
    --bannerBonusMinHeightMobile: 80px;
    --bonusSelectorGap: 11px;
    --animatedElementShadowColor: #dd9700;
    --userLogoPrimaryColor: #ffff5c;
    --userLogoColorSecondary: blue;
    --userLogoColorBackground: #0b0c21;
    --userLogoColorDotCurrent: #ffff5c;
    --userLogoColorDotBefore: #ffff5c;
    --userLogoColorDotAfter: #0b0c21;
    --userLogoColorStroke: #33334f;
    --cookieBtnRadius: 8px;
    --cookieBtnColor: #13151b;
    --cookieBtnBg: #ffd400;
    --cookieBtnBgHover: #ffff5c;
    --confirmationModalTextColor: #ffffff;
    --casinoAsideMenuImage: brightness(0) saturate(100%) invert(100%) brightness(100%) contrast(100%);
    --casinoAsideMenuImageActive: brightness(0) saturate(100%) invert(78%) sepia(55%) saturate(2224%) hue-rotate(350deg) brightness(107%) contrast(98%);
    --toTopBg: var(--mainActiveColor);
    --toTopIndex: 31;
    --toTopShadow: 0px 0px 0px 6px rgba(var(--mainActiveColorRgb), 0.29);
    --toTopShadowActive: 0px 0px 0px 7px rgba(var(--mainActiveColorRgb), 0.8);
    --modalSwipeBg: #0B0C21;
    --modalSwipeHeaderHeight: 52px;
    --modalSwipeHeaderBg: #0B0C21;
    --modalSwipeHeaderColor: #FFFFFF;
    --modalSwipeCloseButtonBg: #727489;
    --modalSwipeCloseButtonArrowColor: #0B0C21;
    --recentlyPlayedGamesNotFoundColor: #ffffff;
    --modalCustomerPromotionTabBgColor: #33334f;
    --modalCustomerPromotionTabBgColorActive: #0B0C21;
    --modalCustomerPromotionTabColor: #ffffff;
    --modalCustomerPromotionTabColorActive: #ffd400;
    --modalCustomerPromotionIssuanceDescriptionColor: #a8a8a8;
    --modalCustomerPromotionHistoryContentFiltersPaddingBottom: 0;
    --modalCustomerPromotionDescriptionBoxColor: rgba(44, 46, 67, 0.2);
    --mobileTableHistoryPadding: 0;
    --mobileTableHistoryDisplayBg: none;
    --mobileTableHistoryWrapperBg: transparent;
    --mobileTableHistoryItemBorderBottomColor: transparent;
    --mobileTableHistoryItemColor: #ffffff;
    --mobileTableHistoryItemBorderRadius: 8px;
    --mobileTableHistoryItemPadding: 16px;
    --mobileTableHistoryItemMarginBottom: 16px;
    --skeletonBaseColor: #F4F4F4;
    --skeletonAccentColor: #FFFFFF;
    --cmsBannerCasinoBgShadow: linear-gradient(179deg, rgba(11, 12, 33, 0.00) 60.37%, #0B0C21 84.49%)
}

:root {
    --bonusHubPrizeBg: linear-gradient(180deg, #FFB832 0%, #EB2E35 100%);
    --bonusHubSmarticoBg: linear-gradient(180deg, #49F66F 0%, rgba(0, 233, 51, 0) 100%), linear-gradient(0deg, #00982B, #00982B);
    --bonusHubMenuText: #ffffff;
    --bonusPrizeBg: #05071a;
    --bonusPrizeBgRgb: 5, 7, 26;
    --bonusPrizeShadow: #7F4A1B;
    --bonusPrizeText: #ffffff;
    --bonusPrizeTabsBg: #32333F;
    --bonusPrizeTabsText: #E0E1EA;
    --bonusPrizeTabActiveBg: #FCC211;
    --bonusPrizeTabActiveText: #05071A;
    --bonusPrizeCounterBg: #FCC211;
    --bonusPrizeCounterActiveBg: #E93E3A;
    --bonusPrizeActiveText: #FCC211;
    --bonusPrizeDescriptionText: #A8A8A8;
    --bonusPrizeDisabledText: #A8A8A8;
    --bonusPrizeTextButtonColor: #00AB30;
    --bonusPrizeButtonBg: #00982B;
    --bonusPrizeButtonText: #ffffff;
    --bonusPrizeProgressBarBorder: rgba(5, 7, 26, 0.2);
    --bonusPrizeProgressBarBg: #32333F;
    --bonusPrizeProgressBar: linear-gradient(0deg, #00982B, #00982B), linear-gradient(180deg, #49F66F 0%, rgba(0, 233, 51, 0) 100%);
    --bonusPrizeModalBg: #ffffff;
    --bonusPrizeModalText: #32333F;
    --bonusPrizeModalActiveText: #1A1B29;
    --bonusPrizeModalCloseButtonBg: #A8A8A8;
    --bonusPrizeModalNotificationBg: #E0E1EA;
    --bonusPrizeModalNotificationText: #1A1B29;
    --bonusPrizeModalRowTitleText: #1A1B29;
    --bonusPrizePersonalBonusBg: linear-gradient(256.37deg, #440079 -15.3%, #7B0260 61.75%);
    --bonusPrizeFreeSpinsBg: linear-gradient(256.37deg, #007972 -15.3%, #027B48 61.75%);
    --dailyRewardsButton: var(--white);
    --dailyRewardsButtonBg: linear-gradient(180deg, #f0ce58 0%, #c25630 65%);
    --dailyRewardsButtonBorderRadius: 10px
}

:root {
    --cashierModalTitle: #ffffff;
    --cashierModalBackgroundMain: #0b0c21;
    --cashierModalBackgroundSecondary: #33334f;
    --cashierModalNotFound: #ffd400;
    --cashierModalSelectedTabsBackground: #FCC211;
    --cashierModalSelectedTabsBackgroundHover: #FFDC24;
    --cashierModalSelectedTab: #05071A;
    --cashierModalSelectedTabMobile: #05071A;
    --cashierCloseButtonColor: #3E4049;
    --cashierTabsFontWeight: 400;
    --cashierNotActiveTabColor: rgba(224, 225, 234, 0.5);
    --cashierNotActiveTabBackground: #33334f;
    --cashierNotActiveTabBackgroundHover: #4d4e60;
    --cashierTextColorMain: #ffffff;
    --cashierTextColorSecondary: #ffd400;
    --cashierInputColor: #35444e;
    --cashierScrollbarThumb: #4A4544;
    --cashierScrollbarThumbHover: #d4c5b1;
    --cashierScrollbarTrack: #3C3736;
    --cashierBoxShadowMain: rgba(0, 0, 0, 0.25);
    --cashierPaymentMethodGroupItem: #ffffff;
    --cashierPaymentMethodGroupItemBg: #4D4D76;
    --cashierPaymentMethodGroupItemHover: #32333f;
    --cashierPaymentMethodGroupItemBgHover: #ffd400;
    --cashierPaymentMethodGroupItemBorder: #32333f;
    --cashierPaymentMethodAccordionBg: transparent;
    --cashierPaymentMethodGroupItemBorderRadius: 17px;
    --cashierPaymentMethodGroupArrowsFontSize: 24px;
    --cashierPaymentMethodGroupArrows: #ffffff;
    --cashierPaymentMethodTitleColor: #ffffff;
    --cashierPaymentMethodAccordionIconColor: #727489;
    --cashierErrorIconColor: #FF4E4E;
    --cashierLoaderDots: #ffd400;
    --cashierBonusItemBg: #0b0c21;
    --cashierBonusItemTitleColor: #ffffff;
    --cashierBonusItemDescriptionColor: #ffd400;
    --cashierBonusListArrow: #727489;
    --cashierBonusListArrowBg: #0b0c21;
    --cashierActivePaymentWidth: 483px;
    --cashierButtonGoToBackBg: rgba(60, 41, 68, 0.5);
    --cashierButtonGoToBack: #d4c5b1;
    --cashierButtonGoToBackHover: #ffffff;
    --cashierSwitcherBg: translation;
    --cashierSwitcherNoActive: #ffffff;
    --cashierSwitcherCircleActive: #ffd400;
    --cashierSwitcherBorderActive: #ffd400;
    --cashierSwitcherChildren: #ffffff;
    --cashierSwitcherChildrenActive: #ffd400;
    --cashierModalSelectedTabFontWeight: 700;
    --cashierPaymentMethodBg: #ffffff;
    --cashierPaymentMethodBorderRadius: 6px;
    --cashierWithdrawalCountBg: #F84E4E;
    --cashierWithdrawalWalletIconFill: #05071A;
    --cashierWithdrawalDateColor: #A8A8A8;
    --cashierWithdrawalModalHeaderLine: transparent;
    --cashierWithdrawalModalBg: rgba(0, 0, 0, 0.8);
    --cashierContainerTitleMarginMobile: 0 0 15px;
    --cashierTabBg: #33334f
}

:root {
    --seoFooterAccent: #ffd400;
    --seoFooterShadowRGB: 11, 12, 33;
    --seoFooterMobileShadowRGB: 11, 12, 33
}

:root {
    --casinoFavouritesInner: #32333f;
    --casinoFavouritesOuter: #a8a8a8;
    --casinoFavoritedInner: #FFD400;
    --casinoFavoritedOuter: #0B0C21
}

:root {
    --casinoFiltersMobileBg: #FFF;
    --casinoFiltersMobileContentBg: #F0F3F8;
    --casinoFiltersMobileBorderRadius: 8px;
    --casinoFiltersMobileColor: #3E4049;
    --casinoFiltersMobileContentBorder: #F0F3F8;
    --casinoFiltersMobileBottomBorder: #E2E8EE;
    --casinoFiltersMobileSearchInputBorder: #E2E8EE;
    --casinoFiltersMobileSearchInputBorderFocus: #4DA533;
    --casinoFiltersMobileSearchInputBg: #FFF;
    --casinoFiltersMobileSearchIcon: #6F7B8D;
    --casinoFiltersMobileHeaderTitle: #3E4049;
    --casinoFiltersMobileHeaderTitleFontSize: 16px;
    --casinoFiltersMobileHeaderTitleFontWeight: 700;
    --casinoFiltersMobileSectionTitle: #3E4049;
    --casinoFiltersMobileSectionTitleFontSize: 12px;
    --casinoFiltersMobileSectionTitleFontWeight: 700;
    --casinoFiltersMobileSectionTitleLetterSpacing: 1px;
    --casinoFiltersMobileFilterButtonFontSize: 14px;
    --casinoFiltersMobileClearButton: #EC622B;
    --casinoFiltersMobileClearButtonFontSize: 12px;
    --casinoFiltersMobileClearAllButton: #3E4049;
    --casinoFiltersMobileClearAllButtonBg: transparent;
    --casinoFiltersMobileClearAllButtonBorder: 1px solid #E2E8EE;
    --casinoFiltersMobileClearAllButtonLetterSpacing: 0.03em;
    --casinoFiltersMobileItemTitle: #3E4049;
    --casinoFiltersMobileItemTitleFontSize: 14px;
    --casinoFiltersMobileItemBg: #FFF;
    --casinoFiltersMobileItemBorderRadius: 8px;
    --casinoFiltersMobileItemSelectedBg: #EC622B;
    --casinoFiltersMobileItemSelected: #FFF;
    --casinoFiltersMobileItemImgBg: #F0F3F8
}

:root {
    --casinoOnlinePlayersBoxShadow: 0px 0px 14.5px 0px rgba(255, 255, 255, 0.25);
    --casinoOnlinePlayersContainerBackground: rgba(13, 29, 52, 0.85);
    --casinoOnlinePlayersTextColor: #FFFFFF
}

:root {
    --termsOpenBg: #fffaf3;
    --termsBg: #181e29;
    --terms: #bec0ca
}

:root {
    --notificationBorderSuccess: transparent;
    --notificationShadowSuccess: #ffffff;
    --notificationShadowSuccessRgb: 255, 255, 255;
    --notificationBorderError: transparent;
    --notificationShadowError: #ffffff;
    --notificationShadowErrorRgb: 255, 255, 255;
    --darkModalBg: #0b0c21;
    --darkModalBorder: transparent;
    --darkModalShadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.20);
    --cashierModalBg: #0b0c21;
    --modalBg: #0b0c21;
    --modalShadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.20);
    --bonusSectionBg: linear-gradient(0deg, #313349 26.12%, #2a2b41 66.64%, #212238 97.5%);
    --modalTopPadding: 0;
    --modalBottomBcg: #4D4D76;
    --modalElementsGap: 24px;
    --modalLoginTopPadding: 48px;
    --modalLoginTopPaddingMobile: 16px;
    --modalLoginInputBottom: 16px;
    --modalRegisterMaxWidthMobile: 440px;
    --modalRegisterWidthOverMobile: 440px;
    --modalRegisterMinHeight: 0;
    --modalRegisterFormWrapperMinWidth: 272px;
    --modalRegisterTopPadding: 48px;
    --modalRegisterTopPaddingSmallMobile: 30px 16px 40px;
    --modalRegisterInputMarginBottom: 16px;
    --modalRegisterActionsMarginTop: 24px;
    --modalRegisterBackBtnFontSize: 14px;
    --modalRegisterBackBtnWidth: 60%;
    --modalRegisterPaddingLeftOverMobile: 16px;
    --loginModalMaxWidthMobile: 440px;
    --loginModalWidthOverMobile: 440px;
    --oneStepModalRegisterMaxWidth: 472px;
    --langModalMaxWidthBelowDesktop: 780px;
    --langModalMaxWidthDesktop: 780px;
    --customModalWidth: 460px;
    --langSelectItemWrapperWidth: clamp(170px, 50%, 182px);
    --langSelectItemWrapperWidthOverMobile: clamp(170px, 50%, 182px);
    --modalContentPaddingMobile: 16px 0 100px;
    --modalContentPaddingOverMobile: 16px
}

:root {
    --pwaInstallModalBg: #0B0C21;
    --pwaInstallModalTitleColor: #ffffff;
    --pwaInstallButtonBg: #4D4D76;
    --pwaInstallButtonRightImgPaddingRightMobile: 32px;
    --pwaInstallButtonBorderRadius: 5px;
    --pwaInstallButtonBoxShadow: 0px 3px 1px 0px #121720, 0px 1px 0px 0px rgba(255, 255, 255, 0.30) inset;
    --pwaInstallButtonBoxShadowInside: linear-gradient(0deg, #383857 0%, rgba(56, 56, 87, 0.00) 29.73%);
    --pwaInstallButtonTitleColor: #ffffff;
    --pwaInstallButtonFontSizeTitle: 12px;
    --pwaInstallButtonFontWeightTitle: 700;
    --pwaInstallButtonDescriptionColor: rgba(255, 255, 255, 0.6);
    --pwaInstallButtonFontSizeDescription: 10px;
    --pwaInstallButtonFontWeightDescription: 400;
    --pwaInstallButtonDescriptionLineHeight: 12px;
    --pwaInstallButtonIconColor: #9CA0AF;
    --pwaInstallBannerStepsItemBg: #33334F;
    --pwaInstallBannerStepsItemBgActive: #4D4D76;
    --pwaInstallBannerStepsItemTitleColor: #ffffff;
    --pwaInstallBannerStepsItemDescriptionColor: #ffffff;
    --pwaInstallBannerImagesContentBg: #4D4D76;
    --pwaInstallBannerImagesDotBg: #9CA0AF
}

:root {
    --modalBgGradient: linear-gradient(0deg, #313349 26.12%, #2a2b41 66.64%, #212238 97.5%);
    --modalInnerBgGradient: radial-gradient(109.44% 109.46% at 96.35% 51.24%, rgba(38, 39, 61, 0) 26%, rgba(37, 38, 60, 0.05) 62%, rgba(35, 36, 56, 0.22) 75%, rgba(30, 31, 50, 0.51) 84%, rgba(23, 25, 42, 0.93) 92%, var(--darkerGrey) 93%);
    --outerBorderBg: linear-gradient(180deg, var(--darkerGrey) 46%, #E1AF1733 74%, #FF7500 100%);
    --innerBorderBg: linear-gradient(180deg, #004E6700 39%, #004E6733 55%, #E1AF1733 69%, #FF7500 100%)
}

:root {
    --bottomMenuCasinoGameBg: #1f2038;
    --bottomMenuCasinoGameBorder: #1f2038;
    --bottomMenuCasinoGameBorderRadius: 8px 8px 0 0;
    --bottomMenuCasinoGameItem: #ffffff;
    --bottomMenuCasinoGameItemActive: #ffd400;
    --bottomMenuCasinoGameItemCount: #fffaf3;
    --bottomMenuCasinoGameItemCountBorder: #fffaf3;
    --bottomMenuCasinoGameItemCountBg: #fa5926;
    --bottomMenuCasinoGameItemCountBorderRadius: 50%
}

:root {
    --wofButton: #ffffff;
    --wofButtonBg: linear-gradient(90deg, #281569 46.98%, #7F0DCE 100%);
    --wofButtonBorderRadius: 7px;
    --wofButtonImagePositionTop: 10px;
    --wofButtonImagePositionLeft: 10px;
    --wofButtonImagePositionLeftMobile: 10px;
    --wofButtonImageBoxShadow: none;
    --wofButtonImageWidth: 65px;
    --wofButtonImageHeight: 65px;
    --wofButtonBell: #2b1234;
    --wofButtonBellBcg: rgba(255, 255, 255, 0.3);
    --wofButtonHeigh: 52px;
    --wofButtonImageFramePositionTop: 6px;
    --wofButtonImageFramePositionLeft: 6px;
    --wofButtonImageFramePositionLeftMobile: 8px;
    --wofButtonImageFrameWidth: 70px;
    --wofButtonImageFrameHeight: 70px;
    --wofButtonPadding: 16px 33px 16px 90px;
    --wofButtonPaddingLeftMobile: 90px;
    --wofButtonWidthMobile: 100%;
    --wofButtonBoxShadow: none;
    --wofButtonBackgroundSize: 100%;
    --wofButtonBackgroundPosition: 0 0;
    --wofButtonTextTransform: none;
    --wofButtonWhiteSpace: normal;
    --wofButtonJustifyContent: flex-start;
    --wofButtonWidth: 100%;
    --wofButtonTextOverflow: unset;
    --wofBg: #3E3FD4;
    --wofBeforeBg: transparent;
    --wofArrowPositionTop: -80px;
    --wofTitleMarginBottomMobile: 30px;
    --wofItemBorder: none;
    --wofItemOpacity: 1;
    --wofItemBg: linear-gradient(73deg, #420A92 9.44%, #8052DA 90.88%);
    --wofItemActive: linear-gradient(197deg, #008C74 10.77%, #C6EA4B 88.6%);
    --wofHighlightedBg: linear-gradient(274deg, #FF4541 -15.38%, #FFD601 87.71%);
    --wofHighlightedColor: #ffffff;
    --wofItemBoxShadow: none;
    --wofInsideWidthDesktop: calc(100% - 120px);
    --wofInsideHeightDesktop: calc(100% - 120px);
    --wofInsideWidthMobile: calc(100% - 84px);
    --wofInsideHeightMobile: calc(100% - 84px);
    --wofInsideWidthSmallMobile: calc(100% - 60px);
    --wofInsideHeightSmallMobile: calc(100% - 60px);
    --wofHighlightedTransform: scaleY(0.89);
    --wofPrizeTextFontSizMobile: 8px;
    --wofPrizeTextFontSizeSmallMobile: 8px;
    --wofHighlightedFontSizeMobile: 8px;
    --wofHighlightedFontSizeSmallMobile: 8px;
    --wofPrizeIconWidth: 24px;
    --wofPrizeIconMinWidth: 24px;
    --wofPrizeIconHeight: 24px;
    --wofItemCustomBorderWidthDesktop: calc(50% + 10px);
    --wofItemCustomBorderPositionDesktop: 36px;
    --wofItemCustomBorderWidthMobile: calc(50% + 6px);
    --wofItemCustomBorderPositionMobile: 22px;
    --wofItemCustomBorderWidthSmallMobile: calc(50% + 6px);
    --wofItemCustomBorderPositionSmallMobile: 21px;
    --wofItemTextSectorFirst: #FFFFFF;
    --wofItemSectorFirst: linear-gradient(73deg, #420A92 9.44%, #8052DA 90.88%);
    --wofItemTextSectorSecond: #FFFFFF;
    --wofItemSectorSecond: linear-gradient(197deg, #1B144C 5.72%, #3E3FD4 89.63%);
    --wofItemTextSectorThird: #FFFFFF;
    --wofItemSectorThird: linear-gradient(73deg, #420A92 9.44%, #8052DA 90.88%);
    --wofItemTextSectorFourth: #FFFFFF;
    --wofItemSectorFourth: linear-gradient(73deg, #420A92 9.44%, #8052DA 90.88%);
    --wofItemTextSectorFifth: #FFFFFF;
    --wofItemSectorFifth: linear-gradient(197deg, #1B144C 5.72%, #3E3FD4 89.63%);
    --wofItemTextSectorSixth: #FFFFFF;
    --wofItemSectorSixth: linear-gradient(73deg, #420A92 9.44%, #8052DA 90.88%);
    --wofItemTextSectorSeventh: #FFFFFF;
    --wofItemSectorSeventh: linear-gradient(197deg, #1B144C 5.72%, #3E3FD4 89.63%);
    --wofItemTextSectorEighth: #FFFFFF;
    --wofItemSectorEighth: linear-gradient(73deg, #420A92 9.44%, #8052DA 90.88%);
    --wofItemTextSectorNinth: #FFFFFF;
    --wofItemSectorNinth: linear-gradient(197deg, #1B144C 5.72%, #3E3FD4 89.63%);
    --wofItemTextSectorTenth: #FFFFFF;
    --wofItemSectorTenth: linear-gradient(73deg, #420A92 9.44%, #8052DA 90.88%);
    --wofItemTextSectorEleventh: #FFFFFF;
    --wofItemSectorEleventh: linear-gradient(197deg, #1B144C 5.72%, #3E3FD4 89.63%);
    --wofItemPaddingBottomMobile: 50px;
    --wofSpinRemaining: #FFFFFF;
    --wofSpinRemainingBg: none;
    --wofSpinRemainingShadow: none;
    --wofButtonMoreDetails: #FFFFFF;
    --wofSpinRemainingFontSize: 14px;
    --wofSpinRemainingFontSizeMobile: 14px;
    --wofModalSuccessPrizeTextStrokeColor: transparent;
    --wofModalSuccessPrizeTextShadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    --wofModalSuccessPrizeTextBottomShadow: none;
    --wofModalSuccessPrizeFontSize: 48px;
    --wofModalSuccessPrizeTextColor: #FFFFFF;
    --wofModalSuccessPrizeTextAlign: center;
    --wofModalSuccessFrameBoxShadow: none;
    --wofModalSuccessHeightImage: 330px;
    --wofModalSuccessFrameBorderRadius: 28px;
    --wofModalSuccessImageWidth: 252px;
    --wofModalSuccessImageShadow: drop-shadow(3px 5px 5px rgba(240, 204, 50, 0.3));
    --wofModalSuccessImageShadowActive: drop-shadow(3px 5px 15px rgba(240, 204, 50, 0.9));
    --wofModalSuccessPrizeMargin: 0px 0 5px 0;
    --wofModalSuccessFrameWidth: 346px;
    --wofModalSuccessFrameHeight: auto;
    --wofModalSuccessFrameBackgroundSize: contain;
    --wofModalSuccessPadding: 30px 30px 100px 30px;
    --wofModalNotificationsBg: #0B0C21;
    --wofModalNotificationsWidth: 474px;
    --wofModalNotificationsHeight: 348px;
    --wofModalNotificationsPadding: 32px;
    --wofModalNotificationsPaddingMobile: 16px;
    --wofModalNotificationsBorderRadiusDesktop: 8px;
    --wofModalNotificationsBorderRadiusMobile: 0;
    --wofModalNotificationsAdditionalText: #FFFFFF;
    --wofModalNotificationsText: #FFD400;
    --wofConfirmationButtonHeight: 56px;
    --wofConfirmationButtonBg: #ffd400;
    --wofConfirmationButtonBgHover: #ffff5c;
    --wofLevelSelectButtonBg: #A8A8A8;
    --wofLevelSelectButtonBorderRadius: 8px;
    --wofLevelSelectButtonText: #ffffff;
    --wofLevelSelectButtonTextActive: #ffffff;
    --wofLevelSelectButtonOpacityDisabled: 1;
    --wofLevelSelectButtonOpacityDefault: 1;
    --wofLevelSelectBronzeBg: #C59A5F;
    --wofLevelSelectSilverBg: linear-gradient(0deg, #ADB2BB 0%, #ADB2BB 100%), #23293A;
    --wofLevelSelectGoldBg: linear-gradient(0deg, #E4A43E 0%, #E4A43E 100%), #23293A;
    --wofLevelSpinCountBg: #E93E3A;
    --wofLevelSpinCountBorder: rgba(255, 255, 255, 0.5);
    --wofLevelSpinCountTopPosition: -7px;
    --wofLevelSpinCountRightPosition: -8px;
    --wofLevelGapMobile: 8px;
    --wofLevelMarginBottomMobile: 30px;
    --wofLevelMinWidthMobile: 103px;
    --wofLevelSelectHeight: 40px;
    --wofLevelSelectMinWidth: 125px;
    --wofLevelSelectFontWeight: 500;
    --wofLevelSelectFontSize: 12px;
    --wofLevelSelectButtonTextTransform: capitalize;
    --wofHeaderTextColor: #FFD400;
    --wofHeaderTitleFontSize: 48px;
    --wofHeaderTitleFontSizeMobile: 32px;
    --wofHeaderTitleFontSizeSmallMobile: 32px;
    --wofHeaderTitleFontWeight: 700;
    --wofButtonMinWidth: 184px;
    --wofButtonMinWidthMobile: 184px;
    --wofButtonHeight: 48px;
    --wofButtonHeightMobile: 40px;
    --wofCloseButtonColor: #FFFFFF;
    --wofCloseButtonFontSizeMobile: 20px;
    --wofCloseButtonTopPositionMobile: 12px;
    --wofCloseButtonRightPositionMobile: 12px
}

:root {
    --prizeDropsBodyBg: var(--bodyBgColor);
    --prizeDropsPageMarginMobile: -60px 0 0 0;
    --prizeDropsPagePaddingMobile: 40px 16px 120px 16px;
    --prizeDropsPageWrapperMargin: 0 15px 0 var(--logoSideReservedSpaceLeft);
    --prizeDropsPageBg: var(--bodyBgColor);
    --prizeDropsTitleBackShadowColor: #FFC422
}

:root {
    --pageLeftPadding: 18px;
    --pageRightPadding: 22px;
    --pageRightPaddingNoScroll: 30px;
    --pageScrollWidth: 8px;
    --pageBetweenPadding: 15px;
    --mobileSidePadding: 18px;
    --logoSideWidth: 259px;
    --logoSideReservedSpaceLeft: 284px;
    --logoSideWidthCollapsed: 90px;
    --asideWidthOneColumn: 300px;
    --marginOverAside: 248px;
    --asideRightWidth: 224px;
    --borderRadius: 8px;
    --inputHeight: 50px;
    --tournamentsContainerMaxWidth: 1450px
}

body, html {
    overflow-anchor: none;
    -webkit-overflow-scrolling: touch
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.25;
    color: var(--main-text-color);
    background: var(--main-background-color);
    min-height: 100%;
    height: 100%;
    overflow-y: scroll
}

body::-webkit-scrollbar {
    width: var(--pageScrollWidth)
}

body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0)
}

body::-webkit-scrollbar-thumb {
    background: rgba(var(--mainActiveColorRgb), 0.5)
}

body:fullscreen {
    background: var(--bodyBgColor)
}

html {
    min-height: 100%;
    height: 100%;
    scrollbar-color: rgba(var(--mainActiveColorRgb), 0.5) rgba(0, 0, 0, 0);
    scrollbar-width: thin
}

html:hover body:not(:hover) {
    scrollbar-color: rgba(var(--mainActiveColorRgb), 0.7) rgba(0, 0, 0, 0)
}

html:hover body:not(:hover)::-webkit-scrollbar-thumb {
    background: rgba(var(--mainActiveColorRgb), 0.7)
}

.content {
    min-height: 100vh
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

*:before, *:after {
    box-sizing: border-box
}

ul {
    list-style: none
}

li {
    display: block
}

a {
    text-decoration: none;
    outline: none
}

button {
    font-family: "Poppins", sans-serif;
    appearance: none;
    outline: none
}

button {
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    border: none;
    background: rgba(0, 0, 0, 0)
}

button:focus, button:hover {
    outline: none
}

@media screen and (min-width: 768.99px) {
    .content {
        padding: 80px 0 0
    }
}

@media screen and (max-width: 767.99px) {
    .content {
        margin-bottom: 30px
    }

    body.menu-active {
        overflow: hidden
    }
}

@media screen and (min-width: 768.99px) {
    .to-aside-padding {
        padding-left: 115px;
        padding-right: 25px
    }

    .menu-active .to-aside-padding {
        padding-left: var(--logoSideReservedSpaceLeft)
    }
}

.site-menu__link-text {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center
}

.TjZeU {
    display: flex;
    align-items: var(--headerLogoAlignItems);
    flex-wrap: nowrap;
    gap: var(--headerLogoGap);
    height: var(--headerLogoHeight)
}

.TjZeU img {
    display: block
}

.TjZeU .TZ06p {
    height: 100%;
    width: auto;
    aspect-ratio: 3/4
}

.TjZeU ._0sEyX {
    width: 150px;
}

@media screen and (max-width: 767.99px) {
    .TjZeU {
        height: var(--headerLogoHeightMobile)
    }

    .TjZeU ._0sEyX {
        height: 65px;
        width: 140px;
        padding-left: 15px;
        padding-top: 10px;
    }
}

.ul-menu {
    user-select: none
}

@media screen and (min-width: 768.99px) {
    .ul-menu {
        border-radius: 0 0 var(--borderRadius) var(--borderRadius);
        background: var(--asideNavBg);
        padding: var(--asideNavPaddingCollapsed);
        width: var(--logoSideWidthCollapsed)
    }

    .ul-menu li {
        margin-top: var(--asideNavItemMarginTop)
    }

    .ul-menu li:first-of-type {
        margin-top: var(--asideNavItemFirstItemMarginTop)
    }

    .\-9MDD {
        height: var(--asideNavItemHeight);
        display: flex;
        align-items: center;
        color: var(--iconColor);
        transition: color .2s ease;
        position: relative;
        cursor: pointer
    }

    .\-9MDD:hover {
        color: var(--mainActiveColor)
    }

    .iMnM9 {
        margin-right: var(--asideNavMobileMarginRight);
        width: var(--asideNavItemIconWidth);
        display: flex;
        justify-content: center;
        align-items: center;
        height: var(--asideNavItemIconHeight);
        font-size: var(--asideNavItemIconFontSize)
    }

    .ePh-J {
        display: none;
        flex: 1 1 auto;
        overflow: hidden;
        white-space: normal;
        font-size: var(--asideNavItemFontSize);
        font-weight: var(--asideNavItemFontWeight);
        letter-spacing: var(--asideNavItemLetterSpacing);
        color: var(--left-menu-text-color);
    }

    .menu-active .ul-menu {
        padding: var(--asideNavPadding);
        width: var(--logoSideWidth);
        background: var(--left-menu-background);
        margin-top: -10px;
    }

    .menu-active .ul-menu .ePh-J {
        display: block
    }

    .menu-active .\-9MDD {
        padding: 0 16px
    }

    .menu-active .\-9MDD.L4QQy {
        color: var(--iconColor)
    }

    .menu-active .\-9MDD.L4QQy:hover {
        color: var(--mainActiveColor)
    }
}

@media screen and (max-width: 767.99px) {
    .ul-menu {
        margin-bottom: 30px;
        padding-top: 40px;
        padding-right: 30px;
        padding-left: 20px;
    }

    .ul-menu li + li {
        margin-top: 4px
    }

    .\-9MDD {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        padding: 0 16px 0 10px;
        color: var(--left-menu-text-color);
        background: var(--left-menu-background);
        position: relative;
        font-size: 16px;
        font-weight: var(--asideNavMobileFontWeight);
        border-radius: var(--asideNavMobileBorderRadius)
    }

    .iMnM9 {
        margin-right: var(--asideNavMobileMarginRight);
        width: 46px;
        display: flex;
        justify-content: center;
        font-size: 31px
    }
}

@media screen and (max-width: 459px) {
    .\-9MDD {
        width: 100%;
        height: 50px;
        padding: 0 16px;
        font-size: var(--asideNavMobileFontSize);
        font-weight: var(--asideNavMobileFontWeight);
        letter-spacing: var(--asideNavItemLetterSpacing)
    }

    .iMnM9 {
        width: var(--asideNavItemIconWidthMobile);
        font-size: var(--asideNavItemIconFontSizeMobile)
    }
}

@media screen and (min-width: 768.99px) {
    .main-menu {
        position: fixed;
        height: 100vh;
        top: 0;
        left: 0;
        padding-top: var(--asideBlockPaddingTop);
        width: var(--logoSideWidthCollapsed);
        background: var(--left-menu-background);
    }

    .main-menu.wrap {
        width: var(--logoSideWidth)
    }

    .main-menu.wrap .block-menu-wrap {
        padding-top: 10px
    }

    .main-menu:before {
        display: block;
        content: "";
        height: 70px;
        border-radius: 10px 10px 0 0;
        background: var(--asideNavBg);
        width: var(--logoSideWidthCollapsed)
    }

    .main-menu .block-menu-wrap {
        max-height: calc(100% - 80px);
        overflow-x: hidden;
        background: var(--asideNavBg);
        border-radius: 0 0 10px 10px
    }

    .menu-active .main-menu {
        width: var(--logoSideWidth)
    }

    .menu-active .main-menu:before {
        width: var(--logoSideWidth);
        background: var(--left-menu-background);
    }
}

.ngIBl.JsbBb .T6RnL:not(:disabled) .svg-arrow__path {
    fill: var(--white)
}

.ngIBl.JsbBb .T6RnL:not(:disabled):hover .svg-arrow__path {
    fill: var(--mainActiveColor)
}

@media screen and (max-width: 767.99px) {
    body {
        overscroll-behavior: none
    }
}

@media screen and (orientation: landscape) {
    body:fullscreen ._3tc0r {
        height: 100vh;
        width: 80px
    }

    body:fullscreen ._3tc0r .HufPn {
        height: 100%;
        background: none
    }

    body:fullscreen ._3tc0r .WcfEn {
        flex-direction: column;
        align-items: center
    }

    body:fullscreen ._3tc0r .JIOud {
        display: none
    }
}

.games-list__items-container {
    margin: 0 auto 20px;
    display: flex;
    align-self: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px
}

.games-list__item {
    padding: 0 5px 12px;
    width: 20%
}

@media screen and (min-width: 1920px) {
    .games-list__item {
        width: 16.6666%
    }
}

@media screen and (min-width: 2300px) {
    .games-list__item {
        width: 14.28%
    }
}

@media screen and (max-width: 1501px) {
    .games-list__item {
        width: 25%
    }
}

@media screen and (max-width: 1050px) {
    .games-list__item {
        width: 33.3333%
    }
}

@media screen and (max-width: 767.99px) {
    .games-list__items-container {
        width: 100%;
        padding: 0 var(--mobileSidePadding)
    }

    .games-list__item {
        min-height: 120px;
        width: 33.3333%
    }

    .games-list__item .game-item {
        width: 100% !important
    }
}

@media screen and (max-width: 459px) {
    .games-list__item {
        width: 50%
    }
}

.LuA2h {
    height: 100%;
    display: flex;
    flex-direction: column;
    user-select: none;
    position: relative;
    -webkit-user-drag: none
}

.LuA2h .R-If2 {
    display: block;
    position: relative
}

.LuA2h .Qur0p {
    display: block;
    height: auto;
    width: 100%;
    border-radius: var(--gameItemBorderRadius) var(--gameItemBorderRadius) 0 0
}

.LuA2h .M7WWT {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(var(--bodyBgColorRbg), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: var(--gameItemBorderRadius) var(--gameItemBorderRadius) 0 0;
    padding: 10px;
    transition: opacity .2s ease;
    color: var(--linkInactive)
}

.LuA2h ._3q85d {
    flex: 1 1 auto;
    position: relative
}

.LuA2h ._3q85d .producer-icon {
    position: absolute;
    z-index: 3;
    top: calc(50% - 14px);
    right: 6px;
    pointer-events: none;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    padding: 0 3px;
    background: var(--grayBlue)
}

.LuA2h ._3q85d .producer-icon.reverse {
    right: auto;
    left: 6px
}

.LuA2h .UoAS9 {
    height: 100%;
    background: var(--gameItemBg);
    border-radius: 0 0 var(--gameItemBorderRadius) var(--gameItemBorderRadius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 40px;
    min-height: 60px
}

.LuA2h .UoAS9.DL6w8 {
    position: relative;
    z-index: 1
}

.LuA2h .UoAS9.UCt8y {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: none;
    color: var(--linkInactive)
}

.LuA2h .UoAS9:hover ._6rdY8 {
    color: var(--mainActiveColor)
}

.LuA2h ._6rdY8 {
    cursor: pointer;
    color: var(--white);
    transition: color .3s ease
}

.LuA2h ._1AcqG {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5
}

.LuA2h:hover .M7WWT {
    opacity: 1
}

.LuA2h:hover .UoAS9.UCt8y {
    display: flex
}

.menu-nav {
    display: var(--sideNavDisplay);
    flex: 1 0 auto
}

.tcIRz {
    position: absolute;
    height: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none
}

.menu-nav-ul {
    display: flex;
    height: 100%;
    padding-left: 15px;
    user-select: none;
    align-items: center
}

.menu-nav-ul ._2QEjl {
    display: block;
    color: var(--siteNavColor);
    transition: color .15s ease
}

.menu-nav-ul ._2QEjl:hover {
    color: var(--mainActiveColor)
}

.menu-nav-ul .A5rgr {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    color: var(--menu-in-heeder-text-color);
}

.menu-nav-ul .M2tbJ {
    font-weight: 700;
    padding: 0 20px;
    font-size: 14px;
    line-height: 35px;
    position: relative;
    white-space: nowrap;
    margin-right: 10px
}

.menu-nav-ul ._0CBE1 {
    transition: color .15s ease;
    color: var(--siteNavDots);
    cursor: pointer
}

.menu-nav-ul ._0CBE1:hover {
    color: var(--mainActiveColor)
}

@media (min-width: 1200px) {
    .menu-nav {
        display: var(--sideNavDisplayDesctop)
    }
}

.notice-modal {
    position: fixed;
    z-index: 40;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: visibility .3s ease, opacity .3s ease
}

.notice-modal__shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bodyBgColor);
    opacity: .4;
    z-index: 1
}

.notice-modal__wrapper {
    position: relative;
    z-index: 2
}

.notice-modal #notice-modal {
    position: relative;
    width: 470px;
    max-width: 90vw;
    transform: scale(0.7);
    transition: transform .3s ease
}

@media screen and (min-width: 768.99px) {

    body:fullscreen {
        overflow: unset
    }

    body:fullscreen .header {
        display: none
    }

    body:fullscreen .content {
        padding: 0
    }

    body:fullscreen .header-rocks {
        display: none
    }

    body:fullscreen #footer {
        display: none
    }

    body:fullscreen #chat-widget-container {
        display: none
    }

    body:fullscreen .LAg0P {
        padding: 40px 50px 40px 40px
    }

    body:fullscreen .zRTms {
        width: 100%
    }

    body:fullscreen .nMB0m {
        background-image: none !important
    }

    body:fullscreen .yV2Rn {
        display: none
    }

    body:fullscreen ._1F5t1 {
        position: absolute;
        width: 60px;
        right: 0;
        top: 0
    }

    body:fullscreen .s-c8L {
        height: calc(100vh - 80px)
    }

    body:fullscreen .lR4wM {
        height: calc(100vh - 80px) !important
    }
}

body:fullscreen .c4a71 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 10px 0;
    width: 100%
}

body:fullscreen .c4a71 .nGkXm {
    padding: 5px;
    margin: 2px 0
}

body:fullscreen .c4a71 .nGkXm .to-normal {
    display: block
}

body:fullscreen .c4a71 .nGkXm .to-full {
    display: none
}

@media screen and (min-width: 768.99px) {
    .header {
        position: fixed;
        z-index: 20;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        padding-top: 15px;
        display: flex;
        align-items: center;
        background: var(--main-background-color)
    }

    .header__clock {
        display: flex;
        align-items: center;
        margin: 0 10px
    }

    .header__logo-side {
        flex: 0 0 var(--logoSideWidthCollapsed);
        display: flex;
        align-items: center;
        height: 100%;
        width: var(--logoSideWidthCollapsed);
        padding-left: var(--logoSidePaddingX);
        position: relative
    }

    .header__logo {
        display: block;
        position: relative;
        cursor: pointer;
        z-index: 1
    }

    .header .casino-logo__text {
        display: none
    }

    .header__menu-toggler {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        z-index: 1;
        right: -12px;
        top: calc(50% + 35px);
        height: 24px;
        width: 24px;
        border-radius: 50%;
        background: var(--headerMenuTogglerBg);
        border: 1px solid var(--headerMenuTogglerBorder)
    }

    .header__menu-toggler:before {
        content: "";
        display: block;
        position: relative;
        border-style: solid;
        border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--headerMenuTogglerColor);
        border-width: 4px 0 4px 8px;
        left: 1px
    }

    .header__nav-side {
        flex: 1 1 auto;
        height: 100%;
        display: flex;
        justify-content: space-between;
        padding-right: 15px;
        margin-top: -10px;
    }

    .menu-active .header__logo-side {
        flex: 0 0 var(--logoSideWidth);
        width: var(--logoSideWidth);
        margin-right: var(--sideNavLogoMargin)
    }

    .menu-active .header .casino-logo__text {
        display: block
    }

    .menu-active .header__menu-toggler:before {
        border-color: rgba(0, 0, 0, 0) var(--headerMenuTogglerColor) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
        border-width: 4px 8px 4px 0;
        left: -1px
    }
}

@media (min-width: 1200px) {

    .menu-active .header__logo-side {
        margin-right: var(--sideNavLogoMarginDesctop)
    }
}

.user-options {
    height: 100%;
    display: flex;
    align-items: center
}

.user-options .app-button + .app-button {
    margin-left: 16px
}

:where(.svg-icon-module_icon__5maywl3p__platform-common) {
    display: block;
    position: relative;
    width: 1em;
    height: 1em;
    fill: currentColor;
    font-size: inherit;
    top: 0
}

.casino-game-extra-info-module_container__9OVYO5xU__platform-common {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    border-radius: 24px;
    padding: 8px 16px;
    box-shadow: var(--casinoOnlinePlayersBoxShadow);
    background: var(--casinoOnlinePlayersContainerBackground);
    color: var(--casinoOnlinePlayersTextColor)
}

.casino-game-extra-info-module_container__9OVYO5xU__platform-common.casino-game-extra-info-module_small__-8Y-6pi6__platform-common {
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 16px
}

.casino-game-extra-info-module_container__9OVYO5xU__platform-common .casino-game-extra-info-module_rtp__vFx1Vg7V__platform-common, .casino-game-extra-info-module_container__9OVYO5xU__platform-common .casino-game-extra-info-module_online__Yod0-mRX__platform-common {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px
}

.casino-game-extra-info-module_icon__FVk2SQQM__platform-common {
    font-size: 24px
}

.casino-game-extra-info-module_text__WeF6235W__platform-common {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.casino-game-extra-info-module_small__-8Y-6pi6__platform-common .casino-game-extra-info-module_icon__FVk2SQQM__platform-common {
    font-size: 16px
}

.casino-game-extra-info-module_small__-8Y-6pi6__platform-common .casino-game-extra-info-module_text__WeF6235W__platform-common {
    font-size: 12px;
    font-weight: 700;
    line-height: 14px
}

.drops-and-wins-logo-module_dwLogo__P6AxT1nY__platform-common {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 25%;
    min-width: 45px;
    z-index: 1
}

.drops-and-wins-logo-module_dwLogo__P6AxT1nY__platform-common:before {
    display: block;
    content: "";
    padding-bottom: 100%;
    background: linear-gradient(135deg, #0D0014 50%, transparent 50%);
    border-top-left-radius: 5px
}

.drops-and-wins-logo-module_dwLogoInner__rVjGRBFL__platform-common {
    background: #0d0014;
    border-radius: 50%;
    width: 63%;
    position: absolute;
    z-index: 1;
    top: 15%;
    left: 10%
}

.drops-and-wins-logo-module_dwLogoInner__rVjGRBFL__platform-common:before {
    display: block;
    content: "";
    padding-bottom: 100%
}

.drops-and-wins-logo-module_dwLogoImage__JIztO06h__platform-common {
    display: block;
    position: absolute;
    z-index: 1;
    width: 85%;
    top: -14%;
    left: 9%
}

.drops-and-wins-logo-module_showImage__Iz08nKEM__platform-common {
    display: block
}

:where(.input-view-module_svgIconOdd__deMsZse-__platform-common) {
    fill-rule: evenodd;
    pointer-events: none
}

:root {
    --zIndex-dropdown: 900;
    --zIndex-dropdown-below: 899;
    --zIndex-notification: 850;
    --zIndex-notification-below: 849;
    --zIndex-registrationLoader: 800;
    --zIndex-registrationLoader-below: 799;
    --zIndex-cookieBarDesktop: 750;
    --zIndex-cookieBarDesktop-below: 749;
    --zIndex-mobileAsideMenu: 700;
    --zIndex-mobileAsideMenu-below: 699;
    --zIndex-modalView: 600;
    --zIndex-modalView-below: 599;
    --zIndex-modalPortal: 500;
    --zIndex-modalPortal-below: 499;
    --zIndex-cookieBarMobile: 400;
    --zIndex-cookieBarMobile-below: 399;
    --zIndex-broadcastWidgetMobile: 390;
    --zIndex-broadcastWidgetMobile-below: 389;
    --zIndex-casinoGameNavigation: 380;
    --zIndex-casinoGameNavigation-below: 379;
    --zIndex-bottomMenu: 370;
    --zIndex-bottomMenu-below: 369;
    --zIndex-modalCoupon: 360;
    --zIndex-modalCoupon-below: 359;
    --zIndex-promoSnackbar: 350;
    --zIndex-promoSnackbar-below: 349;
    --zIndex-watchersChat: 340;
    --zIndex-watchersChat-below: 339;
    --zIndex-headerMenu: 20;
    --zIndex-headerMenu-below: 19;
    --zIndex-toTop: 15;
    --zIndex-toTop-below: 14;
    --zIndex-stickyLeagueHeader: 10;
    --zIndex-stickyLeagueHeader-below: 9;
    --zIndex-desktopAsideMenuForTextPage: 10;
    --zIndex-desktopAsideMenuForTextPage-below: 9;
    --zIndex-loader: 5;
    --zIndex-loader-below: 4
}

.main-page {
    display: block;
    overflow: hidden
}

.main-rec-hot {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1
}

.main-rec-hot__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: top center
}

.main-rec-hot__bg:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top, var(--bodyBgColor), rgba(var(--bodyBgColorRbg), 0))
}

@media screen and (max-width: 767.99px) {
    .main-rec-hot__bg {
        top: -200px
    }
}

.hottest {
    min-height: 482px;
    position: relative
}

.hottest__content {
    position: relative;
    z-index: 3;
    margin-bottom: 40px
}

.hottest__content .heading {
    margin-bottom: 20px
}

.hottest__content .heading.heading--h1 {
    font-size: var(--recommendedBlockHeadingFontSize);
    font-weight: 700
}

.hottest__content-title {
    margin: 0 auto;
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px
}

@media screen and (max-width: 767.99px) {
    .hottest {
        min-height: auto
    }

    .hottest__content {
        padding-top: 0
    }

    .hottest__content .heading.heading--h1 {
        font-size: var(--recommendedBlockHeadingFontSizeMobile)
    }

    .hottest__content-head {
        padding: 0 25px
    }
}

@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);

#text-page {
    margin-top: 100px
}

.text-page {
    width: 90%;
    padding: 20px 0;
    color: var(--textPageText)
}

.text-page .events-section__header {
    margin-bottom: 50px
}

.text-page .section-title {
    text-align: center
}

.text-page .section-title h1 {
    font-size: 48px
}

.text-page h1, .text-page h2, .text-page h3 {
    color: var(--h1-2-3-4-color)
}

.text-page h1 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 30px 0;
    padding: 0
}

.text-page h2 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin: 20px 0
}

.text-page h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 15px 0
}

.text-page img {
    max-width: 100%;
    float: none;
}

.text-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--textPageText);
    margin: 0;
    padding: 0
}

.text-page p:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0
}

.text-page p strong {
    font-weight: 900
}

.text-page p + p {
    margin-top: 15px
}

.text-page a {
    color: var(--textPageLink);
    transition: color .15s ease
}

.text-page a:hover {
    color: inherit
}

.text-page ol, .text-page ul {
    list-style: none
}

.text-page ol li, .text-page ul li {
    position: relative;
    font-size: 16px;
    font-weight: 400
}

.text-page ol li + li, .text-page ul li + li {
    margin-top: 20px
}

.text-page ol {
    margin: 15px 0;
    padding: 0 0 0 15px;
    counter-reset: start
}

.text-page ol > li {
    counter-increment: start;
    padding: 0 8px 0 30px
}

.text-page ol > li:before {
    content: counter(start) ".";
    font-weight: 700;
    color: var(--textPageListElements);
    position: absolute;
    left: 0;
    top: 4px
}

.text-page ul {
    counter-reset: new;
    margin: 15px 0 15px 30px;
    padding: 0 0 0 20px
}

.text-page ul > li {
    counter-increment: new;
    padding-left: 0
}

.text-page ul > li:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--textPageLink);
    position: absolute;
    left: -20px;
    top: 7px
}

.text-page table {
    border-spacing: 0 1px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-collapse: collapse;
    margin: 1rem auto;
    padding-bottom: 1rem;
    text-align: center;
    width: max-content;
    max-width: 100%;
}

@media (max-width: 767px) {
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}


.text-page table th {
    background-color: var(--textPageTableHeadingBg);
    min-height: 45px;
    padding: 7px 15px;
    color: var(--textPageTableHeading);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

tr {
    margin: 0;
    background: #000;
}

th, td {
    padding: 1rem 1.3rem;
    min-width: 13.5rem;
    border: 0.1rem solid #fff;
}

td {
    color: #fff;
}

thead {
    color: white;
    background: white;
    border: 0.1rem solid #fff;
}

.text-page table th:first-of-type {
    border-radius: var(--borderRadius) 0 0 0
}

.text-page table th:last-of-type {
    border-radius: 0 var(--borderRadius) 0 0
}

.text-page table tbody td {
    color: var(--textPageTableBody);
    padding: 10px 15px;
    background: var(--textPageTableBodyBg);
    vertical-align: top;
    line-height: 1.5
}



.text-page table tbody tr:last-of-type td:first-of-type {
    border-radius: 0 0 0 var(--borderRadius)
}

.text-page table tbody tr:last-of-type td:last-of-type {
    border-radius: 0 0 var(--borderRadius) 0
}

.text-page .accordion {
    background-color: hsla(0, 0%, 100%, 0);
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white)
}

.text-page .accordion-panel {
    color: inherit;
    background-color: hsla(0, 0%, 100%, 0);
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out
}

.text-page .accordion-panel.accordion-panel-active {
    max-height: unset
}

.text-page .accordion-active, .text-page .accordion:hover {
    cursor: pointer
}

.text-page .accordion:after {
    content: "➕";
    font-size: 13px;
    color: var(--white);
    float: right;
    margin-left: 5px
}

.text-page .accordion-active:after {
    content: "➖"
}

@media screen and (max-width: 767.99px) {
    .front_render {
        position: relative;
        z-index: 1
    }

    .front_render .section-page {
        padding: 80px 20px 20px
    }

    .front_render .section-page__header-title, .front_render .section-page h2 {
        color: var(--mainActiveColor);
        margin-bottom: 15px;
        text-align: center
    }

    .text-page {
        width: 100%;
        padding: 0 35px;
        margin: 30px auto 0 auto
    }

    .text-page h1 {
        margin: 0 0 20px 0;
        font-size: 20px
    }

    .text-page h2 {
        font-size: 18px
    }

    .text-page h3 {
        font-size: 16px
    }

    .text-page p {
        font-size: 14px;
        line-height: 1.8
    }

    .text-page p + p {
        margin-top: 12px
    }

    .text-page ol li, .text-page ul li {
        font-size: 14px
    }

    .text-page ol li + li, .text-page ul li + li {
        margin-top: 15px
    }

    .text-page ol {
        margin: 12px 0;
        padding: 0 0 0 15px
    }

    .text-page ol > li {
        padding: 0 8px 0 20px
    }

    .text-page ol > li:before {
        top: 4px
    }

    .text-page ul {
        margin: 12px 0 12px 20px;
        padding: 0 0 0 15px
    }

    .text-page ul > li:after {
        width: 6px;
        height: 6px;
        left: -15px;
        top: 9px
    }

    .text-page table {
        margin: 12px 0
    }

    .text-page table th {
        min-height: 35px;
        padding: 5px 12px;
        font-size: 12px;
        text-align: center;
    }

    .text-page table tbody td {
        padding: 6px 12px
    }

    .text-page .table__wrapper {
        width: 100%;
        overflow-x: auto
    }
}

@media screen and (max-width: 459px) {
    .text-page {
        padding: 0 var(--mobileSidePadding)
    }

    .text-page p {
        font-size: 12px
    }

    .text-page ol li, .text-page ul li {
        font-size: 12px
    }
}

.font-icon {
    display: block
}

.font-icon--reverse {
    transform: rotate(180deg)
}

p.page-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 500
}

p.page-text + p.page-text {
    margin-top: 8px
}

@media screen and (min-width: 768px)and (max-width: 1279px) {
    p.page-text {
        font-size: 16px
    }
}

@media screen and (max-width: 767.99px) {
    p.page-text {
        font-size: 14px
    }

    p.page-text + p.page-text {
        margin-top: 6px
    }
}

@media screen and (max-width: 459px) {
    p.page-text {
        font-size: 12px
    }
}





.inf-footer {
    max-width: 1250px;
    padding: 0 25px;
    margin: 0 auto
}


@media screen and (min-width: 768.99px) {
    .to-aside-padding {
        padding-left: 115px;
        padding-right: 25px
    }

    .menu-active .to-aside-padding {
        padding-left: var(--logoSideReservedSpaceLeft);
        padding-top: 50px;
    }

    .prize-drops-page {
        margin: 0 15px 0 115px !important
    }

    .menu-active .prize-drops-page {
        margin: var(--prizeDropsPageWrapperMargin) !important
    }

    .to-aside-position {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 115px;
        right: 25px
    }

    .menu-active .to-aside-position {
        left: var(--logoSideReservedSpaceLeft)
    }
}


.condition-footer {
    display: flex;
    justify-content: center
}

.condition-footer ._55\+Aj {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
    padding: var(--footerMenuPadding);
    border-radius: 25px;
    border: var(--footerMenuBorder);
    text-align: center
}

.condition-footer .f-item a {
    display: block;
    line-height: 1;
    border-radius: var(--footerMenuTextBorderRadius);
    font-size: 13px;
    text-transform: uppercase;
    color: var(--footer-text-color);
    background: rgba(0, 0, 0, 0);
    transition: color .2s ease, background-color .2s ease;
    word-break: break-word;
    padding: 4px 16px
}

.condition-footer .f-item a:hover {
    color: var(--white)
}

.condition-footer .f-item.dVM2r a {
    color: var(--footerMenuTextActive) !important;
    background: var(--footerMenuTextActiveBcg)
}

._6pKYj {
    line-height: 1.6
}

.game-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

@media screen and (max-width: 459px) {
    .game-wrap {
        display: block
    }

    ._6pKYj {
        width: 100%
    }

    .nXqy0 {
        padding-top: 20px;
        width: 100%;
        justify-content: center
    }

    .footer {
        margin-top: var(--footerMarginTopMobile)
    }
}

.payment {
    width: var(--footerPaymentMethodsSectionWidth);
    margin: 30px auto 0
}

.payment .payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.payment .payment-methods__item--hide {
    display: none
}

.payment .payment-methods__item {
    width: var(--footerPaymentMethodsItemWidth);
    height: var(--footerPaymentMethodsItemHeight);
    background: var(--footerPaymentMethodsItemBcg);
    margin: 15px;
    border-radius: var(--footerPaymentMethodsItemBorderRadius);
    text-align: center
}








.payment .payment-methods__item img {
    filter: var(--footerPaymentMethodsItemFilter);
    max-width: 100%;
    height: 66px;
    object-fit: contain;
    padding: 14px;
    margin: 0 auto
}

@media screen and (max-width: 767.99px) {
    .footer {
        margin-top: var(--footerMarginTopTablet);
        font-size: 12px
    }

    .footer__validators {
        padding-bottom: 10px;
        background: var(--footerMenuBcg)
    }

    .iwsLs .-TUqR .DJW79 {
        width: 100%;
        height: auto
    }

    .block-inf-footer {
        margin-top: var(--footerSectionBottomMarginTopMobile);
        padding-top: 25px
    }

    .payment .payment-methods__item {
        height: 35px;
        margin: 10px 15px;
        width: var(--footerPaymentMethodsItemWidthMobile)
    }

    .payment .payment-methods__item img {
        height: 35px;
        padding: 8px
    }

    .payment .payment-methods__item--small {
        height: 55px
    }

    .payment [class^=payment-methods-module_item] {
        width: var(--footerPaymentMethodsItemWidthMobile)
    }

    .wTiLE {
        height: 70px
    }
}

.block-inf-footer {
    position: relative;
    margin-top: var(--footerSectionBottomMarginTop);
    padding-top: 40px;
    background: var(--footerSectionBackground);
    margin-bottom: 40px;
}

.game-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

.nXqy0 {
    display: flex;
    order: var(--footerAgeListOrder)
}

.Xjbjd {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    border-radius: 50%;
    width: 40px;
    min-width: 40px;
    position: relative;
    height: 40px;
    text-decoration: none
}

.Xjbjd + .Xjbjd {
    margin-left: 12px
}


.burger-btn {
    display: none;
}


/* Скрываем бургер по‑умолчанию (desktop) */
.burger-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Стили самой иконки (три полоски) */
.burger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
}
.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: #fff;
}
.burger-icon::before { top: -6px; }
.burger-icon::after  { top:  6px; }

@media (max-width: 768px) {
   
    .burger-btn {
        display: block;
        position: absolute;
        top: 23px;    
        right: 16px;  
        z-index: 1100;
    }

    
    .main-menu {
        position: fixed;
        top: 0; left: -100%;
        width: 100%;
        background: #1a112e;
        transition: left .3s ease;
        z-index: 1000;
    }
    .main-menu.open {
        left: 0;
    }
}

@media (max-width: 768px) {
    .user-options {
        position: fixed !important;
        bottom: 0px;
        left:0 !important; 
        right: 0 !important;
        display: flex !important;
        gap: 8px !important; 
        background: #000;
        z-index: 9999 !important;
        height: 50px;
        justify-content: center;
        align-items: flex-end;
        padding: 0 10px;
    }
}


 html, body {
     overflow-x: hidden;
     overflow-y: auto !important;
     height: auto !important;
     position: static !important;
     touch-action: auto;
     -webkit-overflow-scrolling: touch;
 }
body * {
    max-width: 100%;
    box-sizing: border-box;
}

p img {
    display: block;   
    margin-left: auto;  
    margin-right: auto; 
}







