h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Adjust the values as needed */
  color: #fff;
  /* Ensure the text color contrasts well with the banner */
  font-size: 42px;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.game-thumb {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}
.game-thumb-ratio-wrapper {
  height: 0;
  padding-top: 120.1%;
}
.game-thumb-container {
  background: #7e7e7e;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  /* stylelint-disable-next-line property-no-unknown */
}

.game-thumb-container.game-thumb-default {
  background: #f3f3f3;
}
.game-thumb-container.game-thumb-default .game-thumb-img {
  max-width: 8.5625rem;
  margin: 0 auto;
  display: flex;
  -o-object-fit: contain;
  object-fit: contain;
}
.game-thumb-container:not(.game-thumb-default)::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(84, 75, 201, 0) 64.58%,
    rgba(38, 59, 87, 1) 100%
  );
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.game-thumb-info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 0 0.625rem 0.5rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.game-thumb-tags {
  bottom: auto;
  left: auto;
  pointer-events: none;
  position: absolute;
  right: auto;
  top: 0;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.game-thumb-tags .game-thumb-tag {
  font-size: 0.625rem;
  font-weight: 500;
  color: #222;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  min-width: 2.8125rem;
  min-height: 1.125rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.game-thumb-jackpot {
  font-size: 0.875rem;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fcad6d;
  box-sizing: border-box;
  padding: 2% 10%;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
}
.game-thumb-name {
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  /* stylelint-disable property-no-vendor-prefix */
  /* stylelint-disable value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
  /* stylelint-disable property-no-vendor-prefix */
  /* stylelint-disable value-no-vendor-prefix */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: nowrap;
  display: inline-block;
}
.game-thumb-vendor {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #89f8ff;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  text-overflow: ellipsis;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
}
.game-thumb-img {
  display: block;
  /* Ensures it behaves like a block element */
  width: 100%;
  /* Makes sure it takes the full width of its parent */
  height: 100%;
  /* Allows height to adjust proportionally */
  -o-object-fit: cover;
  /* For Opera */
  object-fit: cover;
  /* This scales the image while maintaining aspect ratio */
  transition: all 0.3s ease;
  /* Transition effects */
}
.game-thumb-img img {
  display: block;
  /* Ensures no extra space around the image */
  width: 100%;
  /* Ensures the image takes full width of the container */
  height: 100%;
  /* Ensures the image takes full height of the container */
  object-fit: cover;
  /* Keeps the aspect ratio intact while covering the container */
  transition: all 0.3s ease;
  /* Smooth transition */
}
.game-thumb-play {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.game-thumb-play svg {
  fill: #fff;
  height: 30%;
  width: 30%;
}
.desktop .game-thumb-play:hover {
  opacity: 1;
}
.game-skeleton {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
}
@keyframes wave-animation {
  100% {
    transform: translateX(100%);
  }
}
.game-skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(239, 239, 239, 0) 0,
    rgba(239, 239, 239, 0.2) 20%,
    rgba(239, 239, 239, 0.5) 60%,
    rgba(239, 239, 239, 0)
  );
  animation: wave-animation 2s infinite;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinnerContainer,
.spinnerContainerV2 {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.spinnerContainer .loadingSpinner,
.spinnerContainerV2 .loadingSpinner {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  animation: 1.5s linear infinite spinner;
  animation-play-state: inherit;
  will-change: transform;
}
.spinnerContainer .loadingSpinner {
  border: solid 5px #cfd0d1;
  border-bottom-color: #1c87c9;
}
.spinnerContainerV2 .loadingSpinner {
  border: solid 2px transparent;
  border-bottom-color: #544bc9;
  border-left-color: #544bc9;
  border-right-color: #544bc9;
}
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loader.loader-absolute {
  position: absolute;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navbarheight: 5rem;
  tabbarheight: 3.5rem;
  languagebarheight: 3.5rem;
  basefontsize: 16px;
  sidebarwidth-desktop: 23.4375rem;
  sidebarwidth-mobile: 100%;
  lobbycategorymenuheight-desktop: 4.5rem;
  lobbycategorymenuheight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.tabBar {
  font-size: 0.625rem;
  font-weight: 400;
  height: 100%;
  align-items: center;
  display: flex;
  flex-basis: 100%;
  justify-content: center;
}
.tabBar .tabBarIcon {
  fill: #544bc9;
}
.tabBar .tabBarItem {
  position: relative;
  height: 100%;
  justify-content: center;
  overflow: hidden;
}
.tabBarItem {
  align-items: center;
  color: #515151;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  flex-basis: 20%;
  font-weight: 600;
}
.tabBarItem svg {
  fill: #515151;
  height: 1.5rem;
  width: 1.5rem;
}
.tabBarItem.selected {
  background-color: rgba(84, 75, 201, 0.1);
  border-radius: 0.75rem;
}
.tabBarItem .selectedCircle {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  bottom: -0.375rem;
  margin-top: 2.8125rem;
  position: absolute;
  background-color: #544bc9;
}
.tabBarItemTitle {
  color: #544bc9;
  line-height: 1.25rem;
}
@media (max-width: 850px) {
  .tabBarItemTitle {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}
.desktop .tabBarItem {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  overflow: visible;
}
.desktop .tabBarItem:first-of-type {
  margin-left: 2.5rem;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navbarheight: 5rem;
  tabbarheight: 3.5rem;
  languagebarheight: 3.5rem;
  basefontsize: 16px;
  sidebarwidth-desktop: 23.4375rem;
  sidebarwidth-mobile: 100%;
  lobbycategorymenuheight-desktop: 4.5rem;
  lobbycategorymenuheight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.navBar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.navBar .logoContainerWrapper {
  min-width: 16.8125rem;
  flex: 1;
}
.tabBarContainer {
  flex: 2;
}
.burgerMenu {
  display: none;
  cursor: pointer;
}
/* Burger menu bars */
.burgerMenu .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}
/* Mobile Menu */
.mobileMenu {
  display: none;
  flex-direction: column;
  background-color: red;
  padding: 20px;
}
.mobileMenu a {
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.hidden {
  display: none;
}
/* Media Queries for mobile */
@media screen and (max-width: 768px) {
  .tabBarContainer {
    display: none;
  }
  .burgerMenu {
    display: block;
  }
  .logoContainerWrapper {
    display: flex;
    justify-content: center;
  }
  .logoContainer img {
    max-width: 150px;
  }
}
.navBar .logoContainer {
  display: flex;
  height: 100%;
}
.navBar .logoContainer img {
  max-height: 5.625rem;
}
.navBar .tabBarItem {
  flex-grow: 1;
  flex-basis: auto;
  padding: 80px 20px;
}
.navBar .tabBarItemTitle {
  color: #fff;
}
.navBar .more {
  cursor: pointer;
  fill: #544bc9;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0.5rem;
  margin-left: 0.625rem;
}
@media (max-width: 850px) {
  .navBar {
    justify-content: center;
  }
}
.navBar .depositButton {
  padding: 0.5rem 1rem;
  height: 2.5rem;
  -webkit-font-smoothing: antialiased;
}
.navBar .depositIcon {
  width: 2.25rem;
  margin-left: 0.375rem;
  fill: #fff;
}
.navBar .depositButton.isGamePage .depositIcon {
  margin: 0;
}
.navBarButtonContainer {
  flex-grow: 1;
  text-align: right;
}
.navBarButtonContainer .loginButton {
  margin-right: 0.5rem;
  line-height: 1.125rem;
  color: #544bc9;
  font-size: 16px;
  font-weight: 600;
}
.navBarButtonContainer .signUpButton {
  padding: 0.5rem 1rem;
  font-size: 16px;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.footer {
  width: 100%;
  padding: 80px 150px;
  overflow: hidden;
  background-color: var(--header-color);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .footer {
    padding: 46px;
  }
}
.footerWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerSelector {
  color: white !important;
  border-radius: 12px !important;
  height: 56px;
  width: 240px;
  margin-bottom: 40px;
}
.footerSelector .MuiInputBase-input {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}
.footerSelector svg {
  fill: #ffffff;
}
.footerSelector fieldset {
  border-color: #ffffff;
}
.footerSelector:hover fieldset {
  border-color: #ffffff !important;
}
.footerLinks {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footerLinks .footerLinkItem {
  display: inline-flex;
  margin-right: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}
.footerLinks .footerLinkItem a {
  white-space: nowrap;
  color: var(--text-color);
}
.footerLinks .footerLinkItem:last-of-type {
  margin-right: 0;
}
.footerSocials {
  display: flex;
  margin-bottom: 40px;
}
.footerSocials .footerSocialItem {
  margin-right: 24px;
  cursor: pointer;
}
.footerSocials .footerSocialItem:last-of-type {
  margin-right: 0;
}
.footerProvider {
  display: flex;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footerProvider .footerProviderItem span {
  display: inline-flex;
  padding: 0 9px 30px;
  box-sizing: border-box;
}
.footerProvider .footerProviderItem img {
  width: 100%;
  height: 100%;
  max-width: 96px;
  max-height: 32px;
}
.footerRG {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}
.footerRG .footerRGItem {
  display: inline-flex;
}
.footerRGText {
  display: flex;
  margin-bottom: 40px;
  justify-content: center;
}
.footerRGText .footerRGTextItem {
  display: inline-flex;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.footerLogo {
  display: flex;
  margin-bottom: 0px;
  justify-content: center;
}
.footerLogo .footerLogoItem {
  display: inline-flex;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.footerLogo .footerLogoItem img {
  max-height: 6.25rem;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
/************ Utils ************/
@media (max-width: 849px) {
  .hidden-mobile {
    display: none;
  }
}
@media (min-width: 850px) {
  .hidden-desktop {
    display: none;
  }
}
/* *, *::before, *::after {
  box-sizing: border-box;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
*/
/* stylelint-disable selector-max-id */
/* stylelint-disable at-rule-no-vendor-prefix */
/* stylelint-disable property-no-vendor-prefix */
:root {
  --palette-text-primary: #222;
  --palette-custom-text-link: #544bc9;
  --vh: 100%;
}
@supports (padding-top: constant(safe-area-inset-top)) {
  :root {
    --safe-area-inset-top: constant(safe-area-inset-top);
    --safe-area-inset-right: constant(safe-area-inset-right);
    --safe-area-inset-bottom: constant(safe-area-inset-bottom);
    --safe-area-inset-left: constant(safe-area-inset-left);
  }
}
@supports (padding-top: env(safe-area-inset-top)) {
  :root {
    --safe-area-inset-top: env(safe-area-inset-top);
    --safe-area-inset-right: env(safe-area-inset-right);
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
    --safe-area-inset-left: env(safe-area-inset-left);
  }
}
@media (max-width: 850px) {
  ::-webkit-scrollbar {
    height: 0;
    width: 2px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 5px;
  }
}
/** Remove auto fill color */
.desktop body input:-webkit-autofill,
.mobile body input:-webkit-autofill,
.tablet body input:-webkit-autofill {
  -webkit-animation-fill-mode: both !important;
  -webkit-transition: background-color 9999s 0s linear;
  transition: background-color 9999s 0s linear;
  will-change: background-color;
}
a {
  color: var(--palette-custom-text-link);
  cursor: pointer;
  text-decoration: none;
}
html,
body {
  margin: 0;
}
html.ios {
  height: calc(var(--vh, 1vh) * 100);
  -webkit-text-size-adjust: 100%;
}
html.ios body {
  height: calc(var(--vh, 1vh) * 100);
  -webkit-text-size-adjust: 100%;
}
body {
  color: var(--palette-text-primary);
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}
.top-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 5rem;
  padding: 0 1rem;
  background-color: #190060;
  box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
@media (min-width: 1024px) {
  .top-nav {
    padding: 0 5rem;
  }
  .top-nav.side-menu-opened {
    padding-right: calc(5rem + 16px);
  }
}
@media (max-width: 850px) {
  .top-nav {
    height: 4.5rem;
  }
}
.mobile .content,
.tablet .content {
  padding-bottom: 3.5rem;
}
.mobile .bottom,
.tablet .bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3.5rem;
  box-sizing: content-box;
  background: #fff;
  padding-bottom: var(--safe-area-inset-bottom);
  box-shadow: 0 -0.0625rem 0.3125rem 0 rgba(0, 0, 0, 0.25);
  z-index: 100;
  transform: translate3d(0, 0, 0);
}
body .regily-module {
  background: rgba(0, 0, 0, 0.4);
}
.content-row {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
}
.mobile.ios .safeAreaDarken {
  background-color: #000;
}
.content {
  min-height: 100vh;
  overflow-x:hidden;
}
.MuiPopover-paper {
  outline: 0;
  position: absolute;
  max-width: calc(100% - 32px);
  min-width: 16px;
  max-height: calc(100% - 32px);
  min-height: 16px;
  overflow-x: hidden;
  overflow-y: auto;
}
.MuiMenu-paper {
  max-height: calc(100% - 96px);
  -webkit-overflow-scrolling: touch;
}
.MuiMenu-list {
  outline: 0;
}
.MuiSvgIcon-root {
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
  font-size: 1.5rem;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  flex-shrink: 0;
  user-select: none;
}
.MuiSvgIcon-colorPrimary {
  color: #3f51b5;
}
.MuiSvgIcon-colorSecondary {
  color: #f50057;
}
.MuiSvgIcon-colorAction {
  color: rgba(0, 0, 0, 0.54);
}
.MuiSvgIcon-colorError {
  color: #f44336;
}
.MuiSvgIcon-colorDisabled {
  color: rgba(0, 0, 0, 0.26);
}
.MuiSvgIcon-fontSizeInherit {
  font-size: inherit;
}
.MuiSvgIcon-fontSizeSmall {
  font-size: 1.25rem;
}
.MuiSvgIcon-fontSizeLarge {
  font-size: 2.1875rem;
}
@keyframes mui-auto-fill {
  /* Define your keyframes here */
}
@-webkit-keyframes mui-auto-fill {
  /* Define your keyframes here (same as above for compatibility) */
}
@keyframes mui-auto-fill-cancel {
  /* Define your keyframes here */
}

@-webkit-keyframes mui-auto-fill-cancel {
  /* Define your keyframes here (same as above for compatibility) */
}

.MuiInputBase-root {
  color: rgba(0, 0, 0, 0.87);
  cursor: text;
  display: inline-flex;
  position: relative;
  font-size: 1rem;
  box-sizing: border-box;
  align-items: center;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.1876em;
  letter-spacing: 0.00938em;
}
.MuiInputBase-root.Mui-disabled {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}
.MuiInputBase-multiline {
  padding: 6px 0 7px;
}
.MuiInputBase-multiline.MuiInputBase-marginDense {
  padding-top: 3px;
}
.MuiInputBase-fullWidth {
  width: 100%;
}
.MuiInputBase-input {
  font: inherit;
  color: currentColor;
  width: 100%;
  border: 0;
  height: 1.1876em;
  margin: 0;
  display: block;
  padding: 6px 0 7px;
  min-width: 0;
  background: none;
  box-sizing: content-box;
  animation-name: mui-auto-fill-cancel;
  letter-spacing: inherit;
  animation-duration: 10ms;
  -webkit-tap-highlight-color: transparent;
}
.MuiInputBase-input::-webkit-input-placeholder {
  color: currentColor;
  opacity: 0.42;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiInputBase-input::-moz-placeholder {
  color: currentColor;
  opacity: 0.42;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiInputBase-input:-ms-input-placeholder {
  color: currentColor;
  opacity: 0.42;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiInputBase-input::-ms-input-placeholder {
  color: currentColor;
  opacity: 0.42;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiInputBase-input:focus {
  outline: 0;
}
.MuiInputBase-input:invalid {
  box-shadow: none;
}
.MuiInputBase-input::-webkit-search-decoration {
  -webkit-appearance: none;
}
.MuiInputBase-input.Mui-disabled {
  opacity: 1;
}
.MuiInputBase-input:-webkit-autofill {
  animation-name: mui-auto-fill;
  animation-duration: 5000s;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input::-webkit-input-placeholder {
  opacity: 0 !important;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input::-moz-placeholder {
  opacity: 0 !important;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input:-ms-input-placeholder {
  opacity: 0 !important;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input::-ms-input-placeholder {
  opacity: 0 !important;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input:focus::-webkit-input-placeholder {
  opacity: 0.42;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input:focus::-moz-placeholder {
  opacity: 0.42;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input:focus:-ms-input-placeholder {
  opacity: 0.42;
}
label[data-shrink="false"]
  + .MuiInputBase-formControl
  .MuiInputBase-input:focus::-ms-input-placeholder {
  opacity: 0.42;
}
.MuiInputBase-inputMarginDense {
  padding-top: 3px;
}
.MuiInputBase-inputMultiline {
  height: auto;
  resize: none;
  padding: 0;
}
.MuiInputBase-inputTypeSearch {
  appearance: none;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
.PrivateNotchedOutline-root-1 {
  top: -5px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0 8px;
  overflow: hidden;
  position: absolute;
  border-style: solid;
  border-width: 1px;
  border-radius: inherit;
  pointer-events: none;
}
.PrivateNotchedOutline-legend-2 {
  padding: 0;
  text-align: left;
  transition: width 150ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  line-height: 11px;
}
.PrivateNotchedOutline-legendLabelled-3 {
  width: auto;
  height: 11px;
  display: block;
  padding: 0;
  font-size: 0.75em;
  max-width: 0.01px;
  text-align: left;
  transition: max-width 50ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  visibility: hidden;
}
.PrivateNotchedOutline-legendLabelled-3 > span {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.PrivateNotchedOutline-legendNotched-4 {
  max-width: 1000px;
  transition: max-width 100ms cubic-bezier(0, 0, 0.2, 1) 50ms;
}
.MuiOutlinedInput-root {
  position: relative;
  border-radius: 4px;
}
.MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
  border-color: rgba(0, 0, 0, 0.87);
}
@media (hover: none) {
  .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.23);
  }
}
.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #3f51b5;
  border-width: 2px;
}
.MuiOutlinedInput-root.Mui-error .MuiOutlinedInput-notchedOutline {
  border-color: #f44336;
}
.MuiOutlinedInput-root.Mui-disabled .MuiOutlinedInput-notchedOutline {
  border-color: rgba(0, 0, 0, 0.26);
}
.MuiOutlinedInput-colorSecondary.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #f50057;
}
.MuiOutlinedInput-adornedStart {
  padding-left: 14px;
}
.MuiOutlinedInput-adornedEnd {
  padding-right: 14px;
}
.MuiOutlinedInput-multiline {
  padding: 18.5px 14px;
}
.MuiOutlinedInput-multiline.MuiOutlinedInput-marginDense {
  padding-top: 10.5px;
  padding-bottom: 10.5px;
}
.MuiOutlinedInput-notchedOutline {
  border-color: rgba(0, 0, 0, 0.23);
}
.MuiOutlinedInput-input {
  padding: 18.5px 14px;
}
.MuiOutlinedInput-input:-webkit-autofill {
  border-radius: inherit;
}
.MuiOutlinedInput-inputMarginDense {
  padding-top: 10.5px;
  padding-bottom: 10.5px;
}
.MuiOutlinedInput-inputMultiline {
  padding: 0;
}
.MuiOutlinedInput-inputAdornedStart {
  padding-left: 0;
}
.MuiOutlinedInput-inputAdornedEnd {
  padding-right: 0;
}
.MuiSelect-select {
  cursor: pointer;
  min-width: 16px;
  user-select: none;
  border-radius: 0;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari */
  appearance: none; /* Standard property */
  text-align: center;
}

.MuiSelect-select:focus {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.05);
}
.MuiSelect-select::-ms-expand {
  display: none;
}
.MuiSelect-select.Mui-disabled {
  cursor: default;
}
.MuiSelect-select[multiple] {
  height: auto;
}
.MuiSelect-select:not([multiple]) option,
.MuiSelect-select:not([multiple]) optgroup {
  background-color: var(--header-color);
}
.MuiSelect-select.MuiSelect-select {
  padding-right: 24px;
}
.MuiSelect-filled.MuiSelect-filled {
  padding-right: 32px;
}
.MuiSelect-outlined {
  border-radius: 4px;
}
.MuiSelect-outlined.MuiSelect-outlined {
  padding-right: 30px;
}
.MuiSelect-selectMenu {
  height: auto;
  overflow: hidden;
  min-height: 1.1876em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.MuiSelect-icon {
  top: calc(50% - 12px);
  color: rgba(0, 0, 0, 0.54);
  right: 0;
  position: absolute;
  pointer-events: none;
}
.MuiSelect-icon.Mui-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.MuiSelect-iconOpen {
  transform: rotate(180deg);
}
.MuiSelect-iconFilled {
  right: 7px;
}
.MuiSelect-iconOutlined {
  right: 7px;
}
.MuiSelect-nativeInput {
  left: 0;
  width: 100%;
  bottom: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.MuiTouchRipple-root {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.MuiTouchRipple-ripple {
  opacity: 0;
  position: absolute;
}
.MuiTouchRipple-rippleVisible {
  opacity: 0.3;
  animation: MuiTouchRipple-keyframes-enter 550ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}
.MuiTouchRipple-ripplePulsate {
  animation-duration: 200ms;
}
.MuiTouchRipple-child {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  border-radius: 50%;
  background-color: currentColor;
}
.MuiTouchRipple-childLeaving {
  opacity: 0;
  animation: MuiTouchRipple-keyframes-exit 550ms cubic-bezier(0.4, 0, 0.2, 1);
}
.MuiTouchRipple-childPulsate {
  top: 0;
  left: 0;
  position: absolute;
  animation: MuiTouchRipple-keyframes-pulsate 2500ms
    cubic-bezier(0.4, 0, 0.2, 1) 200ms infinite;
}
@keyframes MuiTouchRipple-keyframes-enter {
  0% {
    opacity: 0.1;
    transform: scale(0);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}
@-webkit-keyframes MuiTouchRipple-keyframes-enter {
  0% {
    opacity: 0.1;
    transform: scale(0);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

@keyframes MuiTouchRipple-keyframes-exit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes MuiTouchRipple-keyframes-exit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes MuiTouchRipple-keyframes-pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes MuiTouchRipple-keyframes-pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}

.MuiButtonBase-root {
  color: inherit;
  border: 0;
  cursor: pointer;
  margin: 0;
  display: inline-flex;
  outline: 0;
  padding: 0;
  position: relative;
  align-items: center;
  user-select: none;
  border-radius: 0;
  vertical-align: middle;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari */
  appearance: none; /* Standard property */
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

.MuiButtonBase-root::-moz-focus-inner {
  border-style: none;
}
.MuiButtonBase-root.Mui-disabled {
  cursor: default;
  pointer-events: none;
}

@media print {
  .MuiButtonBase-root {
    -webkit-print-color-adjust: exact; /* Safari */
    print-color-adjust: exact; /* Standard property */
  }
}

.MuiButton-root {
  color: rgba(0, 0, 0, 0.87);
  padding: 6px 16px;
  font-size: 0.875rem;
  min-width: 64px;
  box-sizing: border-box;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  border-radius: 4px;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
}
.MuiButton-root:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.04);
}
.MuiButton-root.Mui-disabled {
  color: rgba(0, 0, 0, 0.26);
}
@media (hover: none) {
  .MuiButton-root:hover {
    background-color: transparent;
  }
}
.MuiButton-root:hover.Mui-disabled {
  background-color: transparent;
}
.MuiButton-label {
  width: 100%;
  display: inherit;
  padding: 0px 30px;
}
.MuiButton-text {
  padding: 6px 8px;
}
.MuiButton-textPrimary {
  color: #3f51b5;
}
.MuiButton-textPrimary:hover {
  background-color: rgba(63, 81, 181, 0.04);
}
@media (hover: none) {
  .MuiButton-textPrimary:hover {
    background-color: transparent;
  }
}
.MuiButton-textSecondary {
  color: #f50057;
}
.MuiButton-textSecondary:hover {
  background-color: rgba(245, 0, 87, 0.04);
}
@media (hover: none) {
  .MuiButton-textSecondary:hover {
    background-color: transparent;
  }
}
.MuiButton-outlined {
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding: 5px 15px;
}
.MuiButton-outlined.Mui-disabled {
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.MuiButton-outlinedPrimary {
  color: #3f51b5;
  border: 1px solid rgba(63, 81, 181, 0.5);
}
.MuiButton-outlinedPrimary:hover {
  border: 1px solid #3f51b5;
  background-color: rgba(63, 81, 181, 0.04);
}
@media (hover: none) {
  .MuiButton-outlinedPrimary:hover {
    background-color: transparent;
  }
}
.MuiButton-outlinedSecondary {
  color: #f50057;
  border: 1px solid rgba(245, 0, 87, 0.5);
}
.MuiButton-outlinedSecondary:hover {
  border: 1px solid #f50057;
  background-color: rgba(245, 0, 87, 0.04);
}
.MuiButton-outlinedSecondary.Mui-disabled {
  border: 1px solid rgba(0, 0, 0, 0.26);
}
@media (hover: none) {
  .MuiButton-outlinedSecondary:hover {
    background-color: transparent;
  }
}
.MuiButton-contained {
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  background-color: #e0e0e0;
}
.MuiButton-contained:hover {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: #d5d5d5;
}
.MuiButton-contained.Mui-focusVisible {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.MuiButton-contained:active {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.MuiButton-contained.Mui-disabled {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
}
@media (hover: none) {
  .MuiButton-contained:hover {
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
      0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    background-color: #e0e0e0;
  }
}
.MuiButton-contained:hover.Mui-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}
.MuiButton-containedPrimary {
  color: #fff;
  background-color: #3f51b5;
}
.MuiButton-containedPrimary:hover {
  background-color: #303f9f;
}
@media (hover: none) {
  .MuiButton-containedPrimary:hover {
    background-color: #3f51b5;
  }
}
.MuiButton-containedSecondary {
  color: #fff;
  background-color: #f50057;
}
.MuiButton-containedSecondary:hover {
  background-color: #c51162;
}
@media (hover: none) {
  .MuiButton-containedSecondary:hover {
    background-color: #f50057;
  }
}
.MuiButton-disableElevation {
  box-shadow: none;
}
.MuiButton-disableElevation:hover {
  box-shadow: none;
}
.MuiButton-disableElevation.Mui-focusVisible {
  box-shadow: none;
}
.MuiButton-disableElevation:active {
  box-shadow: none;
}
.MuiButton-disableElevation.Mui-disabled {
  box-shadow: none;
}
.MuiButton-colorInherit {
  color: inherit;
  border-color: currentColor;
}
.MuiButton-textSizeSmall {
  padding: 4px 5px;
  font-size: 0.8125rem;
}
.MuiButton-textSizeLarge {
  padding: 8px 11px;
  font-size: 0.9375rem;
}
.MuiButton-outlinedSizeSmall {
  padding: 3px 9px;
  font-size: 0.8125rem;
}
.MuiButton-outlinedSizeLarge {
  padding: 7px 21px;
  font-size: 0.9375rem;
}
.MuiButton-containedSizeSmall {
  padding: 4px 10px;
  font-size: 0.8125rem;
}
.MuiButton-containedSizeLarge {
  padding: 8px 22px;
  font-size: 0.9375rem;
}
.MuiButton-fullWidth {
  width: 100%;
}
.MuiButton-startIcon {
  display: inherit;
  margin-left: -4px;
  margin-right: 8px;
}
.MuiButton-startIcon.MuiButton-iconSizeSmall {
  margin-left: -2px;
}
.MuiButton-endIcon {
  display: inherit;
  margin-left: 8px;
  margin-right: -4px;
}
.MuiButton-endIcon.MuiButton-iconSizeSmall {
  margin-right: -2px;
}
.MuiButton-iconSizeSmall > *:first-child {
  font-size: 18px;
}
.MuiButton-iconSizeMedium > *:first-child {
  font-size: 20px;
}
.MuiButton-iconSizeLarge > *:first-child {
  font-size: 22px;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.muiButtonBase {
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-transform: none;
  margin-left: 10px;
}
.muiButtonEndIcon {
  margin-left: 8px;
}
.MuiButton-contained {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: none;
  transition: none;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--button-color);
  line-height: 1.5rem;
}
.MuiButton-contained:hover,
.MuiButton-contained:focus {
  background-color: #eeedfa;
  box-shadow: none;
}
.MuiButton-contained:active {
  background: var(--button-color);
  color: #fff;
}
.MuiButton-contained:disabled {
  background-color: #fff;
  color: #9893df;
}
.muiButtonContainedPrimary {
  font-size: 1rem;
  font-weight: 900;
  border-radius: 0.75rem;
  box-shadow: none;
  transition: none;
  padding: 0.75rem 1rem;
  background: var(--headings-color);
  color: white;
  text-transform: uppercase;
  line-height: 1.5rem;
}
@media (max-width: 600px) {
  .muiButtonContainedPrimary {
    margin-bottom: 30px;
  }
}
.muiButtonContainedPrimary:hover,
.muiButtonContainedPrimary:focus {
  background: var(--headings-color);
  box-shadow: none;
}
.muiButtonContainedPrimary:active {
  background: var(--headings-color);
  color: #fff;
}
.muiButtonContainedPrimary:disabled {
  background-color: #eeedfa;
  color: var(--headings-color);
}
.muiButtonContainedPrimary.inverted {
  color: var(--headings-color);
  background: #fff;
}
.muiButtonContainedSecondary {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: none;
  transition: none;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--button-color);
  border: 0.125rem solid var(--button-color);
  line-height: 1.25rem;
}
.muiButtonContainedSecondary:hover,
.muiButtonContainedSecondary:focus {
  background: transparent;
  box-shadow: 0 0 0 2px #544bc9;
}
.muiButtonContainedSecondary:active {
  background: #544bc9;
  color: #fff;
}
.muiButtonContainedSecondary:disabled {
  border-color: #9893df;
  color: #9893df;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
/* stylelint-disable max-empty-lines */
.promo-preview {
  display: flex;
  flex-direction: column;
}
.promo-preview .promo-hero-btn .MuiButton-label {
  flex-direction: column;
  line-height: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.promo-preview .promo-hero-btn .MuiButton-label span {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25rem;
}
.promo-preview .promo-terms {
  color: #cecece;
  font-weight: 600;
  font-size: 0.875rem;
  padding-top: 0.625rem;
  line-height: 1.375rem;
}
.promo-preview .tncLinksWrapper a,
.promo-preview .tncLinksWrapper .separator {
  font-weight: 600;
  font-size: 0.875rem;
}
.promo-hero {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.promo-hero-container {
  background-color: var(--background-color);
  min-height: 60vh;
}
@media (max-width: 768px) {
  /* Adjust the max-width value as needed for your breakpoints */
  .promo-hero-container {
    min-height: 46vh;
  }
}
.promo-img-wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  /* Vertically center the content */
}
/* Styles for desktop devices */
@media (min-width: 768px) {
  .promo-img-wrapper {
    max-width: 1600px;
    /* Set a max width for desktop */
    margin: 0 auto;
    /* Center the container horizontally */
    padding: 20px;
  }
}
/* Styles for mobile devices */
@media (max-width: 767px) {
  .promo-img-wrapper {
    padding: 0;
    /* Remove padding to allow the image to span edge to edge */
    max-width: 100%;
    /* Ensure the image spans the full width */
  }
}
.promo-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .promo-img {
    border-radius: 20px;
  }
}
/* Styles for mobile devices */
@media (max-width: 767px) {
  .promo-img {
    border-radius: 0px;
  }
}
.promo-img-fail {
  display: none;
}
.promo-box {
  bottom: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  left: 0;
  padding: 0 1.375rem;
  width: 100%;
  padding: 1.25rem 1rem;
}
@media (min-width: 641px) {
  .promo-box {
    padding: 1.25rem 0;
  }
}
@media (min-width: 1024px) {
  .promo-box {
    padding: 1.875rem 0;
  }
}
.promo-banner-subline {
  padding: 0 0rem;
}
.promo-content {
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 20.625rem;
  padding-bottom: 2.5rem;
  z-index: 1;
}
@media (min-width: 641px) {
  .promo-content {
    padding-left: 10%;
    max-width: 37.5rem;
  }
}
.video-banner-wrapper {
  position: relative;
  margin: 0;
  height: 100%;
  max-width: 100%;
}
.video-banner-wrapper .video-banner {
  position: absolute;
}
.promo-banner {
  width: 100%;
  position: relative;
}
.promo-banner .promo-terms {
  color: #fff;
  text-decoration: underline;
}
.promo-banner-container {
  margin: 0;
}
.promo-banner-caption {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-top: 60px;
}
@media (max-width: 600px) {
  .promo-banner-caption {
    margin-top: 30px;
  }
}
.promo-banner-header * {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 3rem;
  margin: 0;
  margin-bottom: 7%;
  margin-top: 5%;
  text-align: left;
}
.promo-banner-subline {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10%;
}
html.fi .promo-banner-header,
html.fi .promo-banner-subline {
  margin: 0.5rem 0;
}
.jp .promo-banner {
  font-family: "Noto Sans JP", sans-serif;
}
.jp .promo-img {
  height: 105%;
}
@media (min-width: 568px) and (max-width: 850px) {
  .jp .promo-img {
    height: 190%;
  }
}
@media (max-width: 320px) {
  .jp .promo-img {
    height: 110%;
  }
}
.jp .promo-box {
  padding-top: 8.5rem;
  padding-bottom: 3rem;
}
.jp .promo-content {
  padding: 0;
}
.jp .promo-banner-caption {
  font-size: 1rem;
  line-height: 1.5rem;
}
.jp .promo-banner-header * {
  font-weight: 900;
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 1rem 0;
  background: radial-gradient(100% 5568.89% at 0% 0%, #544bc9 0%, #a44bc9 100%),
    #544bc9;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.5rem transparent;
  text-shadow: 4px 4px 0 rgba(41, 48, 71, 0.1);
}
.jp .promo-banner-header p {
  margin: 0;
}
.jp .promo-banner-subline {
  font-size: 1.25rem;
  line-height: 1.75rem;
  background: radial-gradient(100% 5568.89% at 0% 0%, #544bc9 0%, #a44bc9 100%),
    #544bc9;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.5rem transparent;
  text-shadow: 0 4px 0 rgba(41, 48, 71, 0.1);
}
@media (max-width: 320px) {
  .jp .promo-banner-header {
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .jp .promo-banner-subline {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.jp.desktop .promo-box {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.jp.desktop .promo-img {
  height: 100%;
}
.jp.desktop .promo-banner-caption {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.jp.desktop .promo-banner-header {
  font-size: 2.5rem;
  line-height: 3rem;
}
.jp.desktop .promo-banner-subline {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.lander-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:center;
  /* Change this from center to flex-start */
  margin-top: 1rem;
  max-width:1600px;
}
@media (max-width: 768px) {
  .lander-preview {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lander-preview .lander-game-tile {
    flex: 1 1 auto;
    /* Allow the cards to grow and shrink */
    min-width: 80px;
    /* Minimum width of 80px */
    max-width: calc(33.33% - 1rem);
    /* Maximum width to fit 3 cards per row */
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  .lander-preview .lander-game-tile:nth-child(3n) {
    margin-right: 0;
    /* Remove right margin for every third card */
  }
}
@media (max-width: 367px) {
  .lander-preview .lander-game-tile {
    flex: 1 1 auto;
    /* Allow the cards to grow and shrink */
    min-width: 80px;
    /* Minimum width of 80px */
    max-width: calc(50%);
    /* Maximum width to fit 3 cards per row */
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}
.lander-preview .lander-game-tile {
  margin-bottom: 1rem;
  flex-basis: calc(50% - 1rem);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  .lander-preview .lander-game-tile {
    flex-basis: calc(25% - 1rem);
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 960px) and (orientation: landscape) {
  .lander-preview .lander-game-tile {
    flex-basis: calc(25% - 1rem);
    margin-right: 1rem;
  }
}
.lander-preview .lander-game-tile .game-thumb-jackpot {
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 90%;
  min-height: 3.0625rem;
  border-radius: 0.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lander-preview .lander-game-tile:nth-child(odd) {
  margin-right: 1rem;
}
.lander-preview .lander-game-tile:last-child {
  margin-right: 0;
}
.desktop .lander-preview .lander-game-tile {
  flex-basis: calc(20% - 1rem);
  margin-right: 1rem;
}
.desktop .lander-preview.medium .lander-game-tile {
  flex-basis: calc(25% - 1rem);
}
/*.desktop .lander-preview .lander-game-tile:last-child {
  margin-right: 0;
}
*/
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.fullPageloader {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes ldio-fyszzpnu77a-r {
  0%,
  100% {
    animation-timing-function: cubic-bezier(0.2 0 0.8 0.8);
  }
  50% {
    animation-timing-function: cubic-bezier(0.2 0.2 0.8 1);
  }
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ldio-fyszzpnu77a-s {
  0%,
  100% {
    animation-timing-function: cubic-bezier(0.2 0 0.8 0.8);
  }
  50% {
    animation-timing-function: cubic-bezier(0.2 0.2 0.8 1);
  }
  0% {
    transform: translate(-30px, -30px) scale(0);
  }
  50% {
    transform: translate(-30px, -30px) scale(1);
  }
  100% {
    transform: translate(-30px, -30px) scale(0);
  }
}
.ldio-fyszzpnu77a > div {
  transform: translate(0, -15px);
}
.ldio-fyszzpnu77a > div > div {
  animation: ldio-fyszzpnu77a-r 1s linear infinite;
  transform-origin: 100px 100px;
}
.ldio-fyszzpnu77a > div > div > div {
  position: absolute;
  transform: translate(100px, 92px);
}
.ldio-fyszzpnu77a > div > div > div > div {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #a44bc9;
  animation: ldio-fyszzpnu77a-s 1s linear infinite;
}
.ldio-fyszzpnu77a > div > div:last-child {
  animation-delay: -0.5s;
}
.ldio-fyszzpnu77a > div > div:last-child > div > div {
  animation-delay: -0.5s;
  background: #544bc9;
}
.loadingio-spinner-interwind-asxkld4ngtv {
  width: 12.5rem;
  height: 12.5rem;
  display: inline-block;
  overflow: hidden;
  background: transparent;
}
.ldio-fyszzpnu77a {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}
.ldio-fyszzpnu77a div {
  box-sizing: content-box;
}
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
/** * mixins.scss can't be imported in variables.scss due to recursive imports. * Therefore we redeclare that function. */
/************ Element positions ************/
/************ Element sizes ************/
/************ Media queries ************/
/************ Font families ************/
/************ BorderRadius ************/
/* stylelint-disable */
:export {
  navBarHeight: 5rem;
  tabBarHeight: 3.5rem;
  languageBarHeight: 3.5rem;
  baseFontSize: 16px;
  sideBarWidth-desktop: 23.4375rem;
  sideBarWidth-mobile: 100%;
  lobbyCategoryMenuHeight-desktop: 4.5rem;
  lobbyCategoryMenuHeight-mobile: 4.5rem;
}
/* stylelint-endable */
:export {
  palettePrimaryMain: #544bc9;
  palettePrimaryLight: #766fd3;
  paletteErrorMain: #f44336;
  slateBlue: #544bc9;
  paletteTextPrimary: #222;
  navBarActiveTab: rgba(84, 75, 201, 0.1);
  paletteSuccessDark: #388e3c;
}
/* stylelint-disable color-hex-case */
/* stylelint-disable color-hex-length */
.lander {
  width: 100%;
  min-height: 100vh;
}
.lander .loader {
  position: relative;
  height: 100vh;
}
.lander-header {
  width: 100%;
  position: relative;
}
.lander-body {
  box-sizing: border-box;
  position: relative;
  background-color: var(--background-color);
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .lander-body {
    padding: 0;
  }
}
.lander-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--background-color);
  align-items: center;
}
.lander-content > div {
  padding-left: 6.7%;
  padding-right: 6.7%;
}
@media (max-width: 768px) {
  .lander-content {
    padding-top: 0;
  }
}
.lander-heading h2 {
  color: var(--headings-color);
  /* Replace with your desired color */
  font-family: Open Sans;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 3rem;
  text-align: center;
  margin: 0 0 1rem;
}
.game-heading {
  color: var(--text-color);
  font-family: Open Sans;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: center;
  margin: 0 0 1rem;
  background-color:var(--header-color);
  padding:15px 10px 10px 10px;
  border-radius:0px 0px 5px 5px;
  width:100%;
  max-width:900px;
}
.lander-heading {
  padding-bottom: 10px;
  background-color: var(--header-color);
  padding: 15px;
  border-radius: 10px;
  max-width: 1560px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .lander-heading {
    border-radius: 0px;
  }
}
.lander-heading p {
  color: hsla(0, 0%, 100%, 0.65);
  font-family: Open Sans;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .lander-heading {
    width: 100%;
    margin: auto;
  }
}
.lander-heading:not(:first-child) {
  margin-top: 2.625rem;
}
.lander-heading h2 {
  font-family: Open Sans;
  font-weight: 800;
  text-align: center;
  margin: 0 0 0.5rem;
}

.lander-heading p {
  font-family: Open Sans;
  font-weight: 400;
  text-align: center;
}
.lander-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  padding-bottom: 20px;
  max-width:1800px;
}
@media (min-width: 1024px) {
  .lander-section {
    margin: 2.5rem 0 0;
  }
}
.lander-section .lander-section-head {
  display: flex;
  justify-content: space-between;
  /*padding: 0 0.5rem; */
  width: 100%;
}

.lander-section-head {
  margin: 0 auto;
  align-items: center;
  }

.lander-section p {
  color: hsla(0, 0%, 100%, 0.65);
  padding: 0 0.5rem;
}
.lander-section-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  color: var(--text-color);
}
@media (min-width: 768px) {
  .lander-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (max-width: 768px) {
  .lander-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 200px;
  }
}
.lander-section-show {
  text-align: center;
}
.lander-section-info {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  text-align: center;
}
.lander-section-link {
  display: inline-block;
  /* Makes it behave like a button */
  text-transform: uppercase;
  width: auto;
  /* Allows the button to size based on content */
  padding: 5px 15px;
  /* Add padding for spacing */
  border: 1px solid var(--header-color);
  /* Set border color */
  border-radius: 5px;
  /* Optional: add some border radius for rounded corners */
  text-align: center;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-decoration: none;
  /* Removes underline from links */
  transition: background-color 0.3s, color 0.3s;
  /* Smooth transition for hover effect */
}
@media (max-width: 768px) {
  .lander-section-link {
    padding: 3px 5px;
  }
}
.lander-section-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
  /* Optional: add a light hover effect */
}
.lander-section-info {
  margin: 0.5rem 0 0;
}
/* Reset some basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Styling for the sticky header */
.sticky-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--header-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  height: 64px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Logo styling */
.logo {
  flex-shrink: 0;
}
.logo img {
  width: 140px;
  /* Keep logo size fixed */
  height: auto;
}
/* Navigation styling */
nav {
  display: flex;
  align-items: center;
  width: 100%;
  /* Ensure the nav takes up the full width */
}
.nav-links {
  list-style: none;
  display: flex;
  flex-grow: 1;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2px;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links li:last-child {
  margin-left: 0;
  /* No margin on mobile */
}
@media (min-width: 768px) {
  .nav-links li:last-child {
    margin-left: auto;
    /* Apply margin-left: auto on screens 768px and wider */
  }
}
/*BUTTON HEADER ON RIGHT*/
/*.nav-links li:last-child a {
  color: black;
  background-color: var(--button-color);
  border-radius: 8px;
}*/
.nav-links a {
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  line-height: 20px;
  min-width: 80px;
  height: 40px;
  padding: 10px 16px;
  color: var(--navlinks-color);
}
.nav-links a:hover {
  color: var(--headings-color);
}
/* Burger menu styling for mobile */
.burger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 25px;
}
.burger-menu div {
  width: 30px;
  height: 3px;
  background-color: white;
}
/* Media query for mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    background-color: var(--header-color);
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .nav-links li {
    margin: 20px 0;
  }
  .burger-menu {
    display: flex;
  }
  .nav-links.nav-active {
    display: flex;
    /* Set display to flex when the menu is active */
  }
}
.game-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers items horizontally */
  justify-content: flex-start;
  /* Aligns items at the top vertically */
  text-align: center;
  padding-bottom: 50px;
  background-color: var(--background-color);
  color: var(--text-color);
}
.game-embed {
  width: 100%; 
  height:500px;
  max-width: 900px; 
  display: flex; 
  flex-direction: column; 
  align-items: center;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 -4px 8px rgba(0, 0, 0, 0.1);
}
.game-embed iframe {
  background-color: black;
  border: none;
}

.game-embed-description {
  background-color: var(--header-color);
  border-radius: 0px 0px 10px 10px;
  color:var(--text-color);
  width:100%;
  max-width:900px;
}

.game-header {
  border-radius:5px 5px 0px 0px;
  height:30px;
  background-color: var(--header-color); 
  color: var(--text-color); 
  padding: 5px; 
  text-align: center; 
  width: 100%;
}

.game-header h1 {
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight:400;
  text-shadow: none;
}
/* new footer*/
footer {
  background-color: var(--background-color);
  padding: 20px 0;
  padding-bottom: 100px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  flex: 1;
}
.footer-left p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  max-width: 700px;
}
.footer-logos {
  margin-top: 30px;
}
.footer-logos img {
  margin-right: 20px;
  height: 40px;
  width: auto;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease;
  max-width:100px;
}
.footer-logos img:hover {
  filter: grayscale(0%) brightness(1);
}
.footer-right {
  flex: 0;
}
/* Responsive design for smaller devices */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    /* Stack footer sections vertically */
    align-items: center;
    /* Center all footer elements */
    text-align: center;
    /* Center text */
  }
  .footer-left,
  .footer-right {
    flex: unset;
    /* Remove flex for a natural vertical flow */
    width: 100%;
    /* Ensure full-width elements */
  }
  .footer-left {
    order: 2;
    /* Ensure footer-left appears below footer-right on mobile */
  }
  .footer-right {
    order: 1;
    /* Ensure footer-right appears above footer-left on mobile */
  }
  .footer-left p {
    max-width: 100%;
    /* Full width for paragraph */
  }
  .footer-logos {
    margin-top: 20px;
    justify-content: center;
    /* Center logos */
  }
  .footer-logos img {
    margin: 10px;
    /* Adjust spacing around logos */
    height: 30px;
    /* Reduce size for mobile */
  }
  .footer-right select {
    width: 100%;
    /* Full-width language selector */
  }
  .footerLinks {
    margin-top: 20px;
    /* Add space above footer links */
  }
}
footer hr {
  border: none;
  /* Remove default styling */
  height: 2px;
  /* Thickness of the line */
  background-color: #fff;
  /* Line color (example: white) */
  margin: 0 auto;
  width: 80%;
  /* Adjust the width of the line */
  opacity: 0.5;
  /* Adjust opacity to make it more subtle */
}
/* Additional styling for mobile */
@media (max-width: 768px) {
  footer hr {
    width: 90%;
    /* Make the line wider on mobile */
  }
}
/* slick slider providers */
.slick-slider-container {
  width: 100%;
  background-color: var(--background-color);
  min-height: 100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* Ensure arrows are positioned relative to the slider */
}
.game-provider-slider .logo-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Vertically center the logos */
  height: 100%;
  /* Ensure the slide takes full height */
}
.game-provider-slider .logo-slide img {
  transition: filter 0.3s ease;
  width: 100px;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.slick-prev,
.slick-next {
  display: none !important;
}
.slick-slider-container:hover .slick-prev,
.slick-slider-container:hover .slick-next {
  display: block !important;
}
.slick-track {
  display: flex !important;
  align-items: center;
  /* Center items vertically */
}
.slick-slide {
  float: left;
  width: auto;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  margin: 0 5px;
  /* Adjust this value to decrease spacing */
}
.slick-slide img {
  height: 60px;
  /* Set the desired height */
  width: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Ensure the images are block elements */
  margin: 0 auto;
  /* Center the images horizontally */
  object-fit: contain;
  /* Ensure the logo scales properly */
}
.slick-prev,
.slick-next {
  color: white;
  z-index: 1000;
  position: absolute;
  top: 50%;
  /* Center arrows vertically */
  transform: translateY(-50%);
}
.slick-prev {
  left: 10px;
}
.slick-next {
  right: 10px;
}
.slick-slide:hover {
  opacity: 1 !important;
}
.image-container {
  background-color: var(--header-color);
  border-radius: 5px;
  padding: 20px;
  /* Optional: Adds some padding around the image */
  width: 250px;
}
.logo-slide img {
  border-radius: 5px;
  /* Ensures the image corners match the container */
}
.allbtntxt a {
  padding: 6px;
}
/* SEO TEXT SECTION */
.text-container {
  max-height: 3.6em;
  /* Adjust based on your line height */
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.text-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.2em;
  /* Adjust based on your line height */
  background: linear-gradient(to bottom, transparent, var(--background-color));
}
.text-container.expanded {
  max-height: none;
}
.text-container.expanded::after {
  display: none;
}
.description__button {
  background-color: var(--header-color);
  border-radius: 8px;
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.2px;
  line-height: 24px;
  margin: 10px auto 0;
  min-width: 116px;
  padding: 10px 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}
.text-btn:not(:disabled) {
  cursor: pointer;
}
.text-btn--primary {
  color: hsla(0, 0%, 100%, 0.65);
}
.text-btn {
  padding: 12px 20px;
  width: 280px;
  border: none;
  box-shadow: none;
  display: flex;
  font-size: 20px;
  line-height: 1;
  outline: none;
  transition: color 0.3s ease;
  vertical-align: top;
}
.padding-heading {
  padding: 0px 20px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .padding-heading {
    padding: 0px;
  }
}

:target {
  scroll-margin-top: 60px; /* Adjust this value to match the height of your sticky header */
}

/* Slots / live casino lobby pages (base.njk layout) */
.lobby-page {
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 60vh;
}

.lobby-page-hero {
  background-color: var(--header-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 2rem 1.25rem 1.75rem;
  width: 100%;
}

.lobby-page-hero__inner {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

.lobby-page-hero__title {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  text-shadow: none;
}

@media (min-width: 768px) {
  .lobby-page-hero__title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.lobby-page-hero__intro {
  color: var(--navlinks-color);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 auto 1rem;
  max-width: 40rem;
}

.lobby-page-hero__back {
  margin: 0;
}

.lobby-page-hero__link {
  color: var(--headings-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.lobby-page-hero__link:hover {
  color: var(--button-color);
  text-decoration: underline;
}

.lobby-page .live-casino {
  padding-top: 1.5rem;
}

.lobby-page .game-category-header .game-category-name {
  color: var(--text-color);
}

.slots-directory {
  margin: 0 auto;
  max-width: 1200px;
  padding: 2rem 1.25rem 3rem;
}

.slots-directory__title {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .slots-directory__title {
    font-size: 1.5rem;
  }
}

.slots-directory__list {
  display: grid;
  gap: 12px 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.slots-directory__link {
  color: var(--headings-color);
  font-size: 0.9375rem;
  text-decoration: underline;
}

.slots-directory__link:hover {
  color: var(--button-color);
}