:root {
  --fluid-size-caption: 18px;
  --fluid-size-subtitle-sm: 16px;
  --fluid-size-subtitle: 28px;
  --fluid-size-title-sm: 36px;
  --fluid-size-title: 48px;

  --secondary-1: #00458F;
  --secondary-2: #5B76FF;
  --secondary-3: #53C7A6;
  --secondary-4: #ED475B;
  --secondary-5: #FB7E30;
  --secondary-6: #550F93;
  --secondary-7: #F9B223;
}

html {height: 100%;}

body {
  font-family: var(--fontFamilies-brand), sans-serif;
  text-rendering: optimizeLegibility;
  color: var(--palette-on-surface-subtitle-emphasis);
  background-color: var(--palette-secondary_800);
  min-height: 100%;
  font-weight: 400;
}

body a {
  color: var(--palette-on-surface-subtitle-emphasis);
}

body a:hover {
  color: var(--palette-primary_500);
}

p, .BcnTypography-body1, .BcnTypography-body2, .BcnTypography-body3, .BcnTypography-body4 {
  color: var(--palette-on-background-medium-emphasis);
}

h1, .h1, h2, .h2, h3, .h3 {
  margin: 0;
  letter-spacing: 0;
  color: var(--palette-secondary_500);
}

h4, h5, h6 {
  color: var(--palette-on-background-high-emphasis);
}

.main {
  background-color: var(--palette-background);
  max-width: 1308px;
  margin: 0 auto;
  height: 100%;
  min-height: 100%;
  position: relative;
}

#terms ul {
  list-style-type: none; 
  text-align: left;
}

#terms a, .footer a {
  text-decoration: underline;
}

.footer a:hover, .footer a:active, .footer a:visited, .footer a:-webkit-any-link{
  color: inherit;
}

#terms a:hover, .footer a:hover {
  text-decoration: underline;
  color: var(--palette-secondary_500);
}


/* Header Style */
.header{
  background: linear-gradient(180deg, var(--palette-secondary_500) 0%, rgba(0, 96, 199, 0) 100%);
}
.header.header-variant {
  border-bottom: 1px solid var(--palette-secondary_900);
}
.header div {
  align-items: center;
}
.header.transparent{
  background-color: unset;
  position: absolute;
  z-index: 1;
}


/* Header - Links */
.header span.BcnTypography-button{
  color: var(--palette-on-secondary-high-emphasis);
  cursor: pointer;
}
/* Header - Logo */
.header .logo{
  height: 60px;
  padding: 8px;
}
@media (min-width: 732px) {
  .header .logo{
    height: 92px;
    padding: 8px;
  }
}



.bg {
  height: 100%;
}

a.full:hover, a.full:visited, a.full:link {
  text-decoration: none!important;
  color: inherit;
}

a.full {
  display: block;
  z-index: 0;
  height: 100%;
  width: 100%;
  text-decoration: none!important;
}


/* Label Design */
.label {
  color: var(--secondary-1);
  background: var(--palette-surface);
  width: fit-content;
  border-radius: 20px;
  padding: 8px 16px;
}
.label.block-color{
  color: var(--palette-on-secondary-high-emphasis);
  background: var(--secondary-1);
}

.label.type-poker{
  color: var(--secondary-2);
  background: var(--palette-surface);
}
.label.type-poker.block-color{
  color: var(--palette-on-secondary-high-emphasis);
  background: var(--secondary-2);
}

.label.type-casino{
  color: var(--secondary-3);
  background: var(--palette-surface);
}
.label.type-casino.block-color{
  color: var(--palette-on-secondary-high-emphasis);
  background: var(--secondary-3);
}

.label.type-slots{
  color: var(--secondary-4);
  background: var(--palette-surface);
}
.label.type-slots.block-color{
  color: var(--palette-on-secondary-high-emphasis);
  background: var(--secondary-4);
}

.label.type-bingo{
  color: var(--secondary-7);
  background: var(--palette-surface);
}
.label.type-bingo.block-color{
  color: var(--palette-on-secondary-high-emphasis);
  background: var(--secondary-7);
}

