﻿:root {
  --db-background-color: #1f1f1f;
}
[class*="AppRouter__content"] {
  overflow-x: clip;
}
.d-grid {
  display: grid;
  will-change: transform;
  transform: translateZ(0);
}

.db-loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.lds-grid {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-grid div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00a723;
  animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
  top: 8px;
  left: 8px;
  animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
  top: 8px;
  left: 32px;
  animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
  top: 8px;
  left: 56px;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
  top: 32px;
  left: 8px;
  animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
  top: 32px;
  left: 32px;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
  top: 32px;
  left: 56px;
  animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
  top: 56px;
  left: 8px;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
  top: 56px;
  left: 32px;
  animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
  top: 56px;
  left: 56px;
  animation-delay: -1.6s;
}

@keyframes lds-grid {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.spinner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
}

.spinner {
  width: 5em;
  height: 5em;
  transform: translate(0);
}

.swiper-container {
  overflow: hidden;
}

.swiper-pagination-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  transition: opacity 0.65s ease;
  backdrop-filter: blur(8px);
  height: 70px;
  padding: 0 0.3em;
  margin-top: 5px;
  z-index: 9;
  position: sticky !important;
  top: 114px;
  background-color: #212121;
}

.controllers-header {
  z-index: 9;
  position: sticky !important;
  top: 114px;
  background-color: #1f1f1f;
}

.mobile .swiper-pagination-container,
.mobile .controllers-header {
  top: 56px;
}

.swiper-pagination-container[data-search-open="1"] {
  position: fixed !important;
  opacity: 0;
  z-index: 0;
}

[data-games-category-container],
.swiper-slide {
  margin-top: 25px;
}

[data-grid-layout] .games-header {
  display: none;
}

[data-grid-layout="classic"] .swiper-slide {
  margin-top: 0;
}

[data-grid-layout="live"] .swiper-slide {
  display: none;
}

[data-grid-layout="live"] .swiper-slide.swiper-slide-active {
  display: initial;
}

.db-games-search {
  position: relative;
  /* display: block; */
  /* min-width: 65px;
    height: 65px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    margin: 8px 3px 5px 0em;
    padding: 0px 0px;
    z-index: 20;
    background-color: #204792;
    border-radius: 10px; */

  background-color: none;
  /* height: 88px; */
  width: 76px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
  margin: 0;
  cursor: pointer;
}
.db-close-search {
  cursor: pointer;
}
[data-search-open="1"] .db-games-search {
  opacity: 0;
  pointer-events: none;
}
.db-close-search {
  background-position: 75% 50%;
  background-image: url(../../willbetgambling/image/arrow-left.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  margin-right: 10px;
  background-color: #212121; /* #1f1f1f; */
  transform: scale(1.1);
  border-radius: 50%;
  padding: 0.1em 0.75em 0 0.75em;
  z-index: 1;
}

.db-games-search::before {
  content: url(../../willbetgambling/image/search.svg);
  color: #a1aec0;
  font-size: 0.7em;
  font-weight: 650;
  height: 2.5rem;
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(164deg)
    brightness(106%) contrast(100%);
}

.db-games-search::after {
  content: "Search";
  color: #a1aec0;
  margin-top: -12px;
}
.digitalbeat-search-games-grid {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 10;
  animation: search-results-fade 0.85s;
}

.digitalbeat-search-games-grid > * {
  padding: 6px 10px;
}

@keyframes search-results-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.digitalbeat-search-games-grid .controllers-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.digitalbeat-search-games-grid .search-results,
.digitalbeat-search-games-grid .search-pre-population-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.digitalbeat-search-games-grid .search-input {
  position: relative;
  display: flex;
  opacity: 1;
  width: 100%;
  align-items: center;
  gap: 0.7em;
  border-radius: 8px;
  background-color: var(--db-background-color);
  animation: search-input-fade-in 1s ease-in-out;
}

@keyframes search-input-fade-in {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}

.digitalbeat-search-games-grid .search-input i {
  width: 32px;
  /* Adjust width as needed */
  height: 32px;
  /* Adjust height as needed */

  background-image: url(../../willbetgambling/image/search1.svg);
  background-repeat: no-repeat;
  background-size: auto;
  /* background-size: 32px 32px; */
  background-position: center;
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(164deg)
    brightness(106%) contrast(100%);
}

.digitalbeat-search-games-grid .search-input input {
  height: unset !important;
  padding: 0.6em 1em;
  background-color: var(--db-background-color);
  border: none;
}

.digitalbeat-search-games-grid input::placeholder {
  color: #A4A4A4;
}

.digitalbeat-search-games-grid input:focus,
.digitalbeat-search-games-grid input:active {
  background: none;
}

.digitalbeat-search-games-grid .search-results,
.digitalbeat-search-games-grid .search-pre-population-container {
  width: 100%;
}

.data-search-no-results {
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  padding: 1em 1.5em;
  border-radius: 16px;
}

.data-search-no-results > * {
  padding: 0 !important;
}

[data-search-no-results-title] {
  color: #e4393c;
  font-weight: bold;
  margin-right: 10px;
}

.digitalbeat-search-games-grid .search-results h2 {
  font-weight: bold;
}

.digitalbeat-search-games-grid .search-results-games {
  will-change: transform;
  transform: translateZ(0);
  padding: 0 1em 1em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  overflow: initial;
  overscroll-behavior: none;
  grid-auto-columns: initial;
  grid-auto-flow: initial;
}

.digitalbeat-search-games-grid .search-results-game {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
  border-radius: 12px;
  background-size: 100% 100%;
  text-decoration: none;
  min-width: 20%;
}

.digitalbeat-search-games-grid .search-results-game img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: clip;
}

