@import url("./font/font.css");

@viewport {
  width: device-width;
  zoom: 1;
}

:root {
  --primary-color: #19243a;
  --secondary-color: #070f26;
  --accent-color: #50aafb;

  --font-color-main: #ffffff;
  --font-color-accent: #000000;

  /* BACKGROUND COLOR */
  --main-bg-color: #19243a;
  --primary-bg-color: #ec1c23;
  --secondary-bg-color: #191919;
  --tertiary-bg-color: #252525;

  /* TEXT COLOR */
  --primary-txt-color: #ffffff;
  --secondary-txt-color: #808080;
  --tertiary-txt-color: #5a5a5a;

  /* ACCENT COLOR */
  --main-accent-color: #ec1c23;
  --secondary-accent-color: #6b1315;
  --tertiary-accent-color: #3a3a3a;
  --border-btm: #2d2d2d;

  /* MISC */
  --sports-background-color: #0f181e;
  --sports-background-image: url(./images/section-new.webp);

  /* SIDE SCROLLBAR */
  --scrollbar-width: 11px;
  --scrollbar-bg: #000000;
  --scrollbar-color: #282828;
  --scrollbar-borderwidth: 3px;

  /* VIP TABLE */
  --vip-table-title: #052561;
}

body {
  background: #e5f0ff;
}
html,
body {
  height: 100%;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  font-family: "Nunito", sans-serif;
}

.clearboth {
  clear: both;
}

a {
  color: var(--accent-color);
}

a:hover {
  text-decoration: none;
  color: var(--accent-color);
}

a:focus {
  outline: unset;
}
#theme {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  background-size: cover;
}

.themetbl {
  display: block;
}

.mobile-menu {
  display: none;
}

.themetblrow {
  display: block;
}

.themetblcell {
  display: block;
}

.themetblwidth {
  width: 100%;
}

.themetblheight {
  height: 100%;
}

.theme-container-box {
  width: 100%;
  height: auto;
}

#theme-frame {
  height: 100%;
  margin: auto;
  width: 100%;
}

div#theme-header-link {
  background: #052561;
}
#theme-header-link .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo {
  flex-basis: 100%;
}
#logo img {
  width: 90px;
  padding: 14px 0;
}
#header-right {
  flex-basis: 100%;
}

#theme-header-content {
  background: #e5f0ff;
  position: relative;
}

#theme-header-top {
  display: flex;
  justify-content: space-between;
}

#redirectaddr {
  padding: 9px;
  text-align: center;
  font-size: 15px;
  background: var(--primary-txt-color);
  border-radius: 20px;
  font-weight: bold;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  background: transparent;
  color: var(--accent-color);
  text-transform: initial;
  font-size: 14px;
  transition: 0.2s;
  letter-spacing: 0px;
}
#cssmenu > ul > li.active > a::before,
#cssmenu > ul > li:hover > a::before {
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.2s;
  opacity: 1;
  bottom: 0;
}
#cssmenu ul li:last-child a:hover {
  color: #50aafb;
}
#cssmenu ul li:last-child:hover img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(99%) saturate(1067%)
    hue-rotate(183deg) brightness(100%) contrast(97%);
}
#cssmenu ul li.has-sub ul li a:hover img {
  filter: unset;
}

#cssmenu > ul > li::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.2s;
  opacity: 0;
}

#cssmenu > ul > li {
  margin: 0 10px;
}

#cssmenu > ul > li > a {
  padding: 7px 0;
  text-transform: initial;
  font-size: 14px;
  color: #19243a;
  font-weight: bold;
  letter-spacing: 0px;
  position: relative;
}

#cssmenu > ul > li > a > img {
  width: 20px;
}
#cssmenu ul ul {
  position: absolute;
  left: 0;
  top: 100%;
  transform: unset;
  background: rgb(229 240 255 / 75%) !important;
  z-index: 2;
  width: 100dvw;
  height: 0;
  overflow: hidden;
  transition: 0.2s;
  text-align: center;
  backdrop-filter: blur(4px);
}
#cssmenu li:hover > ul {
  padding: 0;
  background: #fff;
  border: 0px solid red;
  padding-top: 5px;
  margin-top: 0px;
  z-index: 9;
}
#cssmenu ul li.has-sub ul li {
  padding: 15px 3px;
  margin: 0 40px;
  border-bottom: 0px solid transparent;
}

#cssmenu ul li:hover > ul > li {
  height: auto;
  width: 7%;
}
#cssmenu ul li.has-sub ul li:hover {
  background: unset;
  border: unset;
  filter: opacity(0.6);
}

#cssmenu ul li.has-sub ul li span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
}
#cssmenu ul li:last-child {
  position: relative;
}
#cssmenu ul li:last-child ul {
    width: fit-content;
    min-width: 100px;
    background: #232e46 !important;
    font-weight: bold;
}
#cssmenu ul li:last-child:hover ul {
  padding: 10px;
}
#cssmenu ul li:last-child ul li {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 0;
    width: fit-content;
}
#cssmenu ul ul li a {
  color: #ffffff;
  font-size: 12px;
}

.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.clock {
  color: var(--font-color-main);
  font-size: 10px;
  opacity: 1;
  text-align: right;
}

/* Dropdown Button */
.dropbtn {
  background: #6c7078;
  border-radius: 50px;
  padding: 4px 9px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(37, 37, 37, 0.9);
  min-width: 210px;
  box-shadow: 0px 2px 7px 0px rgb(0 0 0 / 20%);
  z-index: 9999;
  border-radius: 10px;
}

.dropdown-content a {
  color: var(--primary-txt-color);
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover, .language-select.is-active a{
  text-decoration: underline;
color: #5da1ff;
}

.dropdown:hover .dropdown-content {
  display: block;
  padding: 20px;
  right: 0;
}
.dropbtn .glyphicon {
  top: 0px;
  left: 2px;
  font-size: 8px;
  background: #94969d;
  padding: 4px;
  border-radius: 50px;
}

.dropbtn > img,
.dropdown-content img {
  width: 26px;
}

.dropdown-content img,
.dropdown-content a {
  display: inline-block;
}

.dropdown-content span {
  color: #ffffff;
  border-right: 0.01rem solid rgba(255, 255, 255, 0.2);
  padding: 0 8px;
  font-size: 10px;
}

.country-name,
.links-dropdown-title {
  color: var(--primary-txt-color);
  padding-bottom: 5px;
}
.language-container,
.link-url {
  margin-left: -6px;
  padding: 4px 0 10px;
}
.separator,
.link-container {
  display: flex;
  gap: 8px;
}

.header-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  padding: 5px 10px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
}
.header-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
input {
  outline: unset;
}

.btn {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn-box {
  display: flex;
}

.btn-login .btn {
  border: 1px solid #003193;
  border-radius: 5px;
  color: #052561;
  background: #ffffff;
  font-weight: bold;
  font-size: 14px;
  transition: 0.2s;
  padding: 5px 35px;
}

.btn-login .btn:hover {
  opacity: 0.6;
  transition: 0.2s;
}

.btn-sign-up .btn {
  border: 1px solid var(--main-bg-color);
  border-radius: 5px;
  color: #ffffff;
  background: linear-gradient(45deg, #75c0fa, #076cda);
  font-weight: bold;
  font-size: 14px;
  transition: 0.2s;
  padding: 5px 25px;
}

.btn-sign-up .btn:hover {
  opacity: 0.6;
  transition: 0.2s;
}

.live-chat {
  padding: 0px 10px;
}

.live-chat a {
  color: var(--primary-txt-color);
}

/* BANNER */
.flexslider {
  border: 0;
  margin: 0;
}

.flex-control-nav {
  bottom: 0;
}

.flex-direction-nav .flex-prev {
  left: 0;
}

.flex-direction-nav .flex-next {
  right: 0;
}

.flexslider .flex-control-nav li {
  margin: 0 13px;
}

.flexslider .flex-control-paging li a {
  width: 20px;
  height: 5px;
  border-radius: 0px;
  position: absolute;
  margin-top: -0.5%;
  z-index: 9 !important;
  background: var(--tertiary-accent-color);
}

.flexslider .flex-control-paging li a.flex-active {
  background: var(--main-accent-color);
}

.announcetext {
  padding: 12px;
  background: rgb(67 154 241 / 32%);
  position: relative;
  color: #003eb3;
}

.announcetext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--menu-bg) 40%, transparent);
  height: 100%;
  aspect-ratio: 2 / 1;
  z-index: 2;
}

.announcetext::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(-90deg, var(--menu-bg) 40%, transparent);
  height: 100%;
  aspect-ratio: 2 / 1;
  z-index: 2;
}

.announcetext ul {
  margin: 0;
  padding: 0;
}

.announcetext ul li {
  list-style: none;
  font-size: 14px;
}

/*HOME*/

section.home-promo img {
  width: 100%;
}

.home-promo-item .promo-btn {
  display: none;
}

section.home-promo-item {
  position: relative;
  padding: 10px;
  background: #ffffff;
}
section.home-sport {
  background: url(/data/2247/uploads/sportbg1.webp) center center no-repeat;
}

.sports-group {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.item-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #031539;
  margin: 20px 0px -20px;
  font-weight: bold;
}
.sports-group .item-title {
  color: #fff;
}
.item-content p {
  color: var(--primary-txt-color);
  font-size: 13px;
  line-height: 1.2;
}

#imageCarousel .content-img {
  width: 100%;
  border: 0px solid var(--main-accent-color);
  margin: auto;
}

.content-img img {
  width: 100%;
}

.sports-sec {
  flex-basis: 60%;
}

#imageCarousel .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
}
#eventCarousel .carousel-inner {
  background: url(/data/2247/uploads/sport-upcoming-bg.png) center center
    no-repeat;
  background-size: cover;
  border: 2px solid rgb(4, 61, 189);
  border-radius: 20px;
}
#casinoCarousel .item {
  background: linear-gradient(
      rgb(255 255 255 / 50%) -2.7%,
      rgba(0, 46, 115, 0) 100%
    )
    center center;
  border-radius: 20px;
}
.content-box {
  position: relative;
}

