:root {
  --cazimbo-bg: #fdfdfd;
  --theme-tile-background: #14141f;
  --alt-surface: #ffffff;
  --ui-lead: #3498db;
  --cazimbo-primary-hover: #5abeff;
  --theme-secondary-alt: #1f6fa8;
  --theme-text: #1a4cb7;
  --cazimbo-subtle-text-content: #31507c;
  --ui-emphasis: #74b9ff;
  --cazimbo-reward-action-grad-top: #3498db;
  --offer-cta-grad-bottom-area: color-mix(in srgb, #3498db, #000 20%);
  --theme-border-line: #2a2a3e;
  --gradient-fill: linear-gradient(180deg,  #3498db 0%, #1f6fa8 100%);
  --theme-glow: rgba(255,255,255,0.1);
  --strong-aura: rgba(255,255,255,0.2);
  --ui-title-font-family: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --font-base: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --inset-block: 3.5rem 1.8rem;
  --cazimbo-inset-card: 1.4rem;
  --ui-space: 1.2rem;
  --theme-radius: 6px;
  --corner-panel: 10px;
  --sheen-background: #14141f;
  --outline-frosted: #2a2a3e;
  --shadow-glass: 0 2px 12px rgba(0, 0, 0, 0.3);
  --label-btn: #fff;
  --h-site-header: 64px;
  --topbar-fill: var(--cazimbo-bg);
  --copy-header: var(--theme-text);
  --theme-masthead-label-subtle: var(--cazimbo-subtle-text-content);
  --topbar-tag-edge: var(--theme-border-line);
  --edge-search: var(--ui-lead);
  --ui-access-bg: var(--theme-secondary-alt, #0f3460);
  --ui-promo-tag-grad: var(--gradient-fill, linear-gradient(97deg, #501091 0%, #3831a4 50%, #213a96 100%));
  --ui-side-column-width: 64px;
  --text-content-accent-color: #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(--font-base);
  background: var(--cazimbo-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(--h-site-header)
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ui-title-font-family);
  line-height: 1.15
}
a {
  color: var(--ui-lead);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--cazimbo-primary-hover)
}
@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(--theme-glow)
  }
  50% {
    box-shadow: 0 0 28px var(--strong-aura)
  }
}
@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
  }
}
.site-widget-area-row.sub-grid {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--ui-side-column-width,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-column-primary {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.colophon-emblem {
  height: 30px;
  width: auto
}
.site-page-footer-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.site-page-footer-nav a {
  font-size: .82rem;
  color: var(--cazimbo-subtle-text-content);
  text-decoration: none;
  transition: color .2s
}
.site-page-footer-nav a:hover {
  color: var(--ui-lead);
  text-decoration: underline;
  text-underline-offset: 2px
}
.page-footer-rule {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.site-footer-bottom-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --inset-block: 1.8rem 0.8rem;
    --cazimbo-inset-card: 0.9rem;
    --ui-space: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --inset-block: 2.5rem 1rem;
    --cazimbo-inset-card: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --inset-block: 3.5rem 1.5rem;
    --cazimbo-inset-card: 1.5rem
  }
}
header {
  background-color: var(--topbar-fill);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--h-site-header);
  z-index: 9999;
  border-bottom: 1px solid var(--theme-border-line);
  font-family: var(--ui-title-font-family)
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto
}
.header-wrapper a {
  color: var(--copy-header);
  text-decoration: none;
  transition: color .2s
}
.main-header-left-side {
  display: flex;
  align-items: center;
  gap: 16px
}
.site-page-header-end {
  display: flex;
  align-items: center;
  gap: 18px
}
.menu-toggle-action-section {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.logo-holder {
  display: flex;
  align-items: center;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,.12);
  margin-right: 4px
}
.logo-holder img {
  max-height: 34px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain
}
.site-search-circle-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--edge-search);
  flex-shrink: 0;
  transition: background .2s
}
.site-search-circle-panel:hover {
  background: rgba(255,255,255,.06)
}
.site-search-circle-panel img {
  width: 16px;
  height: 16px
}
.reward-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 10px;
  border-radius: 1000px;
  background: var(--ui-promo-tag-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 12px color-mix(in srgb,var(--ui-emphasis,#3831a4) 45%,transparent);
  transition: filter .2s,transform .15s
}
.reward-tag:hover {
  filter: brightness(1.12)
}
.reward-tag:active {
  transform: translateY(1px)
}
.reward-tag img {
  width: 18px;
  height: 18px
}
.masthead-navigation-holder {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 8px
}
.header-navigation {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  height: 100%
}
.header-navigation li {
  display: flex;
  align-items: center;
  height: 100%
}
.header-navigation a {
  color: var(--copy-header);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}
.header-navigation a:hover {
  color: var(--ui-lead)
}
.main-care-info-area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copy-header);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap
}
.main-care-info-area img {
  width: 22px;
  height: 22px
}
.header-button-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700
}
.header-button-buttons a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: .2px;
  transition: filter .2s,background .2s,transform .15s
}
.sign-in-action-area {
  border: 1px solid var(--ui-access-bg);
  color: #fff;
  background: var(--ui-access-bg)
}
.sign-in-action-area:hover {
  filter: brightness(1.15)
}
.site-sign-up-cta {
  background: var(--ui-lead);
  border: 1px solid var(--ui-lead);
  color: var(--label-btn,#fff)
}
.site-sign-up-cta:hover {
  filter: brightness(1.1)
}
.site-sign-up-cta:active {
  transform: translateY(1px)
}
.main-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--topbar-fill);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.main-offcanvas.open {
  left: 0
}
.offcanvas-close-section {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--copy-header);
  cursor: pointer
}
.offcanvas-site-header-block {
  display: flex;
  justify-content: flex-end
}
.offcanvas-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-inner .header-navigation {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-inner .header-navigation 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) {
  .main-care-info-area,
  .masthead-navigation-holder,
  .reward-tag,
  .site-search-circle-panel {
    display: none
  }
  .main-offcanvas .masthead-navigation-holder,
  .main-offcanvas .reward-tag {
    display: flex
  }
  .main-offcanvas .header-navigation {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    gap: 15px
  }
}
@media (min-width:1125px) {
  .main-offcanvas,
  .site-offcanvas-backdrop-section {
    display: none
  }
}
@media (max-width:768px) {
  .header-wrapper {
    padding: 0 16px
  }
  .main-header-left-side {
    gap: 10px
  }
  .header-button-buttons a {
    padding: 8px 14px;
    font-size: 11px
  }
  .site-page-header-end {
    flex-shrink: 0
  }
  .logo-holder {
    max-width: 100px;
    min-width: 0;
    flex-shrink: 1
  }
  .logo-holder img {
    max-width: 100%
  }
}
#secondary {
  width: 64px;
  min-width: 64px;
  background: var(--alt-surface);
  border-right: 1px solid rgba(128,128,128,.18)
}
.side-column-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 8px
}
.site-aside-glyph-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s
}
.site-aside-glyph-item:hover {
  background: var(--theme-tile-background)
}
.site-aside-glyph-item:hover img {
  opacity: 1
}
.aside-hr {
  border: 0;
  height: 1px;
  background: rgba(128,128,128,.18);
  width: 80%;
  margin: 4px auto
}
.site-header-fill-bottom-area,
.site-header-fill-bottom-area *,
.topbar-bg,
.topbar-bg * {
  font-family: var(--ui-title-font-family)!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
}
.topbar-surface-content-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.topbar-surface-content-section br {
  display: none
}
.site-header-surface-heading {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ui-emphasis)
}
.site-header-bg-deposit {
  font-size: 105px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--theme-text)
}
.header-background-bonus {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-text);
  margin-bottom: 20px
}
.header-bg-button-area {
  background: var(--ui-lead);
  color: var(--label-btn,#fff);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700
}
.header-bg-button-area:hover {
  background: var(--cazimbo-primary-hover);
  transform: translateY(-2px)
}
.main-masthead-background-button-inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center
}
.site-header-fill-bottom-area {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--alt-surface);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.site-header-fill-bottom-area::after,
.site-header-fill-bottom-area::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.site-header-fill-bottom-area::before {
  left: 0;
  background: linear-gradient(to right,var(--cazimbo-bg),transparent)
}
.site-header-fill-bottom-area::after {
  right: 0;
  background: linear-gradient(to left,var(--cazimbo-bg),transparent)
}
.site-header-fill-bottom-area p {
  display: none
}
@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 .topbar-surface-content-section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -93px;
    padding: 0 16px;
    gap: 4px
  }
  .topbar-surface-content-section > a {
    display: block;
    width: 100%
  }
  .site-header-surface-heading {
    font-size: 13px;
    margin-bottom: 4px
  }
  .site-header-bg-deposit {
    font-size: 42px;
    line-height: 1.1
  }
  .header-background-bonus {
    font-size: 15px;
    margin-bottom: 16px
  }
  .header-bg-button-area {
    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
  }
  .topbar-fill-button-description-row {
    font-size: 11px
  }
  .site-header-fill-bottom-area {
    background: var(--alt-surface);
    gap: 10px;
    padding: 8px 15px
  }
}
.main-bonus-strip-group {
  gap: 14px;
  padding: 12px 24px
}
.main-bonus-strip-group .reward-strip-crown-grid {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain
}
.main-bonus-strip-group .reward-strip-text-content {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--theme-text);
  line-height: 1.2
}
@media (max-width:768px) {
  .main-bonus-strip-group {
    gap: 10px;
    padding: 10px 14px
  }
  .main-bonus-strip-group .reward-strip-crown-grid {
    width: 18px;
    height: 18px
  }
  .main-bonus-strip-group .reward-strip-text-content {
    font-size: 11px;
    letter-spacing: .4px
  }
}
.topbar-surface-content-section > a {
  display: inline-block;
  width: auto
}
.header-bg-button-area {
  text-transform: capitalize;
  border-radius: 1000px!important;
  padding: 8px 53px!important;
  width: auto!important;
  box-shadow: none;
  transition: .5s
}
.main-masthead-background-button-inner-wrapper {
  display: flex;
  flex-direction: column;
  letter-spacing: 0
}
.header-bg-button-core {
  font-size: 18px!important;
  font-weight: 700;
  line-height: 1.6
}
.topbar-fill-button-description-row {
  opacity: .8;
  text-transform: none;
  line-height: 1.6;
  font-weight: 500;
  font-size: 10px!important
}
.site-core {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.inner-region {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cazimbo-subtle-text-content)
}
.inner-region p {
  margin-bottom: 1rem
}
.inner-region strong {
  color: var(--theme-text)
}
.inner-region a:not(.main-button):not(.application-banner-cta-wrapper):not([class*="-button"]) {
  color: var(--ui-lead);
  text-decoration: underline
}
.inner-region a:not(.main-button):not(.application-banner-cta-wrapper):not([class*="-button"]):hover {
  color: var(--ui-emphasis)
}
@media (max-width:768px) {
  .site-core {
    padding: 5rem 15px 30px
  }
  .inner-region {
    font-size: 14px
  }
  .app-promo-banner-wrapper,
  .site-core > .app-promo-banner-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .app-promo-banner-mobile-section img,
  .main-application-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.section-service {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto
}
.unit-care-container {
  flex: 1;
  background: var(--alt-surface);
  border-radius: 8px;
  padding: 18px;
  max-width: 320px
}
.site-heading-service-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}
.site-heading-service-group img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.name-support-text-content {
  font-weight: 700;
  font-size: 16px
}
.unit-care-container p {
  color: var(--cazimbo-subtle-text-content);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .section-service {
    flex-direction: column;
    padding: 0 16px
  }
}
.app-promo-banner-wrapper {
  margin: 32px auto;
  max-width: 800px
}
.main-application-banner {
  display: flex;
  align-items: stretch;
  background: var(--theme-tile-background,var(--alt-surface));
  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-inner-area {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.mobile-banner-text-grid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--theme-border-line);
  background: var(--alt-surface);
  align-self: flex-start
}
.application-banner-caption-image-group {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.site-app-promo-banner-text-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.mobile-banner-text-name {
  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 .main-star-half {
  opacity: .85
}
.app-promo-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
}
.app-banner-name-grid {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--theme-text);
  font-family: var(--ui-title-font-family);
  margin: 0
}
.mobile-banner-description-inner {
  color: var(--cazimbo-subtle-text-content);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.app-promo-banner-action-holder {
  margin-top: 4px
}
.app-promo-banner-action-holder .main-button {
  margin: 0;
  display: inline-block
}
.app-banner-image-shell {
  flex: 0 0 38%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box
}
.application-banner-image-container {
  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-section {
  display: none
}
.app-promo-banner-mobile-section img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .main-application-banner {
    flex-direction: column;
    min-height: unset
  }
  .app-banner-image-shell {
    display: none
  }
  .app-promo-banner-mobile-section {
    display: flex;
    justify-content: center;
    padding: 16px 16px 0
  }
  .app-promo-banner-mobile-section img {
    max-width: 320px
  }
  .app-promo-banner-inner-area {
    padding: 20px 20px 24px;
    gap: 12px
  }
  .app-banner-name-grid {
    font-size: 20px
  }
  .app-promo-banner-action-holder .main-button {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.main-button {
  font-size: 18px;
  font-weight: 700;
  background: var(--ui-lead);
  color: var(--label-btn,var(--theme-text));
  padding: 10px 56px;
  border-radius: 6px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none
}
.main-button:hover {
  background: var(--cazimbo-primary-hover,var(--ui-lead));
  color: var(--label-btn,var(--theme-text))
}
.updated-date-container {
  background: var(--alt-surface);
  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) {
  .updated-date-container {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-page-footer.page-footer-box {
  background: var(--ui-colophon-bg,var(--alt-surface,#060e2a));
  color: var(--theme-text-page-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-page-footer.page-footer-box .site-footer-bottom-block,
.site-page-footer.page-footer-box .site-footer-splash {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 40px;
  box-sizing: border-box
}
.site-page-footer.page-footer-box .site-footer-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 0 24px
}
.site-page-footer.page-footer-box .colophon-emblem {
  height: 60px;
  width: auto;
  max-width: 341px;
  object-fit: contain
}
.site-page-footer.page-footer-box .page-footer-payment-methods {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap
}
.site-page-footer.page-footer-box .page-footer-payment-methods img {
  width: 100px;
  height: 50px;
  object-fit: fill;
  flex-shrink: 0
}
.site-page-footer.page-footer-box .page-footer-rule {
  height: 1px;
  background: 0 0;
  margin: 24px 40px
}
.site-page-footer.page-footer-box .site-footer-bottom-block {
  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.page-footer-box .site-page-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px
}
.site-page-footer.page-footer-box .site-page-footer-nav a {
  color: var(--page-footer-anchor,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-page-footer.page-footer-box .site-page-footer-nav a:hover {
  color: var(--theme-text-page-footer,#fff)
}
.site-page-footer.page-footer-box .page-footer-support-area {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-page-footer.page-footer-box .page-footer-support-area .main-site-footer-support-heading {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-page-footer.page-footer-box .page-footer-support-area p {
  color: var(--theme-text-page-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-page-footer.page-footer-box .footer-inbox-box {
  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.page-footer-box .footer-inbox-box img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-page-footer.page-footer-box .footer-side-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end
}
.site-page-footer.page-footer-box .site-footer-language {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--colophon-social-fill,#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.page-footer-box .site-footer-language img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
.site-page-footer.page-footer-box .site-footer-follow-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-page-footer.page-footer-box .colophon-socials {
  display: flex;
  gap: 4px
}
.site-page-footer.page-footer-box .main-colophon-socials {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--colophon-social-fill,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-page-footer.page-footer-box .main-colophon-socials:hover {
  background: var(--ui-emphasis,#5a6178)
}
.site-page-footer.page-footer-box .main-colophon-socials img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
@media (max-width:960px) {
  .site-page-footer.page-footer-box .site-footer-bottom-block {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .site-page-footer.page-footer-box .page-footer-payment-methods {
    gap: 24px
  }
  .site-page-footer.page-footer-box .footer-side-section {
    align-items: flex-start
  }
}
@media (max-width:600px) {
  .site-page-footer.page-footer-box .site-footer-bottom-block {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px
  }
  .site-page-footer.page-footer-box .site-footer-splash {
    padding: 20px
  }
  .site-page-footer.page-footer-box .page-footer-payment-methods img {
    width: 70px;
    height: 35px
  }
  .site-page-footer.page-footer-box .page-footer-rule {
    margin-left: 20px;
    margin-right: 20px
  }
  .site-page-footer.page-footer-box .footer-side-section,
  .site-page-footer.page-footer-box .page-footer-support-area,
  .site-page-footer.page-footer-box .site-footer-bottom-block {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-page-footer.page-footer-box .colophon-socials,
  .site-page-footer.page-footer-box .page-footer-payment-methods {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-page-footer.page-footer-box .site-page-footer-nav {
    align-items: center
  }
  .site-page-footer.page-footer-box .footer-inbox-box {
    justify-content: center
  }
}
.site-page-footer .site-page-footer-nav:not(:has(a)) {
  display: none
}
.site-page-footer .main-footer-navbar-legal,
.site-page-footer .site-footer-nav-primary-inner {
  text-align: left
}
.site-page-footer.page-footer-box .site-page-footer-nav:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-page-footer.page-footer-box .site-footer-bottom-block:has(.site-footer-nav-primary-inner a):not(:has(.main-footer-navbar-legal a)),
  .site-page-footer.page-footer-box .site-footer-bottom-block:not(:has(.site-footer-nav-primary-inner a)):has(.main-footer-navbar-legal a) {
    grid-template-columns: minmax(120px,1fr) minmax(220px,1.4fr) minmax(180px,1fr)
  }
  .site-page-footer.page-footer-box .site-footer-bottom-block:not(:has(.site-page-footer-nav a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-box {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-inner-row {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-inner-row .site-core {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px
}
.faq-section-holder,
.main-application-banner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto
}
.site-page-footer[class] {
  padding-left: var(--ui-side-column-width,0)
}
.site-page-footer[class] .site-footer-bottom-block {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-page-footer[class] {
    padding-left: 0
  }
}
.button-center-block {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.button-center-block .main-button,
.button-center-block a.main-button {
  display: inline-block
}
@media (max-width:768px) {
  .button-center-block {
    display: block;
    margin: 30px auto
  }
  .inner-region .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.main-button.application-banner-cta-wrapper {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.faq-section-holder h2,
.questions-title {
  font-family: var(--ui-title-font-family);
  color: var(--theme-text);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.faq-section-holder {
  padding: 0
}
.inner-region li {
  padding: .3rem 0;
  line-height: 1.7
}
.inner-region table {
  font-size: .92rem
}
.inner-region table td {
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.site-layout-box > .site-widget-area-row.sub-grid {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--ui-side-column-width,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-box > .site-inner-row {
  margin-left: var(--ui-side-column-width,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-inner-row .site-core {
    padding-left: 20px
  }
  .site-layout-box > .site-widget-area-row.sub-grid {
    max-width: var(--ui-side-column-width,80px)
  }
}
@media (max-width:992px) {
  .site-layout-box > .site-widget-area-row.sub-grid {
    display: none
  }
  .site-layout-box > .site-inner-row {
    margin-left: 0
  }
}
.topbar-bg {
  position: relative;
  z-index: 1
}
.topbar-surface-content-section {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
.site-aside-glyph-item img {
  opacity: .7;
  transition: opacity .2s;
  width: 24px;
  height: 24px;
  object-fit: contain
}
.site-aside-glyph-item.side-rail-icon-lg img {
  object-fit: contain;
  opacity: 1;
  width: 48px;
  height: 48px
}
.menu-toggle-action-section img {
  filter: invert(1);
  width: 24px;
  height: 24px;
  object-fit: contain
}
.main-legal-title {
  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
}
.content-img-left-side-container {
  float: left;
  margin: .75rem 1.8rem 1rem 0
}
.main-img-end {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.inner-region h2,
.inner-region h3,
.inner-region table {
  clear: both
}
.content-body-clear {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .main-legal-title {
    font-size: 1.6rem
  }
  .content-img-left-side-container,
  .inner-img-block,
  .main-img-end {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    margin: 1rem auto
  }
}
.inner-region h1,
.inner-region h2,
.inner-region h3 {
  font-family: var(--ui-title-font-family);
  color: var(--theme-text);
  border-bottom: 2px solid color-mix(in srgb,var(--ui-lead) 30%,transparent);
  padding-bottom: .3em
}
.inner-region h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.inner-region h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.inner-region h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.inner-region ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.inner-region ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .6rem
}
.inner-region ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--ui-lead)
}
.inner-region ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.inner-region ol li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: .75rem;
  counter-increment: ol-counter;
  min-height: 1.8rem
}
.inner-region ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: .05em;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ui-lead);
  color: var(--cazimbo-bg);
  font-size: .75em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 24px
}
.inner-region table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  margin: 1.5rem 0
}
.inner-region table th {
  background: var(--ui-lead);
  color: var(--label-btn,#fff);
  font-weight: 700;
  color: var(--label-btn,#fff);
  padding: 10px 12px;
  text-align: left;
  border: none;
  background: var(--ui-lead);
  font-size: 13px
}
.inner-region table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--theme-border-line);
  color: var(--theme-text);
  font-size: 14px
}
.inner-region table tr:last-child td {
  border-bottom: none
}
.inner-region table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.inner-region table tr td {
  background: 0 0
}
.faq-section-open {
  margin: 30px auto
}
.faq-section-open .questions-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--theme-text)
}
.faq-section-open .site-faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--theme-border-line);
  overflow: visible
}
.faq-section-open .site-faq-item:first-of-type {
  border-top: 1px solid var(--theme-border-line)
}
.faq-section-open .site-faq-item:last-child {
  border-bottom: none
}
.faq-section-open .questions-question-item-area {
  font-weight: 700;
  font-size: 16px;
  color: var(--theme-text);
  margin: 0 0 8px;
  line-height: 1.4;
  cursor: default!important;
  display: block!important;
  padding: 0!important;
  background: 0 0!important;
  border: none!important;
  user-select: text
}
.faq-section-open .questions-question-item-area::after {
  display: none!important
}
.faq-section-open .site-faqs-reply {
  max-height: none!important;
  overflow: visible!important;
  transition: none!important
}
.faq-section-open .site-faqs-reply p {
  font-size: 14px;
  color: var(--cazimbo-subtle-text-content);
  line-height: 1.7;
  margin: 0;
  padding: 0 0 0 12px!important;
  border-left: 2px solid var(--ui-lead)
}
.inner-region h2 {
  border: none;
  border-bottom: none
}
.inner-region ol li,
.inner-region ul li {
  border-bottom: none
}
.inner-region {
  max-width: 1200px;
  margin: 0 auto
}
[data-slot=content-image-1]:not(a):not(button) {
  max-width: 45%!important
}
[data-slot=espana-content-image-1]:not(a):not(button) {
  max-width: 55%!important
}
@media (max-width:768px) {
  [data-slot=content-image-1]:not(a):not(button),
  [data-slot=espana-content-image-1]:not(a):not(button) {
    max-width: 100%!important
  }
}
.header-navigation a,
.header-wrapper a,
header,
header * {
  color: #acbcdc!important
}
.site-page-footer {
  --ui-colophon-bg: #3498db;
  background-color: #3498db!important;
  --theme-text-page-footer: #ffffff;
  --page-footer-anchor: #ffffff
}
.site-page-footer,
.site-page-footer * {
  color: #fff!important
}
.main-application-banner {
  background-color: #fdfdfd!important;
  background-blend-mode: multiply!important
}
.site-header-surface-heading {
  color: #0687ea!important
}
.header-background-bonus,
.site-header-bg-deposit {
  color: #fde834!important
}
.header-bg-button-area {
  background: #25fd33!important;
  color: #fff!important
}
.header-bg-button-core,
.topbar-fill-button-description-row {
  color: #fff!important
}