.games-grid-category-menu-container {
  display: flex;
  align-items: stretch;
  flex: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  transition: all 0.65s ease;
  transform: translateX(0);
}
[data-search-open="1"] .games-grid-category-menu-container {
  transform: translateX(50vw);
  opacity: 0;
}

.swiper-pagination {
  overflow: hidden;
  display: flex;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  bottom: unset !important;
  white-space: nowrap;
  align-items: stretch;
  transition: transform 0.3s ease-out;
  transform: none !important;
  overflow-x: scroll;
}

.swiper-pagination::-webkit-scrollbar {
  display: none;
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-opacity: 0.7;

  /* width: auto; */
  padding: 0px 7px;
  /* text-align: left; */
  font-size: 1em;
  color: #888;
  background: none;
  border: none;
  transition: all 0.15s;
  background-color: none;
  /* height: 92px; */
  /* min-width: 92px; */
  /* max-width: 122px; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
}

/* .swiper-pagination-bullet::before {
    transform: scale(0.50);
    height: 42px;
    width: 72px;
    filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(164deg) brightness(106%) contrast(100%);
} */

.swiper-pagination-first-visible,
[data-grid-layout="live"] .swiper-pagination-bullet-active {
  color: white;
}

[data-grid-layout="classic"] .swiper-pagination-bullet {
  background: none !important;
  font-size: 1.28rem;
  padding: 0;
}

.db-games-categories {
  color: white;
}

/* .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  filter: invert(69%) sepia(96%) saturate(946%) hue-rotate(37deg) brightness(102%) contrast(111%);
} */

/* .swiper-pagination-bullet[data-gamesfeed-category="Roulette"]::before {
    content: url(/library/digitalbeat/icons/roulette.svg?siteid=2);
}

.swiper-pagination-bullet[data-gamesfeed-category="Blackjack"]::before {
    content: url(/library/digitalbeat/icons/blackjack.svg?siteid=2);
}

.swiper-pagination-bullet[data-gamesfeed-category="Game Shows"]::before {
    content: url(/library/digitalbeat/icons/game-shows.svg?siteid=2);
}

.swiper-pagination-bullet[data-gamesfeed-category="All Games"]::before {
    content: url(/library/digitalbeat/icons/all-games.svg?siteid=2);
} */

.swiper-pagination-bullet[data-gamesfeed-category="Baccarat"]::before {
  content: none !important;
}

.db-games-grid {
  padding: 1em;
  grid-gap: 10px;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: minmax(36.5%, 1rem);
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.db-games-grid::-webkit-scrollbar {
  display: none;
}

[data-grid-layout="classic"] .db-games-grid {
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  grid-auto-columns: initial;
  overflow-x: hidden;
}

[data-grid-layout="live"] .db-games-grid {
  grid-template-rows: initial;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  grid-auto-columns: initial;
  padding: 0;
  margin: 1em 0.5em 0;
}

.search-pre-population-container .category-header {
  padding-left: 0;
}

.search-pre-population-container .db-games-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  padding: 0;
  margin-top: 1em;
}

.db-games-grid[data-games-category="recentPlayed"] {
  padding-top: 25px;
  margin-bottom: 1em;
  overflow-y: hidden;
  display: flex;
  gap: 1em;
  justify-content: flex-start;
  flex-direction: row;
  height: calc(min(30vw, 160px));
}

.db-games-grid[data-games-category="recentPlayed"]::before {
  content: "CONTINUE PLAYING";
  position: absolute;
  margin-top: -25px;
  font-size: 1.1em;
  font-weight: 600;
}

.db-games-grid[data-games-category="recentPlayed"]:empty {
  display: none;
}

.category-header {
  display: flex;
  align-items: center;
  color: var(--games-category-title-font-color);
  margin: 0;
  padding: 0 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  padding-left: 1rem;
  padding-right: 1rem;
}

[data-grid-layout="classic"] .category-header,
[data-grid-layout="live"] .category-header {
  display: none;
  content-visibility: hidden;
}

.category-header .category-header_title {
  display: flex;
  align-items: center;
  color: var(--games-category-title-font-color);
  margin: 0;
  padding: 0 3.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.category-header .category-header_view-more {
  display: inline-block;
  font-size: 12px;
  position: absolute;
  text-transform: none;
  right: 1em;
  margin-top: 0;
  color: white;
  text-decoration: underline;
}

.header-category-go-back {
  width: 100%;
  color: white;
  text-decoration: underline;
  font-size: 1.5rem;
  padding: 0 0 0 1em !important;
  font-size: 1em;
  text-align: right;
  cursor: pointer;
}

.game-tile {
  cursor: pointer;
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 3px;
  background-size: 100% 100%;
  height: 140px;
  border: 1px solid #5f5f5f;
  box-shadow: 0 0 5px #000000;
  color: white;
  content-visibility: auto;
}

.game-tile::after {
  content: attr(data-game-name);
  bottom: 0;
  background: black;
  /* z-index: 2; */
  left: 0;
  position: absolute;
  width: 100%;
  padding: 5px 10px;
  font-size: 0.8em;
  color: #ffffff;
}

.game-tile .game-tile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 20px);
  object-fit: initial;
  transition: transform 0.2s;
}