.label.type-generic{
  color: var(--secondary-5);
  background: var(--palette-surface);
}
.label.type-generic.block-color{
  color: var(--palette-on-secondary-high-emphasis);
  background: var(--secondary-5);
}

.label.type-games{
  color: var(--secondary-6);
  background: var(--palette-surface);
}
.label.type-games.block-color{
  color: var(--palette-on-secondary-high-emphasis);
  background: var(--secondary-6);
}

.fluid-type-subtitle-sm {
  font-family: var(--fontFamilies-brand), sans-serif;
  font-weight: 400;
  font-size: var(--fluid-size-subtitle-sm);
  line-height: 1.1;
}
@media (min-width: 600px) {
  .fluid-type-subtitle-sm {
    font-size: calc(var(--fluid-size-subtitle-sm) + (24 - 18) * ((100vw - 300px) / (1308 - 300)));
  }
}
@media (min-width: 972px) {
  .fluid-type-subtitle-sm {
    font-size: 18px;
  }
}

.fluid-type-subtitle {
  font-family: var(--fontFamilies-brand), sans-serif;
  font-weight: 400;
  font-size: var(--fluid-size-subtitle);
  line-height: 1.1;
}
@media (min-width: 600px) {
  .fluid-type-subtitle {
    font-size: calc(var(--fluid-size-subtitle) + (24 - 18) * ((100vw - 300px) / (1308 - 300)));
  }
}
@media (min-width: 1320px) {
  .fluid-type-subtitle {
    font-size: 34px;
  }
}

.fluid-type-title {
  font-size: var(--fluid-size-title);
  text-transform: uppercase;
  font-family: futura-pt, Arial, sans-serif;
  font-weight: 900;
  line-height: 0.85;
  margin-top: 0.1em;
}
@media (min-width: 600px) {
  .fluid-type-title {
    font-size: calc(var(--fluid-size-title) + (65 - 38) * ((100vw - 300px) / (1308 - 300)));
  }
}
@media (min-width: 1320px) {
  .fluid-type-title {
    font-size: 74px;
  }
}


.fluid-type-title-sm {
  font-size: var(--fluid-size-title-sm);
  text-transform: uppercase;
  font-family: var(--fontFamilies-brand), sans-serif;
  font-weight: 900;
  line-height: 0.85;
  margin-top: 0.1em;
}
@media (min-width: 600px) {
  .fluid-type-title-sm {
    font-size: calc(var(--fluid-size-title-sm) + (65 - 38) * ((100vw - 300px) / (1308 - 300)));
  }
}
@media (min-width: 1320px) {
  .fluid-type-title-sm {
    font-size: 64px;
  }
}


/* LOGIN banner content */
.login {
  color: var(--palette-on-primary-high-emphasis);
  margin: 0.75em 0 0.75em 0;
  padding: 0.5em;
}

.login a, .login a:visited, .login a:hover, .login a:active{
  text-decoration: underline;
  font-weight: 400;
  color: var(--palette-on-primary-high-emphasis);
}

@media (min-width: 972px){
  .login {
    font-size: 16px;
  }
}
/* LOGIN banner content END */

.logo img {
  height: 42px;
}

@media (min-width: 444px) {
  .logo img {
    height: 42px;
  }
}

@media (min-width: 636px) {
  .logo img{
    height: 42px;
  }
}

@media (min-width: 972px) {
  .logo img{
    height: 65px;
  }
}

.logo-center .logo {
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  padding-left: 0;
}

.banner {
  overflow: hidden;
  max-width: 1308px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 360px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 444px) {
  .banner {
    height: 380px;
  }
}

@media (min-width: 636px) {
  .banner {
    height: 400px;
  }
}

@media (min-width: 732px) {
  .banner {
    height: 424px;
  }
}

@media (min-width: 972px) {
  .banner {
    height: 704px;
  }
}

.banner-content {
  top: 10px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 80vw;
  width: 80vw;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px -4px 12px rgba(0, 0, 0, 0.35));
}

@media (min-width: 600px) {
  .banner-content {
    height: 40vw;
    width: 40vw;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
  }
}
@media (min-width: 1320px) {
  .banner-content {
    height: 520px;
    width: 520px;
    top: 60px;
  }
}