.item-content {
  position: absolute;
  right: -30px;
  bottom: 69px;
  z-index: 9;
}

.item-content {
  position: absolute;
  right: -30px;
  top: 25%;
  z-index: 9;
}

span.btn {
  background: var(--primary-txt-color);
  color: var(--main-accent-color);
  cursor: pointer;
  padding: 2px 25px;
  white-space: nowrap;
}

.icon-box {
  width: 70%;
  display: block;
  margin-bottom: 12px;
}

.icon-box img {
  width: 100%;
}

.carousel-indicators li {
  margin: 0;
}



#imageCarousel ol.carousel-indicators {
  width: fit-content;
  left: 0%;
  bottom: unset;
  top: 40px;
  right: unset;
  margin: unset;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

#imageCarousel .carousel-indicators li {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 150px;
    height: 50px;
    background: #010b1cc7;
    border: unset;
    border-radius: 5px;
    z-index: 1;
    text-indent: 0;
    filter: drop-shadow(0px 0px 2px var(--accent-color));
    justify-content: center;
    align-items: flex-start;
    padding-left: 16px;
}

#imageCarousel .carousel-indicators li.play-now {
  background: linear-gradient(
    180deg,
    #c8faff -45%,
    #30b3ff,
    #004cbd 94%,
    #a2a9ff 140%
  ) !important;
  justify-content: center;
  align-items: center;
  color: #ffff;
  font-weight: bold;
  filter: unset !important;
  padding: unset;
}
#imageCarousel .carousel-indicators li.play-now::before {
  background: unset !important;
}
#imageCarousel .carousel-indicators li.play-now a {
  color: #fff;
}

#imageCarousel .carousel-indicators .active,
#imageCarousel .carousel-indicators li:hover {
  background: #ffffffc7;
  filter: drop-shadow(0px 0px 2px #fb8f50);
}

#imageCarousel .carousel-indicators li::before,
#imageCarousel .carousel-indicators li::after {
  transition: background 0.5s;
  content: "";
  position: absolute;
}

#imageCarousel .carousel-indicators li::before {
  height: 2px;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--accent-color);
  z-index: 9;
}

#imageCarousel .carousel-indicators li:hover::after {
  width: 90%;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 2px;
  margin-left: 8px;
  z-index: 9;
  -webkit-transform: perspective(0.5em) rotateX(8deg);
  transform: perspective(0.5em) rotateX(8deg);
}

#imageCarousel .carousel-indicators li.active::before,
#imageCarousel .carousel-indicators li.active::after,
#imageCarousel .carousel-indicators li:hover::before,
#imageCarousel .carousel-indicators li:hover::after {
  background: #3c88b0;
}

#imageCarousel img.provider-character {
  width: 83px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 2;
}

#imageCarousel .carousel-indicators li.active img.provider-character,
#imageCarousel
  .carousel-indicators
  li:nth-child(1):hover
  img.provider-character,
#imageCarousel
  .carousel-indicators
  li:nth-child(2):hover
  img.provider-character,
#imageCarousel
  .carousel-indicators
  li:nth-child(3):hover
  img.provider-character,
#imageCarousel
  .carousel-indicators
  li:nth-child(4):hover
  img.provider-character {
  filter: saturate(1);
  transition: background 0.5s;
}

.best-sport-btn {
    z-index: 20;
    color: #dddddd;
    font-size: 16px;
    font-weight: bold;
}

#imageCarousel .carousel-indicators li:hover .best-sport-btn span {
color:#1c70a8;
}

#imageCarousel .carousel-indicators li.active span,
#imageCarousel .carousel-indicators li.hover span
 {
  color: #1c70a8;
}

/*UPCOMING EVENT*/
.event-sec {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
  scale: 0.85;
  align-items: center;
  margin-top: -30px;
}
.up-event {
  padding: 10px;
}
.up-event table {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-collapse: separate;
}
.up-event table img {
  width: 80px;
  padding: 7px;
  background: #edededcc;
  border-radius: 50px;
  box-shadow: 0 0 2px 7px #aaaaaab8;
}

.up-event table th {
  color: #ffffff;
  padding: 20px 0 0;
  font-size: 18px;
  text-align: center;
}

.up-event table tr td {
  text-align: center;
  padding: 3px 5px;
  color: var(--primary-txt-color);
  font-weight: bold;
  font-size: 12px;
}

.up-event table tr td a {
  background: linear-gradient(
    180deg,
    #c8faff -45%,
    #30b3ff,
    #004cbd 94%,
    #a2a9ff 140%
  );
  color: var(--primary-txt-color);
  cursor: pointer;
  border-radius: 5px;
  display: block;
  padding: 10px 7px;
  margin: 3px;
}

.up-event table tbody tr:first-child td:nth-child(2) {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-txt-color);
  text-align: center;
}

.up-event table tbody tr:nth-child(2) td,
.up-event table tbody tr:nth-child(5) td {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
}

.up-event table tbody tr:nth-child(5) td span {
  font-size: 12px;
  font-weight: normal;
}

.up-event table tbody tr:first-child td p {
  margin-top: -6px;
  margin-bottom: -10px;
}

.up-event table tbody tr:nth-child(5) td p {
  margin: 0;
  margin-bottom: -11px;
}

.up-event table tbody tr:nth-child(5) td {
  background: #5799ff91;
  border: 1px solid #ffffff96;
}

#eventCarousel {
  width: 100%;
}

#eventCarousel .carousel-control {
  bottom: unset;
  top: 50%;
  transform: translateY(-50%);
  vertical-align: middle;
  height: 30px;
  width: 30px;
  background-image: unset !important;
  background: #1a74c1;
  border-radius: 50px;
  opacity: 1;
}
#eventCarousel .carousel-control .glyphicon-chevron-left,
#eventCarousel .carousel-control .glyphicon-chevron-right,
#eventCarousel .carousel-control .icon-next,
#eventCarousel .carousel-control .icon-prev {
  background: unset;
  border-radius: unset;
  font-size: 15px;
  height: unset;
  margin: unset;
  top: 0;
  transform: translateY(50%);
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
}

#eventCarousel .carousel-indicators {
  bottom: 0;
  margin-bottom: -25px;
}

#eventCarousel .carousel-indicators li,
#casinoCarousel .carousel-indicators li,
#mGameCarousel   .carousel-indicators li{
  background-color: #454659;
  border: 0px solid var(--primary-txt-color);
  margin: 1px;
}
#eventCarousel .carousel-indicators li.active,
#casinoCarousel .carousel-indicators li.active,
#mGameCarousel .carousel-indicators li.active {
  background-color: #1ea5e6;
  width: 30px;
  height: 10px;
  margin: 1px;
}

#eventCarousel .carousel-control.left {
  left: 5px;
}

#eventCarousel .carousel-control.right {
  right: 5px;
}

.contact-box {
  position: relative;
}

.contact-box img {
  width: 100%;
}

.contact-list {
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 15%;
  top: 0;
  transform: translateY(50%);
}

.contact-list li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.contact-list li svg {
  width: 40px;
}

.contact-list svg path {
  fill: var(--primary-bg-color) !important;
}

.contact-list li div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.contact-list li span,
.contact-list a {
  transition: color 0.3s;
  color: var(--primary-txt-color);
}

.contact-list li span:nth-child(2):hover,
.contact-list a:hover {
  text-decoration: none;
  color: var(--primary-bg-color);
}

.prod-section {
  background: #0a0a0a;
}

.prod-box {
  display: flex;
  margin: 30px 0;
  flex-direction: column;
}

.slot-section .prod-box {
  display: flex;
  margin: 30px 0;
  flex-direction: row;
}

.select-sec ul {
  border-bottom: 1px solid var(--border-btm);
}

.select-sec ul li {
  padding: 10px 20px;
  background: var(--primary-bg-color);
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  cursor: pointer;
  margin-right: 10px;
  border: 1px solid var(--primary-bg-color);
  color: var(--primary-txt-color);
  list-style: none;
}

.select-sec ul li.inactive {
  color: var(--primary-txt-color);
  background: var(--secondary-bg-color);
  border: 1px solid var(--primary-txt-color);
}

.prod-section ol#faq_modal li.question {
  width: calc(100% / 3);
  list-style: none;
  padding: 10px;
}

ul#tabs {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

ul#tabs li img {
  width: 100%;
}

ul#tabs li.inactive img {
  border-right: 0 solid var(--primary-bg-color);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

ul#tabs li img {
  border-right: 5px solid var(--primary-bg-color);
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/*SLOT HOME*/

.jackpot {
  position: relative;
  width: 27%;
}

.jackpot img {
  width: 100%;
}

.jackpot span {
  width: 100%;
  text-align: center;
  color: var(--primary-txt-color);
  font-weight: bold;
  font-size: 24px;
}

#jackpot {
  position: absolute;
  text-align: center;
  bottom: 3.5rem;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
}

.games {
  width: 100%;
}

.games > ul {
  display: flex;
}

.games-content ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.games-content ul li {
  width: calc(100% / 5.5);
  margin: 4px 7px;
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
}

.games-content ul > li > img {
  width: 100%;
}

.more-games {
  flex-grow: 3;
  text-align: right;
}

.games > ul li {
  padding: 10px 20px;
  background: linear-gradient(
    180deg,
    #c8d1ff -45%,
    #3096ff,
    #0054bd 80%,
    #99deff 130%
  );
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  cursor: pointer;
  margin-right: 10px;
  border: 1px solid #3cb7ff;
  list-style: none;
}
.games > ul li a {
  color: var(--primary-txt-color);
  text-decoration: none;
}

.games > ul li.inactive {
  background: #100d0d;
  border: 1px solid #353434;
}
.games > ul li.inactive a {
  color: #8d8d8d;
}
.games > ul li:hover {
  background: linear-gradient(
    180deg,
    #ffeec8 -45%,
    #ffbf30,
    #bd2c00 80%,
    #ffe099 130%
  );
  transition: 0.2s;
}
.games > ul li:hover a {
  color: var(--primary-txt-color);
  transition: 0.2s;
}