.game-tile-hover {
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
}

.game-tile .game-new {
  position: absolute;
  margin: 10px;

  font-size: 10px;
  font-weight: 800;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 56, 116, 1) 0%,
    rgba(23, 86, 190, 1) 50%,
    rgba(45, 99, 217, 1) 100%
  );
  border: white solid 2px;
  border-radius: 10px;
  padding: 5px 10px;
}

.db-games-grid .game-tile .game-new::before {
  content: "NEW!";
}

.db-games-grid .game-tile .game-live-overlay {
  position: absolute;
  bottom: 22px;
  width: 100%;
  height: 35px;
  padding: 0px 10px 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1px;
  left: 0;
  background-color: rgba(25, 25, 25, 0.75);
  /* -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px); */
  /* box-shadow: 0px -1px 11px 2px rgb(0 0 0 / 78%); */
}

.game-tile .game-live-overlay:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.db-games-grid .game-tile .game-live-overlay:empty {
  display: none;
}

.game-tile .game-limits {
  position: absolute;
  top: -75px;
  width: fit-content;
  color: #7ff800;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-weight: 600;
  padding: 0.5em 1em;
  font-size: 11px;
}

.db-games-grid .game-tile .game-limits::before {
  content: "$ " attr(data-game-limits-min) " - " attr(data-game-limits-max);
}