.banner-copy {
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  color: #fff;
}


.cta-fixed-outer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  padding: 30px 0px 30px 0px;
  z-index: 999999;
}

.steps {
  margin: 0 auto;
  overflow: hidden;
  max-width: 1308px;
  min-width: 100%;
  background-color: var(--palette-secondary_500);
}
.steps .step-copy {
  display: inline-block;
  text-align: left;
  line-height: 1;
  vertical-align: top;
  margin-left: 8px;
  margin-top: 2px;
  color: var(--palette-secondary_500);
}
.steps-list{
  display: table-row;
  height: 60px;
  vertical-align: middle;
  margin: 0 auto;
}

@media (min-width: 444px) {
  .steps .steps-list{
    display: table-cell;
  }
  .steps tr.steps-list:nth-child(1) {
    border-right: 2px solid var(--palette-secondary_500);
  }
  .steps tr.steps-list:nth-child(2) {
    border-right: 2px solid var(--palette-secondary_500);
  }
}

@media (max-width: 444px) {
  .steps {
    margin-top: -2px;
  }
}

.steps table{
  border-collapse: separate;
  border-spacing: 0 8px;
  width: 100%;
  background-color: var(--palette-primary_500);
}

.usp {
  min-height: 62px;
  display: flex;
  background: #00458F;
  align-items: center;
  justify-content: center;
}

.usp *{
  color: var(--palette-on-primary-high-emphasis);
}

.usp.usp-center-align {
  justify-content: center;
}

.usp.usp-left-align{
  justify-content: flex-start;
}

.usp-icon{
  width: 22px;
  height: 22px;
}
.usp-icon.usp-size-large{
  width: 80px;
  height: 80px;
}


@media (max-width: 444px) {
  .usp-list td:first-child, .steps-list td:first-child{
    min-width: 20%;
    width: 20%;
  }
  .usp-list td:nth-child(2), .steps-list td:nth-child(2){
    min-width: 80%;
    width: 80%;
  }
  .steps-list img{
    margin-left: -10px;
    padding-right: 10px;
  }
}

.usp-list .steps-list{
  height: 56px;
  background-color: var(--palette-on-primary-high-emphasis);
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  padding: 10px;
}

@media (min-width: 444px) {
  .usp-list .steps-list{
    height: 66px;
    border-bottom: 8px solid var(--palette-secondary_500);
  }
}

.usp-list .step-copy p{
  font-size: 18px;
  font-family: var(--fontFamilies-brand), sans-serif;
  font-weight: 900;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: var(--palette-secondary_500);
}


@media (min-width: 444px) {
  .step-copy p{
    margin: 0 0 0;
  }

  .steps{
    display: block;
  }

  .steps-list img{
    margin-left: 10px;
  }

  .steps .steps-list{
    width: 32%;
  }

  .usp-list .steps-list {
    width: 33.34%;
    display: table-cell;
  }

  .steps table{
    border-spacing: 8px;
  }
}

@media (min-width: 732px) {

  .usp-list .step-copy p{
    font-size: 20px;
  }
}

@media (min-width: 972px){
  .steps table{
    border-spacing: 11px;
  }
}