ul#slottabs {
  border-bottom: 1px solid #353434;
  margin-left: -30px;
}

.more-games {
  flex-grow: 3;
  text-align: right;
  padding: 10px 20px;
  font-weight: bold;
}

.more-games a {
  color: var(--accent-color);
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hover-box {
  position: absolute;
  top: 0px;
  aspect-ratio: 1 / 1;
  width: 100%;
  opacity: 0;
  background: #181818e0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.games-content ul li a {
  text-decoration: none;
}

.games-content ul li:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.games-content ul li:hover .hover-box {
  transform: translateY(0);
  opacity: 1;
  transition: 0.3s;
}

.hover-box span {
  margin: 5px auto;
  border-radius: 5px;
  padding: 8px 14px;
  font-weight: bold;
  cursor: pointer;
  color: var(--main-bg-color);
  background: linear-gradient(195deg, #ffc440, #c84919);
  color: var(--primary-txt-color);
}

.txt-box {
  background: #052561;
  position: relative;
  margin: 0;
  color: var(--primary-txt-color);
  padding: 10px 10px 15px;
}

.slot-more {
  margin: 10px 0;
}

.slot-more ul li img {
  width: 100px;
}

.slot-more ul li {
  width: calc(100% / 8);
  padding: 5px;
  list-style: none;
}

.slot-more ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}

.slot-more h3 {
  color: var(--primary-txt-color);
}

/*PLAYNOW SECTION*/
.playnow-section {
  padding: 30px 0;
  background: var(--main-bg-color);
}

.playnow-section ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.playnow-section ul li {
  margin: 10px;
  padding: 0;
  width: 25em;
  height: 21.2em;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
}

.playnow-section span.title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

.content {
  color: var(--primary-txt-color);
  font-size: 13px;
  text-align: center;
  padding: 10px;
}

.playnow-section ul li .hoverbox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-size: 100% 0;
  transform-origin: bottom center;
  opacity: 0;
}

.bottom-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0 0 9px 9px;
  overflow: hidden;
}

.bottom {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 0 0 9px 9px;
  height: 45px;
  margin-top: 10px;
}

.playnow-section ul li .bottom {
  opacity: 1;
  transform: translateY(100%);
  margin-top: 0;
  height: 55px;
}

.bottom::before {
  height: 5px;
  width: 40%;
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  margin: auto;
  transform: perspective(10px) rotateX(10deg);
}

.bottom span {
  font-size: 15px;
  font-weight: bold;
  color: var(--main-bg-color);
}

.playnow-section ul li .bottom {
  opacity: 1;
  margin-top: 20px;
  height: 45px;
  transform: translateY(90%);
}

.playnow-section ul li:hover .bottom {
  transform: translateY(0%);
  opacity: 1;
  transition:
    transform 0.2s,
    opacity 0.2s;
  transition-delay: 0.3s;
}

.playnow-section ul li:first-child span.title {
  color: #f1c300;
}

.playnow-section ul li:first-child {
  background: url(./images/1-bg.webp) center center no-repeat;
}

.playnow-section ul li:first-child:hover .hoverbox {
  background: url(./images/1h-new.webp) bottom center no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 24em;
  top: -40px;
  opacity: 1;
  left: 0;
  transition:
    background-size 0.2s,
    opacity 0.2s;
}

.playnow-section ul li:first-child:hover .bottom {
  margin-top: 20px;
  height: 45px;
  transform: translateY(0%);
}

.playnow-section ul li:first-child .bottom::before {
  background: #f1c300;
}

.playnow-section ul li:first-child .bottom {
  background: #f1c300;
}

.playnow-section ul li:nth-child(2) span.title {
  color: red;
}

.playnow-section ul li:nth-child(2) {
  background: url(./images/2-bg.webp) center center no-repeat;
}

.playnow-section ul li:nth-child(2):hover .hoverbox {
  background: url(./images/2h-new.webp) bottom center no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 24em;
  top: -40px;
  opacity: 1;
  left: 0;
  transition:
    background-size 0.2s,
    opacity 0.2s;
}

.playnow-section ul li:nth-child(2):hover .bottom {
  margin-top: 20px;
  height: 45px;
  transform: translateY(0%);
}

.playnow-section ul li:nth-child(2) .bottom::before {
  background: red;
}

.playnow-section ul li:nth-child(2) .bottom {
  background: red;
}

.playnow-section ul li:nth-child(3) span.title {
  color: #02c7bd;
}

.playnow-section ul li:nth-child(3) {
  background: url(./images/3-bg.webp) center center no-repeat;
}

.playnow-section ul li:nth-child(3):hover .hoverbox {
  background: url(./images/3h-new.webp) bottom center no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 24em;
  top: -40px;
  opacity: 1;
  left: 0;
  transition:
    background-size 0.2s,
    opacity 0.2s;
}

.playnow-section ul li:nth-child(3):hover .bottom {
  margin-top: 20px;
  height: 45px;
  transform: translateY(0%);
}

.playnow-section ul li:nth-child(3) .bottom::before {
  background: #02c7bd;
}

.playnow-section ul li:nth-child(3) .bottom {
  background: #02c7bd;
}

.playnow-section ul li:nth-child(4) span.title {
  color: #b401e2;
}

.playnow-section ul li:nth-child(4) {
  background: url(./images/4-bg.webp) center center no-repeat;
}

.playnow-section ul li:nth-child(4):hover .hoverbox {
  background: url(./images/4h-new.webp) bottom center no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 24em;
  top: -40px;
  opacity: 1;
  left: 0;
  transition:
    background-size 0.2s,
    opacity 0.2s,
    margin-top 0.2s;
}

.playnow-section ul li:nth-child(4):hover .bottom {
  margin-top: 20px;
  height: 45px;
  transform: translateY(0%);
}

.playnow-section ul li:nth-child(4) .bottom::before {
  background: #b401e2;
}

.playnow-section ul li:nth-child(4) .bottom {
  background: #b401e2;
}
.mem-serv {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(
      rgb(255 255 255 / 50%) -2.7%,
      rgba(0, 46, 115, 0) 100%
    )
    center center;
  border: 1px solid #85e7ff;
  border-radius: 20px;
  padding: 20px;
  height: 275px;
}
.mem-serv h3,
.mem-serv h5 {
  margin: 0;
}
.mem-serv h4 {
  color: #005a93;
}
.mem-serv h6 {
  margin-top: -16px;
  color: #031539;
}
.mem-sub {
  display: flex;
  gap: 30px;
}
.mem-icn svg {
  width: 30px;
  fill: #005a93;
}
.mem-txt {
  display: flex;
  flex-direction: column;
}
.mem-txt span:first-child {
  font-weight: bold;
  font-size: 16px;
}
.mem-txt span:last-child {
  font-weight: bold;
}

/*=================================== VIDEO & AMBASSADOR ===================================*/

.live {
  margin-top: 30px;
}
.vid {
  position: relative;
}
.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    z-index: 9;
}
.video-player iframe {
  width: 100%;
  height: 100%;
}
.video-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 999999;
}

.video-nav button {
  cursor: pointer;
  height: 50px;
  width: 50px;
  background-image: unset !important;
  background: #1a74c1b8;
  border: 2px solid #1a74c1;
  border-radius: 50px;
  outline: unset;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.video-nav button:hover {
    transform: scale(0.8);
    transition: 0.2s;
}

.thumbnail-wrapper::-webkit-scrollbar {
  display: none;
}
.thumbnail-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 10px;
  scroll-behavior: smooth;
}

.thumbnail {
  flex-basis: 25%;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  background: unset;
  padding: unset;
  filter: grayscale(1);
}

.thumbnail img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 2;
}

.thumbnail.active,
.thumbnail:hover {
  border-color: #0067f7;
  filter: grayscale(0) drop-shadow(0px 2px 2px #0067f7);
}

.amb-header {
  border-radius: 20px;
  overflow: hidden;
}
.side-banner img {
  width: 100%;
}

.app {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.app img {
  width: 100%;
}
.app-wrapper {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 60px;
  left: 18px;
}
.qr-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

a.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: #ffffff;
  padding: 6px 20px;
  border-radius: 19px;
  cursor: pointer;
  color: #031539;
  font-weight: bold;
  justify-content: center;
}
a.app-btn svg {
  width: 14px;
}
g.android {
  fill: #86c80e;
}
g.ios {
  fill: rgb(149, 149, 149);
}

/*GAME*/
.prod-page {
  background: var(--main-bg-color);
}

.prod-page .games-content img {
  width: 100%;
}

.games-content {
  position: relative;
}

.games-box {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-70%);
  width: 30%;
  text-align: center;
}

.game-logo {
  width: 60%;
  margin: auto;
}

.game-log img {
  width: 100%;
}

.game-desc {
  padding: 20px 0 30px;
}

.game-desc span {
  font-size: 20px;
  color: var(--primary-txt-color);
}

.game-btn a {
  cursor: pointer;
  background: var(--primary-bg-color);
  padding: 5px 30px;
  border-radius: 4px;
  color: var(--primary-txt-color);
  text-decoration: none;
  display: inline-block;
}

ul#game-tabs {
  display: flex;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
}

ul#game-tabs::after {
  content: "";
  flex: auto;
}

#theme-contain-poker ul#game-tabs::after,
#theme-contain-lottery ul#game-tabs::after {
  flex: unset;
}

ul#game-tabs li {
  border: 0px solid var(--main-accent-color);
  list-style: none;
  padding: 7px;
  width: 15%;
  margin: 5px 10px;
  background: var(--tertiary-bg-color);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

ul#game-tabs li:hover {
  transform: translateY(-10%);
  transition: 0.3s;
  transition-delay: 0.1s;
}

ul#game-tabs li img {
  width: 100%;
}

ul#game-tabs li::before {
  content: "";
  height: 3px;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--primary-bg-color);
  position: absolute;
  z-index: 9;
}

ul#game-tabs li::after {
  content: "";
  width: 60%;
  height: 5px;
  background: var(--primary-bg-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  margin: auto;
  z-index: 9;
  -webkit-transform: perspective(0.5em) rotateX(8deg);
  transform: perspective(0.5em) rotateX(8deg);
}

