:root {
  --shine: rgba(255,255,255,0.1);
  --betalice-strong-halo: rgba(255,255,255,0.2);
  --theme-font-headline: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --font-base: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --section-spacing: 3rem 1.5rem;
  --panel-pad: 1.2rem;
  --ui-spacing: 1rem;
  --ui-curve: 12px;
  --corner-panel: 18px;
  --surface-frosted: #0e2c3d;
  --outline-frosted: #1e3c4d;
  --ui-frosted-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  --theme-legal-page-footer: #90e0ef;
  --positive: #2ec77b;
  --negative: #e5484d;
  --on-media: #ffffff;
  --width-aside: 248px;
  --fill: #082637;
  --alt-bg: #123041;
  --main: #be1659;
  --betalice-primary-hover: #e43c7f;
  --ui-primary-dark: #aa0245;
  --betalice-sub: #0077b6;
  --betalice-text: #e8e6e3;
  --text-subtle: #9a9a9a;
  --text-content-button: #f5f5f5;
  --accent-color: #90e0ef;
  --betalice-accent-label: #060606;
  --outline: #1e3c4d;
  --ui-fill-tile: #0e2c3d;
  --betalice-blend: linear-gradient(135deg, #be1659 0%, #d0286b 50%, #aa0245 100%);
  --primary-ink: #f85687;
  --accent-ink: #90e0ef;
  --secondary-ink: #3d9cde;
  --betalice-reward-cta-grad-top-area: #be1659!important;
  --ui-reward-btn-grad-lower: #aa0245!important
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%
}
body {
  font-family: var(--font-base);
  background: var(--fill);
  color: var(--betalice-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 64px
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-font-headline);
  line-height: 1.15
}
a {
  color: var(--main);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--betalice-primary-hover)
}
.seo-region-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: .9rem;
  color: var(--text-subtle,var(--betalice-text))
}
.seo-region-breadcrumb a {
  color: var(--main)
}
@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(--shine)
  }
  50% {
    box-shadow: 0 0 28px var(--betalice-strong-halo)
  }
}
@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-inner.main-sub-grid {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--width-aside,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-panel-main-grid {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.page-footer-brand {
  height: 30px;
  width: auto
}
.page-footer-navigation-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.page-footer-navigation-grid a {
  font-size: .82rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color .2s
}
.page-footer-navigation-grid a:hover {
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 2px
}
.site-footer-separator-panel {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.main-colophon-bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --section-spacing: 1.8rem 0.8rem;
    --panel-pad: 0.9rem;
    --ui-spacing: 0.6rem
  }
}
@media (max-width:768px) {
  :root {
    --section-spacing: 2.5rem 1rem;
    --panel-pad: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --section-spacing: 3.5rem 1.5rem;
    --panel-pad: 1.5rem
  }
}
header {
  background-color: var(--fill);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 64px;
  font-family: var(--theme-font-headline)
}
.header-shell-container {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center
}
.header-shell-container a {
  color: var(--betalice-text);
  text-decoration: none
}
.header-shell-container a:hover {
  color: unset
}
.site-header-left-side {
  display: flex;
  align-items: center;
  gap: 40px
}
.logo-container-group img {
  max-height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block
}
.toggle-shell {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--alt-bg);
  padding: 5px 10px;
  border-radius: 1000px;
  border: 1px solid var(--outline)
}
.toggle-shell > a,
.toggle-shell div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-subtle)
}
.main-toggle-left-side {
  background: var(--main);
  color: #fff!important;
  padding: 3px 8px;
  border-radius: 1000px
}
.page-header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600
}
.page-header-nav a {
  color: var(--text-subtle)
}
.page-header-nav a:hover {
  color: var(--betalice-text)
}
.site-page-header-end {
  display: flex;
  align-items: center;
  gap: 15px
}
.missions-action-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent-color);
  color: var(--betalice-accent-label,#fff);
  padding: 2px 8px;
  border-radius: 8px;
  box-shadow: 0 0 16px var(--shine)
}
.missions-action-row img {
  width: 18px;
  height: 18px
}
.topbar-action-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700
}
.topbar-action-buttons a {
  padding: 10px 12px;
  border-radius: 1000px;
  line-height: normal
}
.site-signin-btn {
  border: 1px solid var(--outline);
  color: var(--betalice-text)
}
.site-signin-btn:hover {
  background-color: var(--alt-bg)
}
.site-signup-action-holder {
  position: relative
}
.join-button {
  background: var(--main);
  border: 1px solid var(--main);
  color: var(--text-content-button,#fff)
}
.join-button:hover {
  filter: brightness(1.15)
}
.main-hamburger-cta-wrapper {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.main-hamburger-cta-wrapper img {
  filter: invert(1)
}
.offcanvas-wrap {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--fill);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.offcanvas-wrap.open {
  left: 0
}
.offcanvas-close-row {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--betalice-text);
  cursor: pointer
}
.offcanvas-close-row:hover {
  background: 0 0
}
.main-offcanvas-topbar {
  display: flex;
  justify-content: flex-end
}
.offcanvas-inner-grid {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-inner-grid .page-header-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-inner-grid .page-header-nav a {
  font-size: 16px;
  padding: 12px 0;
  display: block
}
.offcanvas-backdrop-inner {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-inner.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .masthead-nav-shell,
  .toggle-shell {
    display: none
  }
  .offcanvas-wrap .masthead-nav-shell,
  .offcanvas-wrap .toggle-shell {
    display: flex;
    max-width: fit-content
  }
  .offcanvas-wrap .page-header-nav {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    gap: 15px
  }
  .offcanvas-wrap .toggle-shell {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .main-hamburger-cta-wrapper,
  .offcanvas-backdrop-inner,
  .offcanvas-wrap {
    display: none
  }
}
@media (max-width:768px) {
  .missions-action-row {
    display: none
  }
  .header-shell-container {
    padding: 0 20px
  }
  .site-header-left-side {
    gap: 10px
  }
  .site-page-header-end {
    flex-shrink: 0
  }
  .logo-container-group {
    max-width: 80px;
    min-width: 0;
    flex-shrink: 1
  }
  .logo-container-group img {
    max-width: 100%
  }
}
.toggle-shell > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary.main-side-rail-full {
  width: 248px;
  min-width: 248px;
  background: var(--alt-bg);
  border-right: 1px solid rgba(128,128,128,.18)
}
.main-side-rail-full .side-panel-main-grid {
  padding: 80px 20px 20px;
  border-radius: 0;
  background: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}
.main-side-rail-full .site-side-rail-hr-panel {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 10px 0;
  background: rgba(128,128,128,.18)
}
.side-rail-open-symbol-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 4px
}
.side-rail-open-symbol-container img {
  object-fit: contain
}
.aside-full-navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%
}
.aside-wide-entry-row {
  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(--text-subtle);
  text-decoration: none;
  transition: .2s
}
.aside-wide-entry-row:hover {
  background: rgba(255,255,255,.1);
  color: var(--betalice-text)
}
.aside-wide-entry-row img {
  object-fit: contain;
  flex-shrink: 0
}
.aside-full-navigation .site-side-rail-hr-panel {
  width: 100%;
  margin: 6px 0
}
.page-header-surface,
.page-header-surface *,
.site-header-bg-bottom-area,
.site-header-bg-bottom-area * {
  font-family: var(--theme-font-headline)!important
}
.page-header-surface {
  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-page-header-fill-content-body-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.site-page-header-fill-content-body-wrapper br {
  display: none
}
.site-page-header-fill-content-body-wrapper > a {
  display: inline-block;
  width: auto
}
.header-surface-name {
  text-transform: uppercase;
  font-size: 36px!important;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--accent-color);
  text-shadow: 2px 2px 4px #000,0 0 15px #000
}
.header-background-deposit {
  font-size: 126px!important;
  font-weight: 900!important;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--betalice-text);
  filter: drop-shadow(0px 2px 2.7px rgba(0, 0, 0, 1)) drop-shadow(2px 2px 2.9px rgba(0, 0, 0, 1))
}
.topbar-bg-offer {
  font-size: 28.8px!important;
  font-weight: 900;
  color: var(--betalice-text);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px #000,0 0 15px #000;
  margin-bottom: 20px
}
.topbar-bg-btn {
  background: var(--main);
  color: var(--text-content-button,#fff);
  border: none;
  cursor: pointer;
  padding: 9px 58px!important;
  border-radius: 1000px!important;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  width: auto!important;
  box-shadow: none;
  transition: .5s
}
.topbar-bg-btn:hover {
  background: var(--betalice-primary-hover);
  transform: translateY(-2px)
}
.page-header-bg-btn-inner-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0
}
.masthead-surface-cta-main-area {
  font-size: 24px!important;
  font-weight: 700;
  line-height: 1.6
}
.main-header-background-action-description {
  font-size: 13px!important;
  font-weight: 500;
  opacity: .8;
  text-transform: none;
  line-height: 1.6
}
.site-header-bg-bottom-area {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--alt-bg);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.site-header-bg-bottom-area::after,
.site-header-bg-bottom-area::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.site-header-bg-bottom-area::before {
  left: 0;
  background: linear-gradient(to right,var(--fill),transparent)
}
.site-header-bg-bottom-area::after {
  right: 0;
  background: linear-gradient(to left,var(--fill),transparent)
}
.site-header-bg-bottom-area p {
  display: none
}
.page-header-bg-lower-inner {
  text-align: center;
  margin: 0 26px
}
.page-header-bg-lower-inner .main-small-content {
  font-size: 11px;
  color: var(--text-subtle);
  font-weight: 600
}
.page-header-bg-lower-inner .site-big-inner-wrapper {
  font-size: 14px;
  font-weight: 700;
  color: #fff
}
@media (min-width:769px) {
  .site-page-header-fill-content-body-wrapper {
    padding-top: calc(12% - 21px)!important;
    padding-bottom: 29px!important
  }
}
@media (max-width:768px) {
  .page-header-surface {
    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;
    --banner-drop: 144px;
    margin-bottom: calc(var(--banner-drop) + 16px)
  }
  .page-header-surface .site-page-header-fill-content-body-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--banner-drop) * -1);
    padding: 0 16px;
    gap: 4px
  }
  .header-surface-name {
    font-size: 20px!important;
    margin-bottom: 4px
  }
  .header-background-deposit {
    font-size: 66px!important;
    line-height: 1.1
  }
  .topbar-bg-offer {
    font-size: 24px!important;
    margin-bottom: 16px
  }
  .topbar-bg-btn {
    box-sizing: border-box
  }
  .site-header-bg-bottom-area {
    background: var(--alt-bg);
    gap: 10px;
    padding: 8px 15px
  }
  .site-big-inner-wrapper {
    font-size: 14px
  }
}
.banking-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
}
.banking-methods img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s,transform .2s;
  filter: grayscale(10%)
}
.banking-methods img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .banking-methods {
    gap: 14px 20px;
    padding: 16px
  }
  .banking-methods img {
    width: 56px;
    height: 44px
  }
}
.site-primary {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.content-region-wrapper {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-subtle)
}
.content-region-wrapper p {
  margin-bottom: 1rem
}
.content-region-wrapper strong {
  color: var(--betalice-text)
}
.content-region-wrapper a:not(.main-btn):not(.application-banner-cta-wrapper):not([class*="-button"]) {
  color: var(--main);
  text-decoration: underline
}
.content-region-wrapper a:not(.main-btn):not(.application-banner-cta-wrapper):not([class*="-button"]):hover {
  color: var(--accent-color)
}
@media (max-width:768px) {
  .site-primary {
    padding: 5rem 15px 30px
  }
  .content-region-wrapper {
    font-size: 14px
  }
  .app-banner-shell-section,
  .site-primary > .app-banner-shell-section {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .app-promo-banner,
  .site-application-banner-mobile-block img {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.app-banner-shell-section {
  margin: 32px auto;
  max-width: 800px
}
.app-promo-banner {
  display: flex;
  align-items: stretch;
  background: var(--ui-fill-tile,var(--alt-bg));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--outline);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.application-banner-inner {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.application-banner-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--outline);
  background: var(--alt-bg);
  align-self: flex-start
}
.app-banner-caption-image {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.main-application-banner-label-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.application-banner-label-heading {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--betalice-text);
  letter-spacing: .2px
}
.app-promo-banner-caption-rate {
  display: flex;
  gap: 1px
}
.app-promo-banner-caption-rate img {
  width: 12px;
  height: 12px
}
.app-promo-banner-caption-rate .site-star-half-group {
  opacity: .85
}
.mobile-banner-text-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-headline-group {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--betalice-text);
  font-family: var(--theme-font-headline);
  margin: 0
}
.app-promo-banner-description {
  color: var(--text-subtle);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.mobile-banner-button-holder {
  margin-top: 4px
}
.mobile-banner-button-holder .main-btn {
  margin: 0;
  display: inline-block
}
.app-promo-banner-image-holder-block {
  flex: 0 0 38%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box
}
.app-promo-banner-image-inner {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px
}
.site-application-banner-mobile-block {
  display: none
}
.site-application-banner-mobile-block img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .app-promo-banner {
    flex-direction: column;
    min-height: unset
  }
  .app-promo-banner-image-holder-block {
    display: none
  }
  .site-application-banner-mobile-block {
    display: flex;
    justify-content: center;
    padding: 16px 16px 0
  }
  .site-application-banner-mobile-block img {
    max-width: 320px
  }
  .application-banner-inner {
    padding: 20px 20px 24px;
    gap: 12px
  }
  .application-banner-headline-group {
    font-size: 20px
  }
  .mobile-banner-button-holder .main-btn {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.main-btn {
  font-size: 18px;
  font-weight: 700;
  background: var(--main);
  color: var(--text-content-button,var(--betalice-text));
  padding: 12px 56px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-transform: uppercase;
  text-decoration: none
}
.main-btn:hover {
  background: var(--betalice-primary-hover,var(--main));
  color: var(--text-content-button,var(--betalice-text))
}
.updated-date-area {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--alt-bg);
  margin: 30px auto;
  border-radius: 10px;
  border-left: 5px solid var(--main);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  color: var(--betalice-text);
  max-width: 1400px
}
@media (max-width:768px) {
  .updated-date-area {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-page-footer-row.page-footer {
  background: var(--colophon-bg,var(--alt-bg,#060e2a));
  color: var(--theme-text-page-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-page-footer-row.page-footer .main-colophon-bottom-area,
.site-page-footer-row.page-footer .page-footer-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
  box-sizing: border-box
}
.site-page-footer-row.page-footer .page-footer-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 0 24px
}
.site-page-footer-row.page-footer .page-footer-brand {
  height: 60px;
  width: auto;
  max-width: 341px;
  object-fit: contain
}
.site-page-footer-row.page-footer .page-footer-payment-methods {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap
}
.site-page-footer-row.page-footer .page-footer-payment-methods img {
  width: 100px;
  height: 50px;
  object-fit: fill;
  flex-shrink: 0
}
.site-page-footer-row.page-footer .site-footer-separator-panel {
  height: 1px;
  background: 0 0;
  margin: 24px 40px
}
.site-page-footer-row.page-footer .main-colophon-bottom-area {
  display: grid;
  grid-template-columns: minmax(120px,1fr) minmax(180px,1.4fr) minmax(220px,1.4fr) minmax(180px,1fr);
  gap: 24px;
  align-items: start;
  padding-top: 24px;
  padding-bottom: 36px
}
.site-page-footer-row.page-footer .page-footer-navigation-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px
}
.site-page-footer-row.page-footer .page-footer-navigation-grid a {
  color: var(--link-footer,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-page-footer-row.page-footer .page-footer-navigation-grid a:hover {
  color: var(--theme-text-page-footer,#fff)
}
.site-page-footer-row.page-footer .main-site-footer-help {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-page-footer-row.page-footer .main-site-footer-help .site-footer-support-headline {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-page-footer-row.page-footer .main-site-footer-help p {
  color: var(--theme-text-page-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-page-footer-row.page-footer .page-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-text-page-footer,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.site-page-footer-row.page-footer .page-footer-contact img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-page-footer-row.page-footer .main-site-footer-side-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end
}
.site-page-footer-row.page-footer .site-footer-lang-select-holder {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--colophon-share-surface,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--theme-text-page-footer,#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-row.page-footer .site-footer-lang-select-holder img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
.site-page-footer-row.page-footer .colophon-follow-tag {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-page-footer-row.page-footer .page-footer-socials-section {
  display: flex;
  gap: 4px
}
.site-page-footer-row.page-footer .main-colophon-socials {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--colophon-share-surface,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-page-footer-row.page-footer .main-colophon-socials:hover {
  background: var(--accent-color,#5a6178)
}
.site-page-footer-row.page-footer .main-colophon-socials img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
@media (max-width:960px) {
  .site-page-footer-row.page-footer .main-colophon-bottom-area {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .site-page-footer-row.page-footer .page-footer-payment-methods {
    gap: 24px
  }
  .site-page-footer-row.page-footer .main-site-footer-side-area {
    align-items: flex-start
  }
}
@media (max-width:600px) {
  .site-page-footer-row.page-footer .main-colophon-bottom-area {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px
  }
  .site-page-footer-row.page-footer .page-footer-hero {
    padding: 20px
  }
  .site-page-footer-row.page-footer .page-footer-payment-methods img {
    width: 70px;
    height: 35px
  }
  .site-page-footer-row.page-footer .site-footer-separator-panel {
    margin-left: 20px;
    margin-right: 20px
  }
  .site-page-footer-row.page-footer .main-colophon-bottom-area,
  .site-page-footer-row.page-footer .main-site-footer-help,
  .site-page-footer-row.page-footer .main-site-footer-side-area {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-page-footer-row.page-footer .page-footer-payment-methods,
  .site-page-footer-row.page-footer .page-footer-socials-section {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-page-footer-row.page-footer .page-footer-navigation-grid {
    align-items: center
  }
  .site-page-footer-row.page-footer .page-footer-contact {
    justify-content: center
  }
}
.site-page-footer-row .page-footer-navigation-grid:not(:has(a)) {
  display: none
}
.site-page-footer-row .page-footer-navbar-primary-wrapper,
.site-page-footer-row .site-footer-menu-legal-block {
  text-align: left
}
.site-page-footer-row.page-footer .page-footer-navigation-grid:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-page-footer-row.page-footer .main-colophon-bottom-area:has(.page-footer-navbar-primary-wrapper a):not(:has(.site-footer-menu-legal-block a)),
  .site-page-footer-row.page-footer .main-colophon-bottom-area:not(:has(.page-footer-navbar-primary-wrapper a)):has(.site-footer-menu-legal-block a) {
    grid-template-columns: minmax(120px,1fr) minmax(220px,1.4fr) minmax(180px,1fr)
  }
  .site-page-footer-row.page-footer .main-colophon-bottom-area:not(:has(.page-footer-navigation-grid a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-box {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-content-inner {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-content-inner .site-primary {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px
}
.app-promo-banner,
.questions-section-wrapper {
  margin-left: auto;
  margin-right: auto
}
.site-page-footer-row[class] {
  padding-left: var(--width-aside,0)
}
.site-page-footer-row[class] .main-colophon-bottom-area {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-page-footer-row[class] {
    padding-left: 0
  }
}
.button-center-block {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.button-center-block .main-btn,
.button-center-block a.main-btn {
  display: inline-block
}
.main-btn.application-banner-cta-wrapper {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.questions-section-wrapper h2 {
  font-family: var(--theme-font-headline);
  color: var(--betalice-text);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.content-region-wrapper li {
  padding: .3rem 0;
  line-height: 1.7
}
.content-region-wrapper table {
  font-size: .92rem
}
.content-region-wrapper table th {
  background: var(--main);
  color: var(--text-content-button,#fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600
}
.content-region-wrapper table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.content-region-wrapper table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.site-layout-box > .widget-zone-inner.main-sub-grid {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--width-aside,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-box > .site-content-inner {
  margin-left: var(--width-aside,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-content-inner .site-primary {
    padding-left: 20px
  }
  .site-layout-box > .widget-zone-inner.main-sub-grid {
    max-width: var(--width-aside,80px)
  }
}
@media (max-width:992px) {
  .site-layout-box > .widget-zone-inner.main-sub-grid {
    display: none
  }
  .site-layout-box > .site-content-inner {
    margin-left: 0
  }
}
.page-header-surface {
  position: relative;
  z-index: 1
}
.site-page-header-fill-content-body-wrapper {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
@media (max-width:768px) {
  .button-center-block {
    display: block;
    margin: 30px auto
  }
  .content-region-wrapper .table-scroll > table,
  .legal-inner-panel .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.side-rail-open-symbol-container img {
  width: 64px;
  height: 64px;
  object-fit: contain
}
.aside-wide-entry-row img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.main-side-rail-full .side-panel-main-grid {
  padding-top: 20px!important
}
.toggle-shell img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.main-hamburger-cta-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.legal-name-wrap {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--betalice-text);
  line-height: 1.15;
  letter-spacing: -.02em
}
.legal-inner-panel {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-subtle)
}
.legal-inner-panel p {
  margin-bottom: 1.1rem
}
.legal-inner-panel strong {
  color: var(--betalice-text)
}
.content-region-wrapper li,
.legal-inner-panel li {
  color: var(--text-subtle)
}
.content-region-wrapper li strong,
.legal-inner-panel li strong {
  color: var(--text-subtle);
  font-weight: 700
}
.legal-inner-panel a {
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 2px
}
.legal-inner-panel a:hover {
  color: var(--betalice-primary-hover,var(--accent-color))
}
.legal-inner-panel article em {
  color: var(--text-subtle);
  font-style: italic
}
img {
  max-width: 100%;
  height: auto
}
.content-body-img-holder {
  max-width: 24%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain
}
.content-body-img-holder.main-img-left {
  float: left;
  clear: both;
  margin: .75rem 1.8rem 1rem 0
}
.content-body-img-holder.main-img-end {
  float: right;
  clear: both;
  margin: .75rem 0 1rem 1.8rem
}
.content-region-wrapper h2,
.content-region-wrapper h3,
.content-region-wrapper ol,
.content-region-wrapper table,
.content-region-wrapper ul {
  clear: both
}
.main-clear {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .legal-name-wrap {
    font-size: 1.6rem
  }
  .legal-inner-panel h1 {
    font-size: 1.5rem
  }
  .legal-inner-panel h2 {
    font-size: 1.2rem
  }
  .content-body-img-holder,
  .main-img-end,
  .main-img-left {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    max-height: none;
    height: auto;
    margin: 1rem auto
  }
}
.content-region-wrapper h1,
.content-region-wrapper h2,
.content-region-wrapper h3,
.faq-ask,
.faq-section-unit h3,
.legal-inner-panel h1,
.legal-inner-panel h2,
.legal-inner-panel h3,
.questions-section-wrapper h2,
.questions-section-wrapper h3 {
  font-family: var(--theme-font-headline);
  text-decoration: none;
  border: none
}
.content-region-wrapper h1,
.legal-inner-panel h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--main);
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.content-region-wrapper h2,
.legal-inner-panel h2,
.questions-section-wrapper h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: .6rem
}
.content-region-wrapper h3,
.faq-ask,
.faq-section-unit h3,
.legal-inner-panel h3,
.questions-section-wrapper h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--betalice-text);
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.content-region-wrapper ul,
.legal-inner-panel ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.content-region-wrapper ul li,
.legal-inner-panel ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .6rem
}
.content-region-wrapper ul li::before,
.legal-inner-panel ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--main)
}
.content-region-wrapper ol,
.legal-inner-panel ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.content-region-wrapper ol li,
.legal-inner-panel ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  counter-increment: ol-counter
}
.content-region-wrapper ol li::before,
.legal-inner-panel ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--main);
  font-weight: 600
}
.content-region-wrapper table,
.legal-inner-panel table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ui-fill-tile,rgba(255,255,255,.03));
  border: 1px solid var(--outline,rgba(255,255,255,.08));
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
  margin: 1.5rem 0;
  color: var(--text-subtle,#c9ccd6);
  font-family: var(--font-base, 'Montserrat', system-ui, sans-serif)
}
.content-region-wrapper table thead tr:first-child th:first-child,
.legal-inner-panel table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.content-region-wrapper table thead tr:first-child th:last-child,
.legal-inner-panel table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.content-region-wrapper table tbody tr:last-child td:first-child,
.legal-inner-panel table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.content-region-wrapper table tbody tr:last-child td:last-child,
.legal-inner-panel table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.content-region-wrapper table thead tr,
.legal-inner-panel table thead tr {
  background: var(--alt-bg,rgba(255,255,255,.06))
}
.content-region-wrapper table thead th,
.legal-inner-panel table thead th {
  font-weight: 700;
  color: var(--betalice-text,#fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--outline,rgba(255,255,255,.12));
  font-size: .875rem;
  background: 0 0;
  letter-spacing: .2px
}
.content-region-wrapper table thead th:last-child,
.legal-inner-panel table thead th:last-child {
  border-right: none
}
.content-region-wrapper table tbody tr:nth-child(odd),
.legal-inner-panel table tbody tr:nth-child(odd) {
  background: 0 0
}
.content-region-wrapper table tbody tr:nth-child(2n),
.legal-inner-panel table tbody tr:nth-child(2n) {
  background: var(--alt-bg,rgba(255,255,255,.03))
}
.content-region-wrapper table tbody td,
.legal-inner-panel table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--outline,rgba(255,255,255,.06));
  border-bottom: 1px solid var(--outline,rgba(255,255,255,.06));
  color: var(--text-subtle,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.content-region-wrapper table tbody td:last-child,
.legal-inner-panel table tbody td:last-child {
  border-right: none
}
.content-region-wrapper table tbody tr:last-child td,
.legal-inner-panel table tbody tr:last-child td {
  border-bottom: none
}
.site-faqs-numbered {
  margin: 30px auto;
  counter-reset: faq-num
}
.site-faqs-numbered h2 {
  color: var(--betalice-text)
}
.site-faqs-numbered .faq-section-unit {
  counter-increment: faq-num;
  position: relative;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid var(--outline)
}
.site-faqs-numbered .faq-section-unit:first-child {
  border-top: 1px solid var(--outline)
}
.site-faqs-numbered .faq-section-unit:last-child {
  border-bottom: none
}
.site-faqs-numbered .faq-section-unit::before {
  content: counter(faq-num,decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--main);
  line-height: 1;
  font-family: var(--theme-font-headline)
}
.site-faqs-numbered .faq-ask {
  font-weight: 700;
  color: var(--betalice-text);
  margin: 0 0 8px;
  line-height: 1.4
}
.site-faqs-numbered .questions-reply-wrapper p {
  color: var(--text-subtle);
  line-height: 1.7;
  margin: 0
}
@media (max-width:600px) {
  .content-region-wrapper table tbody td,
  .content-region-wrapper table thead th,
  .legal-inner-panel table tbody td,
  .legal-inner-panel table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .site-faqs-numbered .faq-section-unit {
    padding-left: 48px
  }
  .site-faqs-numbered .faq-section-unit::before {
    font-size: 1.2rem
  }
}
.content-region-wrapper h2 {
  border: none;
  border-bottom: none
}
.content-region-wrapper ol li,
.content-region-wrapper ul li,
.legal-inner-panel ol li,
.legal-inner-panel ul li {
  border-bottom: none
}
.content-region-wrapper,
.legal-inner-panel {
  max-width: 1400px;
  margin: 0 auto
}
[data-slot=app-content-image-1]:not(a):not(button) {
  max-width: 35%!important;
  max-height: none!important
}
[data-slot=app-content-image-2]:not(a):not(button) {
  max-width: 20%!important;
  max-height: none!important
}
[data-slot=espana-content-image-1]:not(a):not(button) {
  max-width: 40%!important;
  max-height: none!important
}
@media (max-width:768px) {
  [data-slot=app-content-image-1]:not(a):not(button),
  [data-slot=app-content-image-2]:not(a):not(button),
  [data-slot=espana-content-image-1]:not(a):not(button) {
    max-width: 100%!important
  }
}
img[src*="-mono-black"],
img[src*="-mono-white"] {
  filter: none!important
}
.app-promo-banner {
  background-color: #183546!important;
  background-blend-mode: multiply!important
}
.header-surface-name {
  color: #fff!important
}
.header-background-deposit,
.topbar-bg-offer {
  color: #fee62c!important
}
.promo .promo-cta,
.topbar-bg-btn {
  background: #be1659!important
}
:root .topbar-bg-btn {
  --betalice-reward-cta-grad-top-area: #be1659!important;
  --ui-reward-btn-grad-lower: #aa0245!important
}
:root .site-signin-btn {
  background: #3bc5e8!important
}
:root .missions-action-row,
:root .missions-action-row .missions-heading-wrap {
  color: #000!important
}