.db-games-grid .game-tile .results-roulette {
  position: absolute;
  display: flex;
  align-items: end;
  bottom: 14px;
  right: 0;
  width: fit-content;
  /* background-color: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255,255,255,0.4); */
  /* padding: 6px; */
  /* backdrop-filter: blur(5px); */
  border-radius: 10px;
}

.game-tile[data-game-type="cml"] .results-roulette,
.game-tile[data-game-type="bs_dtl"] .results-roulette,
.game-tile[data-game-type="sbdl"] .results-roulette,
.game-tile[data-game-type="hilol"] .results-roulette,
.game-tile[data-game-type="dtl"] .results-roulette {
  display: none;
}

.results-roulette .result-roulette-number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  margin: 0 0.3em 0 0;
  width: 14px;
  height: 14px;
  color: #fff;
  font-weight: 800;
}

.results-roulette .result-roulette-0 {
  background-color: #00a723;
  border-color: #fff;
}

.results-roulette .result-roulette-2,
.results-roulette .result-roulette-10,
.results-roulette .result-roulette-11,
.results-roulette .result-roulette-13,
.results-roulette .result-roulette-15,
.results-roulette .result-roulette-17,
.results-roulette .result-roulette-20,
.results-roulette .result-roulette-22,
.results-roulette .result-roulette-24,
.results-roulette .result-roulette-26,
.results-roulette .result-roulette-28,
.results-roulette .result-roulette-29,
.results-roulette .result-roulette-31,
.results-roulette .result-roulette-33,
.results-roulette .result-roulette-35,
.results-roulette .result-roulette-4,
.results-roulette .result-roulette-6,
.results-roulette .result-roulette-8 {
  color: white;
}

.results-roulette .result-roulette-1,
.results-roulette .result-roulette-12,
.results-roulette .result-roulette-14,
.results-roulette .result-roulette-16,
.results-roulette .result-roulette-18,
.results-roulette .result-roulette-19,
.results-roulette .result-roulette-21,
.results-roulette .result-roulette-23,
.results-roulette .result-roulette-25,
.results-roulette .result-roulette-27,
.results-roulette .result-roulette-3,
.results-roulette .result-roulette-30,
.results-roulette .result-roulette-32,
.results-roulette .result-roulette-34,
.results-roulette .result-roulette-36,
.results-roulette .result-roulette-5,
.results-roulette .result-roulette-7,
.results-roulette .result-roulette-9 {
  color: rgba(215, 0, 9, 1);
}

.results-roulette .result-roulette-number:first-child.result-roulette-2,
.results-roulette .result-roulette-number:first-child.result-roulette-10,
.results-roulette .result-roulette-number:first-child.result-roulette-11,
.results-roulette .result-roulette-number:first-child.result-roulette-13,
.results-roulette .result-roulette-number:first-child.result-roulette-15,
.results-roulette .result-roulette-number:first-child.result-roulette-17,
.results-roulette .result-roulette-number:first-child.result-roulette-20,
.results-roulette .result-roulette-number:first-child.result-roulette-22,
.results-roulette .result-roulette-number:first-child.result-roulette-24,
.results-roulette .result-roulette-number:first-child.result-roulette-26,
.results-roulette .result-roulette-number:first-child.result-roulette-28,
.results-roulette .result-roulette-number:first-child.result-roulette-29,
.results-roulette .result-roulette-number:first-child.result-roulette-31,
.results-roulette .result-roulette-number:first-child.result-roulette-33,
.results-roulette .result-roulette-number:first-child.result-roulette-35,
.results-roulette .result-roulette-number:first-child.result-roulette-4,
.results-roulette .result-roulette-number:first-child.result-roulette-6,
.results-roulette .result-roulette-number:first-child.result-roulette-8 {
  background-color: rgba(0, 0, 0, 1);
}

