@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  user-select: none;
  overflow: hidden;
  z-index: 1; /* Necessary for overflow: hidden to work correctly in Safari */
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(
    90deg,
    var(--base-color),
    var(--highlight-color),
    var(--base-color)
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}

.loader-icon{fill:var(--mainActiveColor);display:flex;justify-content:center;padding:20px 0}.deposit-page .loader-icon{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.loader-icon--padding-middle{padding:60px 0}.font-icon{display:block}.font-icon--reverse{transform:rotate(180deg)}p.page-text{font-size:16px;line-height:1.8;color:var(--textPageColor, var(--white))}p.page-text+p.page-text{margin-top:8px}@media screen and (max-width: 767px){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}}.heading{display:flex;line-height:1.1;align-items:center;justify-content:center;color:var(--mainActiveColor);text-align:center;margin-top:0;user-select:none}.heading__text{display:block}.heading--h1{font-weight:700}.heading--h2{font-weight:700}.heading--h3{font-weight:600}.heading--h4{font-weight:600}.heading--color-white{color:var(--white)}.heading--from-left{justify-content:flex-start;text-align:50%}@media screen and (min-width: 768px){.heading__text{margin:0 15px}.heading--h1{margin-bottom:20px;font-size:50px}.heading--h1 .heading__text{margin:0 20px}.heading--small{font-size:35px}.heading--h2{margin-bottom:30px;font-size:30px}.heading--h3{margin-bottom:20px;font-size:24px}.heading--h4{margin-bottom:10px;font-size:16px}}@media screen and (max-width: 767px){.loader-icon{padding:45px 0 20px}.heading__text{margin:0 10px}.heading--h1{margin-bottom:25px;font-size:24px}.heading--h1 .heading__text{margin:0 15px}.heading--h2{margin-bottom:20px;font-size:20px}.heading--h3{margin-bottom:20px;font-size:16px}.heading--h4{margin-bottom:15px;font-size:14px}}.description-box{border:1px solid var(--personalAccTextColor);color:var(--personalAccTextColor);border-radius:var(--borderRadius);padding:25px 40px;text-align:center;font-size:18px;line-height:1.8;user-select:none}.description-box a{color:var(--mainActiveColor)}.description-box a:hover{text-decoration:underline}@media screen and (max-width: 767px){.description-box{padding:15px var(--mobileSidePadding);font-size:14px}}@media screen and (min-width: 768px)and (max-width: 1279px){.heading--h1{font-size:36px}}.table{width:100%;border-collapse:separate;border-spacing:0 1px;font-size:12px}.table thead th{min-height:46px;background:var(--tableHeaderBg, var(--textDark));color:var(--tableHeaderColor, var(--textIconInactive));font-weight:700}.table tbody td{background:var(--tableBodyBg, var(--inputColor));color:var(--tableBodyColor, var(--white));min-height:35px;vertical-align:middle}.table tbody tr.active-row td{background:var(--mainActiveColor);color:var(--textDark);font-weight:bold}.table--dark tbody td{background:var(--tableBodyDarkBg, var(--tableDark));color:var(--tableBodyDarkColor, var(--textIconInactive))}.table--reverse thead th{background:var(--inputColor)}.table--reverse tbody td{background:var(--textDark);color:var(--white)}@media screen and (min-width: 768px){.table thead th{padding:10px}.table thead tr:first-of-type th:first-of-type{border-top-left-radius:5px}.table thead tr:first-of-type th:last-of-type{border-top-right-radius:5px}.table tbody td{padding:10px}.table tbody tr:last-of-type td:first-of-type{border-bottom-left-radius:5px}.table tbody tr:last-of-type td:last-of-type{border-bottom-right-radius:5px}}@media screen and (max-width: 767px){.table thead th{font-weight:600;padding:8px 5px}.table tbody td{padding:8px 5px}}@media screen and (max-width: 459px){.table{font-size:11px}}.text-active{color:var(--mainActiveColor) !important}.text-white{color:var(--white) !important}.text-light{color:var(--textIconInactive) !important}.text-medium{color:var(--textInactive) !important}.text-input-dark{color:var(--inputColor) !important}.text-dark{color:var(--textDark) !important}.text-fixed{display:block;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.font-normal{font-weight:400 !important}.font-medium{font-weight:500 !important}.font-semi-bold{font-weight:600 !important}.font-bold{font-weight:700 !important}.notification-icon{display:inline-flex;justify-content:center;align-items:center;height:60px;width:60px;font-size:50px;line-height:1;font-weight:700;border-radius:50%;color:var(--white);text-shadow:rgba(36,17,44,.6) 0 3px}.notification-icon--warning{background:var(--textIconInactive)}.notification-icon--warning:before{content:"!"}.scrolled-content{width:100%}.scrolled-content--x{overflow-x:auto;overflow-y:hidden}.scrolled-content--y{overflow-y:auto;overflow-x:hidden}@media screen and (min-width: 768px){.scrolled-content{scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0);scrollbar-width:thin}.scrolled-content--x::-webkit-scrollbar{height:4px}.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{scrollbar-color:rgba(253,205,10,.15) rgba(0,0,0,0)}.scrolled-content:hover::-webkit-scrollbar-thumb{background:rgba(186,156,180,.5)}.scrolled-content--input-color{scrollbar-color:rgba(186,156,180,.5) var(--inputColor)}.scrolled-content--input-color::-webkit-scrollbar-track{background:var(--inputColor)}.scrolled-content--input-color::-webkit-scrollbar-thumb{background:rgba(186,156,180,.5)}}.before-banner-line{width:90%;margin:0 auto;height:2px;overflow:hidden;background:var(--mainPageBannerLineColor)}.gradient-line{height:2px;background:linear-gradient(to right, transparent, #FDCD0A 50%, transparent)}.to_top{position:fixed;bottom:80px;right:var(--mobileSidePadding);width:40px;height:40px;background:var(--bonusGradient);border-radius:50%;opacity:1;visibility:visible;z-index:9;transition:opacity .2s ease,visibility .2s ease}.to_top:before{display:block;content:"";position:absolute;top:17px;left:14px;height:11px;width:11px;border-width:2px 2px 0 0;border-color:var(--inputColor);border-style:solid;transform:rotate(-45deg)}.to_top--hidden{opacity:0;visibility:hidden}.not-found{min-height:250px;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center}.not-found__icon{font-size:90px;color:rgba(186,156,180,.3);margin-bottom:30px}.not-found__blockedIcon{margin-top:30px;margin-bottom:30px;font-size:235px;color:var(--white)}.not-found__text{font-size:16px;color:var(--textIconInactive);line-height:1.8;font-weight:500}.terms-content{line-height:1.6}.terms-content p{margin:12px 0}.terms-content ul,.terms-content ol{margin:0;padding:0 20px}.terms-content ul li,.terms-content ol li{display:list-item}.terms-content ol{list-style-type:decimal}.terms-content ul{list-style-type:disc}.terms-content ol+ul{margin-top:15px}.svg-icon{display:block;position:relative;width:1em;height:1em;fill:currentColor;font-size:inherit}@media screen and (min-width: 1280px){.not-found--not-available{margin-left:230px}}@media screen and (max-width: 767px){.not-found{margin:0}.not-found__blockedIcon{margin-top:30px;font-size:170px}.not-found--not-available .not-found__text{font-size:17px;margin:0 20px;line-height:1.4}}.app-button{display:inline-flex;justify-content:center;align-items:center;height:50px;border-radius:var(--buttonBorderRadius);transition:background-color .2s ease,border-color .2s ease,color .2s ease;font-size:14px;font-weight:600;padding:5px 30px}.app-button span{display:block;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-button--outline{border:1px solid var(--mainActiveColor);color:var(--mainActiveColor);background:rgba(0,0,0,0)}.app-button--outline:hover{border-color:var(--mainActiveColor);color:var(--textDark);background:var(--mainActiveColor)}.app-button--secondary{border:1px solid var(--mainActiveColor);color:var(--textDark);background:rgba(0,0,0,0)}.app-button--secondary:hover{border-color:var(--mainActiveColor);background:var(--mainActiveColor)}.app-button--outline--with-bg{background:var(--buttonOutlineBgColor)}.app-button--outline--with-bg:hover{background:var(--mainActiveColor)}.app-button--default{background:var(--mainActiveColor);color:var(--defaultButtonTextColor);position:relative;z-index:0}.app-button--default span{position:relative;z-index:2}.app-button--default:before,.app-button--default:after{display:block;content:"";position:absolute;z-index:1;height:100%;width:100%;top:0;left:0;border-radius:var(--buttonBorderRadius);transition:opacity .2s ease}.app-button--default:before{opacity:1;background:var(--mainActiveGradient)}.app-button--default:after{opacity:0;background:var(--mainActiveHoverGradient)}.app-button--default:hover:not(:disabled){color:var(--mainActiveTextColor)}.app-button--default:hover:not(:disabled):before{opacity:0}.app-button--default:hover:not(:disabled):after{opacity:1}.app-button--border-bold.app-button--outline,.app-button--border-bold.app-button--outline-gray{border-width:2px}.app-button--transform{text-transform:uppercase}.app-button--text-extra-large{font-size:24px;padding:5px 40px}.app-button--text-large{font-size:16px;padding:5px 40px}.app-button--text-small{font-size:12px}.app-button--input-height{height:var(--inputHeight)}.app-button--large{height:65px}.app-button--medium{height:45px}.app-button--small{height:40px}.app-button--mini{height:35px}.app-button--full{width:100%}.app-button--half-padding{padding:5px 15px}.app-button--secondary{background:var(--buttonSecondary);border:1px solid var(--buttonSecondary);font-weight:500}.app-button--secondary:before{background:var(--buttonSecondary)}.app-button--secondary:after{background:var(--buttonSecondary)}.app-button--less-weight{font-weight:500}.app-button--border-radius-more{border-radius:var(--borderRadiusSecondary)}.app-button.app-button--disabled{pointer-events:none;border:1px solid var(--textInactive) !important;background:var(--buttonDisabled) !important;color:var(--buttonDisabledColor) !important}.app-button.app-button--disabled:before{background:var(--buttonDisabled) !important}.app-button:disabled{pointer-events:none}.app-button--outline-register{border:1px solid var(--textInactive);color:var(--textInactive);background:rgba(0,0,0,0)}.app-button--outline-register:hover{border-color:var(--mainActiveColor);color:var(--textDark);background:var(--mainActiveColor)}.app-button--outline-cabinet-white{border:1px solid var(--white);color:var(--white);background:rgba(0,0,0,0)}.app-button--outline-cabinet-white:hover{border-color:var(--mainActiveColor);color:var(--textDark);background:var(--mainActiveColor)}.app-button--outline-cabinet-light{border:1px solid var(--textIconInactive);color:var(--textIconInactive);background:rgba(0,0,0,0)}.app-button--outline-cabinet-light:hover{border-color:var(--mainActiveColor);color:var(--textDark);background:var(--mainActiveColor)}.app-button--outline-cabinet-reverse{border:1px solid var(--textDark);color:var(--textDark);background:rgba(0,0,0,0)}.app-button--outline-cabinet-reverse:hover{border-color:var(--textDark);color:var(--mainActiveColor);background:var(--textDark)}.app-button--outline-promo-banner-mobile{border:1px solid var(--mainActiveColor);color:var(--white);background:rgba(43,18,52,.4)}.app-button--outline-promo-banner-mobile:hover{border-color:var(--mainActiveColor);color:var(--textDark);background:var(--mainActiveColor)}.app-button--bonus-mobile{background:var(--mainActiveHoverGradient);color:var(--textDark)}.app-button .button-text-hide{display:none}@media screen and (max-width: 767px){.app-button .button-text-hide{display:block}}.flag-checkbox{display:flex;user-select:none;cursor:pointer}.flag-checkbox__children{flex:1 1 auto;color:var(--textIconInactive);font-size:14px;line-height:1.5;word-break:break-word}.flag-checkbox--c_gray .flag-checkbox__view{background-color:var(--textIconInactive);border-color:var(--textInactive)}.flag-checkbox--small-white .flag-checkbox__view{width:16px;height:16px;background-color:var(--buttonText);border-color:var(--buttonText);border-radius:var(--baseBorderRadius)}.flag-checkbox--small-white .flag-checkbox__view:before{width:6px;height:10px}.flag-checkbox--small-white .flag-checkbox__input.input-checked+.flag-checkbox__view:before{opacity:1}.flag-checkbox--small .flag-checkbox__view{width:16px;height:16px;border-radius:var(--baseBorderRadius)}.flag-checkbox--small .flag-checkbox__view:before{width:6px;height:10px}.flag-checkbox--small .flag-checkbox__input.input-checked+.flag-checkbox__view:before{opacity:1}.flag-checkbox__input{display:none}.flag-checkbox__input:checked+.flag-checkbox__view:before{opacity:1}.flag-checkbox__view{flex:0 0 20px;position:relative;width:20px;height:20px;display:flex;align-items:center;justify-content:center;border-radius:2px;margin-right:10px;border:1px solid var(--textInactive)}.flag-checkbox__view:before{content:"";display:block;transition:opacity .15s ease;width:6px;height:12px;border-color:var(--textDark);border-width:0 2px 2px 0;border-style:solid;position:absolute;top:0;left:6px;transform:rotate(40deg);opacity:0}.widget__fallback .form-select__list-dropdown{max-width:100%}.widget__fallback .form-select__list-text{max-width:100%;overflow:hidden;text-overflow:ellipsis}.form-select{position:relative;width:100%}.form-select--open .form-select__arrow{transform:rotate(-135deg);top:calc(50% - 4px)}.form-select--open .form-select__search .form-select__arrow{right:18px}.form-select--open .form-select__list-dropdown{display:block}.form-select--open .form-select__select-flex-list{display:flex}.form-select--open .form-select__placeholder{border-color:var(--inputFocus)}.form-select--open.form-select--small .form-select__arrow{transform:rotate(-135deg) scale(0.8) !important;top:50%}.form-select--disabled .form-select__placeholder{background-color:var(--inputDisabled);border-color:var(--inputDisabled)}.form-select--disabled.form-select--open .form-select__placeholder{border-color:var(--textIconInactive);background:var(--inputBackgroundForm)}.form-select--small .form-select__placeholder{font-size:12px;line-height:35px;height:40px}.form-select--small .form-select__search-input{font-size:12px;line-height:40px}.form-select--small .form-select__arrow{transform:rotate(45deg) scale(0.8);top:calc(50% - 5px)}.form-select--small .form-select__list-dropdown{top:45px}.form-select--small .form-select__select-flex-list{top:60px}.form-select--height_30 .form-select__placeholder{font-size:12px;line-height:30px;height:30px;padding-left:15px}.form-select--height_30 .form-select__search-input{font-size:12px;line-height:30px}.form-select--height_30 .form-select__arrow{transform:rotate(45deg) scale(0.8)}.form-select--height_30 .form-select__list-dropdown{top:34px}.form-select--height_30 .form-select__select-flex-list{top:34px}.form-select--text_capitalize .form-select__placeholder{text-transform:capitalize}.form-select--text_capitalize .form-select__search-input{text-transform:capitalize}.form-select--text_capitalize .form-select__list-text{text-transform:capitalize}.form-select--text_capitalize .select-flex-list-item__text{text-transform:capitalize}.form-select--disabled .form-select__placeholder{pointer-events:none;background-color:var(--inputDisabled);border-color:var(--inputDisabled);opacity:.3}.form-select__placeholder{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:0 35px 0 20px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;cursor:pointer;position:relative;user-select:none;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.form-select__placeholder--small{height:40px;font-size:12px;line-height:34px}.form-select__placeholder--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.form-select__placeholder--disabled:focus{background-color:var(--textIconInactive)}.event-full-markets .form-select__placeholder{color:var(--mainColor);border-color:var(--menuSectionBorder)}.form-select__placeholder--icon{padding-left:50px}.form-select__icon{position:absolute;left:20px;top:50%;transform:translateY(-50%)}.form-select__arrow{width:0;height:0;position:absolute;right:15px;top:calc(50% - 8px);border:4px solid;border-color:rgba(0,0,0,0) var(--formArrowColor) var(--formArrowColor) rgba(0,0,0,0);transform:rotate(45deg)}.form-select__list-dropdown{display:none;overflow:hidden;border-radius:var(--borderRadius);min-width:100%;background:var(--white);z-index:10;position:absolute;box-shadow:0 3px 5px rgba(0,0,0,.21);max-height:190px;overflow-y:auto;left:0;top:58px;list-style:none;margin:0;padding:0;scrollbar-color:var(--textIconInactive) rgba(0,0,0,0);scrollbar-width:thin}.form-select__list-dropdown::-webkit-scrollbar{width:8px}.form-select__list-dropdown::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.form-select__list-dropdown::-webkit-scrollbar-thumb{background:var(--textIconInactive);border-radius:4px}.register-fields .form-select__list-dropdown{max-width:100%}.form-select__list-item{transition:var(--mainColor) .15s ease,var(--inputDisabled) .15s ease;cursor:pointer}.form-select__list-item:nth-child(1){border-radius:var(--borderRadius) var(--borderRadius) 0 0}.form-select__list-item:nth-last-child(1){border-radius:0 0 var(--borderRadius) var(--borderRadius)}.form-select__list-item:hover{background-color:var(--textInactive)}.form-select__list-item:hover .form-select__list-text{color:var(--textDark)}.form-select__list-item--active{cursor:default;background-color:var(--mainActiveColor)}.form-select__list-item--active .form-select__list-text{color:var(--textDark)}.form-select__list-text{padding:4px 10px;box-sizing:border-box;min-height:30px;font-size:12px;font-weight:500;white-space:nowrap;color:var(--dropDownTextColor);display:flex;align-items:center;transition:color .15s ease,background-color .15s ease}.form-select__search{position:absolute;top:0;height:100%;width:100%}.form-select__search-input{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:0 35px 0 20px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;width:100%;height:100%;border-color:var(--inputFocus)}.form-select__search-input--small{height:40px;font-size:12px;line-height:34px}.form-select__search-input--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.form-select__search-input--disabled:focus{background-color:var(--textIconInactive)}.form-select__search-input:focus,.form-select__search-input:active{outline:none}.form-select__wrapper{position:relative}.form-select__text-holder{color:var(--inputPlaceholderColor)}.event-full-markets .form-select__text-holder{color:var(--mainColor)}@media screen and (max-width: 459px){.form-select__placeholder{padding:0 35px 0 12px}.form-select__search-input{padding:0 35px 0 12px}}.form__input-row{display:flex;flex-wrap:wrap;margin:0 -5px}.form__input-notice .notice-box__position--left.notice-box__position--left{bottom:auto;top:50%;transform:translateY(-50%) translateX(-100%) translateY(-10px) translateX(-10px)}.form__input-col{display:flex;padding:0 5px;flex:0 0 50%;max-width:50%}.form__input-col--small{flex:0 0 45%;max-width:45%}.form__input-col--big{flex:0 0 55%;max-width:55%}.form__input-col--with-notice{position:relative}@media screen and (max-width: 767px){.form__input-notice .notice-box__position--left.notice-box__position--left{top:auto;bottom:100%;left:50%;right:auto;transform:translateX(-50%) translateY(-10px);position:absolute}}@media screen and (max-width: 459px){.form__input-col--small .form-input__input{padding-right:10px}}.form-input{position:relative;display:block;width:100%}.form-input label .form-input__icon:not(.form-input__icon--loader):not(.form-input__icon--secondary){display:none !important}.form-input__icon--secondary{display:block}.form-input__input{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:0 26px 0 20px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;box-sizing:border-box}.form-input__input--small{height:40px;font-size:12px;line-height:34px}.form-input__input--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.form-input__input--disabled:focus{background-color:var(--textIconInactive)}.form-input__input--error{border-color:var(--inputErrorColor);background:var(--inputErrorBg)}.form-input__input--prefix{padding-right:20px}.form-input__input--short{padding-right:20px}.form-input__input::-webkit-input-placeholder{color:var(--inputPlaceholderColor)}.form-input__input:-moz-placeholder{color:var(--inputPlaceholderColor)}.form-input__input::-moz-placeholder{color:var(--inputPlaceholderColor)}.form-input__input:-ms-input-placeholder{color:var(--inputPlaceholderColor)}.form-input__input:active:not(.form-input__input--disabled),.form-input__input:focus:not(.form-input__input--disabled){outline:none;border-color:var(--textIconInactive)}.form-input__input:active:not(.form-input__input--disabled)::-webkit-input-placeholder,.form-input__input:focus:not(.form-input__input--disabled)::-webkit-input-placeholder{color:rgba(0,0,0,0)}.form-input__input:active:not(.form-input__input--disabled):-moz-placeholder,.form-input__input:focus:not(.form-input__input--disabled):-moz-placeholder{color:rgba(0,0,0,0)}.form-input__input:active:not(.form-input__input--disabled)::-moz-placeholder,.form-input__input:focus:not(.form-input__input--disabled)::-moz-placeholder{color:rgba(0,0,0,0)}.form-input__input:active:not(.form-input__input--disabled):-ms-input-placeholder,.form-input__input:focus:not(.form-input__input--disabled):-ms-input-placeholder{color:rgba(0,0,0,0)}.form-input__input:active:not(.form-input__input--disabled)+.form-input__icon--main svg,.form-input__input:focus:not(.form-input__input--disabled)+.form-input__icon--main svg{color:var(--buttonMain)}.form-input__input:active:not(.form-input__input--disabled)+.form-input__icon--reverse svg,.form-input__input:focus:not(.form-input__input--disabled)+.form-input__icon--reverse svg{color:var(--buttonMain)}.form-input__icon{position:absolute;width:16px;flex:0 0 55%;display:flex;height:100%;justify-content:center;top:0;align-items:center;font-size:16px}.form-input__icon--secondary{right:10px;width:30px;color:var(--formArrowColor);pointer-events:auto}.form-input__hint{position:relative;width:100%}.form-input__hint-list{position:absolute;z-index:1;top:100%;left:0;width:100%;border-radius:8px;background:var(--white);box-shadow:0 3px 5px rgba(0,0,0,.21);max-height:200px;overflow-y:auto;scrollbar-color:rgba(253,205,10,.4) rgba(0,0,0,0);scrollbar-width:thin}.form-input ::-ms-clear,.form-input ::-ms-reveal{display:none}@media screen and (max-width: 459px){.form-input__input{padding:0 45px 0 12px}.form-input__input--short{padding-right:12px}}.radio-button{display:block}.radio-button+.radio-button{margin-left:8px}.radio-button__content{display:block;position:relative;height:29px;padding:0 12px 0 30px;border-radius:var(--borderRadius);border:1px solid rgba(248,225,243,.5);background:var(--textDark)}.radio-button__button{position:absolute;top:5px;left:7px;height:15px;width:15px;border-radius:8px;border:1px solid var(--textIconInactive);background:var(--textInactive)}.radio-button__text{color:var(--textIconInactive);line-height:27px;font-size:14px;font-weight:400;cursor:pointer;user-select:none}.radio-button__additional{color:var(--buttonMain);margin-top:3px}.radio-button__input{display:none}.radio-button__input:checked+.radio-button__content{border-color:var(--mainActiveColor);background:var(--bodyBgColor)}.radio-button__input:checked+.radio-button__content .radio-button__button{background:var(--mainActiveColor);box-shadow:inset 0 0 0 1px var(--bodyBgColor)}.radio-button__input:checked+.radio-button__content .radio-button__text{color:var(--white)}.radio-button__container{display:flex}.radio-button__container.column{flex-direction:column}.radio-button__container.row{flex-direction:row;align-items:center;justify-content:center}.radio-button__container.row.gender-radio{justify-content:space-between}.radio-button__container.large .radio-button+.radio-button__container.large .radio-button{margin-top:13px}.radio-button__container.large .radio-button__content{height:39px;padding:0 20px 0 40px}.radio-button__container.large .radio-button__text{line-height:37px}.radio-button__container.large .radio-button__button{top:10px;left:14px}.radio-button__container.large .radio-button__additional{margin-top:8px}.radio-button__container.all-space .radio-button{flex:1 0 auto}.form__row{display:flex;flex-wrap:wrap;min-width:100%;position:relative;margin:0 -8px 15px}.form__row--no_bottom_margin{margin-bottom:0}.form__col{position:relative;padding:0 8px}.form__col .register-fields-grid{display:flex;margin:0 -5px}.form__col .register-fields-grid__col{padding:0 5px}.form__col .register-fields-grid__col--3{width:33.3333%}.form__col .register-fields-grid .error-message{margin-bottom:30px}.form__col--full{width:100%}.form__col--auto{flex:1 0 auto}.form__col--label{flex:1 0 calc(100% - 350px);max-width:calc(100% - 350px)}.form__col--one-third{flex:0 0 40%;min-width:40%}.form__col--two-thirds{flex:0 0 60%;min-width:60%}.form__col--half{flex:0 0 50%;min-width:50%}.form__col--w_350{width:350px;flex:0 0 350px}.form__col--center{flex:0 0 350px;display:flex;align-content:center;justify-content:center}.form__col--between{justify-content:space-between}.form__form-text{flex:0 0 350px;display:flex;align-items:center;min-height:var(--inputHeight);color:var(--white);font-size:18px;user-select:none;line-height:1.35}.form__form-text--right{padding-right:40px;justify-content:flex-end;text-align:right}.form__form-text--gender{min-height:40px}.form__textarea{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:15px 20px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;height:200px;resize:none;outline:none;line-height:1.35}.form__textarea--small{height:40px;font-size:12px;line-height:34px}.form__textarea--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.form__textarea--disabled:focus{background-color:var(--textIconInactive)}.form__textarea::-webkit-input-placeholder{color:var(--inputPlaceholderColor)}.form__textarea:-moz-placeholder{color:var(--inputPlaceholderColor)}.form__textarea::-moz-placeholder{color:var(--inputPlaceholderColor)}.form__textarea:-ms-input-placeholder{color:var(--inputPlaceholderColor)}.form__textarea--error{border-color:var(--inputErrorColor);background:var(--inputErrorBg)}.form__textarea:focus{outline:none;border-color:var(--textIconInactive)}@media screen and (max-width: 767px){.form__col--label{width:100%;max-width:none;flex:1 0 100%}.form__col--label .form__form-text{font-size:14px;min-height:auto;margin-bottom:6px}.form__col--label .form__form-text--right{padding-right:0;justify-content:flex-start;text-align:left}.form__col--w_350{width:100%;flex:0 0 auto}}.fake-input{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:var(--inputHeight);font-weight:400;background-color:var(--white);padding:0 20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--inputColor);font-size:14px}.fake-input--disabled{background:var(--textInactive);color:var(--textIconInactive);cursor:default;user-select:none}@media screen and (max-width: 459px){.fake-input{padding:0 12px}}.decor{position:relative}.decor:before,.decor:after,.decor div:before,.decor div:after{display:block;content:""}.decor div{position:relative;transform:rotate(45deg)}.decor--filled-square-between-lines,.decor--small-square-between-lines{width:30px;display:flex;justify-content:space-between;align-items:center}.decor--filled-square-between-lines:before,.decor--filled-square-between-lines:after,.decor--small-square-between-lines:before,.decor--small-square-between-lines:after{height:1px;width:8px;opacity:.4}.decor--filled-square-between-lines:before,.decor--small-square-between-lines:before{background:linear-gradient(to right, transparent, #FFFAF3)}.decor--filled-square-between-lines:after,.decor--small-square-between-lines:after{background:linear-gradient(to left, transparent, #FFFAF3)}.decor--filled-square-between-lines div{height:8px;width:8px;border:1px solid var(--mainActiveColor)}.decor--filled-square-between-lines div:before{height:2px;width:2px;position:absolute;top:2px;left:2px;background:var(--mainActiveColor)}.decor--small-square-between-lines div{height:3px;width:3px;background:var(--mainActiveColor)}.decor--figure-1{width:63px;height:17px}.decor--figure-1:before{position:absolute;left:18px;top:4px;width:20px;height:9px;border-style:solid;border-color:var(--white);border-width:1px 0;box-sizing:border-box}.decor--figure-1:after{position:absolute;left:0;top:8px;width:39px;height:1px;background:var(--mainActiveColor)}.decor--figure-1 div{height:13px;width:13px;border:1px solid var(--white);position:absolute;left:48px;top:2px;transform:rotate(-45deg)}.decor--figure-1 div:before{position:absolute;border-color:var(--mainActiveColor);border-style:solid;top:-6px;left:-6px;height:11px;width:11px;border-width:1px 0 0 1px}.decor--figure-2{width:83px;height:17px}.decor--figure-2:before{position:absolute;left:19px;top:2px;width:46px;height:13px;border-style:solid;border-color:var(--white);border-width:1px 0;box-sizing:border-box}.decor--figure-2:after{position:absolute;left:0;top:8px;width:55px;height:1px;background:var(--mainActiveColor)}.decor--figure-2 div{height:13px;width:13px;border:1px solid var(--mainActiveColor);position:absolute;left:68px;top:2px;transform:rotate(-45deg)}.decor--figure-2 div:before{position:absolute;border-color:var(--white);border-style:solid;top:-6px;left:-6px;height:8px;width:8px;border-width:1px 0 0 1px}.decor--figure-2 div:after{position:absolute;height:5px;width:5px;top:3px;left:3px;background:var(--mainActiveColor)}.decor--figure-3{width:116px;height:39px}.decor--figure-3:before{position:absolute;left:0;top:15px;width:9px;height:9px;background:var(--mainActiveColor)}.decor--figure-3:after{position:absolute;left:9px;top:19px;width:81px;height:1px;background:var(--white)}.decor--figure-3 div{height:27px;width:27px;border:3px solid var(--mainActiveColor);position:absolute;right:6px;top:6px;transform:rotate(-45deg)}.decor--figure-3 div:before{position:absolute;border:1px solid var(--white);top:-8px;left:-8px;height:15px;width:15px;box-sizing:border-box}.decor--figure-4{width:75px;height:17px}.decor--figure-4:before{position:absolute;left:19px;top:2px;width:38px;height:13px;border-style:solid;border-color:var(--mainActiveColor);border-width:1px 0;box-sizing:border-box}.decor--figure-4:after{position:absolute;left:0;top:8px;width:63px;height:1px;background:var(--white)}.decor--figure-4 div{height:13px;width:13px;border:1px solid var(--mainActiveColor);position:absolute;right:2px;top:2px;transform:rotate(-45deg);z-index:1}.decor--figure-4 div:before{position:absolute;border-color:var(--mainActiveColor);border-style:solid;top:-6px;left:-6px;height:8px;width:8px;border-width:1px 0 0 1px}.decor--figure-4 div:after{position:absolute;height:7px;width:7px;top:2px;left:2px;background:var(--white)}.decor--figure-5{width:182px;height:15px}.decor--figure-5:before{position:absolute;left:0;top:0;width:166px;height:1px;background:var(--textInactive)}.decor--figure-5:after{position:absolute;left:57px;bottom:0;width:85px;height:1px;background:var(--textInactive)}.decor--figure-5 div{position:absolute;right:10px;top:7px;width:145px;height:1px;background:var(--mainActiveColor);transform:none}.decor--figure-5 div:before{height:12px;width:12px;border-style:solid;border-color:var(--mainActiveColor);border-width:1px 0 0 1px;position:absolute;right:-15px;top:-6px;transform:rotate(-45deg)}.decor--figure-6{width:120px;height:17px}.decor--figure-6:before{position:absolute;left:0;top:8px;width:100px;height:1px;background:linear-gradient(to -15px, transparent, #FDCD0A 50%, #FDCD0A)}.decor--figure-6 div{height:13px;width:13px;border:1px solid var(--white);position:absolute;right:6px;top:2px;transform:rotate(45deg);z-index:1}.decor--figure-6 div:before{position:absolute;top:-4px;right:-4px;height:7px;width:7px;background:var(--mainActiveColor)}.decor--reverse{transform:rotate(180deg)}.decor--reverse.decor--figure-5:before{top:auto;bottom:0}.decor--reverse.decor--figure-5:after{top:0;bottom:auto}@media screen and (max-width: 767px){.decor.decor--figure-1,.decor.decor--figure-2,.decor.decor--figure-3,.decor.decor--figure-4,.decor.decor--figure-5,.decor.decor--figure-6{transform:scale(0.8)}.decor--reverse.decor--figure-1,.decor--reverse.decor--figure-2,.decor--reverse.decor--figure-3,.decor--reverse.decor--figure-4,.decor--reverse.decor--figure-5,.decor--reverse.decor--figure-6{transform:rotate(180deg) scale(0.8)}.decor--small{width:67px}.decor--small:before{width:45px}}@media screen and (max-width: 459px){.decor.decor--figure-5{display:none}}.hexagon-icon{height:47px;width:42px;position:relative;font-size:24px;color:var(--mainActiveColor)}.hexagon-icon__svg{fill:var(--bodyBgColor);stroke-width:2px;stroke:var(--textInactive)}.hexagon-icon__pos{position:absolute;top:-2px;left:-3px;z-index:2;height:16px;line-height:16px;text-align:center;font-size:12px;font-weight:700;color:var(--textDark);background:var(--mainActiveGradient);min-width:16px;border-radius:8px}.hexagon-icon__icon{display:flex;justify-content:center;align-items:center;height:100%;width:100%;position:absolute;z-index:1;top:0;left:0}.hexagon-icon--active{color:var(--textDark)}.hexagon-icon--active .hexagon-icon__svg{fill:var(--mainActiveColor);stroke:url(#active-gradient)}.countdown{display:flex;justify-content:space-between;align-items:flex-end;line-height:1;font-size:32px;color:var(--textInactive);text-align:center}.countdown__item{position:relative;min-width:18%;color:var(--counterTextColor, var(--white));text-align:center;border:1px solid var(--counterBorderColor, var(--inputColor));background:var(--counterBg, var(--textDark));border-radius:var(--counterBorderRadius, var(--borderRadius));padding:.21875em 2px;cursor:default}.countdown__item:not(:last-child):after{content:":";position:absolute;color:var(--counterSeparatorColor, var(--textInactive));right:-18px;bottom:4px;font-size:30px;font-weight:700}.countdown__item-desc{font-size:.375em;text-transform:uppercase;margin-bottom:.6em}.countdown__item-number{font-weight:700}.countdown--acc-banner .countdown__item{background:rgba(43,18,52,.6)}.countdown--bonus-light{color:var(--textDark)}.countdown--bonus-light .countdown__item{background:var(--white);color:var(--textDark);box-shadow:0 5px 10px rgba(0,0,0,.2);border-color:var(--white)}.countdown--aside-banners{padding:0 20px}.countdown--aside-banners .countdown__item{min-width:37px;height:48px}.countdown--aside-banners .countdown__item-number{font-size:19px}.countdown--aside-banners .countdown__item-desc{font-size:8px;font-weight:500}@media screen and (min-width: 768px){.ui-select{position:relative;width:100%}.ui-select::placeholder{color:var(--uiSelectText)}.ui-select__outer{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:0 26px 0 20px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;position:relative;cursor:pointer}.ui-select__outer--small{height:40px;font-size:12px;line-height:34px}.ui-select__outer--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.ui-select__outer--disabled:focus{background-color:var(--textIconInactive)}.ui-select__outer--icon{padding-left:20px}.ui-select__outer--selected .ui-select__outer-text{color:var(--inputColor)}.ui-select__outer-icon{display:none}.ui-select__outer-text{color:var(--inputPlaceholderColor);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ui-select__outer-arrow{position:absolute;top:0;bottom:0;right:14px;display:flex;align-items:center;color:var(--menuSectionBorder);font-size:14px}.ui-select__outer-arrow .svg-icon{transform:rotate(180deg);transition:transform .15s ease;color:var(--uiSelectArrow);width:1.3em;height:1.3em}.ui-select__inner{display:none;position:absolute;z-index:1;top:100%;left:0;width:100%;padding-top:5px;pointer-events:none}.ui-select__inner>*{pointer-events:auto}.ui-select__inner.ui-select__inner--small .ui-select__list-item{min-height:34px;font-size:12px}.ui-select__inner--size-300{width:300px}.ui-select__inner--position-right{left:auto;right:0}.ui-select__list{overflow:hidden;border-radius:8px;width:100%;background:var(--white);box-shadow:0 3px 5px rgba(0,0,0,.21);max-height:190px;overflow-y:auto;scrollbar-color:rgba(253,205,10,.4) rgba(0,0,0,0);scrollbar-width:thin}.ui-select__list::-webkit-scrollbar{width:6px}.ui-select__list::-webkit-scrollbar-track{border-radius:3px}.ui-select__list::-webkit-scrollbar-thumb{border-radius:3px;background:rgba(253,205,10,.4);transition:background-color .2s ease}.ui-select__list-item{display:flex;align-items:center;padding:6px 10px;min-height:40px;font-size:14px;font-weight:500;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--bodyBgColor);transition:color .15s ease,background-color .15s ease;user-select:none}.ui-select__list-item:hover{background-color:var(--dropDownTextHoverBg);color:var(--dropDownTextHover);cursor:pointer}.ui-select__list-item--active{font-weight:700}.ui-select__list-item-icon{width:35px;margin-right:10px}.ui-select__flag{width:28px;height:20px;background-repeat:no-repeat;background-size:cover;background-position:center;border-radius:3px}.ui-select__flag img{display:block}.ui-select__search{pointer-events:auto;position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.ui-select__search input{height:100%;width:100%;background:none;border:0;padding:0 26px 0 21px;font-weight:400;color:var(--inputColor);outline:none;font-size:14px}.ui-select__search input::placeholder{color:var(--inputPlaceholderColor)}.ui-select__actions{display:none}.ui-select__currency-item{width:100%;display:flex}.ui-select__currency-item-name{width:calc(100% - 50px);white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.ui-select__currency-item-code{width:50px;text-align:right}.ui-select.ui-select--open .ui-select__outer{border-color:var(--buttonMain) !important}.ui-select.ui-select--open .ui-select__outer-arrow .svg-icon{transform:rotate(0deg)}.ui-select.ui-select--open .ui-select__inner{display:block}.ui-select.ui-select--open.ui-select--searchable .ui-select__outer-icon,.ui-select.ui-select--open.ui-select--searchable .ui-select__outer-text{display:none}.ui-select.ui-select--error .ui-select__outer{border-color:var(--liveColor)}.ui-select.ui-select--disabled .ui-select__outer{pointer-events:none;background-color:var(--inputDisabledBg);border:3px solid var(--inputDisabledBg);border-color:var(--inputDisabledBg)}.ui-select.ui-select--small .ui-select__outer{height:40px;line-height:38px;font-size:12px;border-radius:20px}.ui-select.ui-select--small .ui-select__search input{font-size:12px}.ui-select.ui-select--small .ui-select__outer-arrow{font-size:12px}}@media screen and (max-width: 767px){.ui-select__inner .not-found{height:calc(100vh - 92px)}.ui-select{position:relative;width:100%}.ui-select__list{color:var(--inputColor)}.ui-select__outer{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:0 40px 0 16px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;height:44px;position:relative;line-height:42px}.ui-select__outer--small{height:40px;font-size:12px;line-height:34px}.ui-select__outer--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.ui-select__outer--disabled:focus{background-color:var(--textIconInactive)}.cw-container .ui-select__outer{height:55px;line-height:55px}.one-step .ui-select__outer{height:55px;line-height:55px}.ui-select__outer--selected .ui-select__outer-text{color:var(--inputColor)}.ui-select__outer-icon{display:none}.ui-select__outer-text{color:var(--inputPlaceholderColor);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:36px}.cw-container .ui-select__outer-text{line-height:50px}.one-step .ui-select__outer-text{line-height:50px}.ui-select__outer-arrow{position:absolute;top:calc(50% - 8px);right:15px;color:var(--inputColor);font-size:10px;transform:rotate3d(1, 0, 0, 180deg)}.ui-select__outer-arrow .svg-icon{width:16px;height:16px;color:var(--uiSelectArrow)}.ui-select__inner{background:var(--white)}.ui-select__list{font-weight:500;font-size:14px;color:var(--inputColor);padding:10px 0}.ui-select__list-item{padding:0 10px;line-height:41px;display:flex;align-items:center;color:var(--inputColor)}.ui-select__list-item-icon{width:35px;margin-right:12px}.ui-select__list-item-text{width:calc(100% - 45px);white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.ui-select__flag img{width:100%;height:auto;display:block;border-radius:3px}.ui-select__search{display:flex;align-items:center;border-bottom:1px solid var(--buttonMain)}.ui-select__search input{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:0 40px 0 22px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;border:none;height:45px;line-height:45px;border-radius:0}.ui-select__search input--small{height:40px;font-size:12px;line-height:34px}.ui-select__search input--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.ui-select__search input--disabled:focus{background-color:var(--textIconInactive)}.ui-select__actions{position:absolute;right:5px;height:45px;display:flex;align-items:center}.ui-select__action-close{display:flex;justify-content:center;align-items:center;font-size:17px;height:40px;width:40px;color:var(--inputColor);background:none}.ui-select--error .ui-select__outer{border-color:var(--liveColor)}.ui-select--disabled .ui-select__outer{pointer-events:none;background-color:var(--inputDisabledBg);border:3px solid var(--inputDisabledBg);border-color:var(--inputDisabledBg)}.app-select-short__list{font-weight:500;font-size:14px;max-width:90vw;min-width:260px;padding:10px}.app-select-short__list-item{background:#fff;color:var(--mainColor);font-size:16px;font-weight:400;padding:15px 10px;display:flex;align-items:center}.app-select-short__list-item.disabled{background:var(--tableDelimiter)}.app-select-short__list-item.disabled>div{opacity:.7}.app-select-short__list-item:first-of-type{border-radius:5px 5px 0 0}.app-select-short__list-item:last-of-type{border-radius:0 0 5px 5px}.app-select-short__list-item:only-child{border-radius:5px}.app-select-short__list-item:not(:last-of-type){border-bottom:1px solid #dadada}.app-select-short__list-item--with-icon .app-select-short__list-item-icon .svg-icon{fill:var(--changeOddsIcon)}.app-select-short__list-item--with-icon .app-select-short__radio-button{width:20px}.app-select-short__list-item--with-icon .app-select-short__list-item-text{text-transform:initial;margin-right:14px}.app-select-short__list-item-icon{margin-right:14px;flex-shrink:0}.app-select-short__radio-button{height:20px;width:20px;flex:0 0 20px;border-radius:50%;border:2px solid var(--bonusBorderColor);background:rgba(0,0,0,0);position:relative;margin-left:auto}.app-select-short__radio-button.active{border-color:var(--buttonMain)}.app-select-short__radio-button.active:after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;top:3px;left:3px;background:var(--buttonMain)}.app-select select,.app-select.fake-select{position:relative}.app-select.c_white.fake-select{display:block;width:100%;border-radius:var(--borderRadius);height:var(--inputHeight);line-height:49px;font-weight:500;background-color:var(--inputBackgroundForm);border:3px solid var(--inputBackgroundForm);padding:5px 16px;color:var(--inputColor);font-size:14px;transition:border-color .2s ease,background-color .2s ease;color:var(--inputPlaceholderColor);height:44px;line-height:26px}.app-select.c_white.fake-select--small{height:40px;font-size:12px;line-height:34px}.app-select.c_white.fake-select--disabled{border-color:var(--textIconInactive);background-color:var(--textIconInactive);pointer-events:none}.app-select.c_white.fake-select--disabled:focus{background-color:var(--textIconInactive)}.app-select.c_white.fake-select.selected{color:var(--inputColor)}.app-select svg:not(.left){position:absolute;right:16px;top:50%;transform:translateY(-50%) rotate(180deg);font-size:10px;pointer-events:none;width:16px;height:16px;color:var(--uiSelectArrow)}}.control-button{display:flex;justify-content:center;align-items:center;width:46px;height:29px;border:1px solid var(--mainActiveColor);border-radius:15px;font-size:15px;color:var(--mainActiveColor);background:var(--bodyBgColor);transition:background-color .2s ease,color .2s ease}.control-button:disabled{pointer-events:none;color:var(--textInactive);border-color:var(--textInactive)}.control-button:not(:disabled):hover{background-color:var(--mainActiveColor);color:var(--textDark)}.back-link-button{width:104px;height:35px;border:1px solid var(--textIconInactive);color:var(--textIconInactive);font-size:14px;line-height:1;display:flex;justify-content:center;align-items:center;border-radius:18px;background:var(--bodyBgColor);cursor:pointer;transition:color .2s ease,background-color .2s ease;margin-bottom:30px}.back-link-button span{margin-right:8px}.back-link-button:hover{background:var(--textIconInactive);color:var(--textDark)}.banner{position:relative}.banner__bg-wrapper{position:absolute;top:0;left:0;width:100%;overflow:hidden;z-index:5;border-radius:var(--borderRadius) var(--borderRadius) 0 0}.banner__bg{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.banner__bg:before{display:block;content:"";position:absolute;bottom:0;left:0;width:100%;z-index:1;background:linear-gradient(to 0, var(--bodyBgColor), transparent)}.banner__bg.hof-page__banner-bg{height:100%}.banner__image{position:absolute;z-index:1;display:block;height:100%;width:auto;min-width:80px;bottom:0}.banner__image-shadow{position:absolute;bottom:0;left:0;height:100%;width:100%;z-index:4;background:var(--bannerShadowGradient)}.banner__center-shadow{position:absolute;top:0;left:34%;height:100%;width:30%;z-index:3;background:var(--bannerCenterShadowGradient);filter:blur(107px)}.banner__content{position:relative;z-index:7}.games-search-input{height:var(--gamesSearchInputHeight, 65px);background:var(--textDark);border-radius:var(--borderRadius);border:3px dashed var(--textIconInactive);position:relative;margin:0 auto;max-width:500px}.games-search-input input{border:none;background:rgba(0,0,0,0);height:100%;width:calc(100% - 60px);padding:0 10px 0 25px;font-weight:500;font-size:14px;color:var(--white)}.games-search-input input::placeholder{color:var(--textIconInactive);opacity:var(--inputPlaceholderOpacity, 1)}.games-search-input span{display:flex;align-items:center;justify-content:center;position:absolute;top:0;right:0;width:60px;height:100%;background:rgba(0,0,0,0);color:var(--mainActiveColor);font-size:20px}@media screen and (max-width: 767px){.games-search-input{height:45px;background:var(--inputSearchColor);border-color:var(--textIconInactive);border-style:solid;border-width:1px 0 0 0;max-width:none}.games-search-input input{padding:0 10px 0 20px;font-size:12px}.games-search-input input::placeholder{color:var(--textInactive)}.games-search-input span{width:50px}}@media screen and (min-width: 768px){.basic-modal{width:829px;padding:40px 30px 30px;border:1px solid var(--mainActiveColor);box-shadow:var(--modalShadow);border-radius:var(--borderRadius);background:var(--bodyBgColor);position:relative}}@media screen and (min-width: 768px)and (max-width: 1279px){.basic-modal{width:640px}}@media screen and (max-width: 767px){.basic-modal{min-height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:15% 35px 35%}}@media screen and (max-width: 459px){.basic-modal{padding:15% var(--mobileSidePadding) 35%}}.confirmation-modal.basic-modal{padding:40px 15px 15px}.confirmation-modal__icon{text-align:center;padding-bottom:30px}.confirmation-modal__content{text-align:center;font-size:18px;font-weight:500;line-height:1.8;padding-bottom:30px}.confirmation-modal__actions{display:flex;flex-wrap:wrap;justify-content:space-between}.confirmation-modal__actions .app-button{width:calc(50% - 6px);padding:5px;font-size:16px;height:50px}@media screen and (max-width: 767px){.confirmation-modal__content{font-size:16px}.confirmation-modal__actions{width:450px;max-width:90%}.confirmation-modal__actions .app-button{width:100%;margin-bottom:23px}}@media screen and (max-width: 459px){.confirmation-modal__content{font-size:15px}}.one-step__input-container{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:4px}.one-step__field-text{font-size:14px;line-height:1.35;font-weight:400;color:var(--textInactive)}.one-step.register-modal-max_520{max-width:520px}.error_message--margin_top{margin-top:10px}.errorMessage{padding:12px 20px;border-radius:var(--borderRadius);border:1px solid var(--error);color:var(--error);font-size:14px;font-weight:600;text-align:left;margin-top:10px}.react-loading-skeleton{--base-color: var(--skeletonBaseColor);--highlight-color: var(--skeletonAccentColor)}
.styles-module_loader__bmoVj2rw__platform-common{align-items:center;background-color:var(--registrationPopupBg);display:flex;height:100vh;justify-content:center;left:50%;position:fixed;top:50%;transform:translate(-50%,-50%);width:100vw;z-index:var(--zIndex-registrationLoader)}.styles-module_loaderWrapper__ovxuSrLb__platform-common{align-items:center;background-color:var(--registrationPopupItemBg);border-radius:10px;display:flex;flex-direction:column;height:197px;justify-content:center;width:194px}.styles-module_loaderTitle__cLDrblrm__platform-common{color:var(--registrationPopupTitle);font-size:21px;font-weight:700;line-height:23px;margin-bottom:5px;text-transform:uppercase}.styles-module_loaderSubtitle__6E1GR6EK__platform-common{color:var(--registrationPopupText);font-size:14px;font-weight:500;line-height:21px}.styles-module_loaderLogo__zZfgSbGF__platform-common{align-items:center;display:flex;height:66px;justify-content:center;margin:14px 0;width:86px}.styles-module_loaderLogo__zZfgSbGF__platform-common img{max-height:100%;max-width:100%}.styles-module_loaderText__BJpw6iCh__platform-common{color:var(--registrationPopupText);font-size:14px;font-weight:400;line-height:25px}

.currency-variable-loader-module_loader__T-ltN1Mf__platform-common{font-size:16px}.currency-variable-loader-module_dotFirst__pwZ9TCD8__platform-common{animation:currency-variable-loader-module_currency-variable-loader__IoSlrqX3__platform-common 1s infinite linear alternate;animation-delay:.5s}.currency-variable-loader-module_dotSecond__n000vjnv__platform-common{animation:currency-variable-loader-module_currency-variable-loader__IoSlrqX3__platform-common 1s infinite alternate;animation-delay:0s}.currency-variable-loader-module_dotThird__g-96c-Lz__platform-common{animation:currency-variable-loader-module_currency-variable-loader__IoSlrqX3__platform-common 1s infinite alternate;animation-delay:1s}@keyframes currency-variable-loader-module_currency-variable-loader__IoSlrqX3__platform-common{0%{opacity:1}50%,to{opacity:.5}}

: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}

@media screen and (min-width: 768px){.header{position:fixed;z-index:20;top:0;left:0;right:0;height:73px;padding:0 var(--pageRightPadding) 0 var(--pageLeftPadding);display:flex;align-items:center;background:var(--bodyBgColor)}.header__menu-opener{display:none;flex:0 0 45px;min-width:45px;height:45px;width:45px;border-radius:50%;background:var(--navElements);font-size:20px;color:var(--textInactive);align-items:center;justify-content:center;margin-right:3px}.header__menu-opener .font-icon{position:relative;left:2px;top:-1px}.header__menu-opener:hover{color:var(--mainActiveColor)}.header__logo-side{flex:0 0 var(--logoSideWidth);display:flex;justify-content:space-between;align-items:center;height:100%;padding-left:13px;width:var(--logoSideWidth)}.header__logo{width:126px;cursor:pointer}.header__logo img{width:100%;height:auto;aspect-ratio:24/10}.header__search-opener{height:45px;width:45px;display:flex;justify-content:center;align-items:center;cursor:pointer;color:var(--searchHeaderIconColor, var(--textInactive));transition:color .2s ease;border-radius:50%;background:var(--navElements)}.header__search-opener .font-icon{font-size:22px}.header__search-opener:hover{color:var(--mainActiveColor)}.header__nav-side{flex:1 1 auto;height:100%;display:flex;justify-content:space-between}.header__nav-side .header-clock{margin-right:20px}}
:where(.svg-icon-module_icon__5maywl3p__platform-common){display:block;position:relative;width:1em;height:1em;fill:currentColor;font-size:inherit;top:0}

.user-options{height:100%;display:flex;align-items:center}.user-options .app-button{padding-left:40px;padding-right:40px}.user-options .app-button+.app-button{margin-left:10px}.user-options .language-switcher{margin-left:25px}.user-options .user-options__reg-now{min-width:185px}@media screen and (min-width: 768px)and (max-width: 1279px){.user-options .app-button{padding-left:20px;padding-right:20px}}
.header-notifications{margin-right:25px}.header-notifications__icon{position:relative;font-size:26px;color:var(--mainActiveColor)}.promotions-count{position:absolute;font-size:11px;font-weight:500;line-height:16px;height:16px;min-width:16px;padding:0 4px;top:-4px;right:-4px;background:var(--promoCountBgColor);text-align:center;border-radius:8px;color:var(--white)}
.customer-dropdown{position:relative}.customer-dropdown__holder{cursor:pointer}.customer-dropdown__list{display:flex;flex-direction:column;align-items:center;position:absolute;top:calc(100% + 5px);left:0;z-index:12;min-width:100%;overflow-y:auto;background-color:var(--bodyBgColor);border-radius:var(--borderRadius);padding:6px 0;border:1px solid var(--textInactive);box-shadow:0 3px 5px rgba(0,0,0,.21)}.customer-dropdown__list-item{font-size:14px;line-height:1;color:var(--textIconInactive);font-weight:500;padding:7px 15px;transition:background-color .15s ease;user-select:none;white-space:nowrap;background:rgba(0,0,0,0);cursor:pointer}.customer-dropdown__list-item:hover:not(.active){background-color:var(--inputColor);color:var(--mainActiveColor)}.customer-dropdown__list-item.active{cursor:default;color:var(--white)}.customer-dropdown__list-item-balance{font-size:14px;line-height:1;color:var(--textIconInactive);font-weight:500;padding:7px 15px;user-select:none;text-align:center;width:150px;word-break:break-word}.customer-dropdown__list-item-balance-value{margin-top:6px;padding:0 14px;height:28px;min-width:107px;background:var(--bodyBgColor);border:1px solid var(--mainActiveColor);box-sizing:border-box;border-radius:100px;font-family:Poppins;font-style:normal;font-weight:bold;font-size:14px;line-height:100%;display:flex;align-items:center;justify-content:center;color:var(--white)}.customer-dropdown__list-item-balance-value--bonus{color:var(--white);border:1px solid var(--textInactive)}.customer-dropdown__separator{margin:7px 0;width:28px;height:8px;background:url(/assets/casino/dropdown-separator.png) center center no-repeat}
.currency-symbol-module_imageWrapper__9cC4sA9K__platform-common{display:flex;align-items:center;justify-content:center;width:18px;height:18px}.currency-symbol-module_inlineImg__OpjbKKQd__platform-common{display:inline-flex;width:1ch;height:1ch;min-width:17px;min-height:17px}.currency-symbol-module_imageWrapper__9cC4sA9K__platform-common img,.currency-symbol-module_inlineImg__OpjbKKQd__platform-common img{max-width:100%;max-height:100%}

.dot-loader-module_wrapper__l30srMB7__platform-common{width:35px;height:8px;position:relative}.dot-loader-module_dots__UAOjaUG8__platform-common{display:flex}.dot-loader-module_dots__UAOjaUG8__platform-common.dot-loader-module_two__V0thRYsQ__platform-common{animation-duration:2s;animation-delay:1s;animation-name:dot-loader-module_rotateDots__vmTL3Yeu__platform-common;animation-timing-function:ease-in-out;animation-iteration-count:infinite}.dot-loader-module_dots__UAOjaUG8__platform-common.dot-loader-module_three__qTGgIk-H__platform-common{position:absolute;top:0;right:0;animation-duration:2s;animation-name:dot-loader-module_rotateDots__vmTL3Yeu__platform-common;animation-timing-function:ease-in-out;animation-iteration-count:infinite}.dot-loader-module_dot__B1HuGUpw__platform-common{margin:0 2px;height:8px;width:8px;border-radius:50%;background:#1a2b33}@keyframes dot-loader-module_rotateDots__vmTL3Yeu__platform-common{0%,50%{transform:rotate(0)}to{transform:rotate(180deg)}}

.FQhYl{display:flex;width:40px;align-items:center;background:rgba(0,0,0,0);margin-left:25px}.FQhYl .kzzsP{display:block;background-size:cover;background-position:center;width:27px;height:16px;margin-right:7px}.FQhYl .kzzsP>img{aspect-ratio:4/3}.FQhYl .pGtXw{display:block;height:7px;width:7px;border-style:solid;border-color:var(--textInactive);border-width:0 1px 1px 0;position:relative;top:-2px;transform:rotate(45deg);transition:border-color .2s ease,top .2s ease}.FQhYl:hover .pGtXw{top:0;border-color:var(--white)}
.flagIcon-module_icon__D16gE-G1__platform-common{height:auto;width:100%}

.DvLEN{display:flex;height:100%;padding-left:15px;user-select:none}.l-QP4{flex:1 0 auto;position:relative}.TM8-m{position:absolute;height:0;visibility:hidden;opacity:0;pointer-events:none}.ujILN{height:100%;font-weight:600;padding:0 10px;font-size:16px;line-height:73px;position:relative}.ujILN._75ot6 .WYKiX{color:var(--siteNavLinkActive) !important;cursor:default}.ujILN.VT7cV{width:147px}.WYKiX{display:flex;align-items:center;text-wrap:none;color:var(--siteNavLink);transition:color .15s ease;cursor:pointer}.WYKiX:hover{color:var(--siteNavLinkHover)}.HQjp-{display:flex;align-items:center;justify-content:center;padding:0 10px}._7uXI3{transition:color .15s ease;color:var(--siteNavLink);cursor:pointer}._7uXI3:hover{color:var(--siteNavLinkHover)}.jHQnj{margin-right:10px;display:flex;justify-content:center;align-items:center;font-size:24px}.sBztr{margin-right:8px;font-size:20px}._21UL9{display:none;list-style:none;position:absolute;top:60px;left:-25px;padding:10px 0;border-radius:8px;min-width:200px;background:var(--siteNavLinkDropdownBg);z-index:10;box-shadow:0 3px 12px rgba(0,0,0,.3);line-height:1.3}._21UL9.IVTPx{display:block}.Iq1le{padding:10px 25px;cursor:pointer}.Iq1le._75ot6 .WYKiX{color:var(--siteNavLinkActive) !important;cursor:default}.Iq1le+.Iq1le{margin-top:5px}
.aviator-casino-module_aviator_container__lfAFgh2-__platform-common{align-items:center;display:flex;justify-content:center;position:relative}.aviator-casino-module_aviator_container__lfAFgh2-__platform-common .aviator-casino-module_aviator__TTP0z5aw__platform-common{font-size:33px;position:relative;top:5px}.aviator-casino-module_aviator_container__lfAFgh2-__platform-common .aviator-casino-module_propeller__3MZSpIm-__platform-common{font-size:26px;position:relative;right:11px;top:-1px;transform:rotate(-20deg)}.aviator-casino-module_aviator_container__lfAFgh2-__platform-common .aviator-casino-module_aviatorTitle__uNLL5tZj__platform-common{font-size:58px;position:relative;top:5px}.aviator-casino-module_aviatorAnimation__htqdgowU__platform-common .aviator-casino-module_aviator_container__lfAFgh2-__platform-common{animation:aviator-casino-module_aviatorLevitation__b0o2DgqG__platform-common 4s}.aviator-casino-module_aviatorAnimation__htqdgowU__platform-common .aviator-casino-module_propeller__3MZSpIm-__platform-common{animation:aviator-casino-module_aviatorProppeler__CnpYT5aN__platform-common 4s}@keyframes aviator-casino-module_aviatorLevitation__b0o2DgqG__platform-common{0%{top:0}15%{top:-7px}35%{transform:rotate(35deg)}60%{top:7px}to{top:0}}@keyframes aviator-casino-module_aviatorProppeler__CnpYT5aN__platform-common{0%{transform:rotate(160deg)}to{transform:rotate(4120deg)}}

@media screen and (min-width: 768px){.aside-block{position:fixed;width:var(--asideWidth);height:calc(100vh - 200px);top:73px;left:0;padding:7px 2px 15px var(--pageLeftPadding);background:var(--bodyBgColor);z-index:15}.aside-block__inner{height:100%;overflow-y:auto;padding-right:5px;padding-left:5px;background:var(--asideNavBg);border-radius:var(--borderRadius);box-shadow:0 0 20px var(--bodyBgColor);scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0);scrollbar-width:thin}.aside-block__inner::-webkit-scrollbar{width:3px}.aside-block__inner::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.aside-block__inner::-webkit-scrollbar-thumb{background:rgba(0,0,0,0)}.aside-block__inner:hover{scrollbar-color:rgba(253,205,10,.7) rgba(0,0,0,0)}.aside-block__inner:hover::-webkit-scrollbar-thumb{background:rgba(253,205,10,.7)}.aside-block__layout-switcher{display:flex;align-items:center;height:45px;padding:0 20px;color:var(--textInactive);background:#2a2829;border-radius:var(--borderRadius)}.aside-block__layout-switcher img{margin-right:20px}.aside-block__latest-winners-title{font-size:14px;color:var(--mainActiveColor);padding:0 10px 0 15px}.aside-block--hidden{opacity:0}}
.TP7R8,.gzkPt{width:100%;margin-top:9px;margin-bottom:16px}.sS0h-{display:block;width:100%}.nyFQQ{background:var(--asideBlockBgActive)}.cSMow{display:flex;align-items:center;gap:15px;width:100%;height:50px;padding:0 15px;color:var(--dropdownNavColor);background:rgba(0,0,0,0);transition:color .2s ease,background-color .2s ease;cursor:pointer}.cSMow:hover{color:var(--mainActiveColor)}.ANynl{display:flex;justify-content:center;align-items:center;width:30px;height:36px;font-size:28px}.phNIi{flex-basis:100%}._9Afz8{display:inline-flex;justify-content:center;align-items:center;min-width:14px;width:auto;transform:rotate(0);transition:transform .2s ease-in-out}._1Q09B{transform:rotate(180deg)}.UNz65{display:flex;justify-content:center;align-items:center;gap:15px;width:100%;height:50px}.wBGqj{display:flex;align-items:center;gap:15px;padding:0 16px 0 32px;width:100%;height:42px;color:var(--dropdownNavColor);transition:color .15s ease-in-out}.wBGqj:hover,.czawd{color:var(--white)}.wBGqj:hover .micPn,.czawd .micPn{color:var(--mainActiveColor)}.micPn{position:relative;display:flex;align-items:center;width:24px;height:auto;font-size:24px}.micPn::before{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.wBGqj .nc-category_favorites:before,.wBGqj .nc-category_lobby_live:before{font-size:20px}@media screen and (max-width: 767px){.sS0h-{background:var(--asideNavBg);position:relative;font-size:16px;font-weight:600;border-radius:5px;overflow:hidden}.cSMow{gap:18px;padding:0 16px;height:46px;color:var(--dropdownNavColorMobile)}.cSMow:hover{color:var(--dropdownNavColorMobile)}.FIZ4o{padding:4px 12px 12px}.ANynl{font-size:24px}.wBGqj{padding:0 16px;height:46px;color:var(--dropdownNavColorMobile);background:var(--categoryLinkBgMobile);border-radius:5px}.czawd{color:var(--white)}.czawd .micPn{color:var(--mainActiveColor)}}@media screen and (max-width: 459px){.sS0h-{font-size:14px}.cSMow{gap:20px}}
.aside-nav{user-select:none}.aside-nav__item-icon{position:relative}.aside-nav.aside-nav--dropdown{position:relative;background:var(--dropdownNavBg);box-shadow:var(--dropdownNavShadow)}.aside-nav.aside-nav--dropdown>li{margin-bottom:10px}.aside-nav.aside-nav--dropdown .aside-nav__item{padding:0 15px;color:var(--dropdownNavColor)}.aside-nav.aside-nav--dropdown .aside-nav__item-icon{flex:30px 0 0;width:30px;font-size:28px;color:inherit}.aside-nav.aside-nav--dropdown .aside-nav__item-icon-aviator{width:auto}@media screen and (min-width: 768px){.aside-nav{border-radius:var(--borderRadius);background:var(--asideNavBg);margin-bottom:15px}.aside-nav__item{height:50px;flex:30px 0 0;display:flex;align-items:center;padding:0 15px 0 10px;color:var(--textInactive);background:rgba(0,0,0,0);transition:color .2s ease,background-color .2s ease}.aside-nav__item--with-count{padding-right:8px}.aside-nav__item:not(.aside-nav__item--active):hover{color:var(--mainActiveColor);cursor:pointer}.aside-nav__item--active{color:var(--textActive);background:linear-gradient(to right, rgba(255, 159, 108, 0.23), transparent)}.aside-nav li:first-of-type .aside-nav__item{border-radius:var(--borderRadius) var(--borderRadius) 0 0}.aside-nav li:last-of-type .aside-nav__item{border-radius:0 0 var(--borderRadius) var(--borderRadius)}.aside-nav__item-icon{margin-right:10px;width:45px;flex:45px 0 0;display:flex;justify-content:center;align-items:center;height:36px;font-size:24px}.aside-nav__item-icon-aviator{width:auto}.aside-nav__item-title{flex:1 1 110%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.aside-nav__item-count{min-width:25px;line-height:18px;font-size:14px;border-radius:var(--borderRadius);padding:0 5px;margin-left:10px;text-align:center;background:var(--mainActiveGradient);box-shadow:0 4px 4px rgba(0,0,0,.25);color:var(--textDark)}.aside-nav__divider{margin:10px 0;height:1px;background:linear-gradient(90deg, transparent 2%, #F8E1F3 50%, transparent 98%)}}@media screen and (max-width: 767px){.aside-nav{margin-bottom:20px}.aside-nav li+li{margin-top:4px}.aside-nav__item{height:55px;flex:1 1 110%;display:flex;justify-content:space-between;align-items:center;padding:0 20px;color:var(--textIconInactive);background:var(--asideNavBg);position:relative;font-size:16px;font-weight:600;border-radius:var(--borderRadius)}.aside-nav__item .site-menu__link-text{position:static;justify-content:space-between}.aside-nav__item--active{color:var(--mainActiveColor)}.aside-nav__item-icon{margin-right:15px;width:46px;display:flex;justify-content:center;font-size:31px}.aside-nav__item-count{min-width:16px;height:16px;font-size:12px;line-height:1;border-radius:50%;background:var(--mainActiveGradient);color:var(--textDark);display:flex;align-items:center;justify-content:center;position:absolute;z-index:1;top:6px;left:7px}.aside-nav__divider{display:none}.aside-nav__aviator{width:100%;justify-content:space-between}.aside-nav__item-icon-aviator{width:100%;margin:0}.aside-nav__game-categories{background:var(--asideNavGameCategories);border-radius:5px;padding:12px}.aside-nav__game-categories--play-title{text-align:center;color:var(--mainActiveColor);font-weight:600;font-size:16px;margin-bottom:5px}.aside-nav.aside-nav--dropdown>li{margin-bottom:4px}.aside-nav.aside-nav--dropdown .site-menu__link-text{justify-content:flex-start}.aside-nav.aside-nav--dropdown .aside-nav__item{justify-content:flex-start;padding:0 16px;height:46px;color:var(--dropdownNavColorMobile)}.aside-nav.aside-nav--dropdown .aside-nav__item--active{color:var(--mainActiveColor)}.aside-nav.aside-nav--dropdown .aside-nav__item-count{left:35px}}@media screen and (max-width: 459px){.aside-nav__item{height:45px;padding:0 20px 0 12px;font-size:14px}.aside-nav__item-icon{width:36px;font-size:25px}.aside-nav__item-count{top:4px;left:5px}.aside-nav .nc-aviator-proppeller{font-size:20px;right:1px;top:-4px}.aside-nav__aviator{width:100%;justify-content:space-between}.aside-nav__item-icon-aviator{width:100%;margin:0}}
.pwa-install-module_button__2Q-M88tm__platform-common{display:flex;align-items:center;justify-content:flex-start;position:relative;height:74px;padding:8px 6px;margin-top:6px;background:var(--pwaInstallButtonBg, #ffffff);background-size:var(--pwaInstallButtonBgSize, 200%);background-position:0 100%;border-radius:var(--pwaInstallButtonBorderRadius, 16px);border:1px solid var(--pwaInstallButtonBorderColor);box-shadow:var(--pwaInstallButtonBoxShadow)}.pwa-install-module_button__2Q-M88tm__platform-common.pwa-install-module_right__-A-Dicug__platform-common{flex-direction:row-reverse;padding-right:var(--pwaInstallButtonRightImgPaddingRight, 6px)}.pwa-install-module_button__2Q-M88tm__platform-common.pwa-install-module_right__-A-Dicug__platform-common.pwa-install-module_mobile__-5ofxP9z__platform-common{padding-right:var(--pwaInstallButtonRightImgPaddingRightMobile, 18px)}.pwa-install-module_button__2Q-M88tm__platform-common.pwa-install-module_isFullWidth__IoaAH1sI__platform-common{width:100%}.pwa-install-module_button__2Q-M88tm__platform-common.pwa-install-module_isFullWidth__IoaAH1sI__platform-common .pwa-install-module_textWrapper__ITeed6Wn__platform-common{flex-grow:1}.pwa-install-module_button__2Q-M88tm__platform-common:hover{animation:pwa-install-module_bg-animation__oovB9Xli__platform-common 5s linear infinite alternate}.pwa-install-module_button__2Q-M88tm__platform-common:after{position:absolute;content:"";bottom:0;left:0;width:100%;height:100%;pointer-events:none;border-radius:var(--pwaInstallButtonBorderRadius, 16px);background:var(--pwaInstallButtonBoxShadowInside)}.pwa-install-module_imgWrapper__YxemoA8F__platform-common,.pwa-install-module_textWrapper__ITeed6Wn__platform-common{padding:0 6px}.pwa-install-module_imgWrapper__YxemoA8F__platform-common{position:relative;bottom:0;margin-top:-6px;width:83px}.pwa-install-module_img__3kByNcNF__platform-common{width:100%;height:auto;aspect-ratio:1.1/1}.pwa-install-module_textWrapper__ITeed6Wn__platform-common{display:flex;align-items:flex-start;flex-direction:column;text-align:left;max-width:calc(100% - 83px);position:relative;z-index:1}.pwa-install-module_title__4v8ozygq__platform-common{font-size:var(--pwaInstallButtonFontSizeTitle, 14px);font-weight:var(--pwaInstallButtonFontWeightTitle, 700);text-transform:var(--pwaInstallButtonTextTransform, none);color:var(--pwaInstallTitleColor, #ffffff);text-overflow:ellipsis;overflow:hidden;display:-webkit-box;-webkit-line-clamp:var(--pwaInstallButtonMaxLineTitle, 1);-webkit-box-orient:vertical}.pwa-install-module_description__ihXIfsdu__platform-common{font-size:var(--pwaInstallButtonFontSizeDescription, 12px);font-weight:var(--pwaInstallButtonFontWeightDescription, 500);margin-top:3px;color:var(--pwaInstallButtonDescriptionColor, #DEDEDE);line-height:var(--pwaInstallButtonDescriptionLineHeight, 16px);text-overflow:ellipsis;overflow:hidden;display:-webkit-box;-webkit-line-clamp:var(--pwaInstallButtonMaxLineDescription, 2);-webkit-box-orient:vertical}@keyframes pwa-install-module_bg-animation__oovB9Xli__platform-common{0%{background-position:0 100%}50%{background-position:100% 0}to{background-position:0 100%}}

.daily-rewards-button-module_button__Tp5IGgMG__platform-common{display:flex;align-items:center;position:relative;height:52px;min-height:52px;padding:var(--dailyRewardsButtonPadding, 16px 33px 16px 60px);font-size:14px;font-weight:700;background:var(--dailyRewardsButtonBg);color:var(--dailyRewardsButton);text-align:left;text-transform:var(--dailyRewardsButtonTextTransform, none);border-radius:var(--dailyRewardsButtonBorderRadius);background-size:200% 200%;background-position:0 100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;z-index:3;cursor:pointer}.daily-rewards-button-module_button__Tp5IGgMG__platform-common:hover{animation:daily-rewards-button-module_bg-animation__woNLUQg1__platform-common 5s linear infinite alternate}.daily-rewards-button-module_button__Tp5IGgMG__platform-common:disabled{cursor:default}.daily-rewards-button-module_buttonImage__rplJXFQd__platform-common{position:absolute;left:8px;bottom:50%;transform:translateY(calc(50% - 2px));width:40px}@keyframes daily-rewards-button-module_bg-animation__woNLUQg1__platform-common{0%{background-position:0 100%}50%{background-position:100% 0}to{background-position:0 100%}}

.KzdSB{margin:12px 0;display:flex;flex-direction:column-reverse;justify-content:flex-end;overflow:hidden;height:355px;line-height:17px}.rBmzX{padding:0 10px 0 15px;display:flex;flex-wrap:nowrap;min-height:51px;transition:transform .3s ease,opacity .25s ease;transform:translateY(-100%);opacity:0}.rBmzX.rxUd\+{transform:translateY(0);opacity:1}.rBmzX+.rBmzX{margin-bottom:24px}.hP4wh{display:block;height:51px;min-height:51px;width:51px;border-radius:3px;margin-right:8px}._3mXwP{display:flex;justify-content:flex-start;align-items:center;flex-wrap:wrap;font-size:14px;height:51px;min-height:51px;width:calc(100% - 60px)}._3mXwP p{width:100%}._3mXwP span{display:inline-block;vertical-align:bottom}.b8xiA{width:100%}.B66Tl{color:var(--mainActiveColor)}.-wt\+u{cursor:pointer;color:var(--latestWinnerGameText)}._31Cm2{margin-right:4px}._9RHjC{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.l5mZp{width:200px;height:150px;margin:10px auto 0;line-height:14px}.b9Csb{width:auto;height:150px;margin:10px auto 0;line-height:14px}.sY-M0{background:rgba(var(--bodyBgColor), 0.7);border-radius:var(--borderRadius);padding:3px;min-height:48px;align-items:center;margin-bottom:2px !important}.vQ68h{height:42px;min-height:42px;width:42px}.WPm4T{font-size:11px;height:42px;min-height:42px;width:calc(100% - 50px)}.Qi6bg{width:100%;display:flex;justify-content:space-between;align-items:center;padding:0 16px 0 8px}._8218P{display:flex;flex-direction:column;align-items:center;color:var(--mainPageLatestWinnersText);line-height:1.2}.sQ\+Sx{color:var(--mainPageLatestWinnersGameText)}
:root{--smarticoAsideBtnBg: linear-gradient(57deg,#b22a1d 50%, #FAD001);--smarticoAsideBtnStroke: linear-gradient(to bottom, #F1F4F4, #AA2C23);--smarticoAsideBtnBottmStroke: #A0140A}.vpAGQ{display:flex;align-items:center;gap:15px;justify-content:flex-start;width:100%;border-radius:15px;z-index:2}._3hl75{position:relative;width:100%;height:60px;border-radius:8px;overflow:hidden;padding:0 24px;cursor:pointer}._3hl75.mw5DZ{pointer-events:none;cursor:default}.hk8uP{position:absolute;top:1px;left:1px;bottom:3px;right:0px;display:flex;align-items:center;justify-content:start;background:var(--smarticoAsideBtnBg);border-radius:8px;z-index:3;overflow:hidden}._3hl75:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;border-radius:8px;background:var(--smarticoAsideBtnStroke);z-index:1}._3hl75:after{content:"";position:absolute;top:1px;left:1px;bottom:1px;right:1px;border-radius:8px;background:var(--smarticoAsideBtnBottmStroke);z-index:2}.FCCQM{max-width:45%;display:flex;justify-content:center;align-items:center;overflow:hidden}.SrzRT{pointer-events:none}.r2zRv{font-family:Poppins,sans-serif;font-size:14px;font-weight:700;color:#fff;text-shadow:0 2px 4px rgba(0,0,0,.3);user-select:none}
.close-button{display:block;border:none;position:relative;height:26px;width:26px;background:var(--textIconInactive);border-radius:50%;transition:transform .2s ease;cursor:pointer}.close-button.close-button-inactive{width:24px !important;height:24px !important;background:rgba(0,0,0,0) !important}.close-button.close-button-inactive .svg-icon{font-size:24px;fill:var(--closeButtonInactiveColor)}.close-button.close-button-inactive:after,.close-button.close-button-inactive:before{display:none !important}.close-button:before,.close-button:after{content:"";display:block;height:18px;width:2px;background:var(--bodyBgColor);position:absolute;top:50%;left:50%}.close-button:before{transform:translate(-50%, -50%) rotate(-45deg)}.close-button:after{transform:translate(-50%, -50%) rotate(45deg)}.close-button:hover{transform:rotate(90deg) scale(1.1)}.close-button--main{background:var(--mainActiveColor)}.close-button--cashier{background:#f8e1f3;width:20px;height:20px}.close-button--cashier:before,.close-button--cashier:after{height:16px;top:2px;left:9px}.close-button--inside{top:12px !important;right:12px !important;background:var(--modalCloseButtonColor, var(--mainActiveColor));width:20px;height:20px}.close-button--inside:before,.close-button--inside:after{height:12px;border-radius:4px;background:var(--modalCloseButtonArrowColor, var(--inputColor))}

/*# sourceMappingURL=78702.css.map*/