.prod-page .container {
  margin-top: -5%;
}

/*SLOT*/
#theme-contain-slot {
  background: var(--secondary-bg-color);
}

.slot-banner {
  background: url(./images/slotbanner.webp) center center no-repeat;
  background-size: cover;
  position: relative;
}

.slot-banner img {
  width: 100%;
}

.slot-jackpot {
  position: absolute;
  bottom: 108px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 22%;
}

.jackpot-title {
  color: #9c9c9c;
  font-weight: bold;
}

.slot-jackpot .jackpot {
  position: unset;
}

.slot-jackpot #jackpot {
  position: unset;
  color: var(--primary-txt-color);
}

.slot-jackpot .jackpot span {
  color: var(--primary-txt-color);
  font-size: 35px;
}

.slot-container {
  display: flex;
  width: auto;
}

ul#slot-tabs {
  display: flex;
  padding: 0px 10px 0px 30px;
  flex-direction: column;
}

ul#slot-tabs li {
  padding: 10px 0;
  list-style: none;
}

ul#slot-tabs li:not(:last-child) {
  border-bottom: 1px solid #3f4143;
}

ul#slot-tabs li img {
  width: 100px;
}

.slot-side {
  background: var(--tertiary-bg-color);
  border-radius: 20px 0 0 20px;
}

.slot-game {
  padding: 15px 0px 15px 20px;
}

ul#slot-tabs li.inactive {
  filter: grayscale(1);
}

.slot-game .games-content ul li {
  width: calc(100% / 5);
  padding: 10px;
  margin: 0;
}

.slot-game .more-games {
  text-align: left;
  padding: 20px 10px;
}

ul#games-subtab {
  padding: 10px 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

ul#games-subtab li {
  padding: 0px 35px;
  list-style: none;
  color: var(--tertiary-txt-color);
  border-right: 1px solid var(--secondary-txt-color);
  cursor: pointer;
  font-weight: bold;
}

ul#games-subtab li:not(.inactive) {
  color: var(--primary-bg-color);
}

/*VIP*/

.vip-banner {
  position: relative;
}

.vip-banner img {
  width: 100%;
}

.vip-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 25%;
  margin-right: 10%;
}

.vip-title h4 {
  font-weight: bold;
  color: #052561;
}

.vip-title p {
  color: var(--secondary-txt-color);
}

.vip-table {
  width: 80%;
  margin: auto;
}

.vip-table table {
  margin: auto;
  width: 100%;
}

.vip-table th:first-child,
.vip-table td:first-child {
  text-align: left;
  color: #000000;
}

.vip-table th,
.vip-table td {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #0044a5;
}

.vip-table tr.table-top,
.vip-table table tbody {
  border-bottom: 1px solid #363434;
}

.vip-table thead tr:nth-child(2) {
  background: unset;
}

.vip-table th {
  color: var(--vip-table-title);
}

.vip-table th:first-child {
  color: var(--vip-table-title);
}

.vip-table tr td:first-child {
  width: 40%;
}

.vip-table tr.table-top th {
  border: unset;
}

.vip-table tr.table-top th:first-child {
  vertical-align: bottom;
  background: unset;
  color: var(--vip-table-title);
  font-size: 23px;
  font-weight: bold;
}

.vip-table tr th img {
  width: 80%;
  padding: 15px;
}

.vip-table tr td img {
  width: 14%;
}

.vip-table > p {
  margin-top: 40px;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #052561;
}

ul.vip-info {
  margin: 0;
  padding: 15px;
}

ul.vip-info li {
  padding: 10px 5px;
  color: #858385;
  list-style: circle;
}

.banner-wrapper {
  display: flex;
  gap: 20px;
}

.b-left {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12%;
}

.b-right {
  display: flex;
  flex-basis: 70%;
  gap: 8px;
}

ol#faq_modal {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 10px;
  justify-content: space-between;
}
li.question {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 16px;
  flex: 0 0 24.3%;
  display: flex;
}
li.question a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 50%;
  flex-direction: column;
}

li.question img {
  width: 100%;
  border-radius: 10px;
}
.promoimg {
  padding: 8px;
}
.promo-btn {
  padding: 0 12px 8px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.titlepromo {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 220px;
}
.promo-l {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.promo-r {
  flex-basis: 30%;
}

.subpromo {
    display: block;
    font-size: 13px;
    color: #fff;
    margin: 0;
    opacity: 0.6;
    display: none;
}

.pbtn-info {
  font-weight: bold;
  color: #000000;
  border: 1px solid grey;
  background: #ffffff;
  border-radius: 10px;
  width: 100%;
  padding: 10px 0px;
  font-size: 14px;
  text-align: center;
  transition: 0.3s;
}

.pbtn-info:hover {
  transform: scale(1.05);
  background: #5cadf2;
  color: #ffff;
}

#faq_fbinner li {
  padding: 5px 0;
}

#cms5faq_modal_template_list {
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#cms5faq_modal_template_list::-webkit-scrollbar {
  display: none;
}

.home-slider-sec #cms5faq_modal_template_list {
  padding: 0 0 30px;
}

/* Nav button styling */
.scroll-nav {
  position: absolute;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  margin: auto;
  background: rgb(105 105 105);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: unset;
}
.scroll-nav:hover {
  opacity: 0.6;
}

.scroll-nav svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

/* Positioning */
.scroll-nav.prev {
  left: 0;
  top: 50%;
}
.scroll-nav.next {
  right: 0;
  top: 50%;
}

/*LOTTERY*/
.lottery-new {
  background: var(--bg-color);
  padding-bottom: 40px;
}
.lotto-info p {
  font-size: x-large;
  font-weight: bold;
  color: #af8842;
}

.lotto-info h5 {
  font-size: large;
  line-height: 2;
}

.lottab table {
  background: linear-gradient(180deg, #98825b 0%, #1a202c 100%);
  border: 0px solid #102632;
  width: 100%;
  font-size: 14px;
  border-radius: 10px;
}

.lottab table tr,
.lottab table th,
.lottab table td {
  padding: 10px;
  color: #fff;
  text-align: center;
  border: 1px solid white;
}

.lotto-drawresult .panel.panel-default {
  background-color: #e5f0ff;
  height: auto;
  max-height: fit-content;
  margin-bottom: 10px;
}

.lotto-drawresult .panel-default > .panel-heading {
  background-color: #f5f5f5;
  border-radius: 5px 5px 0 0;
  color: #fff;
}

.panel-body2 p a {
  color: #00baf6;
}

.panel-body2 p a:hover {
  color: #ffd905;
}

div#GDLotto {
  display: none;
}

.webpage-lottery .panel-body {
  padding: 0px 15px;
}

.webpage-lottery .panel {
  padding: 0px 0px;
}

.webpage-lottery .panel-default > .panel-heading {
  border-color: transparent;
}

.webpage-lottery .liveresult-template .btn {
  margin: 20px;
}
#Perdana-3D,
#Perdana-3D .small {
  color: #000000 !important;
}

.lottery-new .btn-primary:hover {
  color: #fff;
  background-color: #7f6d4d;
  border-color: #7f6d4d;
}

.lottery-new .btn:hover {
  box-shadow: 0px 3px 5px rgb(46 46 46);
  transform: translateY(-3px);
}

.lottery-new button {
  margin: 17px;
  background-color: #caab72;
  text-transform: uppercase;
  border: 0;
}

.lottery-new .panel-heading {
  color: #000;
  border: 0px solid red;
}

.panel {
  max-height: max-content;
}

.panel-heading {
  font-size: 15px;
}

.panel-body label {
  color: #fff;
  background: #000;
  padding: 4px;
  width: 100%;
}

.panel-body #TopThree .col-sm-4 {
  padding: 1px;
}

.lotto-drawresult .panel-body {
  padding: 0 !important;
  color: #fff;
  font-size: 15px;
  min-height: 425px;
  background: transparent;
  margin: 0;
}

.lotto-drawresult .panel-body .logo {
  padding: 10px 0;
}

.lotto-drawresult .panel-body .logo .col-sm-4 {
  margin-left: 9px;
  width: 29%;
  border: 0px solid red;
}

.lotto-drawresult .panel-body label {
  color: #fff;
  background: #353c57;
  padding: 4px;
  width: 100%;
}

.lotto-drawresult .panel-body #TopThree .col-sm-4 {
  padding: 1px;
}

#Perdana-3D .panel-default > .panel-heading {
  background: #caab72;
}

#Perdana-3D .panel-body .logo {
  background: #caab72;
}

#Magnumimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_magnum.webp) left
    no-repeat #383838;
  height: 50px;
  width: 85px;
}

#PMPimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_damacai.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#Totoimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_toto.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#Singaporeimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_sgpool.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#Sabahimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_sabah88.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#Sandakanimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_stc.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#Sarawakimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_cashsweep.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#GDLottoimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_gdlotto.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#Perdanaimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_perdana.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#LuckyHari-Hariimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_luckyharihari.webp)
    left no-repeat;
  height: 50px;
  width: 85px;
}

#GOOD4Dimg {
  background: url(/theme/asset/template_desktop12/imgs/4D_good4d.webp) left
    no-repeat;
  height: 50px;
  width: 85px;
}

#THV88,
#GDLotto,
#Toto-5D,
#Toto-6D {
  display: none;
}

#Magnum .panel-heading,
#Magnum .logo {
  background: #f2bc00;
  color: #000 !important;
}

#PMP .panel-heading,
#PMP .logo {
  background: #148ea4;
}

#Toto .panel-heading,
#Toto .logo {
  background: #dd0000;
}

#Singapore .panel-heading,
#Singapore .logo {
  background: #12689a;
}

#Sabah .panel-heading,
#Sabah .logo {
  background: #eee;
  color: #000 !important;
}

#Sandakan .panel-heading,
#Sandakan .logo {
  background: #2f9405;
}

#Sarawak .panel-heading,
#Sarawak .logo {
  background: #094405;
}