.results-roulette .result-roulette-number:first-child.result-roulette-1,
.results-roulette .result-roulette-number:first-child.result-roulette-12,
.results-roulette .result-roulette-number:first-child.result-roulette-14,
.results-roulette .result-roulette-number:first-child.result-roulette-16,
.results-roulette .result-roulette-number:first-child.result-roulette-18,
.results-roulette .result-roulette-number:first-child.result-roulette-19,
.results-roulette .result-roulette-number:first-child.result-roulette-21,
.results-roulette .result-roulette-number:first-child.result-roulette-23,
.results-roulette .result-roulette-number:first-child.result-roulette-25,
.results-roulette .result-roulette-number:first-child.result-roulette-27,
.results-roulette .result-roulette-number:first-child.result-roulette-3,
.results-roulette .result-roulette-number:first-child.result-roulette-30,
.results-roulette .result-roulette-number:first-child.result-roulette-32,
.results-roulette .result-roulette-number:first-child.result-roulette-34,
.results-roulette .result-roulette-number:first-child.result-roulette-36,
.results-roulette .result-roulette-number:first-child.result-roulette-5,
.results-roulette .result-roulette-number:first-child.result-roulette-7,
.results-roulette .result-roulette-number:first-child.result-roulette-9 {
  background-color: rgba(215, 0, 9, 1);
  color: white;
}

.game-tile[data-game-type="aogjbrol"] .result-roulette-SLOT_GAME {
  background-image: url("../../willbetgambling/image/aogjbrol_bonus.webp");
  width: 20px;
  height: 20px;
  background-color: inherit;
  border: 0;
  color: transparent;
}

.game-tile[data-game-type="swl"] .result-roulette-number,
.game-tile[data-game-type="swle"] .result-roulette-number,
.game-tile[data-game-type="abwl"] .result-roulette-number {
  width: 20px;
  height: 20px;
  background-color: inherit;
  border: 0;
  color: transparent;
}

.game-tile[data-game-type="swl"] .result-roulette-number {
  background-image: url("../../willbetgambling/image/swl_sprites.webp");
}

.game-tile[data-game-type="swl"] .result-roulette-1 {
  background-position: -45px -23px;
}

.game-tile[data-game-type="swl"] .result-roulette-2 {
  background-position: -1px -1px;
}

.game-tile[data-game-type="swl"] .result-roulette-5 {
  background-position: -1px -23px;
}

.game-tile[data-game-type="swl"] .result-roulette-10 {
  background-position: -23px -1px;
}

.game-tile[data-game-type="swl"] .result-roulette-20 {
  background-position: -23px -23px;
}

.game-tile[data-game-type="swl"] .result-roulette-40 {
  background-position: -45px -1px;
}

.game-tile[data-game-type="swle"] .result-roulette-number {
  background-image: url("../../willbetgambling/image/swle_sprites.webp");
}

.game-tile[data-game-type="swle"] .result-roulette-1 {
  background-position: -23px -1px;
}

.game-tile[data-game-type="swle"] .result-roulette-2 {
  background-position: -1px -1px;
}

.game-tile[data-game-type="swle"] .result-roulette-5 {
  background-position: -1px -23px;
}

.game-tile[data-game-type="swle"] .result-roulette-10 {
  background-position: -23px -23px;
}

.game-tile[data-game-type="swle"] .result-roulette-20 {
  background-position: -45px -1px;
}

