:root {
  --fill: #101114;
  --ui-card-box-fill: #16171a;
  --hispin-alt-background: #1f2023;
  --theme-accent-primary: #7859cf;
  --hover-main: #9e7ff5;
  --hispin-sub: #afc257;
  --copy: #e8e6e3;
  --copy-faded: #9a9a9a;
  --ui-accent: #e09a52;
  --ui-reward-button-grad-upper: #7859cf;
  --theme-bonus-btn-grad-bottom: color-mix(in srgb, #7859cf, #000 20%);
  --theme-edge: #26272a;
  --theme-gradient-overlay: linear-gradient(160deg,  #7859cf 0%, #afc257 100%);
  --theme-halo: rgba(255,255,255,0.1);
  --theme-glow-strong: rgba(255,255,255,0.2);
  --heading-font: 'Open Sans','Helvetica Neue',Arial,sans-serif;
  --content-typeface: 'Open Sans','Helvetica Neue',Arial,sans-serif;
  --block-spacing: 2.5rem 1.2rem;
  --panel-pad: 1rem;
  --hispin-gutter: 0.8rem;
  --curve: 6px;
  --card-corner: 10px;
  --ui-frosted-fill: #16171a;
  --border-line-frosted: #26272a;
  --depth-glass-effect: 0 2px 12px rgba(0, 0, 0, 0.3);
  --ui-cta-copy: #fff;
  --site-header-h: 64px;
  --ui-site-header-surface: var(--fill);
  --copy-header: var(--copy);
  --theme-masthead-label-subtle: var(--copy-faded);
  --masthead-chip-background: var(--hispin-alt-background);
  --topbar-tag-edge: var(--theme-edge);
  --ui-page-header-button-bg: var(--ui-accent);
  --topbar-action-copy: #fff;
  --topbar-bonus-fill: #009900;
  --header-reward-copy: #fff;
  --ui-aside-width: 64px;
  --ui-label-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(--content-typeface);
  background: var(--fill);
  color: var(--copy);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--site-header-h)
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1.15
}
a {
  color: var(--theme-accent-primary);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--hover-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(--theme-halo)
  }
  50% {
    box-shadow: 0 0 28px var(--theme-glow-strong)
  }
}
@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.sub-box {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--ui-aside-width,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-panel-main-grid {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.page-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}
.colophon-brand {
  display: flex;
  align-items: center;
  gap: .5rem
}
.site-footer-logo-wrapper {
  height: 30px;
  width: auto
}
.page-footer-navbar-area {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.page-footer-navbar-area a {
  font-size: .82rem;
  color: var(--copy-faded);
  text-decoration: none;
  transition: color .2s
}
.page-footer-navbar-area a:hover {
  color: var(--theme-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.site-footer-rule-inner {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.colophon-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --block-spacing: 1.8rem 0.8rem;
    --panel-pad: 0.9rem;
    --hispin-gutter: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --block-spacing: 2.5rem 1rem;
    --panel-pad: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --block-spacing: 3.5rem 1.5rem;
    --panel-pad: 1.5rem
  }
}
header {
  background-color: var(--ui-site-header-surface);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--site-header-h);
  z-index: 9999;
  font-family: var(--heading-font);
  font-family: var(--heading-font)
}
.site-header-holder {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto
}
.site-header-holder a {
  color: var(--copy-header);
  text-decoration: none;
  transition: color .2s
}
.site-header-holder a:hover {
  color: unset
}
.topbar-start {
  display: flex;
  align-items: center;
  gap: 32px
}
.hispin-wrapper {
  display: flex;
  align-items: center
}
.hispin-wrapper img {
  max-height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block
}
.toggle-holder-block {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--masthead-chip-background);
  padding: 4px;
  border-radius: 1000px;
  border: 1px solid var(--topbar-tag-edge)
}
.toggle-holder-block > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--theme-masthead-label-subtle);
  border-radius: 1000px;
  transition: background .2s,color .2s
}
.site-picker-left-side {
  background: var(--theme-accent-primary);
  color: var(--topbar-action-copy)!important
}
.site-picker-left-side img {
  filter: brightness(0) invert(1)
}
.site-header-navigation-shell {
  display: flex;
  align-items: center;
  height: 100%
}
.header-navigation {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  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(--theme-accent-primary)
}
.header-navigation a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--theme-accent-primary)
}
.page-header-right-side-area {
  display: flex;
  align-items: center;
  gap: 12px
}
.missions-button-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--ui-page-header-button-bg);
  color: var(--topbar-action-copy);
  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-button-wrap:hover {
  filter: brightness(1.1)
}
.missions-button-wrap:active {
  transform: translateY(1px)
}
.missions-button-wrap img {
  width: 18px;
  height: 18px
}
.site-missions-heading {
  letter-spacing: .2px
}
.masthead-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s
}
.masthead-search:hover {
  background: var(--masthead-chip-background)
}
.masthead-search img {
  opacity: .75
}
.site-header-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700
}
.site-header-action-buttons a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: .2px;
  transition: filter .2s,background .2s,transform .15s
}
.sign-in-button {
  border: 1px solid var(--topbar-tag-edge);
  color: var(--copy-header);
  background: 0 0
}
.sign-in-button:hover {
  background: var(--masthead-chip-background)
}
.signup-action-container {
  position: relative
}
.join-btn {
  background: var(--theme-accent-primary);
  border: 1px solid var(--theme-accent-primary);
  color: var(--ui-cta-copy,#fff);
  box-shadow: 0 2px 10px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.2)
}
.join-btn:hover {
  filter: brightness(1.1)
}
.join-btn:active {
  transform: translateY(1px)
}
.signup-offer {
  position: absolute;
  top: -13px;
  right: 2px;
  background-color: var(--topbar-bonus-fill);
  color: var(--header-reward-copy);
  border-radius: 1000px;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px 2px 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  white-space: nowrap
}
.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-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--ui-site-header-surface);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.offcanvas-container.open {
  left: 0
}
.offcanvas-close-box {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--copy-header);
  cursor: pointer
}
.offcanvas-site-header {
  display: flex;
  justify-content: flex-end
}
.offcanvas-content-body-group {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-content-body-group .header-navigation {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-content-body-group .header-navigation a {
  font-size: 16px;
  padding: 12px 0;
  display: block;
  height: auto
}
.offcanvas-backdrop-box {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-box.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .site-header-navigation-shell,
  .toggle-holder-block {
    display: none
  }
  .offcanvas-container .site-header-navigation-shell,
  .offcanvas-container .toggle-holder-block {
    display: flex;
    max-width: fit-content
  }
  .offcanvas-container .header-navigation {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    gap: 15px
  }
  .offcanvas-container .toggle-holder-block {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .main-hamburger-cta-wrapper,
  .offcanvas-backdrop-box,
  .offcanvas-container {
    display: none
  }
}
@media (max-width:768px) {
  .masthead-search,
  .missions-button-wrap {
    display: none
  }
  .site-header-holder {
    padding: 0 12px
  }
  .topbar-start {
    gap: 8px
  }
  .page-header-right-side-area {
    gap: 6px;
    flex-shrink: 0
  }
  .hispin-wrapper {
    max-width: 130px;
    min-width: 0;
    flex-shrink: 1
  }
  .hispin-wrapper img {
    max-height: 38px;
    object-fit: contain;
    width: auto;
    max-width: 100%
  }
  .main-hamburger-cta-wrapper img {
    width: 20px;
    height: 20px
  }
  .site-header-action-buttons {
    gap: 6px
  }
  .site-header-action-buttons a {
    padding: 7px 12px;
    font-size: 10px;
    white-space: nowrap;
    line-height: 1
  }
  .signup-offer {
    font-size: 7px;
    padding: 2px 5px;
    top: -11px;
    right: 0
  }
  .signup-offer img {
    width: 8px;
    height: 8px
  }
}
.toggle-holder-block > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary {
  width: 64px;
  min-width: 64px;
  background: var(--hispin-alt-background);
  border-right: 1px solid rgba(128,128,128,.18)
}
.side-panel-main-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 8px
}
.side-rail-icon-mark-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s
}
.side-rail-icon-mark-cell:hover {
  background: var(--ui-card-box-fill)
}
.side-rail-icon-mark-cell img {
  opacity: .7;
  transition: opacity .2s
}
.side-rail-icon-mark-cell:hover img {
  opacity: 1
}
.site-aside-hr-grid {
  border: 0;
  height: 1px;
  background: rgba(128,128,128,.18);
  width: 80%;
  margin: 4px auto
}
.header-fill-bottom-inner,
.header-fill-bottom-inner *,
.masthead-surface,
.masthead-surface * {
  font-family: var(--heading-font)!important
}
.masthead-surface {
  background: url(../images/header-bg.png?v=4e9b42e3) 0 0/cover no-repeat;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden
}
.page-header-background-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.page-header-background-main br {
  display: none
}
.page-header-background-main > a {
  display: inline-block;
  width: auto
}
.main-topbar-fill-title {
  text-transform: uppercase;
  font-size: 36px!important;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ui-accent);
  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(--copy);
  filter: drop-shadow(0px 2px 2.7px rgba(0, 0, 0, 1)) drop-shadow(2px 2px 2.9px rgba(0, 0, 0, 1))
}
.masthead-background-promo {
  font-size: 28.8px!important;
  font-weight: 900;
  color: var(--copy);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px #000,0 0 15px #000;
  margin-bottom: 20px
}
.page-header-bg-button {
  background: var(--theme-accent-primary);
  color: var(--ui-cta-copy,#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
}
.page-header-bg-button:hover {
  background: var(--hover-main);
  transform: translateY(-2px)
}
.masthead-bg-cta-inner-group {
  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
}
.topbar-fill-button-description-row {
  font-size: 13px!important;
  font-weight: 500;
  opacity: .8;
  text-transform: none;
  line-height: 1.6
}
.header-fill-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--hispin-alt-background);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.header-fill-bottom-inner::after,
.header-fill-bottom-inner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.header-fill-bottom-inner::before {
  left: 0;
  background: linear-gradient(to right,var(--fill),transparent)
}
.header-fill-bottom-inner::after {
  right: 0;
  background: linear-gradient(to left,var(--fill),transparent)
}
.header-fill-bottom-inner p {
  display: none
}
.page-header-surface-lower-content {
  text-align: center;
  margin: 0 26px
}
.page-header-surface-lower-content .main-small-inner {
  font-size: 10px;
  color: var(--copy-faded);
  font-weight: 700
}
.page-header-surface-lower-content .main-big-content {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}
@media (min-width:769px) {
  .page-header-background-main {
    padding-top: calc(12% - 21px)!important;
    padding-bottom: 29px!important
  }
}
@media (max-width:768px) {
  .masthead-surface {
    background-image: url(../images/header-bg-mobile.png?v=eea26b76);
    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)
  }
  .masthead-surface .page-header-background-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--banner-drop) * -1);
    padding: 0 16px;
    gap: 4px
  }
  .main-topbar-fill-title {
    font-size: 20px!important;
    margin-bottom: 4px
  }
  .header-background-deposit {
    font-size: 66px!important;
    line-height: 1.1
  }
  .masthead-background-promo {
    font-size: 24px!important;
    margin-bottom: 16px
  }
  .header-fill-bottom-inner {
    background: var(--hispin-alt-background);
    gap: 10px;
    padding: 8px 15px
  }
  .main-big-content {
    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
  }
}
.slots-selector {
  width: 100%;
  max-width: 1400px;
  margin: 24px auto;
  padding: 12px 0;
  background: var(--fill);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin
}
.slots-selector::-webkit-scrollbar {
  height: 4px
}
.slots-selector::-webkit-scrollbar-thumb {
  background: var(--theme-edge);
  border-radius: 2px
}
.games-filter-bar-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  white-space: nowrap;
  width: max-content
}
.site-games-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--hispin-alt-background,#151c35);
  border: 1px solid var(--theme-edge);
  color: var(--copy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: background .2s,border-color .2s,color .2s,transform .15s;
  flex: 0 0 auto
}
.site-games-filter-tag:hover {
  background: var(--ui-card-box-fill,var(--hispin-alt-background));
  border-color: var(--theme-accent-primary);
  color: var(--copy)
}
.site-games-filter-tag.active {
  background: var(--theme-accent-primary);
  border-color: var(--theme-accent-primary);
  color: var(--ui-cta-copy,#fff)
}
.game-filter-bar-icon-mark {
  width: 20px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85
}
.site-games-filter-tag:hover .game-filter-bar-icon-mark {
  opacity: 1
}
@media (max-width:768px) {
  .games-filter-bar-strip {
    gap: 6px;
    padding: 0 12px
  }
  .site-games-filter-tag {
    padding: 10px 14px;
    font-size: 13px
  }
}
.site-primary-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.inner-area {
  font-size: 15px;
  line-height: 1.8;
  color: var(--copy-faded)
}
.inner-area p {
  margin-bottom: 1rem
}
.inner-area strong {
  color: var(--copy)
}
.inner-area a:not(.primary-btn):not(.app-banner-call-to-action):not([class*="-button"]) {
  color: var(--theme-accent-primary);
  text-decoration: underline
}
.inner-area a:not(.primary-btn):not(.app-banner-call-to-action):not([class*="-button"]):hover {
  color: var(--ui-accent)
}
@media (max-width:768px) {
  .site-primary-area {
    padding: 5rem 15px 30px
  }
  .inner-area {
    font-size: 14px
  }
  .app-promo-banner-holder,
  .site-primary-area > .app-promo-banner-holder {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .main-mobile-banner img,
  .site-application-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.perks-shell {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1400px
}
.main-perk-tile {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  background-color: var(--ui-card-box-fill,var(--hispin-alt-background));
  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
}
.perks-shell .main-perk-tile h3 {
  text-transform: none;
  border: none;
  padding: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff;
  letter-spacing: .2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  text-align: left;
  width: auto
}
.fcdl-payouts-grid {
  background-image: url(../images/fast-pay.png?v=7710e643)
}
.site-cashback {
  background-image: url(../images/cashback.png?v=bd76098e)
}
.main-vip {
  background-image: url(../images/vip-level.png?v=4bff1963)
}
.site-slots {
  background-image: url(../images/games.png?v=78ad393f)
}
.missions-wrapper {
  background-image: url(../images/feature-missions.png?v=280dffa4)
}
@media (max-width:1024px) {
  .perks-shell {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .perks-shell {
    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-shell::-webkit-scrollbar {
    height: 4px
  }
  .perks-shell::-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
  }
  .perks-shell .main-perk-tile h3 {
    font-size: 12px
  }
}
.region-service {
  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(--hispin-alt-background);
  border-radius: 8px;
  padding: 18px;
  max-width: 320px
}
.title-service {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}
.title-service img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.heading-care-label {
  font-weight: 700;
  font-size: 16px
}
.section-service p {
  color: var(--copy-faded);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .region-service {
    flex-direction: column;
    padding: 0 16px
  }
}
.app-promo-banner-holder {
  margin: 32px auto;
  max-width: 800px
}
.site-application-banner {
  display: flex;
  align-items: stretch;
  background: var(--ui-card-box-fill,var(--hispin-alt-background));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--theme-edge);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.app-banner-main {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.app-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--theme-edge);
  background: var(--hispin-alt-background);
  align-self: flex-start
}
.app-promo-banner-caption-image {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.app-promo-banner-text-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.app-banner-caption-heading {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--copy);
  letter-spacing: .2px
}
.app-promo-banner-text-rate-row {
  display: flex;
  gap: 1px
}
.app-promo-banner-text-rate-row img {
  width: 12px;
  height: 12px
}
.app-promo-banner-text-rate-row .star-half-wrap {
  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-headline {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--copy);
  font-family: var(--heading-font);
  margin: 0
}
.mobile-banner-description {
  color: var(--copy-faded);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.app-promo-banner-button-holder-grid {
  margin-top: 4px
}
.app-promo-banner-button-holder-grid .primary-btn {
  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
}
.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
}
.main-mobile-banner {
  display: none
}
.main-mobile-banner img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .site-application-banner {
    flex-direction: column;
    min-height: unset
  }
  .app-banner-image-holder-inner {
    display: none
  }
  .main-mobile-banner {
    display: block;
    padding: 0;
    line-height: 0
  }
  .main-mobile-banner img {
    max-width: 100%;
    width: 100%;
    border-radius: 0
  }
  .app-banner-main {
    padding: 16px 20px 24px;
    gap: 12px
  }
  .app-banner-main .app-banner-tag {
    margin-top: -2px
  }
  .app-banner-headline {
    font-size: 20px
  }
  .app-promo-banner-button-holder-grid .primary-btn {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.primary-btn {
  font-size: 18px;
  font-weight: 700;
  background: var(--theme-accent-primary);
  color: var(--ui-cta-copy,#fff);
  padding: 10px 56px;
  border-radius: 30px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none;
  transition: filter .2s
}
.primary-btn:hover {
  filter: brightness(1.15);
  color: var(--ui-cta-copy,#fff)
}
.site-updated-date {
  background: var(--hispin-alt-background);
  margin: 30px auto;
  border-radius: 10px;
  border-left: 5px solid var(--theme-accent-primary);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  color: var(--copy);
  max-width: 1400px
}
@media (max-width:768px) {
  .site-updated-date {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-footer-section.page-footer {
  background: var(--ui-colophon-bg,var(--hispin-alt-background,#060e2a));
  color: var(--theme-text-page-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-footer-section.page-footer .colophon-lower,
.site-footer-section.page-footer .page-footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.site-footer-section.page-footer .page-footer-top {
  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: 36px
}
.site-footer-section.page-footer .colophon-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.site-footer-section.page-footer .site-footer-logo-wrapper {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.site-footer-section.page-footer .site-footer-social-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-footer-section.page-footer .main-site-footer-socials {
  display: flex;
  gap: 4px
}
.site-footer-section.page-footer .footer-social-links {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--ui-site-footer-social-fill,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-footer-section.page-footer .footer-social-links:hover {
  background: var(--ui-accent,#5a6178)
}
.site-footer-section.page-footer .footer-social-links img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
.site-footer-section.page-footer .footer-brand-title-box {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 8px
}
.site-footer-section.page-footer .page-footer-navbar-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.site-footer-section.page-footer .page-footer-navbar-area a {
  color: var(--page-footer-anchor,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-footer-section.page-footer .page-footer-navbar-area a:hover {
  color: var(--theme-text-page-footer,#fff)
}
.site-footer-section.page-footer .main-site-footer-help {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-footer-section.page-footer .main-site-footer-help .site-footer-assist-name {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-footer-section.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-footer-section.page-footer .colophon-email {
  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-footer-section.page-footer .colophon-email img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-footer-section.page-footer .site-footer-rule-inner {
  height: 0;
  background: 0 0;
  margin: 0
}
.site-footer-section.page-footer .colophon-lower {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "license  right" "copyright right";
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 36px
}
.site-footer-section.page-footer .site-footer-licence {
  grid-area: license;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-legal-page-footer,#869dee);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}
.site-footer-section.page-footer .site-footer-legal {
  grid-area: copyright;
  color: var(--theme-text-page-footer,#a2a5af);
  font-size: 12px;
  font-weight: 400;
  line-height: 22.29px;
  margin: 0;
  max-width: 720px
}
.site-footer-section.page-footer .site-page-footer-lower-right-side {
  grid-area: right;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 16px
}
.site-footer-section.page-footer .site-footer-licence .site-footer-caret {
  width: 12px;
  height: 12px
}
.site-footer-section.page-footer .footer-secure-tag-wrapper {
  height: 48px;
  width: auto;
  max-width: none;
  object-fit: contain
}
.site-footer-section.page-footer .colophon-locale-container {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--ui-site-footer-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-footer-section.page-footer .colophon-locale-container .site-footer-caret {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
@media (max-width:960px) {
  .site-footer-section.page-footer .page-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}
@media (max-width:600px) {
  .site-footer-section.page-footer .page-footer-top {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .site-footer-section.page-footer .site-footer-logo-wrapper {
    object-position: center
  }
  .site-footer-section.page-footer .colophon-lower {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
    grid-template-areas: "license" "copyright" "right";
    grid-template-columns: 1fr;
    row-gap: 12px
  }
  .site-footer-section.page-footer .site-footer-rule-inner {
    margin: 0
  }
  .site-footer-section.page-footer .colophon-brand,
  .site-footer-section.page-footer .colophon-lower,
  .site-footer-section.page-footer .main-site-footer-help,
  .site-footer-section.page-footer .page-footer-top {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-footer-section.page-footer .main-site-footer-socials,
  .site-footer-section.page-footer .site-page-footer-lower-right-side {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-footer-section.page-footer .page-footer-navbar-area {
    align-items: center
  }
  .site-footer-section.page-footer .colophon-email {
    justify-content: center
  }
  .site-footer-section.page-footer .footer-secure-tag-wrapper {
    height: 36px
  }
  .site-footer-section.page-footer .site-page-footer-lower-right-side {
    align-self: start
  }
}
.site-footer-section .page-footer-navbar-area:not(:has(a)) {
  display: none
}
.site-footer-section .colophon-navigation-accent-primary-section,
.site-footer-section .site-footer-menu-legal-block {
  text-align: left
}
.site-footer-section.page-footer .page-footer-navbar-area:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-footer-section.page-footer .page-footer-top:has(.colophon-navigation-accent-primary-section a):not(:has(.site-footer-menu-legal-block a)),
  .site-footer-section.page-footer .page-footer-top:not(:has(.colophon-navigation-accent-primary-section a)):has(.site-footer-menu-legal-block a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .site-footer-section.page-footer .page-footer-top:not(:has(.page-footer-navbar-area a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-area {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-main-box {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-main-box .site-primary-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px
}
.perks-shell,
.site-application-banner {
  margin-left: auto;
  margin-right: auto
}
.site-footer-section[class] {
  padding-left: var(--ui-aside-width,0)
}
.site-footer-section[class] .colophon-lower,
.site-footer-section[class] .page-footer-top {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-footer-section[class] {
    padding-left: 0
  }
}
.button-center-wrap {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.button-center-wrap .primary-btn,
.button-center-wrap a.primary-btn {
  display: inline-block
}
@media (max-width:768px) {
  .button-center-wrap {
    display: block;
    margin: 30px auto
  }
  .inner-area .table-scroll > table,
  .legal-content-body .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.primary-btn.app-banner-call-to-action {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.faqs-heading,
.perks-shell h2 {
  font-family: var(--heading-font);
  color: var(--copy);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.perks-shell .main-perk-tile {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background-size: contain;
  background-position: center 40px
}
.perks-shell .main-perk-tile h3 {
  margin: 0;
  font-size: 14px
}
.inner-area li {
  padding: .3rem 0;
  line-height: 1.7
}
.inner-area table {
  font-size: .92rem
}
.inner-area table th {
  background: var(--theme-accent-primary);
  color: var(--ui-cta-copy,#fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600
}
.inner-area table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.inner-area table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.site-layout-area > .widget-zone.sub-box {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--ui-aside-width,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-area > .site-main-box {
  margin-left: var(--ui-aside-width,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-main-box .site-primary-area {
    padding-left: 20px
  }
  .site-layout-area > .widget-zone.sub-box {
    max-width: var(--ui-aside-width,80px)
  }
}
@media (max-width:992px) {
  .site-layout-area > .widget-zone.sub-box {
    display: none
  }
  .site-layout-area > .site-main-box {
    margin-left: 0
  }
}
.masthead-surface {
  position: relative;
  z-index: 1
}
.page-header-background-main {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
.side-rail-icon-mark-cell img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.side-rail-icon-mark-cell.side-rail-symbol-lg img {
  object-fit: contain;
  opacity: 1;
  width: 48px;
  height: 48px
}
.toggle-holder-block img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.masthead-search img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.signup-offer img {
  width: 12px;
  height: 12px;
  object-fit: contain
}
.main-hamburger-cta-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.site-games-filter-tag,
.site-games-filter-tag:hover,
.site-games-filter-tag:visited,
.slots-selector a {
  text-decoration: none!important
}
.main-legal-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--copy);
  line-height: 1.15;
  letter-spacing: -.02em
}
.legal-content-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--copy-faded)
}
.legal-content-body p {
  margin-bottom: 1.1rem
}
.legal-content-body strong {
  color: var(--copy)
}
.inner-area li,
.legal-content-body li {
  color: var(--copy-faded)
}
.inner-area li strong,
.legal-content-body li strong {
  color: var(--copy-faded);
  font-weight: 700
}
.legal-content-body a {
  color: var(--theme-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.legal-content-body a:hover {
  color: var(--hover-main,var(--ui-accent))
}
.legal-content-body article em {
  color: var(--copy-faded);
  font-style: italic
}
img {
  max-width: 100%;
  height: auto
}
.inner-img-block {
  max-width: 24%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain
}
.content-body-img-right {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.inner-area h2,
.inner-area h3,
.inner-area table {
  clear: both
}
.inner-clear-area {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .main-legal-title {
    font-size: 1.6rem
  }
  .legal-content-body h1 {
    font-size: 1.5rem
  }
  .legal-content-body h2 {
    font-size: 1.2rem
  }
  .content-body-img-right,
  .inner-img-block {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    max-height: none;
    height: auto;
    margin: 1rem auto
  }
}
.faq-ask,
.faqs-heading,
.inner-area h1,
.inner-area h2,
.inner-area h3,
.legal-content-body h1,
.legal-content-body h2,
.legal-content-body h3 {
  font-family: var(--heading-font);
  color: var(--copy);
  text-decoration: none;
  border: none
}
.inner-area h1,
.legal-content-body h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.faqs-heading,
.inner-area h2,
.legal-content-body h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.faq-ask,
.inner-area h3,
.legal-content-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.inner-area ul,
.legal-content-body ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.inner-area ul li,
.legal-content-body ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.6
}
.inner-area ul li::before,
.legal-content-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-accent-primary)
}
.inner-area ol,
.legal-content-body ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.inner-area ol li,
.legal-content-body ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.inner-area ol li::before,
.legal-content-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--theme-accent-primary);
  font-weight: 600
}
.inner-area table,
.legal-content-body table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ui-card-box-fill,rgba(255,255,255,.03));
  border: 1px solid var(--theme-edge,rgba(255,255,255,.08));
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
  margin: 1.5rem 0;
  color: var(--copy-faded,#c9ccd6);
  font-family: var(--content-typeface, 'Montserrat', system-ui, sans-serif)
}
.inner-area table thead tr:first-child th:first-child,
.legal-content-body table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.inner-area table thead tr:first-child th:last-child,
.legal-content-body table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.inner-area table tbody tr:last-child td:first-child,
.legal-content-body table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.inner-area table tbody tr:last-child td:last-child,
.legal-content-body table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.inner-area table thead tr,
.legal-content-body table thead tr {
  background: var(--hispin-alt-background,rgba(255,255,255,.06))
}
.inner-area table thead th,
.legal-content-body table thead th {
  font-weight: 700;
  color: var(--copy,#fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--theme-edge,rgba(255,255,255,.12));
  font-size: .875rem;
  background: 0 0;
  letter-spacing: .2px
}
.inner-area table thead th:last-child,
.legal-content-body table thead th:last-child {
  border-right: none
}
.inner-area table tbody tr:nth-child(odd),
.legal-content-body table tbody tr:nth-child(odd) {
  background: 0 0
}
.inner-area table tbody tr:nth-child(2n),
.legal-content-body table tbody tr:nth-child(2n) {
  background: var(--hispin-alt-background,rgba(255,255,255,.03))
}
.inner-area table tbody td,
.legal-content-body table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--theme-edge,rgba(255,255,255,.06));
  border-bottom: 1px solid var(--theme-edge,rgba(255,255,255,.06));
  color: var(--copy-faded,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.inner-area table tbody td:last-child,
.legal-content-body table tbody td:last-child {
  border-right: none
}
.inner-area table tbody tr:last-child td,
.legal-content-body table tbody tr:last-child td {
  border-bottom: none
}
.questions-block {
  background: var(--hispin-alt-background,rgba(255,255,255,.02));
  border: 1px solid var(--theme-edge,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 28px 32px 32px;
  margin: 30px auto;
  font-family: Montserrat,system-ui,sans-serif
}
.questions-block .faqs-heading {
  color: var(--copy,#fff);
  font-family: var(--heading-font, 'Montserrat', system-ui, sans-serif);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-top: 4px
}
.questions-block .questions-panel-inner {
  background: var(--ui-card-box-fill,rgba(255,255,255,.04));
  border: 1px solid var(--theme-edge,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 14px;
  color: var(--copy-faded,#b1b4bc)
}
.questions-block .questions-panel-inner:last-child {
  margin-bottom: 0
}
.questions-block .faq-ask {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--copy,#fff);
  margin: 0 0 12px
}
.questions-block .main-questions-response {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--copy-faded,#b1b4bc)
}
.questions-block .main-questions-response p {
  margin: 0 0 8px
}
.questions-block .main-questions-response p:last-child {
  margin-bottom: 0
}
.questions-block .main-questions-response b,
.questions-block .main-questions-response strong {
  font-weight: 700;
  color: var(--copy,#fff)
}
@media (max-width:600px) {
  .inner-area h1,
  .legal-content-body h1 {
    font-size: 2rem
  }
  .faqs-heading,
  .inner-area h2,
  .legal-content-body h2 {
    font-size: 1.6rem
  }
  .faq-ask,
  .inner-area h3,
  .legal-content-body h3 {
    font-size: 1.2rem
  }
  .inner-area table tbody td,
  .inner-area table thead th,
  .legal-content-body table tbody td,
  .legal-content-body table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .questions-block {
    padding: 24px 20px 28px;
    margin: 24px 12px
  }
  .questions-block .faqs-heading {
    letter-spacing: .3px;
    margin: 0 0 24px;
    padding-top: 4px
  }
  .questions-block .questions-panel-inner {
    padding: 20px 18px;
    margin-bottom: 12px
  }
  .questions-block .faq-ask {
    line-height: 1.35
  }
}
.inner-area h2 {
  border: none;
  border-bottom: none
}
.inner-area ol li,
.inner-area ul li,
.legal-content-body ol li,
.legal-content-body ul li {
  border-bottom: none
}
.inner-area,
.legal-content-body {
  max-width: 1400px;
  margin: 0 auto
}
[data-slot=content-image-3]:not(a):not(button) {
  max-width: 20%!important;
  max-height: none!important
}
[data-slot=app-content-image-1]:not(a):not(button),
[data-slot=au-content-image-1]:not(a):not(button),
[data-slot=au-content-image-2]:not(a):not(button) {
  max-width: 45%!important;
  max-height: none!important
}
@media (max-width:768px) {
  [data-slot=app-content-image-1]:not(a):not(button),
  [data-slot=au-content-image-1]:not(a):not(button),
  [data-slot=au-content-image-2]:not(a):not(button),
  [data-slot=content-image-3]:not(a):not(button) {
    max-width: 100%!important
  }
}