#GDLotto .panel-heading,
#GDLotto .logo {
  background: #95650a;
}

#Perdana .panel-heading,
#Perdana .logo {
  background: #777;
}

#LuckyHari-Hari .panel-heading,
#LuckyHari-Hari .logo {
  background: #00aced;
}

#GOOD4D .panel-heading,
#GOOD4D .logo {
  background: #ffd45e;
  color: #000 !important;
}

#Perdana-3D .panel-heading {
  color: var(--font-color);
}

#Magnum .panel-default {
  border: 3px solid #f2bc00;
  border-radius: 10px;
  overflow: hidden;
}

#PMP .panel-default {
  border: 3px solid #148ea4;
  border-radius: 10px;
  overflow: hidden;
}

#Toto .panel-default {
  border: 3px solid #dd0000;
  border-radius: 10px;
  overflow: hidden;
}

#Singapore .panel-default {
  border: 3px solid #12689a;
  border-radius: 10px;
  overflow: hidden;
}

#Sabah .panel-default {
  border: 3px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

#Sandakan .panel-default {
  border: 3px solid #2f9405;
  border-radius: 10px;
  overflow: hidden;
}

#Sarawak .panel-default {
  border: 3px solid #094405;
  border-radius: 10px;
  overflow: hidden;
}

#GDLotto .panel-default {
  border: 3px solid #95650a;
  border-radius: 10px;
  overflow: hidden;
}

#Perdana .panel-default {
  border: 3px solid #777;
  border-radius: 10px;
  overflow: hidden;
}

#LuckyHari-Hari .panel-default {
  border: 3px solid #00aced;
  border-radius: 10px;
  overflow: hidden;
}

#GOOD4D .panel-default {
  border: 3px solid #ffd45e;
  border-radius: 10px;
  overflow: hidden;
}

#LuckyHari-Hari .col-sm-9 {
  font-size: 14px;
}

#Magnum #datetime label,
#GOOD4D #datetime label,
#Sabah #datetime label {
  color: #000;
}

#datetime {
  text-align: right;
}

#datetime label {
  background: transparent;
}

#datetime .col-sm-12 {
  padding: 0;
}

.popwin {
  color: #353c57;
  font-weight: bold;
}

#TopThree,
#Special,
#Consolation {
  padding: 10px 20px;
}

#TopThree {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}
#TopThree .control-label {
  width: 100%;
  margin: 0;
  min-width: 100%;
  margin-bottom: 8px;
}
#Consolation {
  padding-bottom: 20px;
}

a#show3d {
  color: #ffffff;
}

input#customform_submit,
input#registerform_btnSubmit {
  position: relative;
  min-width: 100%;
  background: #052561;
  color: #ffffff;
  border-radius: 8px;
  margin: 0;
  color: #ffffff;
  height: 52px;
  padding: 0px 14px;
  font-weight: bold;
  border: 0;
  border: 1px solid #052561;
}

input#customform_submit:hover,
input#registerform_btnSubmit:hover {
  background: #75c0fa;
  color: #052561;
  border: 1px solid #052561;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  background: #fff;
  color: #1c1c1c;
  border: 1px solid var(--secondary-txt-color);
  height: 50px;
  padding: 0px 14px;
  border-radius: 8px;
}

form#customform input[type="text"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #052561;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #aab0b4;
}

.login-btm {
  text-align: center;
  padding: 30px;
}

.modal-backdrop.in {
  background: #ffffff !important;
  opacity: 0.8;
}
#header-right .modal-header .close {
  margin: unset;
  float: unset;
}
#header-right .modal-header {
  background: #ffffff;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  color: #1c1c48;
  position: relative;
  padding: 20px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header-right .modal-body {
  position: relative;
  padding: 20px;
  background: #ececec;
  overflow: auto;
  scrollbar-width: none;
}
#header-right .modal-dialog {
  width: 450px;
  margin: 14% auto;
}
#header-right .modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

#reg-title1 {
  font-size: 36px;
  color: var(--primary-txt-color);
  font-weight: 900;
}

#reg-desc p {
  font-weight: 800;
  font-size: 18px;
}

#reg-title1 span,
#reg-desc p {
  color: #dfdd00;
  background: var(--primary-bg-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#reg-desc {
  border-left: 5px solid var(--primary-bg-color);
  margin: 10px 0px 0px;
  padding: 0px 15px;
}

#reg-desc ul {
  width: 100%;
  text-align: justify;
}

#reg-desc ul li {
  padding: 10px;
  color: var(--main-bg-color);
}

.reg p {
  font-size: 10px;
  color: grey;
  margin-top: 20px;
}

.register #registerform {
  width: 100%;
  border: 0px solid var(--main-accent-color);
  overflow: auto;
}

.register #registerform dl {
  margin-bottom: 5px;
}

.register #registerform dt {
  width: 100%;
  color: #927d37;
  font-size: 10px;
  display: none;
}

.register #registerform dd {
  text-align: left;
}

.register #registerform textarea,
.register #registerform input[type="text"],
.register #registerform input[type="text"],
.register #registerform input[type="password"] {
  width: 100%;
  color: var(--main-bg-color);
  font-size: 13px;
  padding: 10px;
  background: var(--primary-txt-color);
  border: 1px solid var(--secondary-txt-color) !important;
  border-radius: 5px;
  margin: 5px 0;
}

.register #registerform #registerform_Currency {
  background: var(--primary-txt-color);
  border-radius: 0px;
  width: 100%;
  color: #757575;
  border: 1px solid var(--secondary-txt-color) !important;
  padding: 10px;
  border-radius: 5px;
  outline: unset;
}

.register #registerform #groupSubmit dd {
  float: left;
  width: 100%;
}

.register #registerform .btnCheckUser,
#registerform_btnSubmit {
  color: var(--primary-txt-color);
  font-weight: bold;
  background: #5faff4;
  padding: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 11px;
  outline: 0;
  border: 0;
}

dl#groupVerifyCode {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.register #registerform dl#groupCurrency {
  width: 100%;
}

.register input::placeholder {
  transform: translateX(0px);
  transition: 0.4s;
}

.register input:focus::placeholder {
  transform: translateX(200px);
  transition: 0.4s;
  opacity: 0;
  transition-timing-function: ease-in;
}

.register {
  display: flex;
  border-radius: 30px;
  justify-content: space-evenly;
  width: 100%;
  margin: 20px auto;
  flex-direction: row-reverse;
  gap: 20px;
  background: #fff;
  padding: 20px;
}
.regis-dtl {
  width: 50%;
}
.regis-dtl img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.small,
small {
  color: #141414 !important;
  margin-top: 5px;
}

.small.w3-text-green {
  color: green !important;
}

.small.w3-text-red {
  color: red !important;
}

.sub-box {
  margin: 20px 20px 0 20px;
  background: var(--primary-txt-color);
  padding: 30px;
  border-radius: 10px 10px 0 0;
  color: #6a6b6d;
}

.sub-title {
  font-size: 30px;
  font-weight: bold;
  padding: 0 20px;
}

.sub-txt {
  font-size: 20px;
  padding: 0 20px;
}

.live-tv {
  margin: 15px;
}

#api-leaguefeed .brick > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.api-leaguefeed-free-wall .brick {
  min-height: 217px;
  margin: 10px;
  position: unset !important;
  display: inline-block;
  vertical-align: top;
  width: 18%;
  text-align: center;
}

#api-leaguefeed {
  clear: both;
  display: block;
  width: 100%;
  height: unset !important;
  position: unset !important;
  text-align: center;
}

#api-leaguefeed .brick > ul > li {
  padding: 5px 10px;
}

#api-leaguefeed #versus {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 20px 0;
}

#api-leaguefeed #livetv a,
#api-leaguefeed #livetv a:visited {
  display: block;
  color: var(--primary-txt-color);
  text-decoration: none;
  text-align: center;
  background: var(--primary-bg-color);
  padding: 10px;
  border-radius: 10px;
}

.accordion {
  background-color: #eee0;
  color: #444;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: 0.2s;
}

.accordion:hover {
  background-color: var(--main-bg-color);
  color: var(--primary-txt-color);
}

.casino-dealer {
  display: flex;
  gap: 20px;
}
.hc-box .item-title {
  margin: 20px 0 13px;
}
.hc-box:first-child {
  flex-basis: 100%;
}
.hc-box:last-child {
  flex-basis: 75%;
}

/* =========================
RESULT TABLE
========================= */

.resultTable {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  grid-auto-flow: column;
}
.result {
  border: 1px dotted #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  height: 31px !important;
  padding: 4px;
}

/* =========================
CIRCLE
========================= */

.circle {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  margin: auto;
}

/* =========================
BACCARAT
========================= */

.resultB-p {
  color: #d00;
  border-color: #d00;
}

.resultB-b {
  color: #1818ff;
  border-color: #1818ff;
}

.resultB-t {
  color: #298c00;
  border-color: #298c00;
}

/* =========================
ROULETTE
========================= */

.resultR-red {
  background: #d00;
  border-color: #d00;
  color: #fff;
}

.resultR-blc {
  background: #000;
  border-color: #000;
  color: #fff;
}

.resultR-green {
  background: #298c00;
  border-color: #298c00;
  color: #fff;
}

.resultSoon .circle {
  border: 0;
}

/* =========================
SLIDER
========================= */

#casinoCarousel .carousel-indicators {
  top: -30px;
  left: unset;
  right: 0;
  width: unset;
  margin: unset;
}

.casino-container {
  overflow: hidden;
  position: relative;
}

.casino-slide {
  position: relative;
  width: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  height: 275px !important;
  border-radius: 20px;
  border: 1px solid #85e7ff;
}

.casino-slide > div {
  padding-left: 20px;
}

/* =========================
PAGINATION
========================= */

.casino-pagination {
  position: absolute;
  top: 20px;
  right: 0;
  width: auto;
}

.casino-pagination .swiper-pagination-bullet-active {
  background: #000;
}

/* =========================
BUTTON
========================= */