.game-tile[data-game-type="swle"] .result-roulette-40 {
  background-position: -45px -23px;
}

.game-tile[data-game-type="swle"] .result-roulette-X2 {
  background-position: -1px -45px;
}

.game-tile[data-game-type="swle"] .result-roulette-X7 {
  background-position: -23px -45px;
}

.game-tile[data-game-type="abwl"] .result-roulette-number {
  background-image: url("../../willbetgambling/image/abwl_sprites.webp");
}

.game-tile[data-game-type="abwl"] .result-roulette-1 {
  background-position: -1px -1px;
}

.game-tile[data-game-type="abwl"] .result-roulette-2 {
  background-position: -23px -1px;
}

.game-tile[data-game-type="abwl"] .result-roulette-5 {
  background-position: -1px -23px;
}

.game-tile[data-game-type="abwl"] .result-roulette-10 {
  background-position: -23px -23px;
}

.game-tile[data-game-type="abwl"] .result-roulette-M,
.game-tile[data-game-type="abwl"] .result-roulette-D {
  background-position: -45px -1px;
}

.game-tile[data-game-type="abwl"] .result-roulette-2S {
  background-position: -45px -23px;
}

.game-tile[data-game-type="abwl"] .result-roulette-WS {
  background-position: -1px -45px;
}

.game-tile[data-game-type="abwl"] .result-roulette-5S {
  background-position: -23px -45px;
}

.db-games-grid .game-tile .results-baccarat {
  display: none !important;
}

.db-games-grid .game-tile .results-baccarat {
  position: absolute;
  display: grid;
  align-items: start;
  bottom: 0;
  left: 0;
  margin: 15px;
}

.results-baccarat .result-baccarat-tile {
  position: relative;
  display: flex;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  font-size: 0.5em;
  width: 11px;
  height: 11px;
  border: gray solid 1px;
  color: #fff;
}

[data-game-playercount-icon] {
  background-image: url(https://portal-admin.888casino1.com/library/digitalbeat/icons/seat_icon.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(1px);
  width: 15px;
  height: 18px;
}

.game-tile .online-players {
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
  height: 27px;
  min-width: 40px;
  border-radius: 10px;
  gap: 5px;
  backdrop-filter: blur(5px);
}

.game-tile .online-players[data-game-playercount="0"] {
  display: none;
}

.db-games-grid .db-jackpot-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

.search-pre-population-container .game-live-overlay,
.search-pre-population-container .db-jackpot-container {
  display: none;
}

.db-games-grid .db-jackpot {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0) !important;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 1.25em;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.5);
  height: 2.375em;
  width: 8.75em;
  color: var(--games-jackpot-font-color);
  font-weight: 600;
  font-feature-settings: "tnum";
  white-space: nowrap;
  flex-direction: column;
  overflow: hidden;
  transform: translateZ(0);
  text-transform: uppercase;
  font-size: 1em;
  align-self: center;
  transition: all 0.2s ease;
  background: linear-gradient(
    165deg,
    var(--games-jackpot-light-bg-color),
    var(--games-jackpot-light-bg-color) 50%,
    var(--games-jackpot-bg-color) 51%,
    var(--games-jackpot-bg-color)
  );
  /* background: #1c78ce; */
}

.db-games-grid[data-games-category="recentPlayed"] .game-tile {
  min-width: unset;
}

.db-games-grid[data-games-category="recentPlayed"]
  .game-tile
  .db-jackpot {
  display: none !important;
}

.db-games-grid[data-games-category="recentPlayed"]
  .game-tile
  [data-sash-category] {
  transform: scale(0.75);
}

.db-games-grid[data-games-category="recentPlayed"] .game-tile .game-live-overlay {
  display: none;
}

digitalbeat-banner-mover > * {
  margin-top: 1.5em !important;
}

