:root {
  --theme-bg: #3a2b22;
  --ui-tile-surface: #14141f;
  --surface-alt: #493a31;
  --ui-lead: #69e009;
  --stonevegas-hover-accent-primary: #8fff2f;
  --stonevegas-sub: #a05a20;
  --theme-text: #e8e6e3;
  --theme-label-faded: #9a9a9a;
  --ui-emphasis: #e0a868;
  --stonevegas-reward-cta-grad-top-area: #69e009;
  --theme-bonus-btn-grad-bottom: color-mix(in srgb, #69e009, #000 20%);
  --theme-border-line: #2a2a3e;
  --theme-gradient-overlay: linear-gradient(135deg, #69e009 0%, #a05a20 100%);
  --halo: rgba(255,255,255,0.1);
  --halo-heavy: rgba(255,255,255,0.2);
  --heading-font: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --ui-main-text: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --area-pad: 8rem 2rem;
  --stonevegas-card-spacing: 2.8rem;
  --gutter: 2.5rem;
  --ui-curve: 0;
  --tile-corner: 0;
  --surface-sheen: #14141f;
  --sheen-outline: #2a2a3e;
  --theme-glass-shade: 0 2px 12px rgba(0, 0, 0, 0.3);
  --text-button: #fff;
  --stonevegas-h-masthead: 64px;
  --header-background: var(--theme-bg);
  --ui-label-topbar: var(--theme-text);
  --masthead-label-subtle: var(--theme-label-faded);
  --header-tag-fill: var(--surface-alt);
  --stonevegas-page-header-tag-border-line: var(--theme-border-line);
  --site-header-button-bg: var(--ui-emphasis);
  --masthead-cta-text: #fff;
  --stonevegas-header-reward-bg: #009900;
  --masthead-promo-label: #fff;
  --theme-side-rail-width: 248px;
  --stonevegas-emphasis-copy: #fff
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%
}
body {
  font-family: var(--ui-main-text);
  background: var(--theme-bg);
  color: var(--theme-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--stonevegas-h-masthead)
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1.15
}
a {
  color: var(--ui-lead);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--stonevegas-hover-accent-primary)
}
@keyframes shimmer {
  0% {
    background-position: 200% center
  }
  100% {
    background-position: -200% center
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-6px)
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 15px var(--halo)
  }
  50% {
    box-shadow: 0 0 28px var(--halo-heavy)
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.header-burger-open span:first-child {
  transform: translateY(7px) rotate(45deg)
}
.header-burger-open span:nth-child(2) {
  opacity: 0
}
.header-burger-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}
@media (max-width:768px) {
  .header-nav-open {
    display: flex!important
  }
}
.widget-zone-wrapper.sub {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--theme-side-rail-width,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-column-primary {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.page-footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem
}
.site-footer-emblem-section {
  height: 30px;
  width: auto
}
.site-footer-navbar {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.site-footer-navbar a {
  font-size: .82rem;
  color: var(--theme-label-faded);
  text-decoration: none;
  transition: color .2s
}
.site-footer-navbar a:hover {
  color: var(--ui-lead);
  text-decoration: underline;
  text-underline-offset: 2px
}
.colophon-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --area-pad: 1.8rem 0.8rem;
    --stonevegas-card-spacing: 0.9rem;
    --gutter: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --area-pad: 2.5rem 1rem;
    --stonevegas-card-spacing: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --area-pad: 3.5rem 1.5rem;
    --stonevegas-card-spacing: 1.5rem
  }
}
header {
  background-color: var(--header-background);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--stonevegas-h-masthead);
  z-index: 9999;
  border-bottom: 1px solid var(--theme-border-line);
  font-family: var(--heading-font)
}
.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto
}
.topbar-wrapper a {
  color: var(--ui-label-topbar);
  text-decoration: none;
  transition: color .2s
}
.topbar-wrapper a:hover {
  color: unset
}
.page-header-start {
  display: flex;
  align-items: center;
  gap: 32px
}
.site-logo-wrapper {
  display: flex;
  align-items: center
}
.site-logo-wrapper img {
  max-height: 34px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain
}
.picker-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--header-tag-fill);
  padding: 4px;
  border-radius: 1000px;
  border: 1px solid var(--stonevegas-page-header-tag-border-line);
  background-color: color-mix(in srgb,var(--surface-alt) 71%,transparent)
}
.picker-container > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--masthead-label-subtle);
  border-radius: 1000px;
  transition: background .2s,color .2s
}
.picker-container > a.active {
  background: var(--ui-lead);
  color: var(--masthead-cta-text)!important
}
.picker-container > a.active img {
  filter: brightness(0) invert(1)
}
.picker-container > a:not(.active) {
  color: var(--theme-label-faded)
}
.masthead-navigation-holder {
  display: flex;
  align-items: center;
  height: 100%
}
.masthead-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  height: 100%
}
.masthead-nav li {
  display: flex;
  align-items: center;
  height: 100%
}
.masthead-nav a {
  color: var(--ui-label-topbar);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}