.btn-casino {
  position: absolute;
  bottom: 20px;
  left: 22px;
  padding: 7px 35px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    #c8faff -45%,
    #30b3ff,
    #004cbd 94%,
    #a2a9ff 140%
  );
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-casino:hover {
  color: #000000;
}

/* =========================
TITLE
========================= */

.casinoResult-title {
  width: 43%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0;
}

casinoResult-game {
  color: #fffdf8;
  text-transform: capitalize;
}

/* =========================
LOGO
========================= */

.casinoResult-logo {
  width: 50%;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: auto 100%;
}

.casinoResult-logo-ab {
  background-image: url("/data/1724/uploads/logo-allbet.png");
}
.casinoResult-logo-bg {
  background-image: url("/data/1724/uploads/logo-bgGaming.png");
}
.casinoResult-logo-ez {
  background-image: url("/data/1724/uploads/logo-ezugi.png");
}
.casinoResult-logo-eg {
  background-image: url("/data/1724/uploads/logo-evo.png");
}
.casinoResult-logo-ls {
  background-image: url("/data/1724/uploads/logo-luckyStreak.png");
}
.casinoResult-logo-dg {
  background-image: url("/data/1724/uploads/logo-dreamgaming.png");
}
.casinoResult-logo-wm {
  background-image: url("/data/1724/uploads/logo-wm.png");
}
.casinoResult-logo-ag {
  background-image: url("/data/1724/uploads/logo-asiaGaming.png");
}
.casinoResult-logo-sb {
  background-image: url("/data/1724/uploads/logo-sexyBaccarat.png");
}
.casinoResult-logo-sa {
  background-image: url("/data/1724/uploads/logo-saGaming.png");
}
.casinoResult-logo-gg {
  background-image: url("/data/1724/uploads/logo-gua.png");
}
.casinoResult-logo-gd {
  background-image: url("/data/1724/uploads/logo-goldDeluxe.png");
}

/*------------------------------------------------------    FOOTER DESKTOP  -----------------------------------------------------*/

#theme-footer {
  margin-top: 70px;
  padding: 40px 0;
  background: #052561;
}
.footer-info,
.footer-icns {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 40px;
}
.footer-banner img {
  width: 100%;
}
.footer-info {
  display: flex;
  justify-content: flex-start;
  margin: 30px 0;
  gap: 70px;
}
.f-info-box {
  font-size: 20px;
}
.f-info-box:first-child {
  flex-basis: 34%;
}

.f-info-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-info-box ul li {
  list-style: none;
}
.f-info-box,
.f-info-box ul li a {
  color: #9d9d9d;
  font-size: 14px;
}
span.f-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}
.footer-btm h4 {
  font-weight: bold;
  color: #ffffff;
  margin-top: 40px;
}
.footer-btm p {
  font-size: 14px;
  color: #8d8d8d;
}
.footer-btm .btn {
  color: #8daacf;
  padding: unset;
  background: unset;
  border: unset;
  outline: unset;
  text-decoration: underline;
}
.footer-btm .well {
  background: unset;
  border: unset;
  box-shadow: unset;
  padding: 00;
}
.footer-btm h2,
.footer-btm h3,
.footer-btm ol li {
  font-weight: bold;
  color: #fff;
}
.footer-btm a {
  color: #009fff;
}
.footer-copyright {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #efefef;
  text-align: center;
  color: #9d9d9d;
}

.footer-icns {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.ficns-box {
  color: #9d9d9d;
}
.ficns-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.ficns-box ul li {
  list-style: none;
  flex: 0 0 18%;
}

.ficns-box img {
  width: auto;
  height: 28px;
}
.ficns-box:nth-child(2) {
  width: 26%;
}

.ficns-box:first-child,
.ficns-box:last-child {
  width: 24%;
}

/** Side Menu **/
.opncls {
  display: block;
  background: url(/theme/am99-2025/imgs/menubtn-open.png);
  width: 24px;
  height: 24px;
  background-size: contain;
}

.sm-btn-wrap {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 16px;
}

.header-wrap.active .sm-btn-wrap {
  margin-left: 16px;
}

button.sidemenu-btn {
  position: relative;
  z-index: 99;
  background: var(--bg-card);
  color: #8a8a8a;
  width: 40px;
  height: 40px;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.member-info-wrapper {
  background: var(--wrapper-bg-color);
  border-radius: 15px;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 97px auto;
  grid-gap: 12px;
  align-items: center;
  padding: 15px 10px;
  margin-bottom: 15px;
}

.mb-vip-img {
  max-width: 97px;
  margin: 0 auto;
  transition: 0.3s;
}

.mbinfo-wrap {
  position: relative;
  font-size: 15px;
}

.mb-name {
  color: var(--primary-text-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.mb-lvl {
  font-size: 13px;
}

.mbvip-info a {
  color: var(--primary-text-color);
}

.mb-stvip {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-text-color);
}

.mb-wallet {
  margin-top: 10px;
}

button.org-btn {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  min-width: 80px;
  border-radius: 5px;
  height: 24px;
}

.sidemenu-wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-shadow: var(--shadow-soft);
}

.currency img {
  max-height: 27px;
  margin-right: 15px;
}

.currency {
  display: flex;
  align-items: center;
  color: #000;
  border-radius: 10px;
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  background: linear-gradient(
    270deg,
    rgb(255 200 200) 0%,
    rgb(249 249 249) 100%
  );
}

.sidemenu-wrapper::-webkit-scrollbar {
  width: 6px;
}

.sidemenu-wrapper::-webkit-scrollbar-track {
  background: var(--wrapper-bg-color);
  border: 1px solid var(--wrapper-bg-color);
  border-radius: 30px;
}

.sidemenu-wrapper::-webkit-scrollbar-thumb {
  background: var(--quinary-color);
  border-radius: 30px;
}

.sidemenu-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--quinary-color);
}

ul.nav.sidemenu-nav {
  flex-direction: column;
  background: var(--menu-bg);
  margin-top: 14px;
  border-radius: 10px;
  padding: 6px 0;
  box-shadow: var(--shadow-soft);
  z-index: 1;
  position: relative;
}

ul.nav.sidemenu-nav li {
  position: relative;
  width: 100%;
}

ul.nav.sidemenu-nav li a.smenu-item {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  padding: 10px;
  font-size: 16px;
  position: relative;
  font-weight: bold;
  margin-left: 8px;
}

ul.nav.sidemenu-nav li a.smenu-item.active {
  color: var(--brand-500);
  font-weight: bold;
}

ul.nav.sidemenu-nav li a.smenu-item.active img {
  filter: invert(1) brightness(0.7);
}

ul.nav.sidemenu-nav li a.smenu-item img {
  max-height: 24px;
  margin-right: 24px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(39%) saturate(5366%)
    hue-rotate(213deg) brightness(93%) contrast(98%);
}
ul.nav.sidemenu-nav li a.smenu-item.collapsed {
  background: none;
}

ul.nav.sidemenu-nav li:hover {
  background: var(--bg-card);
  border-radius: 10px;
}

a.smenu-item.droparrow::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 11px;
  color: #ccc;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: linear 0.3s;
}

a.smenu-item.droparrow.collapsed::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  transform: rotate(0);
  transition: linear 0.3s;
}

.smenu-wrap {
  position: relative;
  padding-left: 10px;
}

.smenu-wrap a {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 25px;
  font-size: 14px;
  font-weight: 500;
  color: #b0bbcc;
  border-radius: 40px;
  transition: 0.3s;
}

.smenu-wrap a:hover {
  background: var(--quinary-color);
  transition: 0.3s;
  transform: translateX(-10px);
}

.nav > li > a:focus,
.nav > li > a:hover {
  background: var(--quinary-color);
  color: var(--primary-text-color);
}

.language-wrap {
  position: relative;
  padding: 10px 0;
}

.language-wrap.open button.lang-btn.dropup::after {
  transform: rotate(180deg);
}

button.lang-btn.dropup {
  position: relative;
  background: #1c1c32;
  border: 1px solid #2a3246;
  border-radius: 45px;
  width: 100%;
  padding: 3px 20px;
  height: 45px;
  text-align: left;
  color: var(--tertiary-text-color);
}

button.lang-btn.dropup img {
  max-height: 30px;
  margin-right: 15px;
  transition: 0.3s;
}

button.lang-btn.dropup::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 10px;
  color: #cccccc;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: linear 0.3s;
}

.dropdown-menu.language {
  background: #1c1c32;
  padding: 0;
  margin: 5px 0;
  border: 0;
  border-radius: 10px;
  min-width: 100%;
  overflow: hidden;
  font-size: 15px;
}

a.lang-link {
  display: block;
  width: 100%;
  color: var(--tertiary-text-color);
  padding: 8px 20px;
}

a.lang-link img {
  max-height: 30px;
  margin-right: 15px;
}

a.lang-link:hover {
  background: var(--quinary-color);
  color: var(--primary-text-color);
}

.modal.left.fade .modal-dialog {
  left: -100%;
  -webkit-transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
  -moz-transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
  -o-transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
  transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
  left: 0;
}

.modal.left .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content {
  height: 100%;
  padding-bottom: 56px;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
}

.modal.left.fade .modal-dialog {
  left: -100%;
  -webkit-transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
  -moz-transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
  -o-transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
  transition:
    opacity 0.3s linear,
    left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
  left: 0;
}

.modal-content.mobile-side {
  display: block;
  background: #f8fafc;
  border: none;
  border-radius: 0;
}

button.close-menu {
  position: fixed;
  z-index: 100001;
  right: 0;
  top: 0;
  color: #5f6d6d;
  font-size: 20px;
  height: 65px;
  width: 65px;
}

.mobile-menu-top {
  background: #05275f;
  border-bottom: 0;
  padding: 5px 10px;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.1));
}

.mb-logo img {
  max-height: 56px;
}

.mobile-sidemenu {
  position: relative;
  padding-top: 70px;
}

.mobile-sidemenu .member-info-wrapper {
  margin: 15px 15px;
}

.mobile-sidemenu .sidemenu-wrapper {
  height: auto;
  margin: 0 15px;
}

