﻿.ReactCreditCard__container {
  position: relative;
  perspective: 1000px;
  width: 350px;
  height: 200px;
  font-size: 16px;
  text-align: left;
}

.ReactCreditCard {
  border-radius: 10px;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 315px;
  transform-style: preserve-3d;
  transition: all 400ms linear;
}

.ReactCreditCard--shadow {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.ReactCreditCard--flipped {
  transform: rotateY(180deg);
}

.ReactCreditCard--focused {
  opacity: 1;
  font-weight: 700;
}

.ReactCreditCard__front,
.ReactCreditCard__back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: all 400ms linear;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #777777;
  z-index: 0;
}

.ReactCreditCard__back {
  transform: rotateY(180deg);
}

/* Signature Strip*/
.ReactCreditCard__back::after {
  content: "";
  display: block;
  background-color: #fff;
  background-image: linear-gradient(#fff, #fff);
  width: 80%;
  height: 16%;
  position: absolute;
  top: 40%;
  left: 2%;
}

.ReactCreditCard__back .ReactCreditCard__shiny {
  position: absolute;
  top: 66%;
  left: 2%;
}

.ReactCreditCard__shiny {
  width: 50px;
  height: 35px;
  margin-bottom: 10px;
  border-radius: 5px;
  background: #ccc;
  position: relative;
}

.ReactCreditCard__shiny:after {
  content: attr(data-after);
  position: absolute;
  left: 120%;
  top: 5%;
  color: white;
  font-size: 7px;
  width: 230px;
  opacity: 0.5;
}

.ReactCreditCard__shiny:before {
  content: " ";
  display: block;
  width: 70%;
  height: 60%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #d9d9d9;
  position: absolute;
  top: 20%;
}

.ReactCreditCard__lower {
  width: 80%;
  position: absolute;
  left: 10%;
  bottom: 30px;
}

.ReactCreditCard__logo {
  position: absolute;
  right: 0;
  top: 0;
}

.ReactCreditCard__bar {
  background-color: #444;
  background-image: linear-gradient(#444, #333);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 10%;
}

.ReactCreditCard__number {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 24px;
  clear: both;
  margin-bottom: 30px;
}

.ReactCreditCard__name {
  text-transform: uppercase;
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 20px;
  max-height: 45px;
  position: absolute;
  bottom: 0;
  width: 190px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: horizontal;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
}

.ReactCreditCard__expiration {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  letter-spacing: 0em;
  position: relative;
  float: right;
  width: 25%;
}

.ReactCreditCard__expiration:before {
  content: attr(data-before);
  margin-bottom: 2px;
  font-size: 7px;
  text-transform: uppercase;
}

.ReactCreditCard__expiration:after {
  position: absolute;
  content: attr(data-after);
  text-align: right;
  right: 100%;
  margin-right: 5px;
  margin-top: 2px;
  bottom: 0;
}

.ReactCreditCard__expiration:before, .ReactCreditCard__expiration:after{
  font-family: "Helvetica Neue";
  font-weight: bold;
  font-size: 7px;
  white-space: pre;
  display: block;
  opacity: 0.5;
}

.ReactCreditCard__cvc {
  position: absolute;
  transition-delay: 600ms;
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 14px;
}

.ReactCreditCard__back .ReactCreditCard__cvc {
  top: 40%;
  left: 85%;
}

.ReactCreditCard__front .ReactCreditCard__cvc {
  top: 19%;
  right: 18%;
}

.ReactCreditCard__display {
  color: white;
  font-weight: normal;
  opacity: 0.5;
  transition: opacity 400ms linear;
}

.ReactCreditCard--focused {
  opacity: 1;
  font-weight: 700;
}

.ReactCreditCard .ReactCreditCard__front:before,
.ReactCreditCard .ReactCreditCard__back:before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 10px;
  transition: all 400ms ease;
}

.ReactCreditCard--identified .ReactCreditCard__front:before,
.ReactCreditCard--identified .ReactCreditCard__back:before {
  opacity: 0.7;
}

.ReactCreditCard--ie-11.ReactCreditCard--flipped {
  transform: 0deg;
}

.ReactCreditCard--ie-11.ReactCreditCard--flipped .ReactCreditCard__front,
.ReactCreditCard--ie-11.ReactCreditCard--flipped .ReactCreditCard__back {
  transform: rotateY(0deg);
}

.ReactCreditCard--ie-11 .ReactCreditCard__back::after {
  left: 14%;
}

.ReactCreditCard--ie-11.ReactCreditCard--flipped .ReactCreditCard__back .ReactCreditCard__cvc {
  transform: rotateY(180deg);
  left: 5%;
}

.ReactCreditCard--ie-11.ReactCreditCard--flipped .ReactCreditCard__back .ReactCreditCard__shiny {
  left: 84%;
}
.ReactCreditCard--ie-11.ReactCreditCard--flipped .ReactCreditCard__back .ReactCreditCard__shiny::after {
  left: -480%;
  transform: rotateY(180deg);
}

.ReactCreditCard--ie-11.ReactCreditCard--amex .ReactCreditCard__back {
  display: none;
}

/* Card Brand Styles */

.ReactCreditCard--unknown {
  box-shadow: none;
}

.ReactCreditCard--unknown .ReactCreditCard__logo {
  visibility: hidden;
}

.ReactCreditCard--visa .ReactCreditCard__logo,
.ReactCreditCard--mastercard .ReactCreditCard__logo {
  background-color: white;
  border-radius: 7px;
  width: 55px;
  height: 35px;
  padding-left: 5px;
  padding-right: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=react-credit-card.css.map */
html{box-sizing:border-box;font-size:62.5%}*,*::before,*::after{box-sizing:inherit}button{appearance:none;background:rgba(0,0,0,0);border:0;border-radius:0;cursor:pointer;font-size:inherit;font-style:inherit;padding:0}svg{display:block;fill:currentcolor;pointer-events:none;vertical-align:-0.15em}ul,ol{list-style:none;margin:0;padding:0;width:100%}body,h1,div,a,span,p,footer{-webkit-font-smoothing:antialiased;text-rendering:optimizespeed}h1,p{margin:0;text-rendering:optimizelegibility}p{font:var(--label-regular);margin:0}p+p{margin-top:8px}a{color:inherit;display:block;font-size:inherit;text-decoration:none}.btn{display:inline-block;font:var(--h3);padding:14px;text-align:center;transition:transform 250ms ease-out,color 250ms ease-out;width:100%}.btn.btn--plate{border:0;font:var(--label-regular);padding:8px 12px;right:12px;top:12px;width:auto;z-index:4}.flag{background-repeat:no-repeat;height:48px;width:48px}.flag.flag--cl{background-image:url(../../gambling/image/flag__chile.946da607262b6e99f33a.svg)}.flag.flag--de{background-image:url(../../gambling/image/flag__germany.ed3f3a78d8b6e3d065a1.svg)}.flag.flag--dk{background-image:url(../../gambling/image/flag__denmark.9a6765ccbf1ab7d0a6f0.svg)}.flag.flag--en{background-image:url(../../gambling/image/flag__global.7af68bce5e56c8f41522.svg)}.flag.flag--eu{background-image:url(../../gambling/image/flag__eu.ffc05f16ae1af08e755e.svg)}.flag.flag--fi{background-image:url(../../gambling/image/flag__finland.03c130437f41310c8782.svg)}.flag.flag--gb{background-image:url(../../gambling/image/flag__united_kingdom.94a6d15f51e2bc0e0319.svg)}.flag.flag--no{background-image:url(../../gambling/image/flag__norway.ba96034964657798b2f7.svg)}.flag.flag--pl,.flag.flag--po{background-image:url(../../gambling/image/flag__poland.3de30ba572420b21b2f6.svg)}.flag.flag--se,.flag.flag--sv{background-image:url(../../gambling/image/flag__sweden.53b53a1430ab1159dc48.svg)}div.landing-page-wrapper .page-head{background:none;display:flex;height:52px;overflow-x:hidden;transition:transform 250ms ease-in,background-color 250ms ease-in,color 250ms ease-in;white-space:nowrap;width:100%;z-index:3}div.landing-page-wrapper .header-logo-wrapper{width:100%}div.landing-page-wrapper .header-logo-wrapper .svg-logo{display:block;height:44px;width:100%}.link-list{margin:8px 0}.link-list__item{cursor:pointer;font:var(--label-regular);margin-bottom:1px}.link-list .link-list__item-link{align-items:center;display:flex;min-height:52px;padding:14px 12px;width:100%;word-break:break-word}.link-list__continue-icon{margin:0 0 0 auto;position:relative}.link-list__item-link:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.link-list__item-link:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.footer{padding:24px 12px 268px}.licenses-logos{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.licenses-logos__item{padding:0 4px}.licenses-logos__mga{background:url(../../gambling/image/mga-licence.6577b1e7aaf4f194559b.svg) no-repeat;height:41px;width:148px}.licenses-logos_app{margin:1.6rem auto;width:fit-content}.licenses-logos__curacao{filter:grayscale(1);margin-left:-6px;width:56px}div.landing-page-wrapper .landing-page__fold{height:100vh}div.fixed-background{background-position:left;background-repeat:no-repeat;background-size:cover;height:100vh;position:fixed;width:100%}div.fixed-background .fixed-background-layer{background-color:#202020;height:100vh;opacity:.7}div.landing-page-wrapper{height:100%;min-height:100vh;-webkit-overflow-scrolling:touch;overflow-y:scroll;padding-top:64px;position:absolute;top:0;width:100%}div.landing-page-wrapper .btn--plate{top:8px}div.landing-page-wrapper .landing-page-wrapper__logo-wrapper.is-collapsed{visibility:hidden}div.landing-page-wrapper .landing-page-wrapper__logo-wrapper>.svg-logo{margin:36px auto 0;max-width:300px;transition:250ms}div.landing-page-wrapper .header-logo-wrapper{background-color:rgba(22,22,29,.85);transition:background-color 250ms ease}@media(min-width: 48em){div.landing-page-wrapper .header-logo-wrapper{background-color:rgba(0,0,0,0)}}div.landing-page-wrapper .header-logo-wrapper.is-collapsed{background-color:rgba(22,22,29,0)}div.landing-page-wrapper .header-logo-wrapper>.svg-logo{transform:translate(0, 0) scale3d(0.5, 0.5, 1)}div.landing-page-wrapper .header-logo-wrapper.is-collapsed>.svg-logo{opacity:0}div.landing-page-wrapper .landing-page-wrapper__message-title{color:rgba(var(--base-02), 1);font:var(--h1);margin:24px 24px 48px}div.landing-page-wrapper .products{justify-content:center;margin:0 auto;max-width:320px}div.landing-page-wrapper .product-button a{align-items:center;display:flex;flex-direction:column}div.landing-page-wrapper .products__link{height:56px;width:56px}div.landing-page-wrapper .landing-page-wrapper__icon{height:32px;width:32px}div.landing-page-wrapper .products__text{color:rgba(var(--base-02), 1);font:var(--label-regular);margin-top:8px}div.landing-page-wrapper .plus-18{font:var(--h4-bold);height:48px;width:48px}.bottom-wrapper{bottom:0;overflow:hidden;position:absolute;transition:transform 250ms ease-in;width:100%;z-index:5}.bottom-wrapper.enable-transition{transition:250ms 250ms}.bottom-wrapper--is-hidden{transform:translateY(110%)}.u-ml1{margin-left:12px}.u-mt1{margin-top:12px}.u-mt2{margin-top:20px}.u-mr2{margin-right:20px}.u-ml2{margin-left:20px}.u-p1{padding:12px !important}.u-pt1{padding-top:12px !important}.u-pb1{padding-bottom:12px !important}.u-pr1{padding-right:12px !important}.u-pl1{padding-left:12px !important}.u-pt2{padding-top:24px !important}.u-pb1{padding-bottom:12px !important}.u-pr2{padding-right:24px !important}.u-pl2{padding-left:24px !important}.u-b-radius{border-radius:3px !important}.u-b-radius-round{border-radius:50%}.u-oh{overflow:hidden}.u-relative{position:relative}.u-absolute{position:absolute}.u-fixed{backface-visibility:hidden;position:fixed}.u-fixed-fallback{position:fixed;transform:translateZ(0)}.u-pos-tl0{bottom:auto;left:0;right:auto;top:0}.u-flex{display:flex}.u-flex-grow-1{flex-grow:1}.u-fxb-center-v-h{align-items:center;display:flex;justify-content:center}.u-fl{float:left}.u-fr{float:right}.u-text-c{text-align:center}.u-hide{display:none}.global-notification,.deposit,.withdrawal,.verify-email-menu,.verify-email-result-menu,.verify-phone{opacity:0;visibility:hidden}.verify-email-result-menu .page-head .page-head__back svg{fill:rgba(var(--base-02), 1)}.page-head{height:44px;width:100%;display:flex;transition:transform 250ms ease-in,background-color 250ms ease-in,color 250ms ease-in;white-space:nowrap;z-index:7}.page-head .page-head__title{font:var(--h4-bold);justify-content:center}.page-head .page-head__title .svg-logo{height:32px;width:--register-one-step-header-logo-width;display:block;margin:auto 0}@media only screen and (min-width: 64.25em){.page-head .page-head__title .svg-logo{display:flex}}.page-head .svg-logo{height:32px;width:176px;margin:auto 0}@media only screen and (min-width: 64.25em){.page-head .svg-logo{display:flex}}.page-head__title,.page-head__left-side,.page-head__right-side{display:flex;flex:1;margin:auto 0}.page-head__left-side{justify-content:flex-start;margin:auto auto auto 12px;z-index:1}.page-head__left-side .page-head__icon{padding:10px 12px 10px 0}.page-head__left-side .page-head__icon .game-item__love--loading{cursor:default}.page-head__left-side .page-head__icon .game-item__love--loading svg.item__love-icon,.page-head__left-side .page-head__icon .game-item__love--loading .item__love-counter{opacity:.3}.page-head__right-side{justify-content:flex-end;margin:auto 12px auto auto}.page-head__right-side .header-icon--deposit{margin-right:12px}@media only screen and (min-width: 48em){.header-icon--login{display:none}}.header-unread-message-notifier{color:rgba(var(--unread-message-counter-text-color), 1) !important}.header-unread-message-notifier{align-items:center;background-color:rgba(var(--unread-message-counter-bg-color), 1);border-radius:8px;display:flex;font:var(--small-bold);height:16px;justify-content:center;min-width:16px;padding:2px 4px;pointer-events:none;position:absolute}.header-unread-message-notifier.galaxy{right:-7px;top:-4px}.header-unread-message-notifier.galaxy.ingame{right:-4px;top:-6px}.link-list__item .link-list__item-link svg,.link-list__item .link-list__item-link .link-list__continue-icon{margin:0 10px 0 0}.link-list__item .link-list__item-link .link-list__continue-icon{margin:0 0 0 auto;position:relative}.link-list__item .link-list__value{margin:0 0 0 auto;white-space:nowrap}.link-list__item .link-list__value+.link-list__continue-icon{margin:0}.link-list__item span{font-family:inherit}div.iframe-overlay.spinner{background:rgba(var(--base-11), 1);background:var(--sidebar-bg, rgba(var(--base-11), 1));bottom:0;height:100%;left:0;position:fixed;right:0;top:0;z-index:100}div.spinner-overlay{height:100%;position:absolute;top:0;width:100%}.casino-bg{background:rgba(0,0,0,0);background-attachment:fixed;background-size:cover}.licenses-logos__igo{height:68px;width:170px;background:url(../../gambling/image/igaming-ontario-license.4c6a20094f020ec6e4b8.svg) no-repeat}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:rgba(0,0,0,0)}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{box-sizing:border-box}*{box-sizing:inherit;-webkit-tap-highlight-color:hsla(0,0%,100%,0);-webkit-tap-highlight-color:rgba(0,0,0,0)}*::before,*::after{box-sizing:inherit}textarea,iframe{border:0;display:block;width:100%}a{cursor:pointer;font-family:inherit;font-size:inherit;font-weight:inherit}button{appearance:none;background:rgba(0,0,0,0);border:0;border-radius:0;cursor:pointer;font-size:inherit;font-style:inherit;line-height:normal;padding:0}input,fieldset{appearance:none;border:0;font-family:inherit;margin:0;min-width:0;padding:0}input{appearance:textfield;max-height:62px}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{appearance:none}img{border:0;display:block;height:100%;object-fit:cover;width:100%}svg{display:block;fill:currentcolor;pointer-events:none;vertical-align:-0.15em}ul,ol{list-style:none;margin:0;padding:0;width:100%}:root{--headerHeight: 64px;--subHeaderHeight: 48px;--smallerHeaderHeight: 44px;--smallerSubHeaderHeight: 48px;--unAuthHeight: 76px;--heroHeight: 96px;--regulationHeight: 44px;--inGameToolbarHeight: 44px;--inGameToolbarWidth: 36px;--inGameBottomBarHeight: 44px;--textWidth: 820px;--detailWidth: 375px;--transitionTime: 0.3;--smallerFrame: 12px;--biggerFrame: 24px;--sidebarHeaderHeight: 44px;--appbannerHeight: 95px;--modalContentMaxWidth: 744px;--cardImageHeight: 212px;--searchBarHeight: 60px;--campaignRegWidth: 424px;--credit-card-width: 285px;--credit-card-height: 160px;--casino-navbar-height--mobile: 60px;--casino-navbar-height--desktop: 72px;--gameCardBottomInfoHeight: 38px;--sportsbookTopBarHeight: 60px;--sportsbookLoginFooterHeight: 78px;--sportsbookSearchTopOffsetSmall: var(--smallerHeaderHeight);--sportsbookBetslipHeaderWrapperMinHeight: 51px;--sportsbookHighlightGamesBetslipHeaderWrapperMinHeight: 51px}html{font-size:62.5%}body,h1,h2,h3,h4,h5,h6,div,label,legend,button,input,select,textarea,li,a,strong,small,span,th,caption,td,p,footer{-webkit-font-smoothing:antialiased;text-rendering:optimizespeed}h1,h2,h3,h4,h5,h6,p{margin:0;text-rendering:optimizelegibility}p,ul li,ol li{font:var(--label-regular)}p+p{margin-top:8px}a{color:inherit;display:block;font-size:inherit;text-decoration:none}p>a,span>a{color:inherit;display:inline;font-family:inherit;font-style:inherit}p>b{font-weight:bold}small{display:block;font:var(--caption)}small span{color:inherit}small a{display:inline}.title-label,caption{font:var(--label-regular)}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(0, 0, 0)}100%{opacity:0;transform:translate3d(100%, 0, 0)}}@keyframes slideIn{0%{opacity:0;transform:translateX(100%);visibility:hidden}100%{opacity:1;transform:translateX(0);visibility:visible}}.click-effect::after{height:42px;width:42px;animation:circle 500ms forwards;background:rgba(var(--secondary), 0.25);border-radius:50%;content:"";cursor:pointer;left:50%;margin:-20px 0 0 -20px;opacity:0;pointer-events:none;position:absolute;top:50%;z-index:38}.click-effect:focus{outline:none}@keyframes circle{0%{opacity:1;transform:scale3d(0.1, 0.1, 1)}100%{opacity:0;transform:scale3d(4, 4, 1);visibility:hidden}}div .payments__fieldset-wrap-newcard.input-wrap::after{content:none}.u-m0{margin:0 !important}.u-mt0{margin-top:0 !important}.u-mr0{margin-right:0 !important}.u-mb0{margin-bottom:0 !important}.u-ml0{margin-left:0 !important}.u-m1{margin:12px}.u-mt1{margin-top:12px}.u-mr1{margin-right:12px}.u-mb1{margin-bottom:12px}.u-ml1{margin-left:12px}.u-m2{margin:20px}.u-mt2{margin-top:20px}.u-mr2{margin-right:20px}.u-mb2{margin-bottom:20px}.u-ml2{margin-left:20px}.u-mla{margin:0 0 0 auto}.u-mra{margin:0 auto 0 0}.u-mta{margin:auto 0 0}.u-mba{margin:0 0 auto}.u-ma{margin:auto}.u-divider-1{margin-bottom:1px}.u-divider-5{margin-bottom:5px}.u-standard-padding{padding:56px 12px 0 12px}.u-p0{padding:0 !important}.u-pt0{padding-top:0 !important}.u-pr0{padding-right:0 !important}.u-pb0{padding-bottom:0 !important}.u-pl0{padding-left:0 !important}.u-pt1-2{padding-top:6px}.u-pt-14{padding-top:14px !important}.u-pb-14{padding-bottom:14px !important}@media only screen and (min-width: 20em){.u-p1{padding:8px !important}.u-pt1{padding-top:8px !important}.u-pr1{padding-right:8px !important}.u-pb1{padding-bottom:8px !important}.u-pl1{padding-left:8px !important}}@media only screen and (min-width: 23.4375em){.u-p1{padding:12px !important}.u-pt1{padding-top:12px !important}.u-pr1{padding-right:12px !important}.u-pb1{padding-bottom:12px !important}.u-pl1{padding-left:12px !important}}.u-p2{padding:24px}.u-pt2{padding-top:24px}.u-pr2{padding-right:24px !important}.u-pb2{padding-bottom:24px !important}.u-pl2{padding-left:24px !important}.u-pr3{padding-right:32px !important}.u-pb3{padding-bottom:32px !important}.u-pb-1-btn{padding-bottom:76px !important}.u-pb-2-btn{padding-bottom:140px !important}.u-pb-md{padding-bottom:68px !important}.u-pb-xl{padding-bottom:112px !important}.u-pb-xl2{padding-bottom:208px !important}.u-db{display:block}.u-show{display:block !important}.u-show-dib{display:inline-block !important}.u-dn{display:none}.u-hide{display:none !important}.u-hide-off-canvas{bottom:0;position:absolute;transform:translate3d(0, 100%, 0)}.u-dib{display:inline-block}.u-opacity-0{opacity:0}.u-opacity-0-5{opacity:.5}.u-flex{display:flex}.u-flex-row{flex-direction:row}.u-flex-1{flex:1}.u-flex-grow-1{flex-grow:1}.u-flex-none,div.u-flex-none{flex:none}.u-center-vertically{display:flex;flex-direction:column;justify-content:center}.u-top-vertically{display:flex;flex-direction:column;justify-content:flex-start}.u-align-vert{align-items:center}.u-fxb-center-v-h{align-items:center;display:flex;justify-content:center}.u-fxb-c{justify-content:center}.u-space-between{justify-content:space-between}.u-fxb-s-b-c{align-items:center;justify-content:space-between}.u-align-start{align-items:flex-start}.u-flex-b50{flex-basis:50%}.u-flex-available-height{display:flex;flex:1 0 auto}.u-flex-available-height-column{display:flex;flex:1 0 auto;flex-direction:column}.u-fs0{flex-shrink:0}.u-fs1{flex-shrink:1}.u-fs2{flex-shrink:2}.u-fl{float:left}.u-fr{float:right}.u-full-height{min-height:100vh}.u-height-100{height:100%}.u-height-0{height:0}.u-height-100vw{height:100vw}.u-height-auto{height:auto !important}.u-height-100-important{height:100% !important}.u-1-2-width{width:50% !important}.u-3-4-width{width:74.4%}@media only screen and (min-width: 20em){.u-full-width-break-container{margin-left:-8px;width:calc(100% + 16px)}}@media only screen and (min-width: 23.4375em){.u-full-width-break-container{margin-left:-12px;width:calc(100% + 24px)}}.u-full-bleed{margin-left:50%;transform:translateX(-50%);width:100vw}.u-width-100{width:100%}.u-width-95{width:95%}.u-width-90{width:90%}.u-width-100-force{width:100% !important}.u-grid-item-100-width-mobile{grid-column:span 4;grid-row:span 6}.u-m-width-300{max-width:300px}.u-m-height-200{max-height:200px}.u-relative{position:relative}.u-absolute{position:absolute !important}.u-fixed{backface-visibility:hidden;position:fixed}.u-static{position:static}.u-sticky{position:sticky}.u-pos-t0{top:0}.u-pos-t1{top:12px}.u-pos-r0{right:0}.u-pos-r1{right:12px}.u-pos-b0{bottom:0}.u-pos-b1{bottom:12px}.u-pos-b2{bottom:24px}.u-pos-b3{bottom:30px}.u-pos-l0{left:0}.u-pos-l1{left:12px}.u-pos-tr0{bottom:auto;left:auto;right:0;top:0}.u-pos-tl0{bottom:auto;left:0;right:auto;top:0}.u-pos-br0{bottom:0;left:auto;right:0;top:auto}.u-pos-bl0{bottom:0;left:0;right:auto;top:auto}.u-pos-tr1{right:12px;top:12px}.u-pos-tl10{left:12px;top:12px}.u-pos-br10{bottom:12px;right:12px}.u-pos-br2{bottom:24px;right:24px}.u-pos-br3{bottom:55px;right:24px}.u-pos-bl10{bottom:12px;left:12px}.u-pos-c{left:0;margin:0 auto;position:absolute;right:0}.u-pos-c-and-v{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.u-pos-fixed-c-and-v{bottom:0;left:0;position:fixed;right:0;top:0}.u-b-radius{border-radius:3px !important}.u-b-radius-round{border-radius:50%}.u-b-radius-top{border-radius:3px 3px 0 0}.u-b-radius-bottom{border-radius:0 0 3px 3px}.u-b-radius-right{border-radius:0 3px 3px 0 !important}.u-b-radius-right-bottom{border-radius:0 0 3px}.u-b-radius-left{border-radius:3px 0 0 3px !important}.u-b-radius-left-bottom{border-radius:0 0 0 3px}.u-b-radius-top-left{border-top-left-radius:3px}.u-oa{overflow-x:hidden;overflow-y:auto}.desktop-scrollbar{height:100vh !important;width:100% !important}.desktop-scrollbar>div:nth-child(3){z-index:10}.wrapper-campaign-registration .desktop-scrollbar{height:100% !important}.modal-custom-scroll>div{display:flex;flex-direction:column}.wrapper-checkbox-dropdown-scroll{bottom:0 !important;height:60% !important;position:absolute !important;width:100% !important}.wrapper-checkbox-dropdown-scroll{border-bottom:1px solid rgba(var(--source-of-wealth-dropdown-border), 1);top:44px}.sidebar-custom-scroll{position:absolute !important}.sidebar-custom-scroll>div:nth-child(1){margin-bottom:0 !important;overflow-x:hidden !important}.sidebar-custom-scroll>div:nth-child(3){z-index:30}.u-oh{overflow:hidden}.u-oh>.sidebar-custom-scroll>div:first-child{margin-right:0 !important;overflow:hidden !important}.u-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.u-truncate--left{direction:rtl}.u-break-long-words{word-break:break-all}.u-text-indent{overflow:hidden;text-indent:100%;white-space:nowrap}.u-multi-line-truncate{-webkit-box-orient:vertical;display:flex;-webkit-line-clamp:2;overflow:hidden}.u-div-c{margin-left:auto;margin-right:auto}.u-text-l{text-align:left}.u-text-c{text-align:center}.u-text-r{text-align:right}.u-capitalize{text-transform:capitalize}.u-uppercase{text-transform:uppercase}.u-uppercase-not-placeholder{text-transform:uppercase}.u-uppercase-not-placeholder::-webkit-input-placeholder{text-transform:none}.u-uppercase-not-placeholder::-moz-placeholder{text-transform:none}.u-uppercase-not-placeholder::-moz-placeholder{text-transform:none}.u-uppercase-not-placeholder::-ms-input-placeholder{text-transform:none}.u-cursor-hand{cursor:pointer}.u-pointer-events-none{pointer-events:none}.u-scroll-content-wrapper{height:100%;-webkit-overflow-scrolling:touch;overflow-y:auto}.u-transform-none{transform:none !important}body .u-bg-trans{background-color:rgba(0,0,0,0);background-image:none}.u-bg-info{background-color:rgba(var(--info), 1) !important}.u-bg-inherit{background-color:inherit}.u-bg-overlay{background-color:rgba(var(--base-11), 0.95) !important}.u-bg-overlay-70{background-color:rgba(var(--base-11), 0.7) !important}.u-no-break{white-space:nowrap}.u-break-word{word-break:break-word}.u-text-hide{color:rgba(0,0,0,0) !important}.u-hide-visiblity{visibility:hidden}.u-absolute--center-vertically{position:absolute;top:50%;transform:translateY(-50%)}.u-absolute--center-horizontally{left:50%;position:absolute;transform:translateX(-50%)}.u-z-index-11{z-index:11}.u-z-index-spinner{z-index:46 !important}.u-z-index-iframe{z-index:16}.u-iframe-full-screen{height:100%;padding-bottom:44px;position:absolute;width:100%}.u-blur-3{filter:blur(3px)}.u-success-bg{background-color:rgba(var(--success), 1) !important}.u-opac-25{opacity:.25}.u-divider{border-bottom:1px solid var(-list-border-bottom)}.u-object-fit-cover{object-fit:cover}.u-transition-ease-in{transition:all .2s ease-in}.u-transition-ease-in-out{transition:all .2s ease-in-out}@media(max-width: 1024px){iframe#webWidget{bottom:0 !important;top:auto !important}iframe#webWidget.hasHeader{height:calc(100% - 44px) !important}}.docblock-argstable-head span,.docblock-argstable-body span{color:#fff}.docs-story #input-wrapper-storybook{background-color:transparent;background-color:initial;height:150px;width:375px}.category-page{background:rgba(var(--category-page-bg), 1);height:100vh;-webkit-overflow-scrolling:touch;overflow-x:hidden;overflow-y:auto;position:fixed;top:100%;transition:all .3s ease;width:100vw;z-index:19}.category-page::-webkit-scrollbar{display:none}.category-page--active{top:0}@media only screen and (min-width: 48em){.category-page--active{height:calc(100vh - (64px + 48px));height:calc(100vh - (var(--headerHeight) + var(--subHeaderHeight)));height:calc(100vh - (64px + 48px));height:calc(100vh - calc(64px + 48px));height:calc(100vh - calc(var(--headerHeight) + var(--subHeaderHeight)));top:calc(64px + 48px);top:calc(var(--headerHeight) + var(--subHeaderHeight))}}.category-page--regulation{height:calc(100vh - 44px);height:calc(100vh - var(--regulationHeight));top:44px;top:var(--regulationHeight)}@media only screen and (min-width: 48em){.category-page--regulation{height:calc(100vh - (44px + 64px + 48px));height:calc(100vh - (var(--regulationHeight) + var(--headerHeight) + var(--subHeaderHeight)));height:calc(100vh - (44px + 64px + 48px));height:calc(100vh - calc(44px + 64px + 48px));height:calc(100vh - calc(var(--regulationHeight) + var(--headerHeight) + var(--subHeaderHeight)));top:calc(44px + 64px + 48px);top:calc(var(--regulationHeight) + var(--headerHeight) + var(--subHeaderHeight))}}.category-page__header{align-content:center;background:rgba(var(--category-page-bg), 1);display:grid;grid-template-columns:auto 1fr 30px;height:45px;padding:0 12px;position:sticky;top:0;z-index:2}@media only screen and (min-width: 48em){.category-page__header{padding:0 24px}}.category-page__exit-button{width:30px}.category-page__exit-button svg{fill:var(--category-exit-icon-color)}.category-page__title{color:rgba(var(--category-page-title-color), 1);font:var(--h3);justify-self:center}@media only screen and (min-width: 48em){.category-page__title{justify-self:start}}.category-page__list{display:grid;grid-gap:10px;grid-template-columns:repeat(auto-fill, minmax(96px, 1fr));padding:5px 12px 100px;top:45px}@media only screen and (min-width: 48em){.category-page__list{grid-template-columns:repeat(auto-fill, minmax(170px, 1fr));padding:12px 24px 100px}}.deposit .deposit-bonus .payment__content-wrapper{padding:56px 0 0}.logo-payment-method{background-color:rgba(var(--base-01), 1);border-radius:3px}.swish-logo .cls-2,.swish-logo .cls-6{mix-blend-mode:multiply}.swish-logo .cls-5{clip-path:url(#clip-path)}.swish-logo .cls-6,.swish-logo .cls-9{opacity:.4}.swish-logo .cls-6{fill:url(#linear-gradient-2)}.deposit-bonus-in-sidebar .learn-more-btn{font:var(--label-bold);text-transform:none}.deposit-limit .input-wrap__label{left:0}.SWISH .qr-code{margin-top:-10px;padding-bottom:10px;padding-top:0}.swish-loader{align-items:center;color:var(--swish-loader-dots);display:flex;flex-direction:column;height:20px;margin-top:5px}.ingame .licenses-logos__spelinspektionen{height:30px;width:40px;background:url(../../gambling/image/spelinspektionen-licence.9b73cf6d910c859e9e51.svg) no-repeat}.responsive-footer-logo .licenses-logos__spelinspektionen{height:36px;width:48px;background:url(../../gambling/image/spelinspektionen-licence.9b73cf6d910c859e9e51.svg) no-repeat}.responsive-footer-logo .licenses-logos__spillemyndigheden{height:120px;width:120px;background:url(../../gambling/image/spillemyndigheden-license.125c3bc5fecc068c8ebb.svg) no-repeat}.responsive-footer-logo .licenses-logos__igo{height:68px;width:170px;background:url(../../gambling/image/igaming-ontario-license.4c6a20094f020ec6e4b8.svg) no-repeat}.responsive-footer-logo .licenses-logos__iso-icon{height:90px;width:80px;background:url(../../gambling/image/ISOIEC27001_White.ab6a3f665f0cd8e2c22e.png) no-repeat;background-size:80px 90px}.responsive-footer-egr-logo .licenses-logos__egr-icon-1{height:90px;width:65px;background:url(../../gambling/image/Awards-logo-01.0212081fdbd3f021e9a9.png) no-repeat;background-size:65px 90px}.responsive-footer-egr-logo .licenses-logos__egr-icon-2{height:90px;width:65px;background:url(../../gambling/image/Awards-logo-02.604c3191cb731b2e4d0a.png) no-repeat;background-size:65px 90px}.responsive-footer-egr-logo .licenses-logos__egr-icon-3{height:90px;width:65px;background:url(../../gambling/image/Awards-logo-03.b1eccabb5b9d3933a830.png) no-repeat;background-size:65px 90px}.responsive-footer-egr-logo .licenses-logos__egr-icon-4{height:90px;width:65px;background:url(../../gambling/image/Awards-logo-04.851e539fff83f1548c2e.png) no-repeat;background-size:65px 90px}.responsive-footer-egr-logo .licenses-logos__egr-icon-5{height:90px;width:65px;background:url(../../gambling/image/Awards-logo-05.4fd96f1bb652a832b389.png) no-repeat;background-size:65px 90px}.responsive-footer-egr-logo .licenses-logos__egr-icon-6{height:90px;width:65px;background:url(../../gambling/image/Awards-logo-06.ce4958964b2926366d07.png) no-repeat;background-size:65px 90px}.responsive-footer-egr-logo .licenses-logos__egr-icon-7{height:90px;width:65px;background:url(../../gambling/image/Awards-logo-07.418c024842973fc859f4.png) no-repeat;background-size:65px 90px}.flex-list-footer .licenses-logos__item{padding:0 4px}.flex-list-footer .licenses-logos__ibas{height:40px;width:60px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -40px}.flex-list-footer .licenses-logos__gamcare{height:33px;width:61px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -125px}.flex-list-footer .licenses-logos__gamstop{height:11px;width:59px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:-58px -96px}.flex-list-footer .licenses-logos__five-stars{height:35px;width:47px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -90px}.flex-list-footer .licenses-logos__spillemyndigheden{height:120px;width:120px;background:url(../../gambling/image/spillemyndigheden-license.125c3bc5fecc068c8ebb.svg) no-repeat}.flex-list-footer .licenses-logos__gambling-commission{height:33px;width:96px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -200px}.flex-list-footer .licenses-logos__spelinspektionen{height:36px;width:48px;background:url(../../gambling/image/spelinspektionen-licence.9b73cf6d910c859e9e51.svg) no-repeat}@media only screen and (min-width: 20em){.footer{padding:0 8px 268px}}@media only screen and (min-width: 23.4375em){.footer{padding:0 12px 268px}}.footer .licenses-logos{display:flex;flex-wrap:wrap;justify-content:space-between}.footer .licenses-logos .licenses-logos__item{padding:0 4px}.footer .licenses-logos__mga{height:41px;width:148px;background:url(../../gambling/image/mga-licence.6577b1e7aaf4f194559b.svg) no-repeat}.footer .licenses-logos_app{margin:1.6rem auto;width:fit-content}.footer .licenses-logos__curacao{filter:grayscale(1);margin-left:-6px;width:56px}.footer .licenses-logos__ibas{height:40px;width:60px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -40px}.footer .licenses-logos__gamcare{height:33px;width:61px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -125px}.footer .licenses-logos__gamstop{height:11px;width:59px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:-58px -96px}.footer .licenses-logos__five-stars{height:35px;width:47px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -90px}.footer .licenses-logos__spillemyndigheden{height:120px;width:120px;background:url(../../gambling/image/spillemyndigheden-license.125c3bc5fecc068c8ebb.svg) no-repeat}.footer .licenses-logos__gambling-commission{height:33px;width:96px;background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -200px}.footer .licenses-logos__spelinspektionen{height:36px;width:48px;background:url(../../gambling/image/spelinspektionen-licence.9b73cf6d910c859e9e51.svg) no-repeat}.footer .licenses-logos__igo{height:120px;width:120px;background:url(../../gambling/image/igaming-ontario-license.4c6a20094f020ec6e4b8.svg) no-repeat}.footer .plus-18{height:48px;width:48px;font:var(--h4-bold)}.logo-wrapper ul{display:flex;justify-content:center}.logo-wrapper li{flex:0 1 calc(20% - 12px);margin:24px 0}.logo-wrapper li a{display:flex;justify-content:center}.logo-wrapper img{width:48px}@media only screen and (min-width: 48em){.footer-trust-logos,.logo-wrapper{margin:0 auto;max-width:628px}.footer-trust-logos img,.logo-wrapper img{width:96px}}.footer-logos .footer-logos__container{align-items:center;display:flex;gap:25.5px;justify-content:center;margin:24px 0;width:100%}.footer-logos .footer-logos__logo{height:96px;width:96px}.footer-logos .footer-logos__logo--wehen-wiesbaden{background:url(../../gambling/image/wehen_wiesbaden-logo.e7940a4d3ef7784b22cc.png) no-repeat}.footer-logos .footer-logos__logo--hallescher-logo{background:url(../../gambling/image/hallescher-logo.9771f5063902db6c23cc.png) no-repeat}.footer-logos .footer-logos__logo-container{align-items:center;display:flex;flex-direction:column;gap:6px;max-width:103px}.footer-logos .footer-logos__description{color:rgba(var(--footer-text), 1);font:var(--small);font-size:11px;line-height:14px;text-align:center}.grid-u,[class*=grid-u-]{display:inline-block;letter-spacing:normal;vertical-align:top;word-spacing:normal;zoom:1}.grid-r{word-spacing:-0.34em}.grid-u-sm-1-10{width:10%}.grid-u-sm-1-4{width:25%}.grid-u-sm-1-3{width:33.333%}.grid-u-sm-1-2{width:50%}.grid-u-sm-3-5{width:60%}.grid-u-sm-2-3{width:66.666%}.grid-u-sm-3-4{width:75%}.grid-u-sm-4-5{width:80%}.grid-u-sm-7-12{width:58.333%}.grid-u-sm-3-12{width:25%}.grid-u-sm-2-12{width:16.666%}.grid-u-sm-1{width:100%}@media only screen and (min-width: 48em){.grid-u-lg-1-4{width:25%}.grid-u-lg-1-3{width:33.3333%}.grid-u-lg-1-2{width:50%}.grid-u-lg-3-5{width:60%}.grid-u-lg-3-4{width:75%}}@media only screen and (min-width: 64.25em){.grid-u-xl-1-12{width:8.333%}.grid-u-xl-1-10{width:10%}.grid-u-xl-1-6{width:16.666%}.grid-u-xl-1-3{width:33.333%}.grid-u-xl-2-3{width:66.666%}}.info-box .info-box-text{font:var(--caption)}.info-box .info-box-value{font:var(--h3);margin:4px 0 12px}.desktop-in-game{max-width:1280px;width:100%}.ingame-wrapper{margin-top:76px}.ingame-wrapper object,.ingame-wrapper iframe{height:73vh;max-width:1280px}.ingame-wrapper-with-regulation-header{margin-top:120px}.ingame-wrapper-with-regulation-header object,.ingame-wrapper-with-regulation-header iframe{height:73vh;max-width:1280px}.logoMGA,.logoAlderney,.logoCuracao,.logoDGA{height:24px}.logoGamblingCommission{background:url(../../gambling/image/sprite-footer.a4da28d10c7b42c4db64.png) no-repeat;background-position:0 -200px;height:32px;width:96px}.my-limits-menu .link-list{margin-bottom:0}.welcome-menu .limits-read-more,.my-limits-menu .limits-read-more{font:var(--label-regular);margin-left:10px;text-decoration:underline}.welcome-menu .limits-notification-wrapper,.my-limits-menu .limits-notification-wrapper{background-color:rgba(var(--base-10), 1);padding:9px 24px 9px 9px}.welcome-menu .limits-notification-wrapper *,.my-limits-menu .limits-notification-wrapper *{color:rgba(var(--base-02), 1)}.welcome-menu .limits-notification-wrapper .limits-notification-icon-wrapper,.my-limits-menu .limits-notification-wrapper .limits-notification-icon-wrapper{margin-right:12px;min-width:48px;width:48px}.welcome-menu .limits-notification-wrapper .limits-notification-icon,.my-limits-menu .limits-notification-wrapper .limits-notification-icon{height:100%;width:100%;fill:rgba(var(--limits-notification-icon), 1)}.welcome-menu .limits-notification-wrapper .icon-close--small,.my-limits-menu .limits-notification-wrapper .icon-close--small{padding:8px}.welcome-menu .limits-notification-wrapper .icon-close--small svg,.my-limits-menu .limits-notification-wrapper .icon-close--small svg{height:16px;width:16px;fill:rgba(var(--limits-notification-icon), 1)}.welcome-menu .accordion .accordion__link,.my-limits-menu .accordion .accordion__link{background-color:rgba(var(--base-10), 1);padding:16px 12px;text-align:left;width:100%}.welcome-menu .accordion .accordion__link::before,.my-limits-menu .accordion .accordion__link::before{right:8px;top:26px}.welcome-menu .accordion .accordion__link::after,.my-limits-menu .accordion .accordion__link::after{right:15px;top:19px}.welcome-menu .accordion__content,.my-limits-menu .accordion__content{background-color:rgba(var(--base-10), 1);margin-top:1px}.welcome-menu .accordion__content .accordion__content-text,.my-limits-menu .accordion__content .accordion__content-text{padding:16px 0}.retrieve-limits-modal .default-limit-btn{background-color:rgba(0,0,0,0);border:1px solid rgba(var(--primary), 1);color:rgba(var(--primary), 1)}.retrieve-limits-modal .choose-amount{text-decoration:underline}.btn-container{animation:slideIn 250ms forwards}.btn-container--double .btn{white-space:nowrap}.btn-container--double .btn:first-child,.btn-container--double .btn--secondary:first-child{border-radius:3px 0 0 3px;border-radius:var(--button-border-radius, 3px) 0 0 var(--button-border-radius, 3px)}.btn-container--double .btn:last-child,.btn-container--double .btn--secondary:last-child{border-radius:0 3px 3px 0;border-radius:0 var(--button-border-radius, 3px) var(--button-border-radius, 3px) 0;margin-left:1px}.btn-container--double .btn:only-child,.btn-container--double .btn--secondary:only-child{border-radius:3px;border-radius:var(--button-border-radius, 3px);margin-left:0}.btn-container--portrait .btn:not(:first-child),.btn-container--portrait .btn--secondary:not(:first-child){margin-top:8px}.btn-container--double-link .btn--left,.btn-container--double-link .btn--right,.btn-container--double-link .deposit-btn{border-radius:3px;border-radius:var(--button-border-radius, 3px);display:flex;flex:1}.btn-container--double-link .btn--left .btn{border-radius:3px 0 0 3px;border-radius:var(--button-border-radius, 3px) 0 0 var(--button-border-radius, 3px)}.btn-container--double-link .btn--right .btn{border-radius:0 3px 3px 0;border-radius:0 var(--button-border-radius, 3px) var(--button-border-radius, 3px) 0;margin-left:1px}.btn-container-wrapper{width:100%}@media only screen and (min-width: 64.25em){.btn-container-wrapper{width:704px}}.menu .page-head .svg-logo{display:flex;height:var(--page-head-logo-height);margin:8px auto 0;width:176px}.log-in__form{padding:0 0 12px}.bottom-wrapper{bottom:0;overflow:hidden;position:absolute;transition:transform 250ms ease-in;width:100%}.bottom-wrapper.enable-transition{transition:250ms 250ms}.bottom-wrapper--is-hidden{transform:translateY(110%)}.log-in--open{height:100%;width:100%;transform:translate3d(0, 0, 0)}.log-in--open .btn-container{animation:bounceOutRight 250ms forwards;position:absolute}.user-options.user-options--login .filters input+.filters__filter,.user-options.user-options--register .filters input+.filters__filter{background-color:rgba(0,0,0,0)}.svg-logo-container{display:flex;justify-content:center;padding:26px 12px 38px}.svg-logo-container .svg-logo{height:100px;width:100px}.grecaptcha-badge{display:none}.modal-view{height:100%;width:100%;left:0;opacity:1;position:absolute;right:0;top:0;visibility:visible;z-index:33}.modal-view.modal-view--fixed{position:fixed}.modal-view.modal-view--sticky{position:sticky}.modal-view.reality-check-modal{z-index:40}.reality-check-confirm{padding-top:44px;padding-top:var(--regulationHeight)}.reality-check-confirm .confirm-btn button.btn{background-color:inherit}.user-balance .user-balance__title{font:var(--label-regular)}.user-balance .user-balance__sum{font:var(--h2)}.deposit.menu--is-open,.deposit.deposit--open,.deposit.withdrawal--open,.withdrawal.menu--is-open,.withdrawal.deposit--open,.withdrawal.withdrawal--open{z-index:33}.deposit.menu--is-open~.account-menu,.deposit.deposit--open~.account-menu,.deposit.withdrawal--open~.account-menu,.withdrawal.menu--is-open~.account-menu,.withdrawal.deposit--open~.account-menu,.withdrawal.withdrawal--open~.account-menu{opacity:0;transition:250ms 250ms}.last-login-timer{font:var(--caption);position:relative;text-align:center;top:10px}.session-timer{font:var(--small);text-align:center}.session-timer.danish-session-timer--regulation-header{font:var(--label-bold)}.legacy-withdrawal.withdrawal.reg-header-enabled{height:calc(100% - 44px);height:calc(100% - var(--header-height));top:44px;top:var(--header-height)}.legacy-withdrawal.withdrawal .withdrawal-step{padding-top:44px;padding-top:var(--header-height)}.js-multichoice-question.notify--is-open.reg-header-enabled{height:calc(100% - 44px);height:calc(100% - var(--header-height));top:44px;top:var(--header-height)}.account-menu .btn--secondary{font:var(--label-regular)}.menu{height:100%;width:100%;left:0;position:absolute;top:0;transition:transform 300ms ease-in;z-index:33}.menu.account-menu,.menu.limits-menu,.menu.verify-phone,.menu.verify-email-menu,.menu.verify-email-result-menu,.menu.upload-menu,.menu.time-limit{transform:translate3d(100%, 0, 0)}.menu.global-menu,.menu.terms-menu,.menu.privacy-menu,.menu.responsible-menu,.menu.about-menu{transform:translate3d(-100%, 0, 0)}.global-menu.menu--is-open,.terms-menu.menu--is-open,.account-menu.menu--is-open,.limits-menu.menu--is-open,.privacy-menu.menu--is-open,.responsible-menu.menu--is-open,.about-menu.menu--is-open,.verify-phone.menu--is-open,.verify-email-menu.menu--is-open,.verify-email-result-menu.menu--is-open,.upload-menu.menu--is-open,.time-limit.menu--is-open,.net-deposit-history-info-menu.menu--is-open{-webkit-overflow-scrolling:touch;transform:translate3d(0, 0, 0)}.deposit,.withdrawal{height:100%;width:100%;left:0;opacity:0;position:absolute;top:0;transition:250ms 500ms ease-in;transition:transform 250ms ease-out;visibility:hidden;z-index:33}.deposit .deposit-step,.deposit .withdrawal-step,.withdrawal .deposit-step,.withdrawal .withdrawal-step{height:auto;width:100%;height:calc(100% - 44px);height:calc(100% - var(--sidebarHeaderHeight));-webkit-overflow-scrolling:touch}.deposit .deposit-step.slide-out-down,.deposit .withdrawal-step.slide-out-down,.withdrawal .deposit-step.slide-out-down,.withdrawal .withdrawal-step.slide-out-down{transform:translate3d(0, 100%, 0)}.deposit .deposit-step.slide-in-up,.deposit .withdrawal-step.slide-in-up,.withdrawal .deposit-step.slide-in-up,.withdrawal .withdrawal-step.slide-in-up{transform:translate3d(0, 0, 0)}.deposit--open,.withdrawal--open{opacity:1;transform:translate3d(0, 0, 0);visibility:visible}.payment__label-amount{padding:24px 12px}.payment__label-amount .payment__amount-info{font:var(--label-regular)}.payment__label-amount .payment__amount-info--small{font:var(--caption);height:12px}.payment__label-amount.input-wrap::after{content:none}.payment__form .ReactCreditCard__logo{height:inherit;width:fit-content}.payment__form .ReactCreditCard__front{background-color:var(--credit-card);max-width:285px;max-width:var(--credit-card-width)}.payment__form .ReactCreditCard__front::before{background-image:none}.payment__form .ReactCreditCard__container{margin:0 auto;max-height:160px;max-height:var(--credit-card-height);max-width:285px;max-width:var(--credit-card-width)}.payment__form .ReactCreditCard__number{color:inherit;font-size:18px;margin-bottom:12px;opacity:1;opacity:initial}.payment__form .ReactCreditCard__display{color:inherit}.payment__form .ReactCreditCard__expiration{font-size:12px;opacity:1;opacity:initial}.payment__form .ReactCreditCard--visa .ReactCreditCard__logo{width:65px}.modal-view.bwi-modal{height:101vh}section.bwi-deposit-form{max-height:90%}.method-license-box{display:flex;justify-content:center}.method-license-box .method-license-text{bottom:0;color:rgba(var(--base-01), 1);color:var(--filter-support-links, rgba(var(--base-01), 1));font-size:13px;font-style:italic;font-weight:bold;position:absolute}.iframe-white-bg{background:#fff;padding:10px}.result-button-wrapper{background-color:rgba(var(--base-11), 1);background-color:var(--sidebar-bg, rgba(var(--base-11), 1))}.pending-withdraw-beta{height:calc(100% - 44px);height:calc(100% - var(--sidebarHeaderHeight))}.result{height:100%;width:100%;backface-visibility:hidden;background-size:100% 200%;left:0;position:absolute;top:0;transform:translate3d(0, 100%, 0);transition:transform 250ms ease-out,background-position 250ms 500ms ease-out;z-index:33}@supports not (-webkit-touch-callout: none){.result{overflow-y:auto}.result::-webkit-scrollbar{display:none}.result .payment-result-wrapper{height:calc(100% - 44px);height:calc(100% - var(--sidebarHeaderHeight));overflow-y:scroll}.result .payment-result-wrapper::-webkit-scrollbar{display:none}}.result.result--is-open{background-position:0 100%;opacity:1;transform:translate3d(0, 0, 0);visibility:visible}@supports not (-webkit-touch-callout: none){.result.result--is-open .scroll{overflow-x:hidden;overflow-y:auto}}@media screen and (max-width: 650px){.result.result--is-open .failed-deposit .scroll{min-height:60vh}}@supports not (-webkit-touch-callout: none){.result.result--is-open .failed-deposit .scroll{padding-bottom:70px}}.result.result--is-open h3{margin-bottom:7px;overflow:hidden}.result.result--is-open .btn--secondary{background-color:rgba(var(--base-11), 0.25);overflow:hidden}@media(min-height: 1220px){.result.result--is-open .failed-deposit{height:80%}.result.result--is-open .failed-deposit section[data-at=payment-result-header]{height:100%}}.result.result--is-open .failed-deposit .js-notify__button-wrapper--failed.u-btn-wrapper{background-color:var(--sidebar-bg)}.result.result--is-open .js-try-again-button-header{cursor:pointer;font:var(--label-regular);margin:auto 12px auto auto}.result.result--is-open .failed .u-btn-wrapper{background-color:var(--sidebar-bg)}.jsx-payment .js-try-again-button-header{cursor:pointer;font:var(--label-regular);margin:auto 12px auto auto}.u-message,.u-result-header{font:var(--label-regular)}.u-result{font:var(--h2);margin:2px 0 28px}div[class^=action-screen]{background-color:rgba(var(--success), 1);background-color:var(--sidebar-bg, rgba(var(--success), 1))}#main-layout>section.seo-content{display:none}#main-layout>div+section.seo-content{display:block}.seo-content h1,.seo-content h2,.seo-content h3,.seo-content h4{padding:12px 0}.seo-content h1{font:var(--h1)}.seo-content h2{font:var(--h2)}.seo-content ul{list-style-position:inside;list-style-type:disc}.seo-content ol{list-style-position:inside;list-style-type:decimal}.seo-content li{padding:6px 0}.seo-content a{display:inline}.shop-grid,.marketplace-grid{display:grid;grid-auto-flow:dense;grid-auto-rows:85px;grid-gap:12px;grid-template-columns:repeat(auto-fill, minmax(128px, 1fr));padding:56px 12px 12px}@media only screen and (min-width: 48em){.shop-grid,.marketplace-grid{grid-auto-rows:92px;grid-template-columns:repeat(auto-fill, minmax(148px, 1fr))}}.shop-grid .item,.marketplace-grid .item{grid-template-rows:58% 1fr}.shop-grid .item--voucher,.marketplace-grid .item--voucher{grid-row:span 3;grid-template-columns:initial;grid-template-rows:max-content}.shop-grid .item--voucher .btn-voucher-code,.marketplace-grid .item--voucher .btn-voucher-code{transform:translate3d(0, 0, 0)}.marketplace-grid__promotions{grid-auto-rows:minmax(85px, auto)}@media only screen and (min-width: 48em){.marketplace-grid__promotions{grid-auto-rows:minmax(80px, auto)}}.shop-item-img picture img{border-radius:6px}.shop-tier-img img{border-radius:6px}.points{height:64px;width:64px}.points .points__svg{border-top-left-radius:3px;z-index:1}.points .points__svg text{font:var(--caption)}.offer-tag{height:32px;width:32px;bottom:-16px;z-index:1}.offer-tag svg{height:16px;width:16px}.ended-tag{height:64px;width:64px}.ended-tag .points__svg text{font:var(--label-regular)}.shop-detail{height:100%;width:100%;left:0;overflow-y:auto;position:absolute;top:0;transform:translate3d(0, 100%, 0);transition:transform 250ms ease-out;z-index:33}.shop-detail--open{backface-visibility:hidden;-webkit-overflow-scrolling:touch;transform:translate3d(0, 0, 0)}.shop-detail__description{padding:37px 12px}.shop-detail__description .main-title{margin-bottom:8px;word-break:break-word}.shop-detail,.shop-detail-sidebar{height:auto}.shop-detail .points,.shop-detail-sidebar .points{height:96px;width:96px}.shop-detail .points .points__svg,.shop-detail-sidebar .points .points__svg{border-top-left-radius:0}.shop-detail .points .points__svg text,.shop-detail-sidebar .points .points__svg text{font:var(--h4-bold)}.shop-detail{height:100%}.signup{display:none;height:100%}.signup .signup__content{padding:0 0 12px}.signup .signup-step{-webkit-overflow-scrolling:touch;transition:transform 250ms}.signup__form{opacity:0;visibility:hidden}.signup .slide-out-down{transform:translate3d(0, 100vh, 0)}.signup .slide-in-up{transform:translate3d(0, 0, 0)}.signup .disclaimer-text{text-decoration:underline}.signup .input-wrap__checkbox{left:-9999px;max-height:none;opacity:0;position:absolute}.signup .input-wrap,.signup .custom-select{margin-right:12px}.signup--open .disclaimer-text{text-align:left}.signup--open .disclaimer-text.disclaimer-text--pzbuk{font:var(--caption);padding-left:28px}.signup--open .disclaimer-text.button-link-text{text-align:center}.bottom-wrapper.signup--open{top:0;transform:translate3d(0, 0, 0);width:100%}.bottom-wrapper.signup--open .signup{transform:scaleY(1)}.bottom-wrapper.signup--open .signup__form{opacity:1;visibility:visible}.bottom-wrapper.signup--open .btn-container{animation:bounceOutRight 250ms forwards;position:absolute}.bottom-wrapper.log-in--open .page-head,.bottom-wrapper.signup--open .page-head{background-color:var(--sidebar-bg)}.user-options.user-options--register~.filters-container .signup-step .signup__content{padding:6px 0 12px 12px}.sportsbook-section{min-height:100vh}.sportsbook-section iframe{min-height:100vh;overflow:hidden}.static-text{font:var(--label-regular)}@media only screen and (min-width: 48em){.static-text [class^=section-head__HeadWrapper]{padding-top:56px}}.static-text li{margin:6px 0 12px}.static-text b,.static-text p strong{font:var(--label-bold)}.static-text br{display:none}.static-text br+br{display:block;margin-bottom:18px}.static-text a{display:inline;font:var(--label-regular);text-decoration:none}.static-text .svg-logo{margin:0 auto;max-width:228px;width:100%}.static-text .page-head{background-color:inherit}.main-title{font:var(--label-bold)}.main-title.main-title--large{font:var(--h2)}.support-title{margin-bottom:2px;position:relative;z-index:1}@media only screen and (min-width: 20em){.support-title{font:var(--small)}}@media only screen and (min-width: 48em){.support-title{font:var(--caption)}}.support-title.support-title--medium{font:var(--caption)}.support-title.support-title--large{font:var(--label-bold)}.info-text{font:var(--label-regular)}.disclaimer-text{font:var(--label-regular)}.block-dividing-header{margin:32px 0 16px}.transaction-history-inactive-layer{height:calc(100% - 76px);opacity:.85;position:absolute;width:100%}.transaction-modal{height:auto;width:100%;position:absolute;z-index:7}.transaction-modal+.transaction-history__btn-wrapper{z-index:8}.transcation-detail{position:fixed}.terms-conditions ul,.terms-conditions ol{display:block;list-style-type:disc;padding:12px 0 12px 12px}.terms-conditions ul ul,.terms-conditions ol ul{margin-left:12px}.terms-conditions ul li,.terms-conditions ol li{display:list-item;margin-left:12px}.terms-conditions ol{list-style-type:decimal}.template-document-wrapper{overflow-x:hidden;padding:8px 0 12px}.template-document-wrapper::after{height:2px;width:100%;bottom:-12px;content:"";display:block;left:-1px;position:relative;transform:translate3d(-100%, 0, 0)}.remove-button svg{bottom:-3px;position:relative;width:24px}.remove-button img{bottom:-3px;position:relative;width:24px}.template-document-date,.template-document-info{display:flex}.template-document-date div,.template-document-info div{flex:1 1 50%}.template-document-date div:first-child{line-height:26px}.template-document-date div{border:0;font:var(--caption)}.template-document-info div{font:var(--h4-regular)}.upload-menu>.upload-file--button{bottom:0;position:absolute;width:100%}.upload-file{padding:0 0 6px}.upload-file input[type=file]{display:none}.upload-file input[type=file]+label{align-items:center;border-radius:3px;display:flex;font:var(--h4-regular);left:0;padding:16px 12px 15px;transform:none;width:100%;word-break:break-word}.template-document-wrapper.new-document{animation:pop-up 1000ms}.template-document-wrapper.new-document .template-document-info-status{animation:show-status 500ms 4700ms ease-in;animation-fill-mode:backwards}.template-document-wrapper.new-document::after{animation:slide-in 3500ms 1200ms ease-out}@keyframes pop-up{0%{opacity:0;transform:translateY(73px)}60%{opacity:1}100%{transform:translateY(0)}}@keyframes slide-in{0%{transform:translate3d(-100%, 0, 0)}65%{transform:translate3d(0, 0, 0)}95%{transform:translate3d(0, 0, 0)}100%{transform:translate3d(0, 2px, 0)}}@keyframes show-status{0%{opacity:0}100%{opacity:1}}.welcome-menu{background:rgba(var(--primary), 1);flex:1}.welcome-menu .welcome__main-title{color:rgba(var(--base-02), 1);font:var(--h2)}.welcome-menu .welcome__p{color:rgba(var(--base-02), 1);font:var(--label-regular)}.welcome-menu .title-label{color:rgba(var(--base-02), 1);font:var(--h3)}.welcome-menu .accordion .accordion__link{outline:none}.welcome-menu .accordion .accordion__content td{border-bottom:0;padding:13px 0 11px}.welcome-menu .accordion .accordion__content td button span{position:relative;top:2px}.welcome-menu .accordion .accordion__content tr:last-child{border-bottom:0}.info-text{color:rgba(var(--base-02), 1);font:var(--caption)}.event-type-title-bg{align-content:center;align-items:center;border-radius:3px 0 0 3px;display:flex;height:100%;justify-content:center;text-align:center;width:100%}.event-type-title-bg .event-type-title-text{-webkit-background-clip:text;background-clip:text;background-size:cover;color:rgba(0,0,0,0);font-size:13px;letter-spacing:-1px;text-align:center;text-transform:uppercase;word-spacing:50px}.top-of-page-image-wrapper{min-height:154px}.top-of-page-image-wrapper .fade-image{width:100%}.top-of-page-image-wrapper .fade-image img{min-height:198px;position:absolute;top:-44px}.top-of-page-image-wrapper .fade-image::after{height:100%;width:100%;content:"";left:0;min-height:198px;position:absolute;top:-44px}.top-of-page-image-wrapper .fade-image .event-type-title-bg{max-height:195px;min-height:195px;position:absolute;top:-44px;width:375px}.top-of-page-image-wrapper .fade-image .event-type-title-bg .event-type-title-text{font-size:60px;line-height:60px}.top-of-page-image-wrapper .stream-element-wrapper .wespin-streamelement{display:flex;flex-direction:column;justify-content:flex-end;min-height:154px}.top-of-page-image-wrapper .stream-element-wrapper .wespin-streamer-description{width:280px !important}.game-view__iframe>.stream-element-wrapper{visibility:hidden}.info-box,.radio-box{padding:24px 0 12px}.info-box button,.radio-box button{margin:4px 0}.info-box small,.radio-box small{margin-top:8px}.radio-box small{font:var(--label-regular)}.radio-box .custom .custom-right-radio h5,.radio-box .custom .custom-right-radio p{margin-bottom:6px}.more .bonus-active{margin:4px 0 6px}.stream-name-description-wrapper{padding:20px 12px 5px}.streamer-presentation{padding-bottom:18px}.display-circle--svg{height:108px;width:108px;margin-top:12px;padding:24px 24px 0}.display-circle--svg svg{height:56px;width:56px;margin:0 auto}.game-view .game-view__side{display:flex;flex-direction:column;position:relative;width:282px}.chat-iframe-container iframe{height:auto}.form-header{margin:21px 0 4px}.form .custom-select--label{font:var(--h4-regular);left:12px;position:absolute;top:2px;transform:scale(0.75);transform-origin:left}.form .custom-select{border-bottom:0}.new{border-radius:3px;font:var(--caption);padding:2px 4px;position:absolute}.new.new-tag-product-nav{right:-26px;top:-4px}.new.new-global-nav{left:64px;top:-4px}.new.new-landing-page{margin:-8px 0 0 -16px}.chevron-round{align-items:center;border-radius:50%;display:flex;height:36px;justify-content:center;width:36px}.BONUS_HUNT,.BONUS_BUY,.JACKPOT_HUNT,.STREAMERS_CHOICE{animation:move 4000ms infinite alternate}@keyframes move{25%{background-position:50px -50px}50%{background-position:0 50px}75%{background-position:100px 0}100%{background-position:0 -100px}}.live-dashboard-item h2{margin:0 !important}.live-dashboard-item h2 span{margin:2px !important;padding:0 !important;word-spacing:-3px !important}.basic-horizontal-card-wrapper div.basic-horizontal-card--middle-text,.basic-horizontal-card-wrapper div.basic-horizontal-card--bottom-text{margin-top:2px}.basic-horizontal-card-wrapper div.basic-horizontal-card--bottom-tag{margin-top:4px}.buy-in-buttons{justify-content:space-evenly;width:100%}.buy-in-buttons div{flex-direction:column;justify-content:center;margin:0 6px;width:112px}.info-box.edit-buy-in{align-items:center;display:flex;flex-direction:column}.info-box.edit-buy-in .edit-buyin-button{padding:7px 24px}.item--large-we-spin .btn.btn--small.btn--clip-card{padding:7px 24px}.item--large-we-spin .btn--tutorial-card-button #tutorial-card-link{font:var(--label-regular);margin:0}.pending-withdrawal .pending-withdrawal__row{align-items:center;display:flex;justify-content:space-between}.pending-withdrawal .pending-withdrawal__date{font:var(--caption)}.pending-withdrawal .pending-withdrawal__action .spinner{margin:0 -18px}.pending-withdrawal .pending-withdrawal__method{font:var(--label-bold)}.pending-withdrawal .pending-withdrawal__amount{color:rgba(var(--font-supportive), 1);font:var(--h4-regular)}.app-banner{background-color:#e5e5ea;border-bottom-left-radius:3px;border-bottom-right-radius:3px;display:flex;height:95px;height:var(--appbannerHeight);justify-content:space-between;padding:12px;width:100%;z-index:13}.app-banner~div .cookieConsent{z-index:20}.app-banner .close-icon{color:#16161d;margin-right:12px}.app-banner .info-wrapper{align-items:center;display:flex;height:100%}.app-banner .info-wrapper p{color:#8e8e93;font-size:12px;line-height:1.33;margin:4px;padding-left:12px}.app-banner .info-wrapper .title{color:#000;font-size:15px;letter-spacing:-0.2px}.app-banner .info-wrapper svg{border-radius:14px}.app-banner .button{color:#007aff;font-size:15px;letter-spacing:-0.2px;line-height:1.33;text-align:right}:root{--autocompleteOptionItemHeight: 44px}.autocomplete__option-list{background-color:var(--search-results-bg);border-bottom:1px solid var(--select-border-bottom-color);max-height:calc(44px*6);max-height:calc(var(--autocompleteOptionItemHeight)*6);overflow:auto;top:62px;width:100%;z-index:1}.autocomplete__option-item{min-height:44px;min-height:var(--autocompleteOptionItemHeight);padding:12px}.autocomplete__option-item:hover,.autocomplete__option-item_active{background-color:var(--search-result-item-bg)}.bankid-modal-container{height:70%;width:74.4%;z-index:1}.bonus-active .offer-tag{border-radius:32px 0 0 32px;bottom:0;left:-16px;margin:auto;right:auto;top:0}.bonus-active .bonus-active__image-wrapper{width:20.6%}.bonus-active .bonus-active__image{top:50%;transform:translateY(-50%)}.bonus-active .bonus-active__text-wrapper{padding:8px 12px 12px;width:79.4%}.bonus-active .bonus-active__text-wrapper .dots-container{padding:8px}.bonus-active .bonus-active__text-wrapper .dots-container svg{fill:rgba(var(--base-11), 1);fill:var(--btn-dots, rgba(var(--base-11), 1))}.bonus-active .bonus-active__text-wrapper .icon--sprite{transform:rotate(90deg)}.bonus-active .bonus-active__svg{height:6px;width:100%;margin-top:7px}.bonus-active .bonus-active__svg .bonus-active__progress-lane{height:100%;width:100%}.bonus-active .bonus-active__svg .bonus-active__progress-bar{height:100%}.bonus-active .lottery-historical__svg-wrapper{background-color:rgba(var(--base-09), 1);background-color:var(--lotteries-cash-svg-background, rgba(var(--base-09), 1));height:100%}.bonus-active .lottery-historical__svg-wrapper svg{fill:rgba(var(--base-02), 1);fill:var(--lotteries-cash-svg-fill, rgba(var(--base-02), 1))}.progress{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%)}.progress .progress__number{font:var(--h1);padding-top:44px}.progress svg{height:120px;width:127px;margin:0 auto}.progress svg path{fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1;stroke-width:10px;transition:stroke-dashoffset 1000ms ease-in-out}.progress svg .progress__meter{stroke-dasharray:317;stroke-dashoffset:317}.btn{border-radius:3px;border-radius:var(--brand-border-radius, 3px);display:inline-block;font:var(--h3);padding:14px;text-align:center;transition:transform 250ms ease-out,color 250ms ease-out;white-space:nowrap;width:100%}.btn.btn--skip,.btn.btn--clear,.btn.btn--login,.btn.btn--signup{background:rgba(0,0,0,0);border:0;font:var(--label-regular);outline:none;padding:12px 0;text-decoration:none;width:auto;z-index:8}.btn.btn--ghost{background:rgba(0,0,0,0);border:1px solid rgba(var(--base-01), 1);font:var(--label-bold);padding:5px 18px}.btn.btn--transparent{background:rgba(0,0,0,0);border-top:1px solid rgba(var(--base-02), 1);font:var(--label-regular);padding:16px}.btn.btn--transparent:disabled{color:rgba(var(--base-05), 1)}.btn.btn--secondary:disabled{color:rgba(var(--base-05), 1)}.btn.btn--tertiary{font:var(--label-regular)}.btn.btn--round{border-radius:26px}.btn.btn--small{font:var(--label-bold);padding:8px}.btn.btn--auto{padding:8px 24px;width:auto}.btn:disabled{cursor:not-allowed}.btn.btn--is-loading{color:rgba(var(--base-02), 0) !important}.btn.btn--applepay{appearance:-apple-pay-button;padding:26px;-apple-pay-button-type:plain}.btn::first-letter{text-transform:uppercase}.btn.btn--link{background-color:rgba(0,0,0,0);border:0;font:var(--label-regular);padding:0;text-decoration:underline}.btn.btn--first{border-radius:3px 0 0 3px}.btn.btn--last{border-radius:0 3px 3px 0;margin-left:1px}.btn.btn--upload-secondary{text-align:left}.btn.btn--upload-secondary svg{right:8px;top:14px}.btn.focus-visible{outline:-webkit-focus-ring-color auto 1px}.btn:focus-visible{outline:-webkit-focus-ring-color auto 1px}.btn.btn--clear-all{background:rgba(0,0,0,0)}.btn.btn--clear-all:disabled{background:rgba(0,0,0,0) !important}.btn.btn--clear-all:disabled{color:var(--button-disabled-text)}.btn.btn-send-mail-disabled,.btn.js-verify-get-code{align-items:center;display:flex;justify-content:center}.call-support-btn{background-color:rgba(var(--base-11), 1);border-radius:24px;color:rgba(var(--base-02), 1);font:var(--label-regular);padding:12px 24px;z-index:35}.call-support-btn svg{margin-left:6px}.u-btn-wrapper{width:100%}.u-btn-wrapper .btn--secondary{border-radius:0;margin-bottom:1px;position:relative}.u-btn-wrapper .btn--secondary.js-support-button{margin-bottom:12px}.u-btn-wrapper>.btn--secondary:nth-child(2){border-radius:3px 3px 0 0}.u-btn-wrapper>.btn--secondary:nth-last-child(2){border-radius:0 0 3px 3px}.u-btn-wrapper>.btn--secondary:last-child{border-radius:3px;margin-top:8px}.u-btn-wrapper .btn--secondary:first-child{border-radius:3px 3px 0 0}.u-btn-wrapper .btn--secondary:only-child{border-radius:3px;margin:0}.u-btn-wrapper.js-notify__button-wrapper--failed .btn--secondary:first-child{border-radius:3px}.u-btn-wrapper.u-btn-wrapper--is-hidden{transform:translate3d(0, 100%, 0)}.buy-in-buttons{padding-bottom:5px}.buy-in-buttons .btn{border-radius:18px;flex:1 1 0;margin:10px 0 0;padding:7px 10px}.buy-in-buttons .btn:focus{outline:none}.buy-in-buttons .btn:disabled{background-color:var(--button-disabled-bg);color:var(--button-disabled-text)}.btn-rounded{background-color:rgba(var(--primary), 1);background-color:var(--button-primary-bg, rgba(var(--primary), 1));border-radius:26px;color:rgba(var(--base-02), 1);color:var(--button-primary-text, rgba(var(--base-02), 1));font:var(--label-bold);padding:11px 40px;position:relative;text-align:center;white-space:nowrap;width:auto}.btn-rounded:focus{outline:none}.btn-rounded:disabled{background-color:var(--button-disabled-bg);color:var(--button-disabled-text);cursor:not-allowed}.upload-file--button input[type=file]{height:.1px;width:.1px;opacity:0;position:absolute}.button__large{background:rgba(var(--buttonLargeBg), 1);border-radius:26px;color:rgba(var(--buttonLargeText), 1);cursor:pointer;font:var(--h4-bold);outline:none;padding:14px 45px}.button__large:hover{color:rgba(var(--buttonLargeTextHover), 1)}.btn-rounded-small{font:var(--caption);padding:10px}.button-wrapper .btn{margin-bottom:1px}.create-events-button,.wespin-upload-file--button{padding:8px 24px}@media(hover: hover){.create-events-button:hover,.wespin-upload-file--button:hover{cursor:pointer}}.carousel__wrapper{align-content:center;display:grid;height:auto;overflow:hidden;padding-left:4px;position:relative;width:auto}.carousel__scroller{display:grid;grid-auto-flow:column;grid-gap:6px;justify-content:flex-start;overflow:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;padding:4px 0;scroll-snap-type:x mandatory;scrollbar-width:none;width:auto}.carousel__scroller::-webkit-scrollbar{display:none}.carousel__scroller::after{content:"";right:0;width:20px}@media only screen and (min-width: 48em){.carousel__scroller::after{width:25px}}.carousel__arrow{align-content:center;align-self:center;background:rgba(var(--category-arrow-bg), 1);cursor:pointer;display:grid;height:42px;justify-content:flex-start;outline:none;position:absolute;width:21px;z-index:1}.carousel__arrow::after{background:rgba(0,0,0,0);border-radius:50%;bottom:-50%;content:"";height:80px;position:absolute;width:80px}.carousel__arrow .icon--sprite{fill:rgb(var(--base-02));fill:var(--category-arrow-icon-color, rgb(var(--base-02)));height:20px;position:relative;width:20px}.carousel__arrow--left{border-bottom-right-radius:42px;border-top-right-radius:42px;left:4px}.carousel__arrow--left .icon--sprite{left:-2px}.carousel__arrow--left::after{left:-50px}@media only screen and (min-width: 48em){.carousel__arrow--left::after{left:-35px}}.carousel__arrow--right{border-bottom-left-radius:42px;border-top-left-radius:42px;right:0}.carousel__arrow--right .icon--sprite{right:-3px}.carousel__arrow--right::after{right:-35px}@media only screen and (min-width: 48em){.carousel__arrow--right::after{left:-30px}}.cc-form .input-wrap .input-wrap__input{border-radius:0}.cc-form .input-wrap .month-input,.cc-form .input-wrap .year-input,.cc-form .input-wrap .cvv-input{padding:24px 0 8px}.cc-form .input-wrap .month-input:placeholder-shown,.cc-form .input-wrap .year-input:placeholder-shown,.cc-form .input-wrap .cvv-input:placeholder-shown{padding:16px 0}.cc-form .input-wrap .month-input:not(:placeholder-shown)+.year-input{padding:24px 0 8px}.cc-form .input-wrap .month-input[\:has\(\%2B.year-input\:not\(\:placeholder-shown\)\)]{padding:24px 0 8px}.cc-form .input-wrap .month-input:has(+.year-input:not(:placeholder-shown)){padding:24px 0 8px}.cc-form .input-wrap.expiry-wrap .input-wrap__label,.cc-form .input-wrap.cvv-wrap .input-wrap__label{left:0}.collapse-value{margin:0 12px 0 auto}.welcome-menu .welcome-screen-collapse .table-basic tr,.welcome-menu .welcome-screen-collapse .table-basic td{border-bottom:0}.welcome-menu .welcome-screen-collapse .table-basic tr button span,.welcome-menu .welcome-screen-collapse .table-basic td button span{height:24px !important}.welcome-menu .welcome-screen-collapse .table-basic tr button span,.welcome-menu .welcome-screen-collapse .table-basic td button span{position:relative;top:2px}.details-accordion{position:relative}.details-accordion summary::-webkit-details-marker{display:none}.details-accordion summary{font:var(--label-regular);outline:none;text-align:left}.details-accordion .summary-icon{position:absolute;right:20px;top:26px}.details-accordion .summary-icon::after{height:24px;width:24px;background-image:url(../../gambling/image/bottom.8483290e45c72c7ce51e.svg);background-repeat:no-repeat;bottom:6px;content:"";filter:brightness(1) sepia(1) hue-rotate(0deg) saturate(1);pointer-events:none;position:absolute;z-index:2}.details-accordion[open] summary~*{animation:opacity 250ms ease-in-out;opacity:1}@keyframes opacity{0%{opacity:0;transform:translate(0, -30%)}100%{opacity:1;transform:translate(0, 0)}}.filters{z-index:2}.filters input{left:-9999px;opacity:0;position:absolute}.filters input+.filters__filter{flex-basis:0;flex-grow:1;font:var(--label-bold);padding:16px 0}.filters input+.filters__filter::first-letter{text-transform:uppercase}.filters input:checked:nth-of-type(1)~.sliding-border,.filters input.active:nth-of-type(1)~.sliding-border{transform:translateX(0)}.filters input:checked:nth-of-type(2)~.sliding-border,.filters input.active:nth-of-type(2)~.sliding-border{transform:translateX(100%)}.filters input:checked:nth-of-type(3)~.sliding-border,.filters input.active:nth-of-type(3)~.sliding-border{transform:translateX(200%)}.filters input:checked:nth-of-type(4)~.sliding-border,.filters input.active:nth-of-type(4)~.sliding-border{transform:translateX(300%)}.filters .sliding-border{transition:transform 250ms ease-out;width:100%}.filters .filters__inner-wrapper .filters__filter~.filters__filter~.sliding-border{width:50%}.filters .filters__inner-wrapper .filters__filter~.filters__filter~.filters__filter~.sliding-border{width:33%}.filters .filters__inner-wrapper .filters__filter~.filters__filter~.filters__filter~.filters__filter~.sliding-border{width:25%}.filters--login input+.filters__filter::first-letter{text-transform:none}.flag{height:48px;width:48px;background-repeat:no-repeat}.flag.flag--cl{background-image:url(../../gambling/image/flag__chile.946da607262b6e99f33a.svg)}.flag.flag--de{background-image:url(../../gambling/image/flag__germany.ed3f3a78d8b6e3d065a1.svg)}.flag.flag--dk{background-image:url(../../gambling/image/flag__denmark.9a6765ccbf1ab7d0a6f0.svg)}.flag.flag--en{background-image:url(../../gambling/image/flag__global.7af68bce5e56c8f41522.svg)}.flag.flag--eu{background-image:url(../../gambling/image/flag__eu.ffc05f16ae1af08e755e.svg)}.flag.flag--fi{background-image:url(../../gambling/image/flag__finland.03c130437f41310c8782.svg)}.flag.flag--gb{background-image:url(../../gambling/image/flag__united_kingdom.94a6d15f51e2bc0e0319.svg)}.flag.flag--no{background-image:url(../../gambling/image/flag__norway.ba96034964657798b2f7.svg)}.flag.flag--pl{background-image:url(../../gambling/image/flag__poland.3de30ba572420b21b2f6.svg)}.flag.flag--se{background-image:url(../../gambling/image/flag__sweden.53b53a1430ab1159dc48.svg)}.form fieldset{margin:0 0 6px}.form input[type=text],.form input[type=date],.form input[type=time],.form input[type=number],.form select,.form .custom-select select{border-radius:3px 3px 0 0;font:var(--heading-5);font-size:16px;padding:24px 12px 8px;width:100%}.form input[type=text]+label,.form input[type=text]+legend,.form input[type=date]+label,.form input[type=date]+legend,.form input[type=time]+label,.form input[type=time]+legend,.form input[type=number]+label,.form input[type=number]+legend,.form select+label,.form select+legend,.form .custom-select select+label,.form .custom-select select+legend{font:var(--heading-5);font-size:16px;left:12px;position:absolute;top:10px;transform-origin:left;transition:transform 250ms ease-out}.form input[type=text]:focus,.form input[type=text]:valid,.form input[type=date]:focus,.form input[type=date]:valid,.form input[type=time]:focus,.form input[type=time]:valid,.form input[type=number]:focus,.form input[type=number]:valid,.form select:focus,.form select:valid,.form .custom-select select:focus,.form .custom-select select:valid{outline:none}.form input[type=text]:focus~.form__border,.form input[type=text]:valid~.form__border,.form input[type=date]:focus~.form__border,.form input[type=date]:valid~.form__border,.form input[type=time]:focus~.form__border,.form input[type=time]:valid~.form__border,.form input[type=number]:focus~.form__border,.form input[type=number]:valid~.form__border,.form select:focus~.form__border,.form select:valid~.form__border,.form .custom-select select:focus~.form__border,.form .custom-select select:valid~.form__border{transform:translateY(0) scale(1)}.form input[type=text]:placeholder-shown+label,.form input[type=date]:placeholder-shown+label,.form input[type=time]:placeholder-shown+label,.form input[type=number]:placeholder-shown+label,.form select:placeholder-shown+label,.form .custom-select select:placeholder-shown+label{opacity:1;transform:translateY(6px)}.form input[type=text]:not(:placeholder-shown)+label,.form input[type=text]:focus+label,.form input[type=date]:not(:placeholder-shown)+label,.form input[type=date]:focus+label,.form input[type=time]:not(:placeholder-shown)+label,.form input[type=time]:focus+label,.form input[type=number]:not(:placeholder-shown)+label,.form input[type=number]:focus+label,.form select:not(:placeholder-shown)+label,.form select:focus+label,.form .custom-select select:not(:placeholder-shown)+label,.form .custom-select select:focus+label{opacity:1;transform:translateY(-6px) scale(0.7)}.form input[type=text].input-amount,.form input[type=date].input-amount,.form input[type=time].input-amount,.form input[type=number].input-amount,.form select.input-amount,.form .custom-select select.input-amount{border-radius:3px 3px 0 0;font:var(--h2);height:64px;max-height:64px;padding-top:14px;text-align:center}.form input[type=text].input-amount:placeholder-shown,.form input[type=date].input-amount:placeholder-shown,.form input[type=time].input-amount:placeholder-shown,.form input[type=number].input-amount:placeholder-shown,.form select.input-amount:placeholder-shown,.form .custom-select select.input-amount:placeholder-shown{font:var(--heading-5);font-size:16px;text-align:left}.form input[type=text].input-amount+label,.form input[type=date].input-amount+label,.form input[type=time].input-amount+label,.form input[type=number].input-amount+label,.form select.input-amount+label,.form .custom-select select.input-amount+label{font:var(--h2);right:12px;text-align:center;top:50%;transform-origin:center;visibility:hidden}.form .custom-select::after{right:6px;z-index:0}.form input[type=date]::-webkit-calendar-picker-indicator,.form input[type=time]::-webkit-calendar-picker-indicator{margin-top:-12px}.form .form__border{bottom:1px;height:1px;left:0;margin:0 auto;position:relative;right:0;transform:translateY(1px) scale(0);transform-origin:top center;transition:transform 250ms ease-in,background-color 250ms ease-in}.form .form__border.form__border--error{transform:translateY(0) scale(1)}.form .edit-wespin-buyin .form__border{transform:translateY(0) scale(1)}.form input[type=date],.form input[type=time]{height:56px}.form input[type=date]+label,.form input[type=time]+label{transform:translateY(-140%) scale(0.75);transform-origin:left}.form .two-inputs fieldset:first-child{margin-right:6px}.form .error{display:block;font:var(--caption);min-height:20px;padding:0 0 0 12px}@keyframes onAutoFillStart{}@keyframes onAutoFillCancel{}.input-wrap{flex:1;overflow:hidden}.input-wrap .input-wrap__input{background-color:rgba(var(--input-background-color), 1);border-radius:3px 3px 0 0;font:var(--heading-5);font-size:16px;padding:24px 12px 8px;width:100%}.input-wrap .input-wrap__input:focus{outline:none}.input-wrap .input-wrap__input:placeholder-shown{padding:16px 8px}.input-wrap .input-wrap__input:placeholder-shown~.country-code-sign{top:16px}.input-wrap .input-wrap__input:disabled{cursor:not-allowed;opacity:.3}.input-wrap .input-wrap__input:disabled~.country-code-sign{opacity:.3}.input-wrap .input-wrap__input.input-wrap__input--large{border-bottom:0;border-radius:0;box-shadow:none;font:var(--display);letter-spacing:-2.1px;max-height:none;padding:0;text-align:center}.input-wrap .input-wrap__input.input-wrap__input--large:placeholder-shown,.input-wrap .input-wrap__input.input-wrap__input--large:focus{border:0;box-shadow:none}.input-wrap .input-wrap__input:-webkit-autofill{animation-name:onAutoFillStart;-webkit-transition:background-color 50000s ease-in-out 0s;transition:background-color 50000s ease-in-out 0s}.input-wrap .input-wrap__input:not(:-webkit-autofill){animation-name:onAutoFillCancel}.input-wrap .input-wrap__input--always-focused{background-color:red}.input-wrap .input-wrap__input--empty{padding:16px 12px}.input-wrap.input-wrap--small{max-width:100px}.input-wrap .input-wrap__error{border-bottom-color:rgba(var(--error), 1)}.input-wrap .input-wrap__error:focus{border-bottom-color:rgba(var(--error), 1)}.input-wrap .country-code-sign{font:var(--heading-5);left:12px;top:24px}.input-wrap__label{font:var(--heading-5);left:12px;opacity:0;position:absolute;top:42px;transition:250ms ease-out;visibility:hidden}.input-wrap__label--show{font:var(--caption);left:12px;opacity:1;top:8px;visibility:visible}.input-wrap__error-display{color:rgba(var(--error), 1);display:block;font:var(--caption);padding:6px 0}.input-wrap__error-display:empty{padding:0}.input-wrap .slider-input{border-radius:3px 3px 0 0;font:var(--h1);line-height:37px;padding:12px 0;text-align:center}.input-wrap.input-wrap__error .slider-input{color:rgba(var(--error), 1)}.input-wrap.input-wrap__error .slider-input:focus{color:rgba(var(--error), 1)}.input-wrap-small{max-width:100px}.slider-container{margin:24px 0}.slider-container .slider-component{padding-top:9px}.input-field-title{font:var(--label-regular);text-align:center}.deposit-limits-edit__button{color:rgba(var(--primary), 1)}.valid-limits-icon{right:10px;top:15px}.toggle-password{bottom:auto;height:56px;outline:none;right:0;top:0}.toggle-password~.input-wrap__input{padding-right:50px}.legend{font:var(--caption);top:8px}.custom-checkbox-list li{padding:12px 0}.custom-checkbox-list li,.custom-checkbox-list label{cursor:pointer}.custom-checkbox-list .custom-checkbox__right svg{right:0}.radio-box>.custom-checkbox-list{margin-top:0}.custom-checkbox{position:relative}.custom-checkbox input[type=checkbox]{left:-9999px;max-height:none;opacity:0;position:absolute}.custom-checkbox .custom-checkbox__label{display:block;font:var(--label-regular);transition:color 200ms ease}.custom-checkbox .custom-checkbox__left{padding:0 0 10px 28px}.custom-checkbox .custom-checkbox__left svg{left:0;top:-2px}.custom-checkbox .custom-checkbox__auto_withdraw{font:var(--caption)}.custom{position:relative}.custom .custom__input{left:-9999px;max-height:none;opacity:0;position:absolute}.custom .custom__label{display:block;font:var(--label-regular);margin-left:24px}.custom .custom__label::before,.custom .custom__label::after{content:"";left:0;position:absolute;right:auto}.custom.custom--radio .custom__label::before,.custom.custom--radio .custom__label::after{background:none;border-radius:50%}.custom.custom--radio .custom__label::before{height:18px;width:18px;border:2px solid rgba(var(--primary), 1);border:2px solid rgba(var(--custom-radio-border, var(--primary)), 1);top:0}.custom.custom--radio .custom__label.custom-right-radio{left:auto;margin-left:0;margin-right:18px;right:0}.custom.custom--radio .custom__label.custom-right-radio::before{left:auto;right:0}.custom.custom--radio .custom__label.custom-right-radio::after{left:auto;right:-2px}.custom.custom--radio .custom__input:checked+.custom__label::before{border-color:rgba(var(--primary), 1);border-color:rgba(var(--custom-checked-radio-border-color, var(--primary)), 1)}.custom.custom--radio .custom__input:checked+.custom__label::after{height:10px;width:10px;background:rgba(var(--primary), 1);background:rgba(var(--custom-checked-radio-bg, var(--primary)), 1);left:4px;right:auto;top:4px}.custom.custom--radio .custom__input:checked+.custom__label.custom-right-radio::after{left:auto;right:4px}.custom.custom--radio .custom__input:disabled+.custom__label::before{border-color:rgba(var(--base-09), 1);border-color:rgba(var(--custom-disabled-radio-border-color, var(--base-09)), 1)}.custom.custom--radio .custom__input:checked:disabled+.custom__label::after{background:rgba(var(--base-09), 1);background:rgba(var(--custom-checked-disabled-radio-bg, var(--base-09)), 1)}.custom.custom--radio .custom__input:checked:disabled+.custom__label::before{border-color:rgba(var(--base-09), 1);border-color:rgba(var(--custom-checked-disabled-radio-border-color, var(--base-09)), 1)}.custom.custom--checkbox .custom__label::before{height:18px;width:18px;border:2px solid rgba(var(--primary), 1);border:2px solid rgba(var(--custom-checkbox-border-color, var(--primary)), 1);border-radius:3px}.custom.custom--checkbox .custom__label::after{display:none;left:5px}.custom.custom--checkbox .custom__label.custom-checkbox__right::before,.custom.custom--checkbox .custom__label.custom-checkbox__right::after{left:auto;right:14px;top:1px}.custom.custom--checkbox .custom__label.custom-checkbox__right{margin-left:0}.custom.custom--checkbox .custom__input:checked+.custom__label::after{height:14px;width:8px;border-bottom:2px solid rgba(var(--base-01), 1);border-bottom:2px solid rgba(var(--custom-checked-checkmark-color, var(--base-01)), 1);border-right:2px solid rgba(var(--base-01), 1);border-right:2px solid rgba(var(--custom-checked-checkmark-color, var(--base-01)), 1);display:block;margin:0 5px 0 0;top:0;transform:rotate(45deg)}.custom.custom--checkbox .custom__input:checked+.custom__label::before{background:rgba(var(--primary), 1);background:rgba(var(--custom-checked-checkbox-bg, var(--primary)), 1);border-color:rgba(var(--primary), 1);border-color:rgba(var(--custom-checked-checkbox-border-color, var(--primary)), 1)}.custom.custom--checkbox .custom__input:checked:disabled+.custom__label::before{background:rgba(var(--primary), 1);background:rgba(var(--custom-checked-disabled-checkbox-bg, var(--primary)), 1);border-color:rgba(var(--primary), 1);border-color:rgba(var(--custom-checked-disabled-checkbox-border-color, var(--primary)), 1)}.custom.custom--checkbox .custom__input:checked:disabled+.custom__label::after{border-color:rgba(var(--base-01), 1);border-color:rgba(var(--custom-checked-disabled-checkbox-checkmark, var(--base-01)), 1)}.signup__content .custom--checkbox,.signup-basic .custom--checkbox,.deposit--open .custom--checkbox,.js-mail-verify-step1 .custom--checkbox{padding:0}.signup__content .custom--checkbox .error::before,.signup-basic .custom--checkbox .error::before,.deposit--open .custom--checkbox .error::before,.js-mail-verify-step1 .custom--checkbox .error::before{border-color:rgba(var(--error), 1)}.bankwire-wrap .input-wrap__label,.entercash-wrap .input-wrap__label{opacity:1;top:8px;visibility:visible}.bankwire-wrap .input-wrap__input:placeholder-shown+.input-wrap__label,.entercash-wrap .input-wrap__input:placeholder-shown+.input-wrap__label{opacity:0;top:0;visibility:hidden}.field-reference-code-with-copy{align-items:flex-end;display:flex}.field-reference-code-with-copy button.btn.btn-rounded.btn-rounded-small{height:fit-content}span.input-wrap__masked{line-height:1}span.input-wrap__masked span{color:#949494;height:24px;left:0;pointer-events:none;position:absolute;top:0;z-index:1}span.input-wrap__masked span i{color:rgba(0,0,0,0);font-style:normal;opacity:0;visibility:hidden}span.input-wrap__masked .masked,span.input-wrap__masked span{font:var(--heading-5);font-size:16px;padding:24px 12px 8px}.auto-withdraw-checkbox .custom-checkbox__label{font:var(--caption);margin-left:8px;margin-top:2px;text-align:left}.auto-withdraw-checkbox .custom-checkbox{margin-top:20px}.custom-radio-toggle .custom-radio-toggle-input{left:-9999px;max-height:none;opacity:0;position:absolute}.custom-radio-toggle .custom-radio-toggle-label{background-color:rgba(var(--base-10), 1);color:#fff;font-size:17px;height:52px;position:relative;text-align:center;width:50%}.custom-radio-toggle .custom-radio-toggle-label:hover{cursor:pointer}.custom-radio-toggle .custom-radio-toggle-input:checked+.custom-radio-toggle-label{background-color:rgba(var(--primary), 1)}.custom-radio-toggle .custom-radio-toggle-label:first-of-type{border-radius:3px 0 0 3px}.custom-radio-toggle .custom-radio-toggle-label:last-of-type{border-radius:0 3px 3px 0}.custom-radio-toggle .custom-radio-toggle-fieldset{display:flex;text-align:center;width:100%}.sow-custom-header{background-color:rgba(var(--my-notifications-header-bg-color), 1) !important}.sow-custom-header svg{fill:var(--my-notifications-back-button-color) !important}.sow-custom-header .sow-contact-support-override{background:rgba(0,0,0,0) !important;font-size:13px !important;width:auto !important}.sow-form-name:disabled{background-color:rgba(var(--input-background-color), 0.4) !important;border-bottom-color:rgb(var(--input-border-color)) !important;color:rgba(var(--input-font-color), 0.5) !important}.sow-form-name:disabled{cursor:not-allowed}.sow-form-name:disabled+label{color:rgba(var(--input-placeholder-color), 0.8)}.sow-section-wrapper{position:relative}.sow-options-wrapper{background-color:rgba(var(--source-of-wealth-dropdown-bg), 0.7);display:flex;flex-direction:column;height:100%;justify-content:flex-end;position:absolute;top:0;width:100%}.sow-options{background-color:rgba(var(--source-of-wealth-dropdown-bg), 1);display:flex;flex-direction:column}.sow-dropdown-cta-button{align-items:center;border-bottom:1px solid rgba(var(--source-of-wealth-dropdown-border), 1);border-top:1px solid rgba(var(--source-of-wealth-dropdown-border), 1);display:flex;justify-content:space-between}.sow-dropdown-cta-button button{padding:12px}.sow-dropdown-buttons-wrapper{display:flex;flex:0 0 400px;flex-direction:column;overflow-y:scroll;padding:0 12px 40px}.sow-custom-dropdown .sow-chevron-icon{transform:rotate(180deg)}.sow-custom-dropdown input[type=file]{height:.1px;width:.1px;opacity:0;position:absolute}.sow-custom-dropdown .sow-hidden-input{align-items:center;border-bottom:1px solid rgb(var(--input-border-color));color:rgba(var(--source-of-wealth-form-text), 1);cursor:pointer;display:flex;font-size:14px;font-weight:bold;line-height:22px;min-height:56px;padding:10px 0}.sow-custom-dropdown .sow-hidden-input.disabled{cursor:not-allowed;opacity:.3}.sow-custom-dropdown .sow-hidden-input.not-disabled.no-files-chosen:hover{border-bottom-color:rgb(var(--input-border-hover-color))}.sow-custom-dropdown .sow-hidden-input.no-files-chosen{background-color:rgba(var(--source-of-wealth-form-bg), 1);color:rgb(var(--input-placeholder-color));font:var(--heading-5);font-size:16px;padding:0 10px}.sow-custom-dropdown .sow-hidden-input .uploaded-file-names-wrapper{display:flex;flex:1;flex-wrap:wrap}.sow-custom-dropdown .sow-hidden-input .uploaded-file-names-wrapper>span{font:var(--heading-5);margin-right:5px}.sow-custom-dropdown .sow-hidden-input .reviewing-text{font-size:12px;opacity:.5}.sow-custom-dropdown .sow-upload-helptext{color:rgba(var(--source-of-wealth-help-text), 1);font-size:12px;margin-top:5px}.sow-custom-dropdown .sow-current-date{color:rgba(var(--source-of-wealth-help-text), 1);font-size:12px;margin-bottom:5px}.subscription-checklist-custom{margin-top:30px}.subscription-checklist-custom .account-subscription-item label{font-weight:bold}.subscription-checklist-custom .account-subscription-item:disabled{opacity:.5}.subscription-checklist-custom .account-subscription-item:disabled label{cursor:not-allowed}.category-carousel{display:flex;grid-column:1/3;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;overflow-y:auto;scroll-snap-type:x mandatory;scrollbar-width:none;width:calc(100% + 24px)}@media only screen and (min-width: 23.4375em){.category-carousel{grid-column:1/-1}}.category-carousel .gallery__cell{flex-shrink:0;padding:12px 16px;scroll-snap-align:start}.category-carousel::-webkit-scrollbar{display:none}.reg-header-wrapper .swipe-button-container{align-items:center;border-radius:20px;display:flex;height:28px;justify-content:center;overflow:hidden;position:relative;width:100%}@media only screen and (min-width: 48em){.reg-header-wrapper .swipe-button-container{height:40px}}.reg-header-wrapper .swipe-button-slider{border-radius:20px;float:left;height:inherit;left:-36px;position:absolute;top:0;width:100%}@media only screen and (min-width: 48em){.reg-header-wrapper .swipe-button-slider{left:-40px}}.reg-header-wrapper .panic-btn_icon{border-radius:20px;cursor:grab;padding:6px;position:absolute;right:5px;top:0}@media only screen and (min-width: 48em){.reg-header-wrapper .panic-btn_icon{padding:10px;right:0}}.reg-header-wrapper .panic-btn_icon .icon--sprite{height:15px;width:15px}@media only screen and (min-width: 48em){.reg-header-wrapper .panic-btn_icon .icon--sprite{height:20px;width:20px}}.reg-header-wrapper .panic-btn_txt{font:var(--caption-bold)}@media only screen and (min-width: 48em){.reg-header-wrapper .panic-btn_txt{font:var(--h3);margin-left:38px}}.page-head{height:44px;width:100%;display:flex;transition:transform 250ms ease-in,background-color 250ms ease-in,color 250ms ease-in;white-space:nowrap;z-index:7}.page-head .page-head__title{font:var(--h4-bold);justify-content:center}.page-head .page-head__title .svg-logo{height:32px;width:--register-one-step-header-logo-width;display:block;margin:auto 0}@media only screen and (min-width: 64.25em){.page-head .page-head__title .svg-logo{display:flex}}.page-head .svg-logo{height:32px;width:176px;margin:auto 0}@media only screen and (min-width: 64.25em){.page-head .svg-logo{display:flex}}.page-head__title,.page-head__left-side,.page-head__right-side{display:flex;flex:1;margin:auto 0}.page-head__left-side{justify-content:flex-start;margin:auto auto auto 12px;z-index:1}.page-head__left-side .page-head__icon{padding:10px 12px 10px 0}.page-head__left-side .page-head__icon .game-item__love--loading{cursor:default}.page-head__left-side .page-head__icon .game-item__love--loading svg.item__love-icon,.page-head__left-side .page-head__icon .game-item__love--loading .item__love-counter{opacity:.3}.page-head__right-side{justify-content:flex-end;margin:auto 12px auto auto}.page-head__right-side .header-icon--deposit{margin-right:12px}@media only screen and (min-width: 48em){.header-icon--login{display:none}}.header-unread-message-notifier{color:rgba(var(--unread-message-counter-text-color), 1) !important}.header-unread-message-notifier{align-items:center;background-color:rgba(var(--unread-message-counter-bg-color), 1);border-radius:8px;display:flex;font:var(--small-bold);height:16px;justify-content:center;min-width:16px;padding:2px 4px;pointer-events:none;position:absolute}.header-unread-message-notifier.galaxy{right:-7px;top:-4px}.header-unread-message-notifier.galaxy.ingame{right:-4px;top:-6px}.icon-bottle-anim{width:100%}.icon-bottle-anim path{fill:rgba(var(--base-02), 1)}.icon-stars-anim path{fill:rgba(var(--base-02), 1)}.menu .link-list:first-of-type{margin-top:8px}.link-list{margin-bottom:12px}.link-list .menu__main-title{font:var(--label-bold)}.link-list .bubble .icon--sprite{margin-left:0}.link-list.link-list--large .menu__main-title{font:var(--h4-bold)}.link-list__item{cursor:pointer;font:var(--label-bold);margin-bottom:1px}.link-list__item.disabled button{cursor:default;opacity:.5}.link-list__item .link-list__item-link{align-items:center;display:flex;min-height:52px;padding:12px 12px 14px;width:100%;word-break:break-word}.link-list__item .link-list__item-link svg,.link-list__item .link-list__item-link img,.link-list__item .link-list__item-link .link-list__continue-icon{margin:0 8px 0 0}.link-list__item .link-list__item-link .link-list__continue-icon{margin:0 0 0 auto}.link-list__item .link-list__item-link.change-button{padding:14px 4px 14px 12px}.link-list__item .link-list__item-link.change-button .link-list__method{flex-shrink:0}.link-list__item .link-list__item-link.change-button .link-list__value{display:flex;flex:1;flex-direction:column;margin-left:10px;text-align:right;white-space:break-spaces}.link-list__item .link-list__item-link.change-button .link-list__value span{color:rgba(var(--font-supportive), 1);font:var(--label-regular);margin:0 4px}.link-list__item .link-list__item-link.change-button svg{flex-shrink:0}.link-list__item .link-list__value{margin:0 0 0 auto;white-space:nowrap}.link-list__item .link-list__value span{margin-right:4px}.link-list__item .change-method-link_link.link-list__value{flex-basis:50%;white-space:break-spaces}.link-list__item .change-method-link_link.link-list__value .bank-name{display:flex;justify-content:flex-end}.link-list__item .link-list__value+.link-list__continue-icon{margin:0}.link-list__item span{font-family:inherit}.link-list__item:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.link-list__item:only-child{border-radius:3px}.link-list__item:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.link-list__item .link-list__status-message{padding-right:8px}.link-list__preamble{color:inherit;margin:2px 0}@media only screen and (min-width: 20em){.link-list__preamble{font:var(--small)}}@media only screen and (min-width: 48em){.link-list__preamble{font:var(--caption)}}.list-options .link-list__item{border-radius:0;margin-bottom:0;min-height:44px}.list-options .link-list__item-link{min-height:44px;padding:10px 0}.deposit-limit-link-list .link-list__item{border-radius:3px;margin-bottom:12px}.modal{height:100%;width:100%;left:0;position:absolute;top:0;transition:250ms 500ms ease-in;transition:transform 450ms;z-index:33}.modal.modal--enter{transform:translate3d(0, 100vh, 0)}.modal.modal--enter.modal--enter-active{transform:translate3d(0, 0, 0)}.modal.modal--exit{transform:translate3d(0, 0, 0)}.modal.modal--exit.modal--exit-active{transform:translate3d(0, 100vh, 0)}@media only screen and (min-width: 48em){.modal-wrapper .modal-space--large--horizontal{padding-left:var(--largerModalPaddingHorizontal);padding-right:var(--largerModalPaddingHorizontal)}}@media only screen and (min-width: 48em){.modal-wrapper .modal-space--large--vertical{padding-bottom:var(--largerModalPaddingVertical);padding-top:var(--largerModalPaddingVertical)}}.my-notifications-list-wrapper{margin-top:28px}.my-notifications-list-wrapper .my-notifications-allCategoryWrapper{border-bottom:1px solid rgba(var(--unread-message-title-color), 1);border-bottom:1px solid rgba(var(--my-notification-border-bottom, var(--unread-message-title-color)), 1);display:flex;-ms-overflow-style:none;overflow-x:scroll;scrollbar-width:none}.my-notifications-list-wrapper .my-notifications-allCategoryWrapper::-webkit-scrollbar{display:none}.my-notifications-list-wrapper .my-notifications-individualCategory{color:rgba(var(--read-message-color), 1);color:rgba(var(--my-notification-category-color, var(--read-message-color)), 1);cursor:pointer;flex-shrink:0;font-size:14px;font-weight:normal;margin-right:10px;padding:10px 15px}.my-notifications-list-wrapper .my-notifications-individualCategory.my-notifications-has-unread{color:rgba(var(--unread-message-title-color), 1);color:rgba(var(--unread-message-title-slider-not-active, var(--unread-message-title-color)), 1);font-weight:bold}.my-notifications-list-wrapper .my-notifications-individualCategory.my-notifications-current-category{border-bottom:2px solid rgba(var(--unread-message-title-color), 1);color:rgba(var(--unread-message-title-color), 1);font-weight:bold}.my-notification-item-wrapper{border-left:4px solid;color:rgba(var(--unread-message-notifier-color), 1);margin-top:12px}.my-notification-item-wrapper .my-notification-details{display:flex;flex:1;flex-direction:column;padding-left:12px;padding-right:12px;text-align:left}.my-notification-item-wrapper .my-notification-details .my-notification-title-bar{color:rgba(var(--unread-message-title-color), 1);display:flex;font:var(--label-bold);justify-content:space-between;margin-bottom:4px}.my-notification-item-wrapper .my-notification-details .my-notification-title-bar .my-notification-title{color:inherit;display:flex;flex:1}.my-notification-item-wrapper .my-notification-details .my-notification-title-bar svg{width:24px}.my-notification-item-wrapper .my-notification-details .my-notification-subitle{color:rgba(var(--unread-message-subtitle-color), 1);display:-webkit-box;font:var(--label-regular);margin-bottom:4px;overflow:hidden;-webkit-line-clamp:2;-webkit-box-orient:vertical}.my-notification-item-wrapper .my-notification-details .my-notification-time{color:rgba(var(--unread-message-date-color), 1);font:var(--caption)}.my-notification-item-wrapper.read{border-left-color:rgba(0,0,0,0)}.my-notification-item-wrapper.read .my-notification-title-bar,.my-notification-item-wrapper.read .my-notification-subitle,.my-notification-item-wrapper.read .my-notification-time{color:rgba(var(--read-message-color), 1)}.notification-detail-container .image-header-container{background-color:rgba(var(--my-notifications-header-bg-color), 1);height:44px;width:100%}.notification-detail-container .back{fill:var(--my-notifications-back-button-color) !important}.notification-detail-container .back{height:24px;left:6px;position:absolute;top:5px;width:24px}.notification-detail-container .detail-image{height:auto;object-fit:cover;object-position:center center}.notification-detail-container .title{color:rgba(var(--unread-message-title-color), 1);font:var(--h2);word-wrap:break-word;padding:12px 12px 8px}.notification-detail-container .description{color:rgba(var(--unread-message-subtitle-color), 1);font:var(--label-regular);padding:0 12px 8px;white-space:pre-line}.notification-detail-container .data-list{padding:14px 12px}.notification-detail-container .data-list .list-item{border-bottom:1px solid;display:flex;height:44px}.notification-detail-container .data-list .list-item :first-child{margin:12px 0}.notification-detail-container .data-list .list-item :last-child{margin:12px 0 12px auto}.notification-detail-container .notification-accordion-wrapper{border-radius:3px;margin:12px}.notification-detail-container .notification-accordion-wrapper p.notification-accordion-content{font:var(--caption);white-space:pre-line}.my-notification-detail-CTA-button{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.no-items-wrapper{padding:28px 23px 0;text-align:center}.no-items-wrapper svg{color:rgba(var(--no-notifications-icon-color), 1);height:42px;margin:auto;width:36px}.no-items-wrapper h1{color:rgba(var(--no-notifications-heading-color), 1);margin-top:14px}.no-items-wrapper small{color:rgba(var(--no-notifications-subheading-color), 1);font-size:15px;margin-top:7px}.no-items-wrapper a{border-radius:26px;margin-top:21px;padding:8px 32px;width:auto}.my-notifications-wrapper .page-head{background-color:rgba(var(--my-notifications-header-bg-color), 1)}.my-notifications-wrapper .page-head h2{color:rgba(var(--my-notifications-heading-color), 1)}.my-notifications-wrapper .page-head button{color:rgba(var(--my-notifications-mark-all-read-color), 1)}.my-notifications-wrapper .page-head svg{fill:var(--my-notifications-back-button-color)}.link-list-notification-color{color:rgba(var(--unread-message-counter-text-color), 1) !important;font:var(--small-bold) !important}.link-list-notification-color{align-items:center;background-color:rgba(var(--unread-message-counter-bg-color), 1);border-radius:10px;display:flex;height:20px;justify-content:center;width:20px}.my-notification-popup-back-button{transform:rotate(180deg)}.my-notification-slider-item-container{align-items:center;background-color:rgba(var(--notification-popup-bg), 1);border-radius:12px;height:100%;justify-items:center;max-width:"auto";position:relative;transform-style:preserve-3d;-webkit-overflow-scrolling:touch;width:100%}.my-notification-slider-item-container.isFlipped .my-notification-slider-item-front{transform:rotateY(180deg)}.my-notification-slider-item-container.isFlipped .my-notification-slider-item-back{transform:rotateY(0deg)}.my-notification-slider-item-container .my-notification-slider-item-front,.my-notification-slider-item-container .my-notification-slider-item-back{backface-visibility:hidden;background:rgba(var(--notification-popup-bg), 1);border-radius:12px;display:block;height:100%;min-height:475px;padding:10px;position:absolute;transform-style:preserve-3d;transition:transform linear 100ms;width:100%}.my-notification-slider-item-container .my-notification-slider-item-front .my-notification-slider-navigation-dots-wrapper,.my-notification-slider-item-container .my-notification-slider-item-back .my-notification-slider-navigation-dots-wrapper{bottom:0;left:0;margin-bottom:16px;position:absolute;width:100%}.my-notification-slider-item-container .my-notification-slider-item-front{transform:rotateY(0deg);z-index:2}.my-notification-slider-item-container .my-notification-slider-additional-data-button{color:rgb(var(--embed-link-color));font-size:inherit}.my-notification-slider-item-container .my-notification-slider-item-back{background:rgba(var(--notification-popup-bg), 1);transform:rotateY(-180deg)}.my-notification-slider-item-container .my-notification-slider-item-back .my-notification-slider-item-back-icon{transform:scale(-1, -1)}.game-card,.game-card--l,.game-card--m,.game-card--s{cursor:pointer;display:grid;height:100%;outline:none;position:relative;scroll-snap-align:start}.game-card .game-card__image,.game-card--l .game-card__image,.game-card--m .game-card__image,.game-card--s .game-card__image{border-radius:3px 3px 0 0;height:100%;min-height:96px;overflow:hidden}.game-card .game-card__image img,.game-card--l .game-card__image img,.game-card--m .game-card__image img,.game-card--s .game-card__image img{cursor:pointer}.game-card--s{height:72px;width:346px;background-color:rgba(var(--gameCardWinnerBg), 1);border-radius:3px}.game-card--s .game-card__image{border-radius:3px 0 0 3px;min-height:72px;overflow:hidden;width:72px}.game-card--m{width:96px}@media only screen and (min-width: 48em){.game-card--m{width:170px}.game-card--m .game-card__image{height:170px}}.game-card--m .game-card__image{height:96px}.game-card--l{height:420px;width:346px}.game-card--l .game-card__image{height:390px}.winner-details-container img{height:72px;width:72px;border-radius:3px}.winner-details-container .winner-details-info{display:inline-block;height:100%;overflow:hidden;padding:12px}.game-card__hot,.game-card__new{border-radius:3px;font:var(--small-bold);padding:0 4px;pointer-events:none;position:absolute;right:4px;text-transform:uppercase;top:4px;width:auto}.game-card__hot{background-color:var(--hot-bg);color:var(--new-text);color:var(--hot-text, var(--new-text))}.game-card__new{background-color:var(--new-bg);color:var(--new-text)}.game-card__jackpot{align-content:center;align-self:center;background-color:var(--gameCardJackpotBg);border-radius:12px;bottom:42px;display:grid;justify-content:center;justify-self:center;padding:2px 6px;position:absolute}@media only screen and (min-width: 48em){.game-card__jackpot{padding:4px 12px}}.game-card__jackpot-text{color:var(--gameCardJackpotText);font:var(--small)}@media only screen and (min-width: 48em){.game-card__jackpot-text{font:var(--gameCardJackpotFont)}}.game-card__detail{align-items:center;background-color:rgba(var(--gameCardDetailBg), 1);display:grid;grid-template-columns:auto auto;justify-content:space-between;min-height:30px;padding:0 0 0 8px;width:100%}.game-card__detail--small{flex:1;overflow:hidden;padding:12px}.game-card__title{align-self:center;color:rgba(var(--gameCardTitle), 1);font:var(--small);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media only screen and (min-width: 48em){.game-card__title{font:var(--caption)}}.game-card__title--small{color:rgba(var(--gameCardTitleSmall), 1);font:var(--caption);overflow:hidden}.game-card__title--detail{color:rgba(var(--gameCardTitleDetailColor), 1);font:var(--gameCardTitleDetailFont);overflow:hidden}.game-card__title--detail span:not(:first-child){padding:0 0 0 5px}.game-card__detail-button{height:100%;width:46px;align-items:center;display:flex;justify-content:center;min-width:46px}.game-card__detail-button:focus{outline:0}.game-card__three-dot::after,.game-card__three-dot::before,.game-card__three-dot{height:3px;width:3px;background-color:rgba(var(--gameCardDotBg), 1);border-radius:50%}.game-card__three-dot{position:relative}.game-card__three-dot::before{content:"";position:absolute;right:6px}.game-card__three-dot::after{content:"";left:6px;position:absolute}.live-game-card,.live-game-card--l,.live-game-card--m,.live-game-card--s{cursor:pointer;display:grid;height:100%;outline:none;position:relative;scroll-snap-align:start}.live-game-card--s{height:72px;width:346px;background-color:rgba(var(--gameCardWinnerBg), 1);border-radius:3px}.live-game-card--m{width:160px}@media only screen and (min-width: 48em){.live-game-card--m{width:170px}}.live-game-card--l{height:390px;width:346px}.item--large-we-spin{grid-column:span 2;grid-row:span 6;max-width:624px}@media only screen and (min-width: 48em){.item--large-we-spin{max-width:460px}}.item--large-we-spin .item__image{height:198px}.item--large-we-spin .item__image,.item--large-we-spin .item__content{grid-column:inherit;width:100%}.item--large-we-spin .item__footer .item__balance-collected{padding:8px 12px 6px 10px}.item--large-we-spin.tutorial-card p{font:var(--caption);margin:1px 0 20px}.item--large-we-spin.tutorial-card .btn--light{width:100%}.item--large-we-spin svg{margin:7px 0 0 8px}.display-circle{height:96px;width:96px;margin-top:12px;padding:2px}.display-circle img{height:92px;width:92px;margin-bottom:8px}.avatar-circle{height:100px;width:100px}.avatar-circle .avatar-circle__flag{border-radius:50% !important}.avatar-circle .avatar-circle__flag{height:20px;width:20px;bottom:-11px}.avatar-circle__overlay{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.avatar-circle__overlay__followers{align-items:center;display:flex;flex-direction:column}.avatar-circle__overlay__followers div{display:flex}.game--is-live{animation:move 1000ms infinite alternate;background-image:linear-gradient(90deg, #bed66b, #77a100 50%, #bed66b)}.game--is-bonus-hunt{animation:move 1000ms infinite alternate;background-image:linear-gradient(90deg, #8351c4, #a864ff 50%, #8351c4)}@keyframes move{to{background-position:100px}}.item__urgent{padding:4px 0;width:100%}.game-grid-we-spin{display:grid;grid-auto-flow:dense;grid-gap:12px;grid-template-columns:repeat(auto-fit, minmax(148px, 1fr));max-width:100vw}@media only screen and (min-width: 48em){.game-grid-we-spin{grid-template-columns:repeat(auto-fill, minmax(170px, 1fr))}}@media only screen and (min-width: 109.375em){.game-grid-we-spin{grid-template-columns:repeat(auto-fill, minmax(180px, 1fr))}}.game-grid-we-spin .ReactVirtualized__Collection{overflow:visible !important}.my-account-notifications,.global-notification{opacity:0;visibility:hidden}.my-account-notifications.my-account-notifications--is-open,.my-account-notifications.global-notification--is-open,.global-notification.my-account-notifications--is-open,.global-notification.global-notification--is-open{height:100%;width:100%;left:0;opacity:1;position:fixed;top:0;visibility:visible;z-index:41}.notification-wrap{min-height:44px;transform:translate3d(0, -100%, 0);transition:transform 250ms;z-index:42}@media only screen and (min-width: 48em){.notification-wrap{display:flex}}.notification-wrap.notification-wrap--sga{top:calc(-100% - 44px)}.notification-wrap.notification-wrap--open--sga{top:44px}.notification-wrap.no-transition{transition:none}.notification-wrap.button-bottom{flex-direction:column}.notification-wrap.button-bottom .notification-button{margin:0;max-width:none}.notification-wrap--open{transform:translate3d(0, 0, 0)}.notification-wrap--close{transform:translate3d(0, -100%, 0)}@media only screen and (min-width: 48em){.notification-wrap .page-head__close.icon-alignment-fix{top:17px}}.notification-wrap .notification-wrap__error{padding:13px 12px 11px 47px}.notification-wrap .notification-wrap__error .btn.btn--auto{padding:8px 16px}.notification-wrap p,.notification-wrap .notification-wrap__error-text-msg{font:var(--label-regular)}.notification-wrap .notification-wrap__error-text-header{font:var(--h4-bold)}@media only screen and (min-width: 48em){.notification-wrap .notification-button{margin:auto 0 auto auto;max-width:33%}}@media only screen and (min-width: 48em){.notification-wrap .notification-button .btn--ghost{white-space:normal}}.notifications-wrapper{position:fixed;width:100%;z-index:42}.binary-question .binary-question__inner{margin-top:120px;max-width:491px;width:74.4%}.binary-question .binary-question__main-title{font:var(--h3)}.binary-question .input-wrap__input,.binary-question .input-wrap .input-wrap__input{margin-top:16px;padding:10px 0;text-align:center}.binary-question .binary-question__button-container{display:flex;flex-wrap:wrap}.binary-question .binary-question__button-container .binary-question__yes,.binary-question .binary-question__button-container .binary-question__no,.binary-question .binary-question__button-container .binary-question__third{background:none;border-radius:0 0 0 3px;flex-grow:1;font:var(--h4-bold);min-width:50%;width:auto}.binary-question .binary-question__button-container .binary-question__yes{border-radius:0 0 3px}.binary-question.binary-question--fixed{position:fixed}.binary-question.binary-question--sticky{position:sticky !important}.notify{height:100%;width:100%;left:0;opacity:0;position:absolute;top:0;transition:250ms 500ms ease-in;transition:opacity 300ms ease-in;visibility:hidden;z-index:33}.notify.notify--is-open{opacity:1;transform:translate3d(0, 0, 0);visibility:visible;z-index:41}.notify.notify--is-open[data-error-code=SGA_MANDATORY_LIMIT_ERROR_NOT_ALL_TIME_LIMITS_SET],.notify.notify--is-open[data-error-code=SGA_MANDATORY_LIMIT_ERROR_PRODUCT_NOT_SELECTED]{z-index:15}@supports(-webkit-touch-callout: none){.js-notify__button-wrapper.js-notify__button-wrapper--failed{position:sticky}}@media only screen and (min-width: 64.25em){.notify__icon-wrapper{margin:64px auto 5px}}.notify__icon-wrapper svg{height:56px;width:56px;margin:0 auto}.notify__head{padding:60px 12px 84px}.notify__head svg{height:56px;width:56px;margin:0 auto}.notify__main-title{font:var(--h2);margin:8px 0 2px;padding:0 12px}.notify__p{font:var(--label-regular);padding:0 32px}.notify__link{display:inline;text-decoration:underline}.notify__progress-bar{height:100%;width:100%;position:absolute;top:0;transform:translate3d(0, 100%, 0);transition:transform 500ms ease-in;z-index:-1}.notify__progress-bar.notify__progress-bar--fill-success{transform:translate3d(0, 0, 0)}.notify__progress-bar.notify__progress-bar--fill-fail{overflow:hidden;transform:translate3d(0, 0, 0)}.option-box{margin-top:-120px;width:74.4%}.option-box .user-options{border-bottom:0}.option-box .user-options .filters input+.filters__filter{border-bottom:0;padding:6px 0}.option-box .user-options .filters input+.filters__filter:not(:last-child){margin-right:1px}.option-box .filters label:first-of-type{border-radius:3px 0 0 3px}.option-box .filters label:last-of-type{border-radius:0 3px 3px 0}.cookieConsent{display:flex;flex-wrap:wrap;position:fixed;width:100%;z-index:44}.cookieConsent a{text-decoration:underline}.payment-result-wrapper .payment-methods{margin-bottom:90px;margin-top:40px;padding:0;text-align:left}.payment-result-wrapper .payment-methods p:first-child{font:var(--label-bold);margin-bottom:12px}.payment-result-wrapper .payment-methods a:first-child .payment-methods__item{border-radius:3px 3px 0 0}.payment-result-wrapper .payment-methods a:last-child .payment-methods__item{border-radius:0 0 3px 3px}.payment-result-wrapper .payment-methods a:only-child .payment-methods__item{border-radius:3px}.payment-result-wrapper .payment-methods__item{align-items:center;display:flex;height:71px;margin-top:1px;position:relative;width:100%}.payment-result-wrapper .payment-methods__item__logo svg.logo-payment-method{height:auto}.payment-result-wrapper .payment-methods__item__text{width:70%}.payment-result-wrapper .payment-methods__item__text h2,.payment-result-wrapper .payment-methods__item__text p{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.payment-result-wrapper .payment-methods__item__chevron{height:29px;margin:0;margin-right:4px;position:absolute;right:11px;width:27px}.payment-result-wrapper .payment-methods__item__chevron .link-list__continue-icon{height:28px}.sb-tutorial-link{padding-top:25px}.sb-tutorial-link h2{margin-bottom:3px}.sb-tutorial-link__item{padding-right:0 !important}.sb-tutorial-link__item{align-items:center;display:flex;justify-content:space-between;margin-top:12px}.sb-tutorial-link__item svg.link-list__continue-icon,.sb-tutorial-link__item img.link-list__continue-icon{height:29px;margin:0;width:27px}.two-fact .binary-question__button-container{margin-top:25px}.two-fact__error-label{font:var(--small);margin:14px 20% 0}.two-fact h2.js-title{line-height:24px;margin-bottom:4px}.two-fact p.js-text{line-height:20px}.payment-tag{background-color:#5b5c60;border-radius:3px;color:#fff;font:var(--small-bold);left:6px;padding:1px 4px;pointer-events:none;position:absolute;text-transform:uppercase;top:5px;width:auto}.payment__fieldset-wrap-methods .font-title{font:var(--h4-bold)}.payment__fieldset-wrap-methods .p-tb{padding:15px 12px}.quick-deposit-wrapper{height:73vh;width:212px;min-width:212px;opacity:0;overflow:hidden;transition:opacity 300ms ease-in}.quick-deposit-wrapper.fadein{opacity:1}.quick-deposit-wrapper .page-head{z-index:2}.quick-deposit-wrapper .page-head__title{display:none}.quick-deposit-wrapper .page-head__left-side{margin:0;padding:12px 0 0 12px}.quick-deposit-wrapper .notify__head{padding-bottom:48px}.quick-deposit-wrapper .notify__main-title{padding:0}.quick-deposit-wrapper.quick-deposit-wrapper--is-closed{min-width:0;min-width:initial;width:44px}.quick-deposit-wrapper.quick-deposit-wrapper--is-closed .page-head{height:100%}.quick-deposit-wrapper.quick-deposit-wrapper--is-closed .page-head__left-side{margin:0;padding:9px 0 8px 9px;position:absolute}.quick-deposit-wrapper.quick-deposit-wrapper--is-closed .page-head__left-side .page-head__back{transform:rotate(180deg);transition:transform 250ms}.quick-deposit-wrapper.quick-deposit-wrapper--is-closed .page-head__title{display:block;left:34px;position:absolute;top:44px;transform:rotate(90deg);transform-origin:left top 0}.quick-deposit-wrapper.quick-deposit-wrapper--is-closed .quick-deposit-content{display:none}.quick-deposit-wrapper .u-btn-wrapper{width:100%}.quick-deposit-response{height:100%;width:100%;z-index:33}.quick-deposit-response.quick-deposit-response--success{background-color:rgba(var(--success), 1)}.quick-deposit-response.quick-deposit-response--error{background-color:rgba(var(--error), 1)}:root{--header-height: 44px}.regulations-header{align-items:center;background-color:#d3d3d5;display:flex;height:44px;height:var(--header-height);justify-content:center;position:absolute;top:0;width:100%;z-index:43}.regulations-header~div .global-notification{top:44px;top:var(--header-height)}.regulations-header~.notification-wrap,.regulations-header~.page-head{top:44px;top:var(--header-height)}.regulations-header~.list-options,.regulations-header~.log-in--open,.regulations-header~.menu__content-wrapper,.regulations-header~.risk-profile,.regulations-header~.signup--open{padding-bottom:44px;padding-bottom:var(--header-height);top:44px;top:var(--header-height)}.regulations-header~.deposit,.regulations-header~div .deposit,.regulations-header~.menu,.regulations-header~.modal-view,.regulations-header~.notify,.regulations-header~.result,.regulations-header~.result.result--is-open,.regulations-header~.shop-detail.shop-detail--open,.regulations-header~.welcome-menu{height:calc(100% - 44px);height:calc(100% - var(--header-height));top:44px;top:var(--header-height)}.regulations-header~form{height:calc(100% - 44px);height:calc(100% - var(--header-height));padding-bottom:44px;padding-bottom:var(--header-height);top:44px;top:var(--header-height)}.regulations-header~form .modal-view{height:calc(100% - 44px);height:calc(100% - var(--header-height));padding-bottom:44px;padding-bottom:var(--header-height);top:44px;top:var(--header-height)}.regulations-header~.games-by-bundle-container,.regulations-header~.withdrawal{height:calc(100% - 44px);height:calc(100% - var(--header-height));padding-bottom:44px;padding-bottom:var(--header-height);top:44px;top:var(--header-height)}.regulations-header--spacer{background-color:rgba(0,0,0,0);display:block;height:0;position:relative;top:0;width:100%}.regulations-header--spacer~.deposit--open,.regulations-header--spacer~.global-notification--is-open,.regulations-header--spacer~.verify-email-menu,.regulations-header--spacer~.verify-phone,.regulations-header--spacer~.verify-email-result-menu,.regulations-header--spacer~.withdrawal--open{height:calc(100% - 44px);height:calc(100% - var(--header-height));top:44px;top:var(--header-height)}.regulations-header__icon{filter:grayscale(100%);height:20px}.regulations-header__icon-support{position:absolute;right:12px;top:12px}.regulations-header__icon-support svg{fill:#000;height:20px}.regulations-header__button:nth-child(1){margin:0 2px 0 11px}.regulations-header__button:nth-child(2){margin-right:14px}.shop-detail--regulation{height:44px;height:var(--header-height)}.shop-detail--regulation~.shop-grid .shop-detail{height:calc(100% - 44px);height:calc(100% - var(--header-height));top:44px;top:var(--header-height)}.deposit .global-notification.payment-notification{top:0}.progress{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%)}.progress .progress__number{font:var(--h1);padding-top:44px}.progress svg{height:120px;width:127px;margin:0 auto}.progress svg path{fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1;stroke-width:10px;transition:stroke-dashoffset 1000ms ease-in-out}.progress svg path.risk-meter-base{stroke:rgba(var(--risk-level-base), 1)}.progress svg .progress__meter{stroke-dasharray:317;stroke-dashoffset:317}.progress svg .risk-meter.progress__meter-na{stroke:rgba(var(--risk-level-base), 1)}.progress svg .risk-meter.progress__meter-1{stroke:rgba(var(--risk-level-1), 1)}.progress svg .risk-meter.progress__meter-2{stroke:rgba(var(--risk-level-2), 1)}.progress svg .risk-meter.progress__meter-3{stroke:rgba(var(--risk-level-3), 1)}.progress svg .risk-meter.progress__meter-4{stroke:rgba(var(--risk-level-4), 1)}.progress .meter__title{font:var(--caption);padding-top:44px}.progress .meter__content{font:var(--label-bold);padding-top:60px}.header-wrapper{height:33vh;width:100%;max-height:212px;position:relative}.header-wrapper .header__title{opacity:1;text-align:center;transition:500ms;width:100%;z-index:1}.header-wrapper .header__title.header__title--hide{opacity:0;transform:translateY(-20px);transition:500ms}.search-results__item{align-items:center;background:var(--search-result-item-bg);display:grid;grid-template-columns:auto 30px;height:52px}.search-results__item.secondary-bg{background:var(--search-result-item-bg-secondary)}@keyframes phAnimation{0%{background-position:-468px 0}100%{background-position:468px 0}}.search-results__figure{display:grid;grid-template-columns:60px auto;grid-template-rows:52px}.search-results__caption{color:var(--search-results-caption);font:var(--search-results-caption-font);padding:0 0 0 12px}.search-results__caption>span{color:var(--search-results-caption)}.search-icon{align-items:center;background-color:var(--search-icon-bg-color);border-radius:12px;display:flex;flex-shrink:0;height:36px;justify-content:center;text-align:center;width:36px;z-index:1}@media only screen and (min-width: 48em){.search-icon{background-color:rgba(0,0,0,0);position:absolute}}.search-icon.search-icon-active{background-color:rgba(0,0,0,0);position:absolute}.search-icon svg{height:20px;width:20px;fill:var(--search-icon);transition:fill 200ms ease-out}.search-icon--right{bottom:auto;left:auto;right:0;top:0}.search-icon--right.search-icon--desktop{right:4px}.search-icon--open{left:8px}.search-icon--desktop.search-icon--open{left:0}.search-icon--desktop svg{fill:var(--search-icon-large)}.custom-select-fieldset{flex:1}.custom-select{flex:1;position:relative}.custom-select legend{left:12px}.custom-select select{appearance:none;background:none;border:0;font:var(--heading-5);font-size:16px;margin:0;outline:none;padding:24px 26px 8px 12px;width:100%}.custom-select select:active{color:inherit}.custom-select select:focus{color:inherit;outline:none}.custom-select.custom-select--small{max-width:23vw}.custom-select.custom-select--disabled{cursor:not-allowed;opacity:.3}.custom-select .js-input-error-display{color:rgba(var(--error), 1);position:absolute;top:60px}.custom-select.disabled::after{content:none}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.custom-select select::-ms-expand{display:none}.custom-select select:focus::-ms-value{background:rgba(0,0,0,0);color:#222}}.custom-select select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #000}@keyframes spinner{to{transform:rotate(360deg)}}.spinner{height:30px;width:100%;bottom:0;left:0;margin:auto;pointer-events:none;position:absolute;right:0;text-align:center;top:0;z-index:37}.spinner:not(.animated-loading)::before{height:30px;width:30px;bottom:0;content:"";left:0;margin:auto;position:absolute;right:0;top:0}.spinner:not(:required)::before{animation:spinner 500ms linear infinite;border:2px solid rgba(0,0,0,.3);border-radius:50%;border-top-color:hsla(0,0%,100%,.5)}.spinner .loading-color-animation{fill:rgba(var(--base-02), 1);fill:var(--spinner-loading-animation, rgba(var(--base-02), 1));stroke:rgba(var(--base-02), 1);stroke:var(--spinner-loading-animation, rgba(var(--base-02), 1))}.spinner-mini{height:30px;width:100%;left:0;margin:auto;pointer-events:none;position:absolute;right:0;text-align:center}.spinner-mini::before{height:30px;width:30px;bottom:0;content:"";left:0;margin:auto;position:absolute;right:0;top:0}.spinner-mini:not(:required)::before{animation:spinner 500ms linear infinite;border:2px solid rgba(0,0,0,.3);border-radius:50%;border-top-color:hsla(0,0%,100%,.5)}.dim::before{height:100%;width:100%;content:"";left:0;position:absolute;top:0;transition:250ms 500ms ease-in;z-index:33}.dots-container{padding:4px 12px}.dots-container svg{height:16px;width:16px;fill:rgba(var(--base-11), 1);fill:var(--btn-dots, rgba(var(--base-11), 1))}.dots-container.dots-container--90deg{transform:rotate(90deg) !important}.page-head .dots-container{margin-right:-12px}.page-head .dots-container .icon--sprite{height:24px;width:24px}.wespin-sidebar .page-head .dots-container{margin-right:0}.support-nav{height:100%;width:100%;left:0;opacity:0;position:absolute;top:0;transition:250ms 500ms ease-in;transition:opacity 250ms;visibility:hidden;z-index:33;z-index:36}.support-nav.support-nav--is-open{background:rgba(var(--base-11), 0.8);opacity:1;position:fixed;visibility:visible}.support-nav.support-nav--is-open button{border-radius:0;font:var(--h4-bold);margin-top:1px}.support-nav.support-nav--is-open button:first-of-type{border-radius:3px 3px 0 0}.support-nav.support-nav--is-open button:first-of-type:nth-last-child(2){border-radius:3px}.support-nav.support-nav--is-open button:nth-last-child(2){border-radius:0 0 3px 3px}.support-nav.support-nav--is-open button:last-of-type{border-radius:3px;margin-top:7px}.support-nav__head{margin-bottom:1px}.support-nav__head .support-nav__main-title{font:var(--h4-bold);margin-top:3px}.support-nav__head .support-nav__sub-title{font:var(--caption);margin:3px 0 2px}table{border-collapse:collapse;width:100%}table td{font:var(--label-regular);padding:12px 0;text-align:left}table td small{white-space:nowrap}table td a{font-size:inherit;text-decoration:underline}table td span{color:inherit;font-family:inherit;font-size:inherit}table td:last-of-type{text-align:right}.live-dot::after{height:9px;width:9px;background-color:#f03;border-radius:50%;content:"";display:inline-block;margin:auto 4px}.table--binary-question td{border-bottom:0;padding:6px 0;text-align:left}.table--binary-question td:last-of-type{text-align:right}.u-p-small td{padding:6px 0}.tab{flex-basis:0;flex-grow:1}.tab *{font:var(--caption)}.tab a,.tab button{display:block;padding:4px 0}.tab a[aria-selected]{cursor:default;outline:none}.counter{display:flex;height:0;justify-content:center;right:-17px;top:-25px;z-index:1}.counter .counter__circle{color:rgba(var(--unread-message-counter-text-color), 1) !important}.counter .counter__circle{align-items:center;background-color:rgba(var(--unread-message-counter-bg-color), 1);display:flex;justify-content:center}.counter .counter--small{border-radius:8px;font:var(--small-bold);height:16px;padding:2px 4px}.form fieldset{margin:0 0 6px}.form .grow-wrap[focus-within]{outline:none}.form .grow-wrap:focus-within{outline:none}.form .grow-wrap[focus-within]~.form__border{transform:translateY(0) scale(1)}.form .grow-wrap:focus-within~.form__border{transform:translateY(0) scale(1)}.form textarea{border-radius:3px 3px 0 0;color:rgba(var(--input-font-color));font:var(--heading-5);padding:22px 12px 9px;width:100%}.form textarea+label,.form textarea+legend{font:var(--heading-5);left:12px;position:absolute;top:10px;transform-origin:left;transition:transform 250ms ease-out}.form textarea:placeholder-shown+label{opacity:1;transform:translateY(10px)}.form textarea:not(:placeholder-shown)+label{opacity:1;transform:translateY(-10px) scale(0.7)}.form textarea+label{transform:translateY(-50%)}.form .error{display:block;font:var(--caption);min-height:20px;padding:0 0 0 12px}.phone-wrapper{font-size:16px}.support-icon-wrapper{height:24px;width:24px;position:relative}

/*# sourceMappingURL=mobile-core-assets.39dd7a7bcf92b330ea8c.css.map*/