.masthead-nav a:hover {
  color: var(--ui-lead)
}
.masthead-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ui-lead)
}
.page-header-end {
  display: flex;
  align-items: center;
  gap: 12px
}
.missions-btn-container {
  background: linear-gradient(180deg,var(--ui-emphasis,#5d7ce8) 0,color-mix(in srgb,var(--ui-emphasis,#4453c2),#000 25%) 100%)!important;
  box-shadow: 0 0 8px color-mix(in srgb,var(--ui-emphasis,#433ca7) 70%,transparent),inset 0 1px 0 rgba(255,255,255,.4)!important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--site-header-button-bg);
  color: var(--masthead-cta-text);
  padding: 7px 12px 7px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.18);
  transition: filter .2s,transform .15s
}
.missions-btn-container:hover {
  filter: brightness(1.1)
}
.missions-btn-container:active {
  transform: translateY(1px)
}
.missions-btn-container img {
  width: 18px;
  height: 18px
}
.missions-heading {
  letter-spacing: .2px
}
.site-header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s
}
.site-header-search:hover {
  background: var(--header-tag-fill)
}
.site-header-search img {
  opacity: .75
}
.page-header-cta-buttons-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700
}
.page-header-cta-buttons-box a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: .2px;
  transition: filter .2s,background .2s,transform .15s
}
.sign-in-btn {
  border: 1px solid var(--stonevegas-page-header-tag-border-line);
  color: var(--ui-label-topbar);
  background: 0 0
}
.sign-in-btn:hover {
  background: var(--header-tag-fill)
}
.site-sign-up-btn-shell {
  position: relative
}
.sign-up-btn {
  background: var(--ui-lead);
  border: 1px solid var(--ui-lead);
  color: var(--text-button,#fff);
  box-shadow: 0 2px 10px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.2)
}
.sign-up-btn:hover {
  filter: brightness(1.1)
}
.sign-up-btn:active {
  transform: translateY(1px)
}
.sign-up-offer {
  position: absolute;
  top: -13px;
  right: 2px;
  background-color: var(--stonevegas-header-reward-bg);
  color: var(--masthead-promo-label);
  border-radius: 1000px;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px 3px 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  white-space: nowrap
}
.main-hamburger-action-grid {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.main-hamburger-action-grid img {
  filter: invert(1)
}
.main-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--header-background);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.main-offcanvas.open {
  left: 0
}
.offcanvas-close-inner {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--ui-label-topbar);
  cursor: pointer
}
.main-offcanvas-masthead {
  display: flex;
  justify-content: flex-end
}
.offcanvas-inner-grid {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-inner-grid .masthead-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-inner-grid .masthead-nav a {
  font-size: 16px;
  padding: 12px 0;
  display: block;
  height: auto
}
.site-offcanvas-backdrop-section {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.site-offcanvas-backdrop-section.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .masthead-navigation-holder,
  .picker-container {
    display: none
  }
  .main-offcanvas .masthead-navigation-holder,
  .main-offcanvas .picker-container {
    display: flex;
    max-width: fit-content
  }
  .main-offcanvas .masthead-nav {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    gap: 15px
  }
  .main-offcanvas .picker-container {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .main-hamburger-action-grid,
  .main-offcanvas,
  .site-offcanvas-backdrop-section {
    display: none
  }
}
@media (max-width:768px) {
  .missions-btn-container,
  .site-header-search {
    display: none
  }
  .topbar-wrapper {
    padding: 0 16px
  }
  .page-header-start {
    gap: 10px
  }
  .page-header-cta-buttons-box a {
    padding: 8px 14px;
    font-size: 11px
  }
  .page-header-end {
    flex-shrink: 0
  }
  .site-logo-wrapper {
    max-width: 100px;
    min-width: 0;
    flex-shrink: 1
  }
  .site-logo-wrapper img {
    max-width: 100%
  }
}
.picker-container > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary.side-column-full {
  width: 248px;
  min-width: 248px;
  background: var(--surface-alt);
  border-right: 1px solid rgba(128,128,128,.18)
}
.side-column-full .side-column-primary {
  padding: 80px 20px 20px;
  border-radius: 0;
  background: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}
.side-column-full .site-aside-hr-grid {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 10px 0;
  background: rgba(128,128,128,.18)
}
.sidebar-open-glyph-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 4px
}
.sidebar-open-glyph-wrapper img {
  object-fit: contain
}
.side-panel-full-menu-list-holder {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%
}
.side-column-full-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  width: 100%;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-label-faded);
  text-decoration: none;
  transition: .2s
}
.side-column-full-entry:hover {
  background: rgba(255,255,255,.1);
  color: var(--theme-text)
}
.side-column-full-entry img {
  object-fit: contain;
  flex-shrink: 0
}
.side-panel-full-menu-list-holder .site-aside-hr-grid {
  width: 100%;
  margin: 6px 0
}
.site-header-background-lower,
.site-header-background-lower *,
.topbar-bg,
.topbar-bg * {
  font-family: var(--heading-font)!important
}
.topbar-bg {
  background: url(../images/header-bg.png) 0 0/cover no-repeat;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden
}
.site-header-fill-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.site-header-fill-main br {
  display: none
}
.main-site-header-fill-heading {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ui-emphasis)
}
.site-topbar-fill-deposit {
  font-size: 105px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--theme-text)
}
.masthead-fill-reward-box {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-text);
  margin-bottom: 20px
}
.main-page-header-surface-button {
  background: var(--ui-lead);
  color: var(--text-button,#fff);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700
}
.main-page-header-surface-button:hover {
  background: var(--stonevegas-hover-accent-primary);
  transform: translateY(-2px)
}
.page-header-background-button-content {
  display: flex;
  flex-direction: column;
  align-items: center
}
.site-header-background-lower {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--surface-alt);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.site-header-background-lower::after,
.site-header-background-lower::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.site-header-background-lower::before {
  left: 0;
  background: linear-gradient(to right,var(--theme-bg),transparent)
}
.site-header-background-lower::after {
  right: 0;
  background: linear-gradient(to left,var(--theme-bg),transparent)
}
.site-header-background-lower p {
  display: none
}
.site-header-background-bottom-content-body-inner {
  text-align: center;
  margin: 0 26px
}
.site-header-background-bottom-content-body-inner .small-inner-area {
  font-size: 10px;
  color: var(--theme-label-faded);
  font-weight: 700
}
.site-header-background-bottom-content-body-inner .big-main-area {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}
@media (max-width:768px) {
  .topbar-bg {
    background-image: url(../images/header-bg-mobile.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
    max-width: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
    margin-bottom: 100px
  }
  .topbar-bg .site-header-fill-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -93px;
    padding: 0 16px;
    gap: 4px
  }
  .site-header-fill-main > a {
    display: block;
    width: 100%
  }
  .main-site-header-fill-heading {
    font-size: 13px;
    margin-bottom: 4px
  }
  .site-topbar-fill-deposit {
    font-size: 42px;
    line-height: 1.1
  }
  .masthead-fill-reward-box {
    font-size: 15px;
    margin-bottom: 16px
  }
  .main-page-header-surface-button {
    padding: 19px 32px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.35)
  }
  .header-bg-button-core {
    font-size: 20px
  }
  .page-header-fill-cta-description {
    font-size: 11px
  }
  .site-header-background-lower {
    background: var(--surface-alt);
    gap: 10px;
    padding: 8px 15px
  }
  .big-main-area {
    font-size: 14px
  }
}
.site-header-fill-main > a {
  display: inline-block;
  width: auto
}
.main-page-header-surface-button {
  text-transform: capitalize;
  border-radius: 1000px!important;
  padding: 8px 53px!important;
  width: auto!important;
  box-shadow: none;
  transition: .5s
}
.page-header-background-button-content {
  display: flex;
  flex-direction: column;
  letter-spacing: 0
}
.header-bg-button-core {
  font-size: 18px!important;
  font-weight: 700;
  line-height: 1.6
}
.page-header-fill-cta-description {
  opacity: .8;
  text-transform: none;
  line-height: 1.6;
  font-weight: 500;
  font-size: 10px!important
}
.pay-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 20px 24px;
  margin: 24px auto;
  max-width: 1100px;
  background: 0 0
}
.pay-methods img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s,transform .2s;
  filter: grayscale(10%)
}
.pay-methods img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .pay-methods {
    gap: 14px 20px;
    padding: 16px
  }
  .pay-methods img {
    width: 56px;
    height: 44px
  }
}
.play-sort {
  background: var(--theme-bg);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 56px;
  margin: 24px 0
}
.play-sort .games-filter-bar-strip {
  display: flex;
  align-items: stretch;
  height: 60px;
  overflow-x: auto;
  scrollbar-width: thin;
  width: 100%;
  max-width: 1344px
}
.play-sort .games-filter-bar-strip::-webkit-scrollbar {
  height: 4px
}
.play-sort .games-filter-bar-strip::-webkit-scrollbar-thumb {
  background: var(--theme-border-line);
  border-radius: 2px
}
.play-sort .game-sort-tab-holder {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 60px;
  background: 0 0;
  color: var(--theme-label-faded);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.2px;
  text-transform: capitalize;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
  transition: color .2s,background .2s
}
.play-sort .game-sort-tab-holder:hover {
  color: var(--theme-text)
}
.play-sort .game-sort-tab-holder.is-active {
  background: var(--surface-alt);
  color: var(--theme-text)
}
.play-sort .game-sort-tab-holder.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ui-lead)
}
.play-sort .main-game-filter-bar-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}
@media (max-width:768px) {
  .play-sort {
    padding: 0 16px
  }
  .play-sort .game-sort-tab-holder {
    padding: 0 10px;
    font-size: 11px
  }
}
.site-primary-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.content-body-field-wrap {
  font-size: 15px;
  line-height: 1.8;
  color: var(--theme-label-faded)
}
.content-body-field-wrap p {
  margin-bottom: 1rem
}
.content-body-field-wrap strong {
  color: var(--theme-text)
}
.content-body-field-wrap a:not(.primary-cta):not(.main-app-promo-banner-call-to-action-area):not([class*="-button"]) {
  color: var(--ui-lead);
  text-decoration: underline
}
.content-body-field-wrap a:not(.primary-cta):not(.main-app-promo-banner-call-to-action-area):not([class*="-button"]):hover {
  color: var(--ui-emphasis)
}
@media (max-width:768px) {
  .site-primary-area {
    padding: 5rem 15px 30px
  }
  .content-body-field-wrap {
    font-size: 14px
  }
  .app-promo-banner-wrapper,
  .site-primary-area > .app-promo-banner-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .app-promo-banner-mobile-container img,
  .site-mobile-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.perks-wrapper {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto
}
.main-perk-tile {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  background-color: var(--ui-tile-surface,var(--surface-alt));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .25s,box-shadow .25s
}
.main-perk-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.22)
}
.main-perk-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.55) 100%);
  pointer-events: none
}
.main-perk-tile h3 {
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0;
  letter-spacing: .2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  text-align: right;
  width: auto
}
.fcdl-payouts-section {
  background-image: url(../images/fast-pay.png)
}
.main-cashback-container {
  background-image: url(../images/cashback.png)
}
.site-vip-row {
  background-image: url(../images/vip-level.png)
}
.slots-area {
  background-image: url(../images/games.png)
}
.missions-wrap {
  background-image: url(../images/feature-missions.png)
}
@media (max-width:1024px) {
  .perks-wrapper {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .perks-wrapper {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 16px 24px;
    gap: 12px;
    margin: 0 -16px;
    scrollbar-width: thin
  }
  .perks-wrapper::-webkit-scrollbar {
    height: 4px
  }
  .perks-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
    border-radius: 2px
  }
  .main-perk-tile {
    flex: 0 0 44%;
    max-width: 44%;
    scroll-snap-align: start
  }
  .main-perk-tile h3 {
    font-size: 12px
  }
}
.main-block-care {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto
}
.section-service {
  flex: 1;
  background: var(--surface-alt);
  border-radius: 8px;
  padding: 18px;
  max-width: 320px
}
.name-care {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}
.name-care img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.heading-support-copy-row {
  font-weight: 700;
  font-size: 16px
}
.section-service p {
  color: var(--theme-label-faded);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .main-block-care {
    flex-direction: column;
    padding: 0 16px
  }
}
.app-promo-banner-wrapper {
  margin: 32px auto;
  max-width: 800px
}
.site-mobile-banner {
  display: flex;
  align-items: stretch;
  background: var(--ui-tile-surface,var(--surface-alt));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--theme-border-line);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.app-promo-banner-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.application-banner-text-area {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--theme-border-line);
  background: var(--surface-alt);
  align-self: flex-start
}
.application-banner-label-image-panel {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.app-banner-text-content-body-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.mobile-banner-caption-title-box {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--theme-text);
  letter-spacing: .2px
}
.app-banner-text-rate {
  display: flex;
  gap: 1px
}
.app-banner-text-rate img {
  width: 12px;
  height: 12px
}
.app-banner-text-rate .star-half-block {
  opacity: .85
}
.mobile-banner-caption-verify {
  background: #069815;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: none;
  letter-spacing: .3px;
  align-self: center;
  white-space: nowrap
}
.application-banner-name {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--theme-text);
  font-family: var(--heading-font);
  margin: 0
}
.mobile-banner-description {
  color: var(--theme-label-faded);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.application-banner-action-shell {
  margin-top: 4px
}
.application-banner-action-shell .primary-cta {
  margin: 0;
  display: inline-block
}
.app-banner-image-holder-inner {
  flex: 0 0 38%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box
}
.app-promo-banner-image-wrap {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px
}
.app-promo-banner-mobile-container {
  display: none
}
.app-promo-banner-mobile-container img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .site-mobile-banner {
    flex-direction: column;
    min-height: unset
  }
  .app-banner-image-holder-inner {
    display: none
  }
  .app-promo-banner-mobile-container {
    display: flex;
    justify-content: center;
    padding: 16px 16px 0
  }
  .app-promo-banner-mobile-container img {
    max-width: 320px
  }
  .app-promo-banner-content {
    padding: 20px 20px 24px;
    gap: 12px
  }
  .application-banner-name {
    font-size: 20px
  }
  .application-banner-action-shell .primary-cta {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.primary-cta {
  font-size: 18px;
  font-weight: 700;
  background: var(--ui-lead);
  color: var(--text-button,var(--theme-text));
  padding: 10px 76px;
  border-radius: 30px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-transform: uppercase;
  border: 1px solid var(--theme-text);
  text-decoration: none
}
.primary-cta:hover {
  background: var(--stonevegas-hover-accent-primary,var(--ui-lead));
  color: var(--text-button,var(--theme-text))
}
.main-updated-date {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-alt);
  margin: 30px auto;
  border-radius: 10px;
  border-left: 5px solid var(--ui-lead);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  color: var(--theme-text);
  max-width: 1240px
}
@media (max-width:768px) {
  .main-updated-date {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-page-footer-panel.page-footer-group {
  background: var(--surface-footer,var(--surface-alt,#060e2a));
  color: var(--page-footer-text-content,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-page-footer-panel.page-footer-group .colophon-bottom,
.site-page-footer-panel.page-footer-group .page-footer-upper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.site-page-footer-panel.page-footer-group .page-footer-upper {
  display: grid;
  grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(180px,1fr) minmax(220px,297px);
  gap: 24px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 28px
}
.site-page-footer-panel.page-footer-group .site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.site-page-footer-panel.page-footer-group .site-footer-emblem-section {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.site-page-footer-panel.page-footer-group .page-footer-connect-caption {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-page-footer-panel.page-footer-group .main-site-footer-socials {
  display: flex;
  gap: 4px
}
.site-page-footer-panel.page-footer-group .main-site-footer-share {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--page-footer-socials-surface,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-page-footer-panel.page-footer-group .main-site-footer-share:hover {
  background: var(--ui-emphasis,#5a6178)
}
.site-page-footer-panel.page-footer-group .main-site-footer-share img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
.site-page-footer-panel.page-footer-group .footer-brand-mark-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 8px
}
.site-page-footer-panel.page-footer-group .site-footer-navbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.site-page-footer-panel.page-footer-group .site-footer-navbar a {
  color: var(--page-footer-link,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-page-footer-panel.page-footer-group .site-footer-navbar a:hover {
  color: var(--page-footer-text-content,#fff)
}
.site-page-footer-panel.page-footer-group .footer-support-panel {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-page-footer-panel.page-footer-group .footer-support-panel .site-footer-help-center-heading {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-page-footer-panel.page-footer-group .footer-support-panel p {
  color: var(--page-footer-text-content,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-page-footer-panel.page-footer-group .site-footer-inbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--page-footer-text-content,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.site-page-footer-panel.page-footer-group .site-footer-inbox img {
  width: 18px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-page-footer-panel.page-footer-group .page-footer-payments-band {
  background: var(--theme-colophon-payments-background,#0f0f0f);
  padding: 14px 40px
}
.site-page-footer-panel.page-footer-group .site-footer-banking-container {
  max-width: 1225px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}
.site-page-footer-panel.page-footer-group .site-footer-banking-container img {
  width: 100px;
  height: 50px;
  object-fit: fill;
  flex-shrink: 0
}
.site-page-footer-panel.page-footer-group .colophon-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 24px;
  padding-bottom: 24px
}
.site-page-footer-panel.page-footer-group .colophon-bottom-start {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start
}
.site-page-footer-panel.page-footer-group .page-footer-licence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-licence-page-footer,#869dee);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}
.site-page-footer-panel.page-footer-group .page-footer-licence .page-footer-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0
}
.site-page-footer-panel.page-footer-group .colophon-licence-line {
  display: inline-flex;
  align-items: center;
  gap: 12px
}
.site-page-footer-panel.page-footer-group .page-footer-certification-tag {
  height: 46px;
  width: auto;
  object-fit: contain
}
.site-page-footer-panel.page-footer-group .site-footer-lang-select {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--page-footer-socials-surface,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--page-footer-text-content,#fff);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  text-transform: capitalize;
  cursor: pointer;
  min-width: 88px;
  justify-content: space-between
}
.site-page-footer-panel.page-footer-group .site-footer-lang-select img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
.site-page-footer-panel.page-footer-group .site-footer-copyright {
  color: var(--page-footer-text-content,#a2a5af);
  font-size: 12px;
  font-weight: 400;
  line-height: 22.29px;
  margin: 0;
  text-align: right;
  align-self: end
}
@media (max-width:960px) {
  .site-page-footer-panel.page-footer-group .page-footer-upper {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .site-page-footer-panel.page-footer-group .site-footer-banking-container {
    gap: 24px
  }
  .site-page-footer-panel.page-footer-group .colophon-bottom {
    grid-template-columns: 1fr
  }
  .site-page-footer-panel.page-footer-group .site-footer-copyright {
    text-align: left
  }
}
@media (max-width:600px) {
  .site-page-footer-panel.page-footer-group .page-footer-upper {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .site-page-footer-panel.page-footer-group .site-footer-emblem-section {
    object-position: center
  }
  .site-page-footer-panel.page-footer-group .page-footer-payments-band {
    padding: 12px 20px
  }
  .site-page-footer-panel.page-footer-group .site-footer-banking-container {
    justify-content: center;
    gap: 16px
  }
  .site-page-footer-panel.page-footer-group .site-footer-banking-container img {
    width: 70px;
    height: 35px
  }
  .site-page-footer-panel.page-footer-group .colophon-bottom {
    padding: 20px;
    gap: 18px
  }
  .site-page-footer-panel.page-footer-group .colophon-bottom-start,
  .site-page-footer-panel.page-footer-group .footer-support-panel,
  .site-page-footer-panel.page-footer-group .page-footer-upper,
  .site-page-footer-panel.page-footer-group .site-footer-brand {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-page-footer-panel.page-footer-group .main-site-footer-socials,
  .site-page-footer-panel.page-footer-group .site-footer-banking-container {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-page-footer-panel.page-footer-group .site-footer-navbar {
    align-items: center
  }
  .site-page-footer-panel.page-footer-group .site-footer-inbox {
    justify-content: center
  }
  .site-page-footer-panel.page-footer-group .site-footer-copyright {
    text-align: center
  }
}
.site-page-footer-panel .site-footer-navbar:not(:has(a)) {
  display: none
}
.site-page-footer-panel .footer-navigation-main,
.site-page-footer-panel .site-footer-menu-legal-block {
  text-align: left
}
.site-page-footer-panel.page-footer-group .site-footer-navbar:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-page-footer-panel.page-footer-group .page-footer-upper:has(.footer-navigation-main a):not(:has(.site-footer-menu-legal-block a)),
  .site-page-footer-panel.page-footer-group .page-footer-upper:not(:has(.footer-navigation-main a)):has(.site-footer-menu-legal-block a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .site-page-footer-panel.page-footer-group .page-footer-upper:not(:has(.site-footer-navbar a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-wrap {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-content-body-block {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-content-body-block .site-primary-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px
}
.perks-wrapper,
.site-mobile-banner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto
}
.site-page-footer-panel[class] {
  padding-left: var(--theme-side-rail-width,0)
}
.site-page-footer-panel[class] .colophon-bottom,
.site-page-footer-panel[class] .page-footer-upper {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-page-footer-panel[class] {
    padding-left: 0
  }
}
.cta-center-section {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.cta-center-section .primary-cta,
.cta-center-section a.primary-cta {
  display: inline-block
}
@media (max-width:768px) {
  .cta-center-section {
    display: block;
    margin: 30px auto
  }
  .content-body-field-wrap .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.primary-cta.main-app-promo-banner-call-to-action-area {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.perks-wrapper h2,
.site-faq-heading {
  font-family: var(--heading-font);
  color: var(--theme-text);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.perks-wrapper .main-perk-tile {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background-size: contain;
  background-position: center 40px
}
.perks-wrapper .main-perk-tile h3 {
  margin: 0;
  font-size: 14px
}
.content-body-field-wrap li {
  padding: .3rem 0;
  line-height: 1.7
}
.content-body-field-wrap table {
  font-size: .92rem
}
.content-body-field-wrap table th {
  background: var(--ui-lead);
  color: var(--text-button,#fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600
}
.content-body-field-wrap table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.content-body-field-wrap table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.site-layout-wrap > .widget-zone-wrapper.sub {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--theme-side-rail-width,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-wrap > .site-content-body-block {
  margin-left: var(--theme-side-rail-width,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-content-body-block .site-primary-area {
    padding-left: 20px
  }
  .site-layout-wrap > .widget-zone-wrapper.sub {
    max-width: var(--theme-side-rail-width,80px)
  }
}
@media (max-width:992px) {
  .site-layout-wrap > .widget-zone-wrapper.sub {
    display: none
  }
  .site-layout-wrap > .site-content-body-block {
    margin-left: 0
  }
}
.topbar-bg {
  position: relative;
  z-index: 1
}
.site-header-fill-main {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
.sidebar-open-glyph-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: contain
}
.side-column-full-entry img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.side-column-full .side-column-primary {
  padding-top: 20px!important
}
.picker-container img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.site-header-search img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.sign-up-offer img {
  width: 12px;
  height: 12px;
  object-fit: contain
}
.main-hamburger-action-grid img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.game-sort-row a {
  text-decoration: none!important
}
.legal-title-panel {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--theme-text);
  line-height: 1.15;
  letter-spacing: -.02em
}
img {
  max-width: 100%;
  height: auto
}
.inner-img-block {
  max-width: 30%;
  height: auto;
  object-fit: cover
}
.main-img-left-row {
  float: left;
  margin: .75rem 1.8rem 1rem 0
}
.main-img-end {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.content-body-field-wrap h2,
.content-body-field-wrap h3,
.content-body-field-wrap table {
  clear: both
}
.inner-clear-wrapper {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .legal-title-panel {
    font-size: 1.6rem
  }
  .inner-img-block,
  .main-img-end,
  .main-img-left-row {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    margin: 1rem auto
  }
}
.content-body-field-wrap h1,
.content-body-field-wrap h2,
.content-body-field-wrap h3 {
  font-family: var(--heading-font);
  color: var(--theme-text);
  text-decoration: none;
  border: none
}
.content-body-field-wrap h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.content-body-field-wrap h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.content-body-field-wrap h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.content-body-field-wrap ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.content-body-field-wrap ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.6
}
.content-body-field-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ui-lead)
}
.content-body-field-wrap ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.content-body-field-wrap ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.content-body-field-wrap ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--ui-lead);
  font-weight: 600
}
.content-body-field-wrap table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ui-tile-surface,rgba(255,255,255,.03));
  border: 1px solid var(--theme-border-line,rgba(255,255,255,.08));
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
  margin: 1.5rem 0;
  color: var(--theme-label-faded,#c9ccd6);
  font-family: var(--ui-main-text, 'Montserrat', system-ui, sans-serif)
}
.content-body-field-wrap table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.content-body-field-wrap table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.content-body-field-wrap table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.content-body-field-wrap table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.content-body-field-wrap table thead tr {
  background: var(--surface-alt,rgba(255,255,255,.06))
}
.content-body-field-wrap table thead th {
  font-weight: 700;
  color: var(--theme-text,#fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--theme-border-line,rgba(255,255,255,.12));
  font-size: .875rem;
  background: 0 0;
  letter-spacing: .2px
}
.content-body-field-wrap table thead th:last-child {
  border-right: none
}
.content-body-field-wrap table tbody tr:nth-child(odd) {
  background: 0 0
}
.content-body-field-wrap table tbody tr:nth-child(2n) {
  background: var(--surface-alt,rgba(255,255,255,.03))
}
.content-body-field-wrap table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--theme-border-line,rgba(255,255,255,.06));
  border-bottom: 1px solid var(--theme-border-line,rgba(255,255,255,.06));
  color: var(--theme-label-faded,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.content-body-field-wrap table tbody td:last-child {
  border-right: none
}
.content-body-field-wrap table tbody tr:last-child td {
  border-bottom: none
}
.faqs-group {
  background: var(--surface-alt,rgba(255,255,255,.02));
  border: 1px solid var(--theme-border-line,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 28px 32px 32px;
  margin: 30px auto;
  font-family: Montserrat,system-ui,sans-serif
}
.faqs-group .site-faq-heading {
  color: var(--theme-text,#fff);
  font-family: var(--heading-font, 'Montserrat', system-ui, sans-serif);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-top: 4px
}
.faqs-group .faq-section-card-box {
  background: var(--ui-tile-surface,rgba(255,255,255,.04));
  border: 1px solid var(--theme-border-line,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 14px;
  color: var(--theme-label-faded,#b1b4bc)
}
.faqs-group .faq-section-card-box:last-child {
  margin-bottom: 0
}
.faqs-group .questions-query {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--theme-text,#fff);
  margin: 0 0 12px
}
.faqs-group .faqs-reply {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 400;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--theme-label-faded,#b1b4bc)
}
.faqs-group .faqs-reply p {
  margin: 0 0 8px
}
.faqs-group .faqs-reply p:last-child {
  margin-bottom: 0
}
.faqs-group .faqs-reply b,
.faqs-group .faqs-reply strong {
  font-weight: 700;
  color: var(--theme-text,#fff)
}
@media (max-width:600px) {
  .content-body-field-wrap h1 {
    font-size: 2rem
  }
  .content-body-field-wrap h2 {
    font-size: 1.6rem
  }
  .content-body-field-wrap h3 {
    font-size: 1.2rem
  }
  .content-body-field-wrap table tbody td,
  .content-body-field-wrap table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .faqs-group {
    padding: 24px 20px 28px;
    margin: 24px 12px
  }
  .faqs-group .site-faq-heading {
    font-size: 1.6rem;
    letter-spacing: .3px;
    margin: 0 0 24px;
    padding-top: 4px
  }
  .faqs-group .faq-section-card-box {
    padding: 20px 18px;
    margin-bottom: 12px
  }
  .faqs-group .questions-query {
    font-size: 1.05rem;
    line-height: 1.35
  }
  .faqs-group .faqs-reply {
    font-size: .9rem
  }
}
.content-body-field-wrap h2 {
  border: none;
  border-bottom: none
}
.content-body-field-wrap ol li,
.content-body-field-wrap ul li {
  border-bottom: none
}
.content-body-field-wrap {
  max-width: 1200px;
  margin: 0 auto
}
[data-slot=content-image-1]:not(a):not(button),
[data-slot=espana-content-image-1]:not(a):not(button) {
  max-width: 45%!important
}
[data-slot=app-content-image-1]:not(a):not(button) {
  max-width: 35%!important
}
@media (max-width:768px) {
  [data-slot=app-content-image-1]:not(a):not(button),
  [data-slot=content-image-1]:not(a):not(button),
  [data-slot=espana-content-image-1]:not(a):not(button) {
    max-width: 100%!important
  }
}
.site-mobile-banner {
  background-color: #493a31!important;
  background-blend-mode: multiply!important
}
.main-perk-tile {
  background-color: #493a31!important;
  background-blend-mode: normal!important
}
.main-site-header-fill-heading {
  color: #fff!important
}
.masthead-fill-reward-box,
.site-topbar-fill-deposit {
  color: #fee740!important
}
.main-page-header-surface-button {
  background: #68e107!important
}