.mobile-sidemenu .language-wrap {
  margin: 0 15px;
}
ul.nav.sidemenu-nav {
  flex-direction: column;
  background: #f6f6f6;
  margin-top: 14px;
  border-radius: 10px;
  padding: 6px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

/*GAMES PAGE*/
.game-wrapper h4 {
  font-weight: bold;
}
.prod-banner {
  position: relative;
}
.prod-banner span {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% / 6);
  font-size: calc(100dvw / 30);
  font-weight: bold;
  color: #00379d;
}
.prod-banner img {
  width: 100%;
}

.game-wrapper {
  padding: 40px 0;
}
.game-provider {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.game-prov-list img {
  width: 100%;
}
.game-prov-list {
  transition: filter 0.3s ease;
  cursor: pointer;
}

.game-provider:hover .game-prov-list {
  filter: grayscale(1);
  transform: translateY(-0);
  transition: filter 0.3s ease;
}

.game-provider .game-prov-list:hover {
  filter: grayscale(0);
  transform: translateY(-8px);
  transition: filter 0.3s ease;
}
.game-pop-list {
  margin-bottom: 60px;
}

.tumbox {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  padding: 3px;
}

.gname {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
}

/*------------------------------------
OWL BASE
------------------------------------*/

.owl-carousel {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.owl-carousel::before,
.owl-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 19%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.owl-carousel::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgb(229 240 255) 0%,
    rgba(27, 32, 51, 0) 100%
  );
}

.owl-carousel::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgb(229 240 255) 0%,
    rgba(27, 32, 51, 0) 100%
  );
}

.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
}

.owl-carousel .owl-item {
  position: relative;
  float: left;
  min-height: 1px;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-game-sec .owl-carousel .owl-item img {
  aspect-ratio: 1 / 1.3;
}

/*------------------------------------
OWL STATES
------------------------------------*/

.owl-carousel.owl-loading,
.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-loaded {
  opacity: 1;
}

.owl-carousel.owl-drag .owl-item {
  user-select: none;
}

/*------------------------------------
NAVIGATION
------------------------------------*/

.owl-theme .owl-nav {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  background: rgb(5 37 97) !important;
  color: #fff;
  font-size: 24px;
  z-index: 3;
  pointer-events: auto;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-theme .owl-nav button.owl-prev {
  left: 10px;
}

.owl-theme .owl-nav button.owl-next {
  right: 10px;
}

.owl-theme .owl-nav button:hover {
  opacity: 1;
}

span[aria-label="Next"] {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(/theme/am99-2025/imgs/arrowright.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  filter: invert(1);
}

span[aria-label="Previous"] {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("/theme/am99-2025/imgs/arrowleft.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  filter: invert(1);
}

/*------------------------------------
DOTS
------------------------------------*/

.owl-theme .owl-dots {
  text-align: center;
}

.owl-theme .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  display: block;
  border-radius: 50%;
  background: #d6d6d6;
  transition: 0.2s;
}

.owl-theme .owl-dot.active span,
.owl-theme .owl-dot:hover span {
  background: #869791;
}

/*------------------------------------
ANIMATION
------------------------------------*/

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

/* WINNERLIST */
.top-winner {
  margin: 40px 0 20px;
}
.winnerlist {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #c0d6ff;
  border-radius: 10px;
  padding: 10px;
  gap: 12px;
}
.winner-types {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.winner-img img {
  width: 60px !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: bottom;
  border-radius: 8px;
}
.winner-game,
.winner-name {
  font-weight: bold;
  font-size: 12px;
}
.winner-total {
  font-weight: bold;
  font-size: 14px;
  color: #00379d;
}

/* PROMOTION PAGE */

.game-section ol#faq_modal {
  flex-wrap: wrap;
  gap: 20px 0;
  padding: 20px 0;
}
.game-section li.question {
  background: #052561;
  flex: 0 0 32%;
}

ul#promo-tab {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 40px 0;
}

.tab-btn-promo {
  width: fit-content;
  padding: 12px 20px;
  background: #e5f0ff;
  border-radius: 10px;
  border: 1px solid #80adeb;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease-in;
}

.tab-btn-promo.active,
.tab-btn-promo:hover {
  background: #052561;
  color: #fff;
  cursor: pointer;
  border: 1px solid transparent;
}

/* PROMOTION INSIDE DETAILS*/

.fancybox-wrap {
  width: 60dvw !important;
  margin: auto !important;
  right: 20px !important;
  left: 20px !important;
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
  width: 100% !important;
}

.fancybox-skin {
  max-width: 100%;
  width: 100%;
  margin: auto;
  padding: 20px;
}
.fancybox-overlay {
  filter: invert(1);
}
#faq_fbinner {
  background: #fff;
  color: #03377f;
  border: none;
  border-radius: 14px;
  max-height: 90vh;
  overflow: auto;
}
#faq_fbinner h4,
#faq_fbinner p {
  margin: 0;
}
.promoimg img {
  width: 100%;
}
#faq_fbinner .promo-btn {
  display: none;
}

.accordion {
  background-color: #eee0;
  color: #444;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: 0.2s;
}

.accordion:hover {
  background-color: var(--bg-color);
  color: var(--font-color);
}

.panel {
  padding: 0 18px;
  /* background-color: var(--font-color);*/
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.mobile-login,
.mobile-app {
  display: none;
}


.login-link{display:flex;justify-content: space-between;}

/** Language popup **/

.langbtn {
  color: var(--text-primary);
  background: var(--menu-bg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  height: 40px;
  border-radius: 5px;
  padding: 2px 10px;
  display: flex;
  font-size: 18px;
  aspect-ratio: 1 / 1;
  justify-content: center;
  align-items: center;
}

.langbtn a {
  color: var(--text-primary);
}

.langbtn img {
  width: 20px;
}

.langbtn:hover {
  filter: contrast(0.9);
}

.langpopup.langshow,
.langpopup-overlay.langshow {
  display: flex;
}

.langpopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0.7;
  z-index: 10000;
}

.langpopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #05275f;
  border-radius: 14px;
  width: 90%;
  max-width: 370px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10001;
}

.langpopup-option:first-child {
  border-right: 1px solid #eee;
}

.langtwocol:last-child {
  border: 0;
}

.langtwocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}