@media only screen and (max-width: 640px) {
  body:has(.digitalbeat-search-games) {
    overflow: hidden;
  }

  .game-tile[data-game-type="swl"] .result-roulette-number,
  .game-tile[data-game-type="swle"] .result-roulette-number,
  .game-tile[data-game-type="abwl"] .result-roulette-number,
  .game-tile[data-game-type="aogjbrol"] .result-roulette-SLOT_GAME {
    -ms-zoom: 0.5;
    zoom: 0.75;
  }
  .digitalbeat-search-games {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    touch-action: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #081420dd;
  }

  .digitalbeat-search-games .search-results {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .category-menu-scroller {
    display: none;
  }
}

@media only screen and (min-width: 640px) {
  .swiper-pagination-container {
    /* top: 120px; */
    justify-content: center;
  }
  /* .controllers-header {
    top: 120px;
  } */

  .swiper-pagination {
    transform: none !important;
    width: fit-content !important;
  }

  .swiper-slide {
    display: none;
  }

  .swiper-pagination-bullet-active {
    color: white !important;
  }

  .swiper-slide.swiper-slide-active {
    display: inherit;
  }

  .category-header {
    display: none;
  }

  .search-pre-population-container .category-header {
    display: flex;
  }

  /* [data-grid-layout="live"] .db-games-grid {
    grid-auto-columns: initial;
    grid-auto-flow: initial;
    grid-template-columns: repeat(3, 1fr);
    overflow: initial;
    grid-gap: 1em;
  } */

  .db-games-grid[data-games-category="recentPlayed"] {
    grid-template-columns: repeat(5, minmax(252px, 1fr));
  }

  [data-grid-layout="classic"] .db-games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .game-tile {
    height: 300px;
  }

  .game-tile::after {
    font-size: 1.2em;
  }

  .game-tile:hover .game-tile-bg {
    transform: scale(1.25);
  }

  .game-tile:hover .game-tile-hover,
  .game-tile:focus .game-tile-hover,
  .search-results-game:hover .game-tile-hover,
  .search-results-game:focus .game-tile-hover {
    visibility: visible;
    opacity: 1;
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
  }

  .game-tile .game-live-overlay {
    height: 38px;
  }

  .game-tile .game-limits {
    top: -230px;
    font-size: 1.1em;
  }

  .db-games-grid .game-tile .results-roulette {
    bottom: 10px;
  }

  .results-roulette .result-roulette-number {
    font-size: 1.3em;
    font-weight: 800;
    width: 20px;
    height: 20px;
  }

  .game-tile .online-players {
    bottom: 10px;
    right: 0;
    font-size: 1.4em;
  }

  .category-menu-scroller {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    display: flex;
    top: 0;
    bottom: 0;
  }

  .category-menu-scroller-forward::after {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../../willbetgambling/image/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto 8px auto auto;
  }

  .category-menu-scroller-back::after {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../../willbetgambling/image/arrow-left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto auto auto 8px;
  }

  .category-menu-scroller-back {
    background: linear-gradient(
      to left,
      rgba(255, 255, 255, 0) 0%,
      var(--db-background-color) 60%,
      var(--db-background-color) 100%
    );
    position: absolute;
    z-index: 1;
  }

  .category-menu-scroller-forward {
    position: absolute;
    right: 0;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      var(--db-background-color) 60%,
      var(--db-background-color) 100%
    );
  }

  .digitalbeat-search-games-grid .search-results-games {
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    padding: 0 0.5em 1em;
  }
}

@media only screen and (min-width: 800px) {
  [data-grid-layout="live"] .db-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  }
}

@media only screen and (min-width: 1200px) {
  .digitalbeat-search-games-grid .search-results-games {
    grid-template-columns: repeat(6, 1fr);
    gap: 1em;
    padding: 0 0.5em 1em;
  }
}

@media only screen and (min-width: 1600px) {
  [data-grid-layout="live"] .db-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .game-tile {
    height: 350px;
  }

  .game-tile .game-limits {
    top: -280px;
  }
}