.usp-bg{
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.usp-list table{
  border-spacing: 2px 2px;
  margin: 0 auto;
  width: -webkit-fill-available;
  /* margin: 0 6px 9px 6px; */
}

@media (max-width: 444px){
  .usp-list table{
    padding: 0 6px 9px 6px;
    background-color: var(--palette-secondary_500);
  }  
}


@media (min-width: 444px){
  .usp-list table {
    border-spacing: 0 0;
  }
}

.top-legal {
  width: 100%;
  display: block;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  padding: 10px 10px;
  background: rgba(0, 0, 0, .50);
  font-weight: 400;
  position: absolute;
  bottom: 0;
  z-index: 100;
}

@media (max-width: 444px){
  .top-legal {
    line-height: 1;
  }
}

.top-legal a, .top-legal a:hover, .top-legal a:visited, .top-legal p {
  color: var(--palette-grey_50);
}
.top-legal a, .top-legal a:hover, .top-legal a:visited {
  text-decoration: underline;
}

.legal-wrapper {
  width: 100%;
  display: block;
  top: 0px;
}

.legal p {
  color: var(--palette-primary_500);
}

.footer {
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  width: 100%;
  font-size: 12px;
  padding: 15px;
  background-color: #f7f7f7;
}

@media (min-width: 636px) {
  .footer {
    padding: 10px 80px;
  }
}

.footer-container {
  background: transparent;
  clear: both;
  font-size: 12px;
}

.row.icons {
  padding: 10px 0;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  margin: 0 auto;
}

.row.icons img {
  margin: 0px 10px;
  height: 60px;
}

.row.logos {
  padding: 10px 0;
  margin: 0 auto;
}

.row.logos div {
  margin: 0;
  padding: 0;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
}

.row.logos div img {
  margin: 4px 8px;
}

.row.logos div a,
.row.logos div img {
  vertical-align: middle;
}

.title {
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  margin: 0 auto;
}

h3 {
  font-size: inherit;
}

h3.title a {
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: underline;
}

h3.title a:hover {
  text-decoration: none;
}

.legal {
  padding: 0 20px;
}

.legal div {
  border: none;
  padding: 10px;
}

.legal p {
  margin: 0;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  font-size: 12px;
  line-height: 1.2;
}

.showhide {
  display: none;
  height: 30px;
  width: auto;
}

@media (max-width: 444px) {
  .row.logos div img {
    margin: 10px 13px;
  }

  .row.icons img {
    height: 50px;
    margin: 0;
  }
}

.footer-links a {
  margin: 0px 14px;
}

.legal .terms-title{
  font-size: 11px;
}

.footer-links a{
  font-size: 14px;
}

.col-xs-6 {
  padding-left: 4px;
  padding-right: 4px; 
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

.fluid-grid-img img {
  width: 100%;
  height: auto;
  max-width: none;
}
.fluid-grid-img img {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.fluid-grid-img div{
  position: relative;
}

.fluid-grid-img img.sash {
  position: absolute;
  padding: 8px;
  right: 8px;
  width: 100px;
  height: auto;
  z-index: 1;
}
@media screen and (min-width: 600px) and (max-width: 972px) {
  .fluid-grid-img img.sash {
    width: 8vw;
  }
}

/* Useful classes (POSITION) */

.flex-position-left{
  display: inline-flex;
  justify-content: flex-start;
}
.flex-position-center{
  display: inline-flex;
  justify-content: center;
}
.flex-position-right{
  display: inline-flex;
  justify-content: flex-end;
}

@media screen and (max-width: 600px) {
  .flex-position-left-mobile{
    justify-content: flex-start;
  }
  .flex-position-center-mobile{
    justify-content: center;
  }
  .flex-position-right-mobile{
    justify-content: flex-end;
  }
}

/* Useful classes (DISPLAY) */

@media screen and (max-width: 600px) {
  .hide-on-mobile{
    display: none;
  }
}

/* Useful classes (PADDING) */

.padding-s{
  padding: 4px;
}
.padding-m{
  padding: 8px;
}
.padding-l{
  padding: 16px;
}
.padding-xl{
  padding: 24px;
}
.padding-xxl{
  padding: 32px;
}

/* Useful classes (MARGIN) */

.margin-s{
  padding: 4px;
}
.margin-m{
  padding: 8px;
}
.margin-l{
  padding: 16px;
}
.margin-xl{
  padding: 24px;
}
.margin-xxl{
  padding: 32px;
}

/* Useful classes (FILL URL) */

.fill-url {
  position: absolute; min-width: -webkit-fill-available; min-height: -webkit-fill-available;
}

/* Beacon FIXES */

.BcnButton-root {
  width: fit-content;
}

.BcnButton-root.BcnButton-sizeLarge{
  font-size: 22px !important;
}
.BcnButton-root.BcnButton-containedSizeLarge {
  padding: 8px 40px !important;
}

@media screen and (min-width: 972px) {
  .BcnButton-root.BcnButton-sizeLarge {
    transform: scale(1.2);
  }
}

/* Splide Carousel CSS Theme */