.langtwocol.threecol {
  grid-template-columns: repeat(3, 1fr);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.langtwocol.threecol .langpopup-option:last-child {
  border-left: 1px solid #eee;
}
.langpopup,
.langpopup-overlay {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.langpopup.fast-close,
.langpopup-overlay.fast-close {
  transition:
    transform 0.1s ease,
    opacity 0.1s ease;
}

.langpopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.langpopup-overlay.active {
  opacity: 1;
}

.langpopup-header {
  padding: 15px;
  border-bottom: 1px solid #ffffff;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  position: relative;
}

.langpopup-close:hover {
  filter: contrast(0.9);
}

.langpopup-close {
  color: #000;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 5px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  top: 10px;
  right: 10px;
  position: absolute;
  z-index: 1;
}

.langpopup-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.langtwocol:last-child .langpopup-option {
  border-radius: 0;
  border-bottom: 0;
}

.langtwocol:last-child .langpopup-option:hover {
  border-radius: 0;
}

.langpopup-option:hover span {
  color: #000000;
}

.langflag img {
  width: 20px;
  height: 20px;
}

.langflag {
  color: #ffffff;
  margin: 0;
  padding: 10px 15px 0 15px;
  font-weight: bold;
  display: flex;
  gap: 7px;
  align-items: center;
}

.langpopup-option .label {
  font-size: 16px;
  color: #ffffff;
  font-weight: normal;
  padding: 0;
}

.radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.langpopup-option .label.active {
  color: #000;
}

.radio-indicator.active {
  border-color: #19d300;
}

.radio-indicator.active::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #19d300;
}

.langpopup,
.langpopup-overlay {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.langpopup.fast-close,
.langpopup-overlay.fast-close {
  transition:
    transform 0.1s ease,
    opacity 0.1s ease;
}

.langpopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.langpopup-overlay.active {
  opacity: 1;
}
section.mobile-gamestab {
  display:none;
}


    .m-gameprod {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }
.m-gameprod-content {
    flex-basis: 100%;
}
    .m-gameprod .tab {
        overflow: hidden;
        flex-basis: 30%;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    .m-gameprod .tab button {
        background-color: #43a0f9;
        color: #fff;
        border-radius: 10px;
        border: unset;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        width: 100%;
        font-size: 16px;
    }

/* Create an active/current tablink class */
.m-gameprod .tab button.active {
    background-color: #052561;
}

/* Style the tab content */
.m-gameprod .tabcontent {
  display: none;
  border-top: none;
}
.m-gameprod .tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

  #mGameCarousel  .game-provider {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
  #mGameCarousel .carousel-inner {
    aspect-ratio: 1 / 1;
}
  #mGameCarousel .carousel-indicators {
    bottom: -38px;
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}



/*========================================================================================================================================*/
/*------------------------------------------------------    MOBILE VIEW  -----------------------------------------------------*/
/*========================================================================================================================================*/
@media (max-width: 767px) and (orientation: portrait) {
  /*TOP PART HEADER*/
  #theme-header-content {
    display: none;
  }
  .header-links {
    display: none;
  }
  #theme-header-link .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
  }
  .mobile-menu {
    display: block;
  }
  .bmimg img {
    width: 20px;
    filter: brightness(3.5);
  }
  #logo,
  #header-right {
    flex-basis: unset;
  }
  div#logo {
    flex-basis: 100%;
    text-align: center;
  }
  #logo img {
    width: 60px;
    padding: 6px 0;
  }

  .announcetext {
    padding: 6px;
  }
  .announcetext ul li {
    font-size: 12px;
  }

  /*BANNER*/
  li.question {
    flex: 0 0 100%;
  }

  /*SPORT*/
    section.home-sport {
        margin-top: 0px;
        background: url(/data/2247/uploads/sportbg1.webp) center center no-repeat;
        background-size: cover;
        overflow: hidden;
        padding-bottom: 30px;
    }
    .sports-group {
        flex-direction: column;
        align-items: stretch;
        aspect-ratio: 4 / 2;
    }
  #imageCarousel ol.carousel-indicators {
    width: 100%;
    display: grid;
    gap: 20px;
    top: -20px;
    grid-auto-flow: column;
    overflow: scroll;
  }
  #imageCarousel .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: unset;
    margin-top: 60px;
    margin-left: -40px;
  }
  #imageCarousel .carousel-indicators li {
    width: 100px;
    height: 50px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .best-sport-btn {
    position: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
  }
  #imageCarousel img.provider-character {
    display: none;
  }
  #imageCarousel ol.carousel-indicators::-webkit-scrollbar {
    display: none;
  }

  section.home-promo {
    display: none;
  }

  .btn-login,
  .btn-sign-up {
    width: 100%;
  }
  .mobile-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px;
  }
  .mobile-login .btn-login .btn,
  .mobile-login .btn-sign-up .btn {
    padding: 14px 40px;
    width: 100%;
    border: 1px solid #95b9ff;
    font-weight: bold;
    text-transform: uppercase;
  }

  section.home-casino,
  .footer-info,
  .footer-icns {
    flex-direction: column;
  }
  .casino-dealer {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .thumbnail {
    flex-basis: 42%;
  }
  .live {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .side-banner {
    order: -1;
  }
  .jackpot {
    display: none;
  }
  ul#tabss {
    margin: 20px 0 5px;
    padding: 0 20px;
  }

  .games > ul li {
    display: flex;
    padding: 0px 12px;
    align-items: center;
  }

  .games > ul li a {
    font-size: 9px;
  }

  .games-content ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-y: scroll;
    gap: 20px;
    align-items: flex-start;
  }

  .games-content ul::-webkit-scrollbar {
    display: none;
  }

  .games-content ul li {
    width: 100%;
    flex: 0 0 34%;
    padding: unset;
    margin: unset;
    overflow: unset;
    list-style: none;
  }
  .games > ul li a {
    font-size: 12px;
  }
  .more-games {
    padding: 5px 10px;
  }

  .promo-txt {
    background: var(--secondary-color);
  }

  .playnow-section ul {
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-y: hidden;
    justify-content: flex-start;
  }

  .playnow-section ul::-webkit-scrollbar {
    display: none;
  }

  .playnow-section ul li {
    margin-bottom: 30px;
    flex: 1 0 80%;
  }

  .txt-box {
    padding: 8px;
    font-size: 10px;
    white-space: nowrap;
  }
  .casino-slide {
    background-size: cover;
    height: 240px !important;
  }
  .result {
    height: 22px !important;
    padding: 0px;
  }

  .game-provider {
    grid-template-columns: repeat(3, 1fr);
  }
  .app {
    display: none;
  }
  .mobile-app {
    display: block;
    width: 100%;
    position: relative;
  }
  .mobile-app-btn {
    position: absolute;
    bottom: 0;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  section.home-casino,
  .footer-info,
  .footer-icns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .live {
    margin-top: 20px;
  }
  .amb-header {
    display: none;
  }



#theme-footer {
    margin-top: 40px;
}
  .footer-info {
    gap: 20px;
  }
  .f-info-box:first-child {
    flex-basis: 100%;
  }
  .f-info-box {
    flex-basis: 40%;
  }
  .ficns-box:first-child,
  .ficns-box:last-child {
    width: 58%;
  }
  .sub-box {
    margin: 20px 0;
    padding: 20px 0;
  }

  ul#promo-tab {
    display: grid;
    overflow: scroll;
    grid-auto-flow: column;
    padding: 20px 0 0;
    margin-bottom: 0px;
  }

  .tab-btn-promo {
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .game-section li.question {
    flex: 0 0 100%;
  }
  .fancybox-wrap {
    width: 90dvw !important;
  }

  #header-right .modal-dialog {
    width: 90%;
    margin: 50% auto;
  }
  .register {
    flex-direction: column-reverse;
  }

  .regis-dtl {
    width: 100%;
  }

  #mobile-menu button.close-menu {
    color: unset;
    background: unset;
    border: unset;
  }
  #mobile-menu .modal-dialog {
    margin: unset;
    width: 100%;
  }

  .vip-banner {
    overflow: hidden;
  }
  .vip-banner img {
    width: 740px;
  }
  .vip-title {
    position: unset;
    width: 80%;
    transform: unset;
    margin: auto;
  }

  .vip-table {
    width: 100%;
    margin: auto;
  }

  .vip-table th,
  .vip-table td {
    font-size: 10px;
  }

  .vip-table tr th img {
    width: 40px;
    padding: 5px;
  }

  ul.vip-info {
    margin: 0;
    padding: 0;
  }

  ul.vip-info li {
    padding: 10px 5px;
    color: #858385;
    list-style: circle;
    margin: 0 20px;
  }

  .liveresult-template {
    padding: 20px 0;
  }

  .lotto-drawresult {
    display: grid;
    grid-template-columns: repeat(11, 320px);
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .panel-body .col-sm-3 {
    width: 32%;
    display: inline-block;
  }


    section.mobile-gamestab {
        display: block;
        padding: 20px 0;
    }
.m-gameprod {
    justify-content: flex-start;
}


.m-gameprod .game-provider:hover .game-prov-list {
  filter: unset;
  transform: unset;
  transition: unset;
}

.m-gameprod .game-provider .game-prov-list:hover {
  filter: unset;
  transform: unset;
  transition: unset;
}

.game-wrapper {
    padding: 0px 0;
}
.game-pop-list {
    margin-bottom: 20px;
}

.up-event table {
    aspect-ratio: unset;
}



}




/***********************************************************************************************LANDSCAPE********************************************************************************************************/

@media (max-height: 500px) and (orientation: landscape) {

  #logo img {
    width: 60px;
    padding: 6px 0;
  }
  .language,
  .more-link {
    display: none;
  }
  div#theme-header-content {
    display: none;
  }
  .clock {
    display: none;
  }
  #header-right {
    flex-basis: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .mobile-menu {
    order: 3;
    display: block;
  }
  .bmimg {
    width: 30px;
    filter: invert(1) brightness(1.5) grayscale(1);
  }
  .bmimg img {
    width: 100%;
  }

  #header-right .modal-dialog {
    width: 100%;
    margin: 0% auto;
  }
  #exampleModal .modal-dialog {
    width: 60%;
    margin: 2% auto;
  }
  .register {
    flex-direction: column-reverse;
  }

  .regis-dtl {
    width: 100%;
  }

  .mb-logo img {
    max-height: 40px;
  }
  .mobile-sidemenu {
    position: relative;
    padding-top: 40px;
    height: 100dvh;
    overflow: scroll;
  }
  .mobile-menu-top {
    height: 45px;
  }
  #header-right button.close-menu {
    height: 45px;
    width: 45px;
  }
  .app-wrapper {
    bottom: 20px;
    left: 18px;
  }
  .jackpot {
    display: none;
  }
section.mobile-gamestab {
    display: block;
    padding: 20px 0 50px;
}

.live {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}
.side-banner.col-md-6.col-sm-6 {
    display: none;
}
.live-wrapper.col-md-6.col-sm-6 {
    width: 100%;
}



  ul#tabss {
    margin: 20px 0 5px;
    padding: 0 20px;
  }

  .games > ul li {
    display: flex;
    padding: 0px 12px;
    align-items: center;
  }

  .games > ul li a {
    font-size: 9px;
  }

  .games-content ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-y: scroll;
    gap: 20px;
    align-items: flex-start;
  }

  .games-content ul::-webkit-scrollbar {
    display: none;
  }

  .games-content ul li {
    width: 100%;
    flex: 0 0 21%;
    padding: unset;
    margin: unset;
    overflow: unset;
    list-style: none;
  }
  .games > ul li a {
    font-size: 12px;
  }
  .more-games {
    padding: 5px 10px;
  }

  .promo-txt {
    background: var(--secondary-color);
  }

  .playnow-section ul {
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-y: hidden;
    justify-content: flex-start;
  }

  .playnow-section ul::-webkit-scrollbar {
    display: none;
  }

  .playnow-section ul li {
    margin-bottom: 30px;
    flex: 1 0 80%;
  }

  .txt-box {
    padding: 8px;
    font-size: 10px;
    white-space: nowrap;
  }

    #imageCarousel .carousel-indicators li {
        width: 100px;
        height: 30px;
        display: flex;
        justify-content: center;
    }

  #imageCarousel img.provider-character {
    display: none;
  }
  .best-sport-btn {
    position: unset;
  }
  #imageCarousel .carousel-inner {
    height: 270px;
  }
  .event-sec {
    margin-top: 0px;
  }
  .footer-info {
    gap: 20px;
  }
  .f-info-box:first-child {
    flex-basis: 100%;
  }
  .f-info-box {
    flex-basis: 40%;
  }
  .ficns-box:first-child,
  .ficns-box:last-child {
    width: 58%;
  }

  .game-provider {
    grid-template-columns: repeat(4, 1fr);
  }

  ul#promo-tab {
    display: grid;
    overflow: scroll;
    grid-auto-flow: column;
    padding: 20px 0 0;
    margin-bottom: 0px;
  }

  .tab-btn-promo {
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .game-section li.question {
    background: #052561;
    flex: 0 0 49%;
  }
  .promo-l {
    width: 60%;
  }
  .promo-r {
    flex-basis: 100%;
  }

  .vip-banner {
    overflow: hidden;
  }
  .vip-banner img {
    width: 1210px;
  }
  .vip-title {
    position: unset;
    width: 80%;
    transform: unset;
    margin: auto;
  }

  .vip-table {
    width: 100%;
    margin: auto;
  }

  .vip-table th,
  .vip-table td {
    font-size: 10px;
  }

  .vip-table tr th img {
    width: 40px;
    padding: 5px;
  }

  ul.vip-info {
    margin: 0;
    padding: 0;
  }

  ul.vip-info li {
    padding: 10px 5px;
    color: #858385;
    list-style: circle;
    margin: 0 20px;
  }





}
