@font-face {
  font-family: avertastd;
  src: url(/theme/uw99my/font/AvertaStd.ttf);
}

@viewport {
  width: device-width;
  zoom: 1;
}
/* ========================= THEME TOKENS ========================= */

/* DEFAULT = DARK */

:root {
  --invert-text-light: #000000;
  --brand-100: #0b5232;
  --brand-500: #39846b;
  --brand-700: #234439;
  --bg-main: #101010;
  --body-bg: #3b3b3b;
  --bg-card: #202020;
  --menu-bg: #282828;
  --text-primary: #f9fafb;
  --text-secondary: #505c64;
  --text-tertiary: #b8b8b8;
  --td-odd: #323738;
  --td-even: #45474d;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
  --banner-bg: url(/data/2226/uploads/banner-logo-bg.png);
  --glass-bg: #00000026;
  --timer-bg: #101010;
  --login-bg: #232626;
  --login-header-bg: #292d2e;
}

/* LIGHT OVERRIDE */

[data-theme="light"] {
  --invert-text-light: #ffffff;
  --bg-main: #f8fafc;
  --body-bg: #ffffff;
  --bg-card: #ffffff;
  --menu-bg: #f6f6f6;
  --text-primary: #1c1c1c;
  --text-secondary: #505c64;
  --text-tertiary: #6d6d6d;
  --td-odd: #f6f6f6;
  --td-even: #ececec;
  --border-soft: rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
  --banner-bg: url(/data/2226/uploads/light-banner-logo-bg.png);
  --glass-bg: #b2b2b226;
  --timer-bg: #efefef;
  --login-bg: #ececec;
  --login-header-bg: #ffffff;
}

/* =========================  PAGE BASE ========================= */

body {
  background: var(--body-bg);
  color: var(--text-primary);
  transition:
    background 0.3s,
    color 0.3s;
  position: relative;
}

body::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: radial-gradient(at top left, #235848 0%, transparent 36%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

body {
  font-family: "avertastd", sans-serif;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

::-webkit-scrollbar {
  background: var(--bg-main);
  width: 11px;
}

::-webkit-scrollbar-thumb {
  background: var(--brand-700);
  border: 3px solid var(--bg-main);
  border-radius: 50px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
  border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus,
button:focus,
button:hover,
input:focus,
select:focus {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
}

/* ========================= SEGMENTED SWITCH ========================= */

.theme-switch {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  /* --pill-index: 0; */
  position: relative;
}

/* Sliding pill */
.theme-switch .pill {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - 0px) / 3);
  height: 50px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  transform: translateX(calc(var(--pill-index) * 100%));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Buttons */
.theme-switch button {
  position: relative;
  z-index: 1;
  width: calc(100% / 3);
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  color: var(--text-primary);
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-switch button.active {
  color: #ffffff;
  opacity: 1;
}

.theme-switch button:hover {
  opacity: 1;
}

.theme-switch button i {
  margin-right: 6px;
}


/*NEW ECWON*/
section.header-sec {
  background: var(--bg-main);
}

section.home-banner {
  padding: 20px;
  background:
    var(--banner-bg) -104px -23px no-repeat,
    linear-gradient(45deg, var(--bg-card, transparent));
  background-size: 37%;
  animation: bannerFloat -7s 6s infinite reverse;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}

@keyframes bannerFloat {
  0% {
    background-position:
      -104px -23px,
      0 0;
  }

  50% {
    background-position:
      -104px -41px,
      0 0;
  }

  100% {
    background-position:
      -104px -23px,
      0 0;
  }
}

.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;
}


section.home-promo {
  margin-top: 40px;
}

ol#faq_modal {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 16px;
  justify-content: space-between;
  margin-top: 6px;
}

li.question {
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--bg-card);
  border-radius: 16px;
  flex: 1 0 32%;
  display: flex;
  border: 1px solid var(--border-soft);
}

li.question a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 50%;
  flex-direction: column-reverse;
}

li.question img {
  width: 100%;
  border-radius: 10px;
}

.promo-btn {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.titlepromo {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-primary);
  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: var(--text-primary);
  margin: 0;
  opacity: 0.6;
}

.pbtn-info {
  font-weight: bold;
  color: var(--brand-500);
  border: 1px solid var(--border-soft);
  background: var(--menu-bg);
  border-radius: 10px;
  width: 100%;
  padding: 14px 0px;
  font-size: 14px;
  text-align: center;
  transition: 0.3s;
}

.pbtn-info:hover {
  transform: scale(1.05);
  background: var(--brand-100);
}

#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(25%);
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: var(--bg-card);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

/*.scroll-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}*/

.scroll-nav svg {
  width: 14px;
  height: 14px;
}

/* Positioning */
.scroll-nav.prev {
  right: 35px;
  top: 0;
}

.scroll-nav.next {
  right: 0;
  top: 0;
}

.game-promo .scroll-nav.prev,
.game-promo .scroll-nav.next {
  top: 45%;
}

.promo-wrapper .promo-btn {
  flex-basis: unset;
  width: 100%;
}

.promo-wrapper .titlecat {
  opacity: 0;
  margin: 0;
}

.promo-wrapper .titlepromo {
  font-size: 14px;
  width: 100%;
}

.promo-wrapper .subpromo {
  display: block;
}

.promo-wrapper #cms5faq_modal_template_list {
  overflow-y: unset;
}

.promo-wrapper ol#faq_modal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  gap: 16px;
}

.promo-wrapper ol#faq_modal li.question {
  flex: 0 0 32%;
  border-radius: 30px;
  overflow: hidden;
}

.promo-wrapper li.question a {
  justify-content: space-around;
  flex-direction: column-reverse;
}

.promo-wrapper li.question a img {
  object-fit: cover;
  width: 100%;
}

body:has(.fancybox-opened) {
  overflow: hidden;
}

.fancybox-opened {
  z-index: 99999;
}

.fancybox-inner .promo-btn,
.fancybox-inner h4 img {
  display: none;
}

.fancybox-wrap {
  width: 60dvw !important;
  margin: auto !important;
  right: 20px !important;
  left: 20px !important;
}

.fancybox-skin {
  max-width: 100%;
  width: 100%;
  margin: auto;
  padding: 20px;
}

.fancybox-outer,
.fancybox-inner {
  position: relative;
  width: 100% !important;
}

.fancybox-inner table {
  width: 100%;
  border: #ccc solid 1px;
  text-align: left;
  padding: 5px;
}

.fancybox-inner table thead tr td {
  border: #ccc solid 1px;
  background: green;
  padding: 5px;
  color: var(--bg-main);
}

.fancybox-inner table tbody tr td {
  border: 1px solid var(--border-soft);
  padding: 5px;
}

.cert {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 10px 0 40px 10px;
  text-align: center;
}

.cert img {
  width: 100%;
}

.accordion-seo {
  background-color: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border-radius: 10px;
  border: 1px outset var(--border-soft);
  text-align: left;
  outline: none;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  margin: 10px 0;
}

.accordion-seo.active {
  margin-bottom: 10px;
}

.accordion-seo.active,
.accordion-seo:hover {
  background-color: var(--bg-card);
}

.accordion-seo:after {
  content: "\002B";
  color: #777;
  font-weight: bold;
  margin-left: 5px;
}

.accordion-seo.active:after {
  content: "\2212";
}

.seo-container .panel {
  border: unset;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.seo-wrapper li {
  font-size: 13px;
  margin-left: 20px;
  padding: 3px 0;
  margin-bottom: 0px;
}

.help-info {
  padding: 10px;
  margin-bottom: 30px;
}

.help-info p,
.help-info li {
  line-height: 2;
}

.help-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.help-sidebar {
  flex: 0 0 200px;
  margin: 3% auto;
  padding: 0px 1%;
}

.help-content {
  flex: 1;
  margin: 3% auto;
  padding: 1% 3%;
  background: var(--bg-main);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.help-content h5 {
  color: #ed0306;
  font-weight: bold;
}

.flexChose ul {
  padding-left: 0;
}

.flexChose li {
  list-style: none;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.flexChose li.cur {
  background: #f4f4f4;
  border-radius: 12px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  filter: brightness(0.9);
}

.flexChose li p {
  font-size: 12px;
  color: #036902;
  line-height: 1.1em;
  width: 80px;
  margin: 0 auto;
  font-weight: bold;
}

.flexChose li i {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background-size: 40px 80px;
}

.flexChose li i.faq {
  background-image: url(/data/2215/uploads/icon-faq.png);
}

.flexChose li i.contact {
  background-image: url(/data/2215/uploads/icon-contact.png);
}

.flexChose li i.g3m {
  background-image: url(/data/2215/uploads/icon-g3m.png);
}

.flexChose li i.help {
  background-image: url(/data/2215/uploads/icon-help.png);
}

.flexChose li i.terms {
  background-image: url(/data/2215/uploads/icon-terms.png);
}

.gymChose {
  display: none;
}

.gymChose.active {
  display: block;
}

.gymChose ul li {
  font-size: 13px;
  margin: 0 0 0 15px;
  list-style: circle;
  color: #858385;
}

table tr.title {
  background: #ed0306;
  text-align: center;
  color: var(--bg-main);
}

.buttonIcon {
  background: var(--bg-main);
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  border: 2px solid #efefef;
  padding: 2px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ShowHide {
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background: rgb(3, 105, 2);
  background-size: 100%;
  color: var(--bg-main);
  padding: 4px;
  height: 49px;
  position: relative;
  width: 100%;
  z-index: 100;
  grid-column: 1 / 3;
  display: none;
}

#left {
  height: 20px;
  /*width: 220px;*/
}

#left>div {
  display: flex;
  align-items: center;
  gap: 5px;
}

#left img {
  width: 40px;
  display: inline-block;
}

.rightlogo {
  font-size: 10px;
  line-height: 12px;
}

#right {
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
}

#left a {
  color: var(--bg-main);
  text-decoration: none;
  vertical-align: top;
  padding: 0px 10px;
}

.ShowHide a:hover {
  text-decoration: underline;
}

a .tophide-download {
  border-radius: 5px;
  padding: 5px 15px;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #036902;
  background: var(--bg-main);
}

.hot-icon img {
  height: 25px;
  filter: brightness(0);
}

.winner-box {
  min-width: 0;
  width: 100%;
}

.win-wrapper {
  display: flex;
  width: 100%;
  gap: 30px;
}

.win-table {
  width: 100%;
  position: relative;
  background: var(--td-odd);
  box-shadow: var(--shadow-soft);
}

.win-table table {
  border-radius: 0px;
  border-collapse: separate;
  border-spacing: 0 0px;
  width: 100%;
}

.win-table td {
  color: var(--text-primary);
  border: 0 !important;
  font-weight: bold;
  padding: 12px 10px !important;
  text-align: left;
}

.win-table .table-striped>tbody>tr:nth-of-type(odd) {
  background-color: var(--td-odd);
}

.win-table .table-striped>tbody>tr:nth-of-type(even) {
  background-color: var(--td-even);
}

.win-table thead th {
  font-size: 15px;
  color: #ffffff;
  border: 0 !important;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 10px !important;
  background: var(--brand-700);
  white-space: nowrap;
}

.win-table img {
  width: 20px;
}

.player-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.player-flag span.flag {
  font-size: 16px;
}

.scroll-table {
  max-height: 324px;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
}

.scroll-table table {
  min-width: 720px;
  /* 表格宽度超出屏幕时，可左右滑动 */
  table-layout: auto;
}

.scroll-table tbody {
  display: block;
  transition: transform 0.6s ease-in-out;
  overflow: hidden;
}

.scroll-table thead,
.scroll-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
  position: relative;
  z-index: 5;
}

.scroll-table thead tr th:first-child,
.scroll-table tbody tr td:first-child {
  width: 80px;
}

.scroll-table tbody tr td:first-child img {
  filter: invert(1) brightness(0.8);
  margin-left: 20px;
}

.scroll-table td,
.scroll-table th {
  white-space: nowrap;
}

/* 动画 */
@keyframes dot-blink {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.12);
  }

  50% {
    transform: scale(0.88);
    opacity: 0.35;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.12);
  }
}

@keyframes live-pulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-2px);
    opacity: 0.95;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*NEW ECWON END*/

.deco {
  position: absolute;
}

.max-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.body-container {
  display: grid;
  grid-template-columns: 270px auto;
  transition: 0.3s;
  width: 100%;
}

.small.w3-text-green {
  color: #000;
}

.back-link {
  display: flex;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  background: var(--quaternary-light);
  z-index: 3;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  margin: 10px;
}

.backmenu {
  position: relative;
}

.backmenu h3 {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 0;
  font-weight: bold;
  font-size: 18px;
  margin-top: -50px;
  color: #000;
}

.subbanner {
  position: relative;
}

.bannerwords {
  font-family: arial;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 1;
  color: #222222;
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
}

.footerterms {
  margin: 20px 0px;
  font-size: 12px;
}

/*News page css*/
#backtolist {
  max-width: 120px;
}

#theme-contain-news {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

#cms5-news-view div#message p,
#cms5-news-view div#message ul {
  color: #171a1a !important;
  line-height: 1.5;
}

#cms5-news-view div#message h2,
#cms5-news-view div#message h3,
#cms5-news-view div#message h4 {
  color: #d1ae8e !important;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}

#cms5-news-view div#photo {
  float: initial;
  padding: 0;
  width: 100%;
  display: none;
}

#cms5-news-view div#datepublish {
  float: right;
  font-size: 12px;
  color: #222;
  margin: 0;
}

#cms5-news-view h1 {
  text-align: left;
  font-weight: bold;
  color: #222 !important;
  font-size: 30px;
}

#cms5-news-view {
  border-radius: 15px;
  background: var(--bg-main);
  padding: 16px;
  margin: 90px 20px 40px 20px;
}

#cms5-news-view div#backtolist a,
#cms5-news-view div#backtolist a:visited {
  display: block;
  text-align: left;
  text-decoration: none;
  background: linear-gradient(#b2181b, #7b0003);
  color: #ddd;
  width: max-content;
  height: auto;
  padding: 10px;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}

#cms5-newscatlist,
#cms5-news-view div#sharelink {
  display: none;
}

#api-facebook-like {
  display: none;
}

#cms5-newscatlist ul {
  margin: 0;
}

#pages {
  text-align: center;
  margin: 5px;
}

#pages a {
  margin: 1px;
  padding: 0px 2px 0px 2px;
  border: 1px solid #cccccc;
}

#cms5-news-list {
  padding: 25px 20px 40px 20px;
  padding-bottom: 40px;
}

#cms5-news-list ul li div#details {
  float: right;
}

#cms5-news-list ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

#cms5-news-list ul li {
  display: block;
  clear: both;
  text-align: left;
  border: 1px solid #e4d0b9;
  border-radius: 5px;
  padding: 16px;
  width: 100%;
  background: #f9f9f9;
}

#cms5-news-list ul li div#title {
  font-size: 15px;
  font-weight: bold;
}

#cms5-news-list ul li div#message {
  color: #5f6d6d;
  padding-top: 5px;
}

#cms5-news-list ul li div#title a,
#cms5-news-list ul li div#title a:visited {
  color: #171a1a;
  text-decoration: none;
  line-height: 16px;
  font-size: 16px;
}

#cms5-news-list ul li div#details a:hover,
#cms5-news-view div#backtolist a:hover {
  filter: contrast(0.9);
}

#cms5-news-list ul li div#details a,
#cms5-news-list ul li div#details a:visited,
#cms5-news-view div#backtolist a,
#cms5-news-view div#backtolist a:visited {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 5px;
  border: 0;
  margin: auto;
  min-width: 80px;
  background: linear-gradient(-90deg, #f5e3d0 0%, #e0c7ae 100%);
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  font-weight: normal;
  box-shadow: #e0c7ae 0px -2px inset;
}

#cms5-news-list ul li div#photo {
  float: left;
  padding: 0px 5px 5px 0px;
}

/*===================affiliate=======================*/

.affiliate-bg .row:before,
.affiliate-bg .row:after {
  display: block;
}

.affiliate-bg {
  margin-top: -10px !important;
  background: url(/data/1938/uploads/affiliate-banner-bg.webp) #fef4f5 top center no-repeat !important;
  padding-bottom: 40px;
  position: relative;
  background-size: 100% !important;
}

.affiliate-bg .col-md-4 {
  padding: 9% 0% 2% 12%;
}

.affiliate-bg .col-md-4 h3 {
  color: #ed0306;
  font-style: italic;
  font-size: 55px;
  font-weight: bold;
}

.affiliate-bg .col-md-4 p {
  font-size: 18px !important;
  margin-top: 10px;
}

.affiliate-bg .col-md-8 img {
  z-index: 1;
  positive: relative;
}

.affiliate-frame {
  width: 80%;
  background: var(--bg-main);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 0px auto 50px;
  padding: 3% 5%;
  z-index: 9;
}

.affiliate-frame ul {
  margin-left: 18px;
}

.affiliate-frame li {
  list-style-type: circle;
  color: #ed0306;
}

.affiliate-frame .title-center {
  text-align: center;
  font-size: 20px;
  color: #ed0306;
  font-weight: bold;
  margin-bottom: 15px;
}

.affiliate-frame .title-left {
  text-align: left;
  font-size: 20px;
  color: #ed0306;
}

.affiliate-frame .subtitle {
  color: #555455;
  text-align: center;
  font-size: 11.5px;
  font-weight: bold;
}

.affiliate-frame .subtitle2 {
  color: #ed0306;
  font-size: 13px;
  font-weight: bold;
}

.affiliate-frame table {}

.affiliate-frame #affiliate-table {
  background: var(--bg-main);
  display: block !important;
  margin: auto !important;
  width: 100% !important;
}

.affiliate-frame #affiliate-table tr td,
.affiliate-frame #affiliate-table tr th {
  border: 1px solid #ecedf2;
  padding: 10px;
}

.affiliate-frame #affiliate-table .bg-grey {
  background: #f3f2f3;
}

.affiliate-frame #affiliate-table th {
  color: #ed0306;
}

/** JACKPOT**/

#webpage-jackpot .stepsWrapper {
  line-height: 1.6;
}

#webpage-jackpot .stepsWrapper h2 {
  color: #d1ae8e;
  font-weight: bold;
  font-size: 25px;
}

#webpage-jackpot .spacer {
  height: 60px;
}

.pop-icon img {
  -moz-animation: bounce 0.5s infinite linear;
  -o-animation: bounce 0.5s infinite linear;
  -webkit-animation: bounce 0.5s infinite linear;
  animation: bounce 0.5s infinite linear;
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.bounce2 {
  animation: bounce2 2s ease infinite;
}

@keyframes bounce {
  0% {
    top: 0;
  }

  50% {
    top: -0.2em;
  }

  70% {
    top: -0.3em;
  }

  100% {
    top: 0;
  }
}

@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.tab-buttons {
  display: flex;
  background: var(--bg-main);
  padding: 3px;
  border-radius: 45px;
  margin: 0 0 15px;
  max-width: fit-content;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
  margin: auto;
  border: 1px solid #28b516;
  gap: 10px;
  margin-bottom: 10px;
}

.jptab-btn.active,
.jptab-btn:hover {
  background: linear-gradient(-90deg, #36d522 0%, #1da20c 100%);
  color: var(--bg-main);
}

.jptab-btn {
  transition: 0.2s;
  position: relative;
  display: inline-block;
  margin: 0;
  color: #8a8a8a;
  white-space: nowrap;
  text-align: center;
  border-radius: 45px;
  cursor: pointer;
  padding: 0px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 35px;
  font-size: 18px;
}

.accordion {
  width: 100%;
  max-width: 80%;
  margin: auto;
  padding-bottom: 40px;
}

.accordion-item {
  border: 1px solid #ef2325;
  background: var(--bg-main);
}

.accordion-header {
  padding: 15px 60px 15px 20px;
  cursor: pointer;
  font-weight: bold;
  border: 0;
  position: relative;
  background: -webkit-linear-gradient(#97090b 40%, #f02f30 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  text-shadow: none;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
  background: -webkit-linear-gradient(#ad3d40 40%, #de2729 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  width: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  top: 0;
}

.accordion-item.active .accordion-header::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background: var(--bg-main);
  border-top: none;
  color: #171a1a;
}

.accordion-content ol.f {
  padding-left: 20px;
}

.accordion-content ol.f li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.prizesTable table {
  background: #095400;
  max-width: 80%;
  margin: 0 auto 40px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #000000;
  border: 1px solid #36d522;
}

.jptab-content table {
  background: #f0f8ef;
  max-width: 80%;
  margin: 0 auto 40px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #171a1a;
  border: 1px solid #095400;
}

.prizesTable table tr:first-child th:not(last-child) {
  border-right: none;
}

.prizesTable table thead {
  background: linear-gradient(165deg, #ed020d 20%, #ef010b 50%);
}

.jptab-content thead tr th {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 10px;
  font-weight: bold;
  display: table-cell;
  vertical-align: inherit;
}

#theme-contain-jackpot .t-inner-body .jpbanner {
  border-radius: 15px;
}

.jptab-content table tr td:first-child {
  border-left: none;
  border-bottom: none;
}

.jptab-content table tr td:not(last-child) {
  border-right: none;
  border-bottom: none;
}

.jptab-content tr td {
  border: 1px solid #095400;
  color: #171a1a;
  text-align: center;
  padding: 20px 3px;
}

.jptab-content table thead tr th:first-child th:not(last-child) {
  border-right: none;
}

.jptab-content {
  display: none;
}

.jptab-content.active {
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jptext {
  width: 100%;
  max-width: 80%;
  margin: auto;
  margin-bottom: 40px;
  color: #171a1a;
}

.jptext ol li {
  margin-bottom: 10px;
}

.prizesTable tr th {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 10px;
  font-weight: bold;
  display: table-cell;
  vertical-align: inherit;
}

.prizesTable tr td {
  border: 1px solid #36d522;
  color: var(--bg-main);
  text-align: center;
  padding: 3px;
}

.prizesTable tr th span {
  font-weight: bold;
  color: #f7f7f7;
}

.prizesTable tr:first-child td {
  font-size: 18px;
}

.prizesTable table tr td:not(last-child) {
  border-right: none;
  border-bottom: none;
}

.stepTicketNo>div {
  width: 33.333%;
}

.stepTicketNo {
  width: 100%;
  max-width: 80%;
  margin: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
  margin: 10% auto 5%;
}

.stepBox p {
  color: #0d967d;
  font-weight: bold;
  justify-content: center;
  display: flex;
  font-size: 22px;
  width: 96%;
  margin: 20px auto;
  text-align: center;
  align-items: center;
}

.stepBox img.stepImages {
  display: block;
  width: 80%;
  margin: auto;
  webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: hanging-swing 2s infinite;
  animation: hanging-swing 2s infinite;
}

@keyframes hanging-swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.buttonBanner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
}

a#HyperLink1 {
  font-weight: bold;
  position: relative;
  background: url(/theme/am99-2025/imgs/imageye___-_login-button.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 96px;
  border-radius: 5px;
  margin: 0;
  width: 100%;
  max-width: 316px;
  color: var(--bg-main);
  display: flex;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s;
}

a#HyperLink1:hover,
a#HyperLink2:hover {
  position: relative;
  top: -3px;
  filter: contrast(0.9) drop-shadow(0px 13px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.3s;
}

a#HyperLink2 {
  font-weight: bold;
  position: relative;
  background: url(/theme/am99-2025/imgs/imageye___-_register-button.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 96px;
  border-radius: 5px;
  margin: 0;
  width: 100%;
  max-width: 316px;
  color: var(--bg-main);
  display: flex;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s;
}

#jackpotMY {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}

.jackpot-container {
  position: relative;
  width: 100%;
}

jackpot-uwtext {
  position: absolute;
  width: 100%;
  text-align: center;
  color: var(--bg-main);
  font-weight: bold;
  font-size: clamp(16px, 2.5vw, 28px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.jackpot-uwbg {
  width: 100%;
  height: auto;
  display: block;
}

.jackpot-uwtext {
  color: var(--bg-main);
  font-weight: bold;
  letter-spacing: 2px;
  z-index: 1;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  font-size: clamp(14px, 3.5vw, 60px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#theme-contain-jackpot {
  background:
    url(/theme/am99-2025/imgs/bg-top.jpg) no-repeat,
    url(/theme/am99-2025/imgs/UW88_Background-white.webp) repeat-y;
  background-size: contain;
  background-position: top center;
}

.jackpot-top {
  top: 22%;
}

.jackpot-bottom {
  top: 48%;
}

ol.f strong {
  color: #0d967d;
}

.containerbox b {
  line-height: 2;
  display: block;
}

.containerbox h2 {
  color: #0d967d;
  font-weight: bold;
}

.containerbox strong {
  color: #0d967d;
  font-size: 20px;
}

.containerbox ol {
  padding-left: 20px;
  margin: 20px;
}

.containerbox ol li ol {
  list-style: lower-latin;
}

.containerbox ol li {
  margin: 10px 0;
}

.containerbox {
  width: 80%;
  text-align: left;
  display: block;
  background: var(--bg-main);
  padding: 20px;
  color: #171a1a;
  border-radius: 0;
  margin: 40px auto;
  --border-size: 3px;
  --border-angle: 0turn;
  background-image:
    conic-gradient(from var(--border-angle),
      var(--bg-main),
      var(--bg-main) 50%,
      var(--bg-main)),
    conic-gradient(from var(--border-angle), transparent 20%, #0d967d, #84c49c);
  background-size:
    calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)),
    cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
}

@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}

@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

table#apimeminfo a {
  color: red;
}

table#cart-member-info {
  text-align: left;
}

#prod-cart .tbllist table.tbl {
  text-align: left;
}

#prod-cart .tbllist.rounded.spacer table tr {
  background: var(--brand-100);
}

#cart-shipping table.tbl tr {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: left;
  gap: 10px;
  padding-bottom: 5px;
  padding-left: 5px;
}

.alert-danger caption {
  color: var(--text-primary);
  text-align: center;
  margin: 0px 0 10px;
}

#cart-shipping ul,
#cart-payment ul {
  padding: 0;
  list-style: none;
  text-align: left;
  padding-left: 5px;
}

#prod-cart div#additional {
  padding: 10px;
}

#prod-cart textarea#message {
  height: 100px;
  background: #f1f2f1;
}

#prod-cart div#submit button:last-child {
  position: relative;
  min-width: 80px;
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-700) 100%);
  box-shadow: var(--brand-100) 0px -2px inset;
  height: 35px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: #000;
  font-size: 14px;
  padding: 2px 10px;
  border: 0;
}

table#cart-member-info tr td {
  padding: 5px;
  border: 1px solid #f1f2f3;
}

#prod-cart .tbllist form table caption,
#prod-cart table#cart-member-info caption {
  text-align: center;
  color: var(--bg-main);
  background: var(--brand-500);
}

#prod-cart #submit input[type="submit"] {
  padding: 7px 17px;
  border-radius: 10px;
  border: unset;
  margin-left: 8px;
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-700) 100%);
  box-shadow: var(--brand-100) 0px -2px inset;
}

#prod-cart #btn-submit button {
  position: relative;
  min-width: 120px;
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-700) 100%);
  box-shadow: var(--brand-100) 0px -2px inset;
  height: 35px;
  border-radius: 5px;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  padding: 2px 10px;
  margin-top: 20px;
  border: 0;
}

button.prev_step {
  position: relative;
  min-width: 80px;
  background: #e1e1e1;
  height: 35px;
  border-radius: 5px;
  margin: 0;
  color: #000;
  font-size: 14px;
  padding: 2px 10px;
  border: 0;
}

#prod-cart #submit input[type="submit"]:hover,
#prod-cart #btn-submit button:hover,
#prod-cart button.prev_step:hover,
#prod-cart div#submit button:last-child:hover {
  filter: contrast(0.9);
}

#prod-cart input[type="text"],
#prod-cart select#form_Country,
#prod-cart input#form_contact {
  background: var(--menu-bg);
}

#prod-cart input#form_Addr1 {
  margin-bottom: 5px;
}

#prod-cart td#photo img {
  max-width: 50px;
  max-height: 50px;
}

#prod-cart .tbllist table.tbl td {
  padding: 5px;
  color: #ffffff;
}

form#customform input[type="text"] {
  background: var(--login-header-bg);
}

form#customform {
  width: 70%;
  margin: auto;
  padding: 30px 0 10px;
}

.dp-wrapper {
  display: flex;
  margin: 3vh 0 10vh;
  justify-content: center;
  align-items: center;
}

#chat-widget-container {
  bottom: 90px !important;
}

.side-menu {
  position: fixed;
  width: 270px;
  padding: 16px;
  background: var(--bg-main);
  height: calc(100% - 60px);
  margin-top: 10px;
  transition: width 0.3s;
}

.floating-chat {
  position: fixed;
  right: 5px;
  bottom: 100px;
  z-index: 999;
  animation: 1.8s float ease-in-out infinite;
}

.floating-chat:hover a img {
  filter: brightness(1.1) drop-shadow(0 0 5px rgb(255, 255, 255, 0.6));
  transform: scale(0.97);
}

button.back-to-top i.fas.fa-angle-up.fa-chevron-right {
  transform: rotate(-90deg);
}

button.back-to-top {
  position: fixed;
  bottom: 8%;
  right: 20px;
  background: var(--brand-100);
  border: none;
  color: var(--invert-text-light);
  height: 45px;
  width: 45px;
  border-radius: 10px;
  font-size: 25px;
  padding: 5px;
  z-index: 100;
  transition: 0.3s;
}

button.back-to-top:hover {
  filter: contrast(0.9);
  transform: scale(0.9);
}

/** 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,
.smenu-wrap a img {
  max-height: 24px;
  margin-right: 24px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(54%) saturate(398%) hue-rotate(109deg) brightness(92%) contrast(86%);
}

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);
}

.body-container.active {
  grid-template-columns: 74px auto;
  transition: 0.3s;
}

.body-container.active .side-menu {
  width: 76px;
  padding: 0;
}

.body-container.active .member-info-wrapper {
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto;
  margin: 10px;
  padding: 5px;
}

.body-container.active .mb-vip-img {
  transition: 0.3s;
  max-width: 30px;
}

.body-container.active .mbinfo-wrap {
  display: none;
}

.body-container.active .smenu-text {
  display: none;
}

.body-container.active .sidemenu-wrapper {
  height: 81vh;
}

.body-container.active .sidemenu-wrapper.logined {
  height: 100%;
}

.body-container.active ul.nav.sidemenu-nav li {
  margin: 1px 0px;
}

.body-container.active ul.nav.sidemenu-nav {
  margin: 14px;
  padding: 6px 0;
}

.body-container.active ul.nav.sidemenu-nav li a.smenu-item img,
.smenu-wrap a img {
  margin: 0 10px;
}

.body-container.active ul.nav.sidemenu-nav li a.smenu-item {
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  justify-content: center;
  margin: 0;
}

.body-container.active .smenu-wrap {
  padding-left: 0;
}

.body-container.active .smenu-wrap a {
  padding: 5px;
  border-radius: 10px;
  justify-content: center;
}

.body-container.active .smenu-wrap a:hover {
  transform: translateX(0);
}

.body-container.active .language-wrap {
  margin: 0 5px;
}

.body-container.active button.lang-btn.dropup {
  width: 50px;
  padding: 3px 6px;
  height: 30px;
}

.body-container.active button.lang-btn.dropup img {
  max-height: 20px;
  margin-right: 0;
  transition: 0.3s;
}

.body-container.active button.lang-btn.dropup::after {
  font-size: 8px;
  right: 8px;
}

.body-container.active a.lang-link {
  padding: 5px 6px;
  text-align: center;
}

.body-container.active a.lang-link img {
  max-height: 25px;
  margin-right: 0;
}

.body-container.active .dropdown-menu.language {
  min-width: auto;
  font-size: 15px;
  max-width: 50px;
  width: 100%;
}

.gamepage-container {
  margin-top: 15px;
}

.gamepage-stage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.gamepage-stage .tumbox img {
  width: 100%;
}

#theme-contain-casino .gamepage-stage>div:nth-child(1),
#theme-contain-slots .gamepage-stage>div:nth-child(1),
#theme-contain-sportsbook .gamepage-stage>div:nth-child(1) {
  grid-column: span 2;
}

#theme-contain-casino .gamepage-stage>div:nth-child(1) img,
#theme-contain-slots .gamepage-stage>div:nth-child(1) img,
#theme-contain-sportsbook .gamepage-stage>div:nth-child(1) img {
  margin-top: -7px;
}

.logbanner {
  display: grid;
  grid-template-columns: 0 420px;
}

.eclog-right {
  background: var(--login-bg);
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.eclog-left h2 {
  color: #000;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0 10px;
}

/*==================   float ========================*/
.toggleMain {
  position: fixed;
  right: -246px;
  top: 161px;
  z-index: 99;
  transition: 0.3s;
  height: 180px;
}

.toggleMain.show {
  right: 0;
}

.toggleMain.show .toggleLeftInfo {
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 50%);
}

.toggleLeftInfo {
  float: left;
  background-color: #000;
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #2c2c2c;
  border-right: 1px solid #2c2c2c;
  border-top: 1px solid #2c2c2c;
}

.toggleLeftInfo td {
  text-align: center;
  padding: 2px;
}

.toggleLeft {
  cursor: pointer;
  float: left;
  height: 170px;
  width: 42px;
  background: #deae37;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  border-top-right-radius: 0.05rem;
  border-bottom-right-radius: 0.05rem;
  background-image: url(/data/1976/uploads/contact-us-bar.png);
}

.toggleRight {
  float: left;
  height: 170px;
  width: 42px;
  background: #deae37;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  border-top-right-radius: 0.05rem;
  border-bottom-right-radius: 0.05rem;
  background-image: url(/data/1976/uploads/contact-us-bar.png);
}

.hotgameIconGif {
  margin-top: 140px;
  position: absolute;
}

.downloadTitle {
  color: #000;
  margin-left: 0px;
  margin-top: 30px;
  height: 100px;
  font-weight: bold;
}

.downloadimg {
  border: 1px solid rgba(64, 64, 64, 0.5);
  background-color: rgba(51, 51, 51, 0.5);
  margin: 2px;
}

.downloadimg img {
  width: 112px;
  padding: 3px;
}

/*==================   Download page ========================*/
.dp-top {
  position: relative;
  z-index: 2;
}

.dp-top:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  pointer-events: none;
}

.dp-top:after {
  content: "";
  border-top: 2px solid #02a000;
  position: absolute;
  width: 125vw;
  height: 75px;
  bottom: -30%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50% 50% 0% 0%/100% 100% 0% 0%;
  z-index: 1;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

#theme-contain-download-link {
  padding-top: 70px;
  padding-bottom: 70px;
}

.dp-logo {
  padding: 25px 0 55px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.dp-logo img {
  height: 60px;
  margin: auto;
}

.dp-inner {
  position: relative;
  z-index: 3;
  padding: 0 10px;
  display: flex;
  gap: 10px;
}

.btn-dp {
  max-width: 550px;
  width: 100%;
  margin: 10px auto;
  background-color: #000;
  border-radius: 10px;
  text-align: center;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--bg-main);
  border: 1px solid #b5862d;
  transition: transform 0.2s ease;
  transform: scale(1);
}

.btn-dp:hover {
  transform: scale(0.95);
}

.btn-dp img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.dp-r {
  max-width: 650px;
  width: 90%;
  display: block;
  border-top: 2px solid #02a000;
  margin: 25px auto 0;
}

.btn-dp-r {
  display: table;
  margin: auto;
  padding: 15px 25px;
  color: var(--bg-main);
  background: linear-gradient(#f02c2e, #ee8f90);
  border-radius: 60px;
  margin-top: 20px;
}

.btn-dp-r:hover {
  text-decoration: none;
  filter: contrast(0.9);
  color: #000;
}

/** 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: var(--bg-main);
  opacity: 0.7;
  z-index: 10000;
}

.langpopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--brand-700);
  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: 1fr 1fr 1fr;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.langtwocol.threecol .langpopup-option:last-child {
  border-left: 1px solid #e4eaf019;
}

.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;
}

/** Login popup **/
.reglogtitle {
  margin: auto;
  margin-top: 10%;
}

.eclog-left {
  display: flex;
  flex-direction: column;
}

.reg-wrapper {
  display: flex;
  gap: 50px;
}

.reglogimg {
  position: relative;
}

.regimg {
  width: 100%;
}

.regimgdark {
  display: none;
}

.reglogo {
  position: absolute;
  width: 100%;
  max-width: 100px;
  top: 10px;
  left: 10px;
}

.reglink {
  color: var(--text-tertiary);
  margin: 0;
  font-size: 14px;
  padding: 0 0 30px 0;
  text-align: center;
}

.reglink a {
  color: var(--brand-500);
}

form#registerform dt {
  display: none;
}

input#customformv2_submit:hover,
input.btnCheckUser:hover,
input#registerform_btnSubmit:hover {
  filter: contrast(0.9);
}

input#customformv2_submit {
  position: relative;
  min-width: 100%;
  background: linear-gradient(-90deg, #f5e3d0 0%, #e0c7ae 100%);
  height: 40px;
  border-radius: 8px;
  margin: 0;
  color: #000;
  padding: 2px 10px;
  box-shadow: #e0c7ae 0px -2px inset;
  -webkit-appearance: none;
  font-weight: bold;
  border: 0;
}

.loginpopup.langshow,
.loginpopup-overlay.langshow {
  display: flex;
}

.loginpopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  z-index: 10000;
  opacity: 0.8;
}

.loginpopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--bg-card);
  border-radius: 14px;
  width: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10001;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.loginpopup,
.loginpopup-overlay {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.loginpopup.fast-close,
.loginpopup-overlay.fast-close {
  transition:
    transform 0.1s ease,
    opacity 0.1s ease;
}

.loginpopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.loginpopup-overlay.active {
  opacity: 1;
}

.loginpopup-header {
  background: var(--login-header-bg);
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  color: var(--text-primary);
  position: relative;
  padding: 20px;
  margin: 0;
}

.loginpopup-close:hover {
  filter: contrast(0.9);
}

.loginpopup-close {
  color: #5f6d6d;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin-left: auto;
  display: flex;
  justify-content: right;
  align-items: center;
  font-weight: 500;
  font-size: 30px;
  top: 15px;
  position: absolute;
  right: 30px;
  z-index: 1;
}

#theme-contain-registration .container {
  padding: 80px 5% 5%;
  width: 100%;
  max-width: 1170px;
}

/** Header **/
.header-wrap.active .opncls {
  background: url(/theme/am99-2025/imgs/menubtn-close.png);
  background-size: contain;
  filter: hue-rotate(253deg) saturate(15.5);
}

.header-wrap.active {
  grid-template-columns: 74px auto;
  transition: 0.3s;
}

.header-wrap.active .menu-gamebtn {
  display: none;
}

.body-container.active .header-sec {
  width: calc(100% - 65px);
  transition: 0.3s;
}

.header-wrap {
  display: grid;
  grid-template-columns: 260px auto;
  position: fixed;
  right: 0;
  z-index: 99;
  background: var(--menu-bg-color);
  width: 100%;
  transition: 0.3s;
  box-shadow:
    #00000014 0 4px 6px -1px,
    #00000000 0 2px 4px -1px;
}

.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-left-wrapper {
  display: flex;
  align-items: center;
}

.header-left-wrapper img {
  width: 70%;
}

.header-left-wrapper .logo {
  display: none;
}

.logo {
  position: absolute;
  left: 70px;
  display: flex;
  height: 65px;
  justify-content: center;
  align-items: center;
}

.logo img {
  max-height: 55px;
  margin-left: 10px;
}

.header-logomenu {
  display: flex;
  z-index: 10000;
  background: var(--bg-main);
}

ul.nav.header-menu {
  height: 65px;
  display: flex;
  align-items: flex-end;
}

ul.nav.header-menu li.menu-item {
  position: relative;
  margin: 0 1vw;
}

ul.nav.header-menu li.menu-item a.menu-link {
  display: flex;
  align-items: center;
  color: var(--tertiary-text-color);
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

ul.nav.header-menu li.menu-item:hover a.menu-link {
  border-bottom: 2px solid var(--primary-color);
}

.down-arrow {
  margin: 0 0 5px 10px;
  transform-origin: center;
}

.header-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--quaternary-color);
  padding: 25px 25px 30px;
  min-width: max-content;
  visibility: hidden;
  opacity: 0;
}

ul.nav.header-menu li.menu-item:hover .header-dropdown {
  opacity: 1;
  visibility: visible;
}

.hgtitle {
  font-size: 14px;
  padding: 0 0 10px 5px;
}

.dropdown-menu-wrapper {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}

a.ddmenu-box {
  display: inline-block;
  min-width: 90px;
  position: relative;
  background: var(--quinary-color);
  padding: 15px 12px;
  text-align: center;
  color: var(--secondary-text-color);
  font-size: 12px;
  margin: 0;
}

.dd-img {
  max-width: 30px;
  margin: 0 auto 5px;
}

a.ddmenu-box:hover {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
}

.hdright-wrap {
  display: flex;
  align-items: center;
}

.search-game-wrap {
  position: relative;
  overflow: hidden;
  width: 25px;
}

.gs-box {
  position: relative;
  border-radius: 5px;
  border: 2px solid #454f78;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 2px 10px;
  max-width: 200px;
  width: 100%;
  transform: translateX(200px);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.search-game-wrap.active .gs-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.search-icon {
  color: var(--primary-text-color);
  margin-right: 5px;
  font-size: 14px;
}

.search-icon-btn {
  color: var(--primary-text-color);
  font-size: 14px;
  margin-right: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-game-wrap.active .search-icon-btn {
  display: none;
}

input.search-input {
  background: none;
  color: var(--tertiary-text-color);
  border: none;
  width: 100%;
  font-size: 14px;
  transition: 0.5s;
}

.search-dropdown {
  position: absolute;
  z-index: 9;
  left: auto;
  right: 0;
  top: 110%;
  min-width: 640px;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  background: var(--quinary-color);
  color: #677390;
  border: none;
  border-radius: 8px;
  padding: 15px 10px;
  font-size: 14px;
}

.search-game-wrap.active .search-dropdown {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.search-game-wrap.active {
  overflow: visible;
  width: auto;
}

.search-content {
  padding: 0 10px;
  max-height: 400px;
  overflow: auto;
}

.search-content::-webkit-scrollbar {
  width: 6px;
}

.search-content::-webkit-scrollbar-track {
  background: var(--quinary-color);
  border-radius: 30px;
}

.search-content::-webkit-scrollbar-thumb {
  background: var(--quaternary-color);
  border-radius: 30px;
}

.search-content::-webkit-scrollbar-thumb:hover {
  background: var(--quaternary-color);
}

.srh-require {
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}

.sgtext {
  text-align: left;
  padding-bottom: 10px;
}

.game-result-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px 8px;
  text-align: center;
}

.gamebox {
  position: relative;
  max-width: 150px;
  margin: 0 auto;
  transition: 0.3s;
  cursor: pointer;
}

.gamebox:hover {
  transition: 0.3s;
  transform: translateY(-3px);
  opacity: 0.6;
}

.srgname {
  color: var(--tertiary-text-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3%;
  font-size: 13px;
}

.logreg-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

input#registerform_varifycode {
  width: calc(100% - 98px);
  float: left;
}

img#regcaptcha {
  position: relative;
  width: 90px;
  height: 40px;
  border-radius: 8px;
  margin: 0 auto 0 8px;
  padding: 0;
  border: 0;
}

input.btnCheckUser:hover {
  filter: contrast(0.9);
}

input.btnCheckUser {
  position: relative;
  width: 90px;
  background: linear-gradient(-90deg, #87e87a 0%, #3aba2b 100%);
  height: 50px;
  border-radius: 8px;
  margin: 0 auto 0 8px;
  color: #000;
  padding: 2px 10px;
  box-shadow: #46ff2f 0px -2px inset;
  -webkit-appearance: none;
  border: 0;
  font-size: 14px;
}

button.login-btn {
  position: relative;
  min-width: 100px;
  background: var(--menu-bg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  height: 40px;
  border-radius: 8px;
  margin: 0 auto 0 8px;
  color: var(--text-primary);
  font-size: 14px;
  padding: 2px 10px;
  font-weight: bold;
}

input#registerform_UserName {
  width: calc(100% - 98px);
  float: left;
}

button.register-btn {
  position: relative;
  min-width: 100px;
  background: var(--brand-700);
  height: 40px;
  border-radius: 8px;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 10px;
}

.logreg-wrap button:hover {
  filter: contrast(0.9);
}

button.mobile-wallet-btn {
  position: relative;
  min-width: 30px;
  background: var(--primary-color);
  height: 30px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 2px;
  display: none;
}

button.mobile-profile-btn {
  position: relative;
  min-width: 30px;
  background: var(--quinary-color);
  height: 30px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--primary-text-color);
  font-size: 14px;
  padding: 2px 2px;
  display: none;
}

a.inbox-link {
  display: inline-block;
  color: var(--tertiary-text-color);
  position: relative;
  padding: 2px;
  font-size: 18px;
  margin: 0 5px;
}

span.mailnum {
  position: absolute;
  right: -5px;
  top: -1px;
  background: #f00;
  font-size: 7px;
  border-radius: 50%;
  height: 11px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.toprofile-link {
  display: inline-block;
  color: var(--primary-text-color);
  border-left: 1px solid var(--primary-color);
  padding: 0 7px;
  margin: 0 0 0 5px;
  font-size: 14px;
}

a.toprofile-link:hover {
  color: var(--tertiary-text-color);
}

/** Inner Body **/
.t-inner-body {
  position: relative;
  padding: 70px 0 50px;
}

.owl-carousel.main-slider {
  margin-bottom: 30px;
}

.mbimg {
  overflow: hidden;
  border-radius: 20px;
}

.owl-carousel.main-slider::before {
  content: "";
  background: linear-gradient(90deg,
      rgba(27, 32, 51, 1) 0%,
      rgba(27, 32, 51, 0) 100%);
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 19%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.owl-carousel.main-slider::after {
  content: "";
  background: linear-gradient(270deg,
      rgba(27, 32, 51, 1) 0%,
      rgba(27, 32, 51, 0) 100%);
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 19%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.owl-theme.main-slider .owl-nav {
  margin-top: 0;
}

.owl-theme.main-slider button.owl-prev span,
.owl-theme.main-slider button.owl-next span {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  line-height: 0;
}

.owl-theme.main-slider .owl-nav button.owl-prev {
  position: absolute;
  left: 0%;
  top: 0;
  bottom: 0;
  font-size: 50px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  margin: auto;
  background: none;
  z-index: 3;
  opacity: 0.5;
}

.owl-theme.main-slider .owl-nav button.owl-next {
  position: absolute;
  right: 0%;
  top: 0;
  bottom: 0;
  font-size: 50px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  margin: auto;
  background: none;
  z-index: 3;
  opacity: 0.5;
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: block;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.feature-game-sec .owl-carousel .owl-item img {
  aspect-ratio: 1 / 1.3;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: auto;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: fit-content;
  position: absolute;
  top: -30px;
  right: 0;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: var(--tertiary-text-color);
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.flexslider {
  border: none;
  background: transparent;
  margin: 0;
}

.flexslider .slides img {
  border-radius: 15px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto;
}

.subbanner img {
  border-radius: 15px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto;
}

.flex-direction-nav {
  display: none;
}

.flex-direction-nav a:before,
.flex-direction-nav a:before {
  color: rgba(255, 255, 255, 1);
}

.flexslider:hover .flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
}

.floating:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: -4%;
  left: 15%;
  background: url(/data/2135/uploads/fimg7.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.3)) contrast(1.1) brightness(1.1);
  animation: floatimg1 2s infinite ease-in-out alternate;
  transform: translateY(0) translateX(0) scale(1);
}

@keyframes floatimg1 {
  from 0% {
    transform: translateY(0) translateX(0) scale(1);
  }

  100% {
    transform: translateY(-5%) translateX(-5%) scale(1.05);
  }
}

.floating:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -4%;
  right: 15%;
  background: url(/data/2135/uploads/fimg8.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: drop-shadow(-2px 4px 4px rgba(0, 0, 0, 0.3)) contrast(1.1) brightness(1.1);
  animation: floatimg2 2s infinite ease-in-out alternate;
  transform: translateY(-5%) translateX(-5%) scale(1.05);
}

@keyframes floatimg2 {
  from 0% {
    transform: translateY(-5%) translateX(-5%) scale(1.05);
  }

  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

.jptittle {
  text-align: center;
  width: fit-content;
  display: block;
  font-size: 20px;
  letter-spacing: 6px;
  border-bottom: 3px dashed var(--quinary-color);
  padding-top: 5px;
  padding-left: 6px;
  padding-bottom: 5px;
  margin: auto;
  margin-bottom: 5px;
}

.jackpot-sec {
  padding: 15px 0;
}

.jackpot-bg img {
  border-radius: 0;
  filter: drop-shadow(0px 28px 20px rgba(0, 0, 0, 0.3));
}

.jackpot-bg {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #000000, #131723);
  width: calc(100% - 30px);
  height: 150px;
  border: 7px solid var(--secondary-color);
  outline: 15px inset var(--primary-color);
  border-radius: 35px;
}

.jackpot-position {
  font-size: 34px;
  color: var(--body-text-color);
  position: absolute;
  font-weight: bold;
  width: 330px;
  text-shadow: 0px 1px 6px rgba(255, 255, 255, 0.7);
}

.jackpot-position #foo {
  letter-spacing: 1px;
}

.jpprice {
  margin-left: 22.5px;
}

section.uw-card-sec {
  margin: 40px 0;
}

.uwcard-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  z-index: 1;
}

span.gamitabicon {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 0px;
}

span.gamitabicon.gicon1 {
  background: url(/theme/am99-2025/imgs/gametab-icon-slot.png);
  background-size: contain;
}

span.gamitabicon.gicon2 {
  background: url(/theme/am99-2025/imgs/gametab-icon-casino.png);
  background-size: contain;
}

span.gamitabicon.gicon3 {
  background: url(/theme/am99-2025/imgs/gametab-icon-sport.png);
  background-size: contain;
}

span.gamitabicon.gicon4 {
  background: url(/theme/am99-2025/imgs/gametab-icon-p2p.png);
  background-size: contain;
}

span.gamitabicon.gicon5 {
  background: url(/theme/am99-2025/imgs/gametab-icon-battle.png);
  background-size: contain;
}

span.gamitabicon.gicon6 {
  background: url(/theme/am99-2025/imgs/gametab-icon-lottery.png);
  background-size: contain;
}

a.ectab.active span.gamitabicon.gicon1,
a.ectab.active span.gamitabicon.gicon2,
a.ectab.active span.gamitabicon.gicon3,
a.ectab.active span.gamitabicon.gicon4,
a.ectab.active span.gamitabicon.gicon5,
a.ectab.active span.gamitabicon.gicon6 {
  filter: brightness(0) saturate(100%) invert(33%) sepia(65%) saturate(2567%) hue-rotate(117deg) brightness(104%) contrast(101%);
}

a.ectab {
  color: #5f6d6d;
  padding: 10px;
  border-radius: 10px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-weight: bold;
  white-space: nowrap;
  width: fit-content;
  font-size: 16px;
}

a.ectab.active {
  background: var(--td-even);
  color: var(--text-primary);
}

a.ectab:hover {
  background: var(--bg-card);
}

.gametabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  padding-right: 10px;
  margin: 20px 0;
}

.uwcard-layout {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 20px;
  margin: auto;
}

.left-column {
  display: grid;
  gap: 20px;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
}

.left-column .uwcard-image {
  max-width: 230px;
}

.right-column .uwcard-image {
  max-width: 120px;
  bottom: 10px;
  top: auto;
}

.left-column .uwcard-header {
  font-size: 24px;
}

.right-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.uwcard {
  background: linear-gradient(to right, var(--bg-main), #f6f6f6);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 130px;
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.uwcard:hover .uwcard-image {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.uwcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.uwcard.large {
  height: 100%;
  flex-direction: row;
  align-items: center;
}

.uwcard-header img {
  width: 30px;
}

.uwcard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  color: #000;
}

.uwcard-image {
  width: 100%;
  flex-shrink: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  transform: scale(1);
  transition: 0.3s ease;
}

.uwcard-content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.uwcard-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  width: 80%;
}

.right-column .uwcard {
  flex-direction: row;
  align-items: center;
  padding: 10px;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: auto;
  padding: 10px 0;
  margin-top: 15px;
  background: var(--bg-main);
  border-radius: 15px;
}

section.terms-slider-sec {
  margin: 20px 0 40px 0;
}

section.home-promo-sec .fgtitle {
  margin-bottom: 5px;
}

section.home-slider-sec {
  margin: 25px 0 40px 0;
}

section.home-crypto-sec {
  margin: 40px 0;
}

section.home-promo-sec {
  margin: 40px 0;
}

section.feature-game-sec {
  margin: 40px 0;
}

section.promotion-sec {
  margin: 0px 0 40px 0;
}

.slider-container {
  overflow: hidden;
  white-space: nowrap;
  display: none;
  /* 默认隐藏，点击时显示 */
}

.slider-container.active {
  display: block;
}

.slider-track {
  display: flex;
  width: fit-content;
  animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1698.2px);
  }
}

.slide {
  height: 100px;
  margin-right: 10px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.slide img {
  width: 100%;
  height: 100%;
  max-width: 74.91px;
  max-height: 100px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.slide img:hover {
  filter: opacity(0.9);
}

.paused {
  animation-play-state: paused !important;
}

.big-wins-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.indicator {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #000;
}

.indicator .dot {
  width: 8px;
  height: 8px;
  background: #e0c7ae;
  border-radius: 50%;
  margin-right: 8px;
}

.mytabs {
  display: flex;
  gap: 20px;
}

.newtab {
  position: relative;
  cursor: pointer;
  color: #888;
  font-weight: 500;
}

.newtab.active {
  color: #000;
  font-weight: 600;
}

.newtab.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e0c7ae;
  border-radius: 2px;
}

.home-custom-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.hc-content-item {
  height: 230px;
  overflow: hidden;
}

.hc-content-item:hover .plynwbtn span {
  transform: translateY(0);
  transition: 0.5s;
  margin-bottom: 10px;
}

.hc-content-item:hover .hc-content-display {
  height: 240px;
  transition: 0.5s;
}

.hc-content-item:hover .hc-sub-content-display p {
  bottom: 55px;
  transition: 0.5s;
}

.hc-content-item:hover .plynwbtn:before {
  bottom: 45px;
  height: 100px;
  transition: 0.5s;
}

.hc-content-display {
  height: 230px;
  position: relative;
  transition: 0.5s;
}

.plynwbtn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  transition: 0.5s;
}

.bonus-banner {
  display: grid;
  grid-template-columns: 40% 50% 10%;
  align-items: center;
  background: var(--bg-main);
  border-radius: 14px;
  padding: 10px 30px;
  margin: auto;
  gap: 10px;
  overflow: hidden;
}

.bonus-text {
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.bonus-text span {
  background: -webkit-linear-gradient(#e0c7ae 40%, #c2a884 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payment-methods.center img:nth-child(2) {
  height: 60px;
}

.payment-methods.center img:nth-child(3) {
  height: 50px;
}

.payment-methods,
.crypto-icons {
  display: flex;
  gap: 0;
  align-items: center;
}

.payment-methods img {
  height: 26px;
  margin: 5px;
  border-radius: 7px;
  transition: transform 0.2s ease;
}

.crypto-icons img {
  height: 26px;
  transition: transform 0.2s ease;
  margin-left: -0.25rem;
}

.payment-methods img:hover,
.crypto-icons img:hover {
  transform: scale(1.1);
}

.bonus-banner>div {
  flex: 1;
}

.bonus-banner .center {
  display: block;
  text-align: center;
}

.bonus-banner .right {
  justify-content: flex-end;
}

.index-1 {
  background: url(/data/2135/uploads/hl-bg3n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.index-2 {
  background: url(/data/2135/uploads/hl-bg2n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.index-3 {
  background: url(/data/2135/uploads/hl-bg1n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.index-4 {
  background: url(/data/2135/uploads/hl-bg5n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.display1 {
  background: url(/data/2135/uploads/hm1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.display2 {
  background: url(/data/2135/uploads/hm2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.display3 {
  background: url(/data/2135/uploads/hm3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.display4 {
  background: url(/data/2135/uploads/hm5.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.hc-sub-content-display p {
  font-size: 24px;
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  transition: 0.5s;
  font-weight: bold;
  z-index: 1;
  color: var(--tertiary-text-color);
}

.plynwbtn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  overflow: hidden;
  padding-top: 100px;
}

.plynwbtn span {
  width: 100%;
  height: 45px;
  border-radius: 10px 10px 0px 0px;
  display: grid;
  place-items: center;
  -webkit-box-align: center;
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  position: relative;
  transform: translateY(85%);
  transition: 0.5s;
}

.welcome-sec {
  text-align: center;
}

.wtitle-1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-text-color);
}

.wtitle-2 {
  font-size: 16px;
  margin-bottom: 15px;
}

.register-step-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  margin: 0 auto 30px;
}

.stepbox {
  position: relative;
  display: inline-block;
}

.stepbox-inner {
  background: var(--quinary-color);
  border-radius: 10px;
  padding: 15px 10px 10px;
  min-height: 182px;
}

.step-img {
  margin: 0 auto 10px;
  max-width: 95px;
}

.step-btm {
  color: var(--primary-text-color);
  position: relative;
}

.white-box {
  background: var(--bg-main);
  height: 8px;
  width: 8px;
  margin: 10px auto;
}

.white-line {
  background: var(--bg-main);
  height: 1px;
  width: 95%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 86%;
}

.ftgame-container {
  position: relative;
  margin: 0 0 30px;
}

.owl-carousel::after {
  content: "";
  background: linear-gradient(270deg,
      rgba(27, 32, 51, 1) 0%,
      rgba(27, 32, 51, 0) 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: none;
}

.allbtns,
.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
  box-shadow: var(--shadow-soft);
}

.allbtns {
  border-radius: 5px;
  height: 30px;
  width: fit-content;
  min-width: 50px;
  margin: auto;
  padding: 0 10px;
  background: var(--bg-card);
  z-index: 3;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  top: -30px;
  right: 70px;
  font-size: 14px;
}

.allbtns p {
  font-size: 14px;
  height: 25px;
  margin: auto 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  font-weight: bold;
  padding-left: 5px;
}

.owl-theme .owl-nav button.owl-prev {
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: var(--bg-card);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-theme .owl-nav button.owl-next {
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: var(--bg-card);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-theme .owl-nav button.owl-next:hover,
.owl-theme .owl-nav button.owl-prev:hover,
.allbtns:hover {
  color: #000;
  filter: contrast(0.9);
  transition: 0.5s;
}

.flex-control-nav {
  bottom: -15px;
  z-index: 10;
}

.flex-control-paging li a {
  width: 50px;
  height: 4px;
  background: var(--bg-main);
}

.flex-control-paging li a:hover {
  background: var(--bg-main);
}

.flex-control-paging li a.flex-active {
  background: var(--brand-100);
}

.flex-direction-nav a:before,
.flex-direction-nav a:before {
  color: rgba(255, 255, 255, 0.5);
}

.flexslider .slides a:before {
  content: "";
  display: none;
  width: 8%;
  height: 100%;
  background: linear-gradient(270deg,
      rgb(45 50 73 / 60%) 0%,
      rgba(45 50 73 / 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 0 20px 20px 0;
}

.flexslider .slides a:after {
  content: "";
  display: none;
  width: 8%;
  height: 100%;
  background: linear-gradient(90deg,
      rgb(45 50 73 / 60%) 0%,
      rgba(45 50 73 / 0) 100%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  border-radius: 20px 0 0 20px;
}

.fgtitle {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--text-primary);
  padding-top: 8px;
}

.owl-carousel .owl-stage-outer {
  padding: 5px 0;
}

.tumbox {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.lottery-slider .tumbox:hover:before,
.lottery-slider .tumbox:hover:after {
  display: none;
}

.promobox {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.gname {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  font-size: 13px;
  cursor: pointer;
}

.tumbox:before {
  content: "";
  display: block;
  background: url(/theme/am99-2025/imgs/plybtn.png);
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}

.tumbox:hover:before {
  opacity: 1;
  transition: 0.3s;
  transform: translate(-50%, -50%) scale(1);
}

.tumbox:after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}

.tumbox:hover:after {
  opacity: 1;
  transition: 0.3s;
}

.tumbox:hover,
.promobox:hover {
  transition: 0.3s;
  transform: translateY(-3px);
}

.providers-slider {
  margin-top: 10px;
}

.logo-box {
  background: #2b3247;
  padding: 10px 5px;
  border-radius: 10px;
  position: relative;
}

.logo-box img {
  width: auto;
  max-width: 90%;
  margin: auto;
}

.bonus-feature-sec {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}

.ftbn-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-bonus-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.bf-box {
  position: relative;
  background: linear-gradient(180deg,
      rgba(43, 50, 72, 1) 0%,
      rgba(45, 61, 72, 1) 55%,
      rgba(52, 104, 73, 1) 100%);
  padding: 20px 15px;
  border-radius: 10px;
}

.bftitle {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}

.bf-img {
  max-width: 90%;
  margin: 0 auto;
}

.review-sec {
  position: relative;
  text-align: center;
  max-width: 92%;
  margin: 0 auto;
  padding: 10px 0 30px;
}

.review-slider .owl-stage-outer {
  padding: 10px 0;
}

.owl-carousel .owl-item .user-img img {
  display: initial;
  width: auto;
}

.review-box {
  background: var(--quinary-color);
  border-radius: 10px;
  padding: 25px 20px;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
  min-height: 260px;
}

.review-user-wrap {
  display: grid;
  grid-template-columns: 45px auto;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.review-user {
  text-align: left;
}

.rv-name {
  font-size: 18px;
  margin-bottom: 5px;
}

.stars-rate {
  color: var(--primary-text-color);
}

.rvtitle {
  color: var(--primary-text-color);
  margin-bottom: 15px;
}

.rv-comment {
  color: #9aa5be;
}

.owl-theme.review-slider .owl-nav {
  margin-top: 0;
}

.owl-theme.review-slider .owl-nav button.owl-prev {
  position: absolute;
  left: -4%;
  top: 0;
  bottom: 0;
  font-size: 24px;
  border-radius: 6px;
  height: 35px;
  width: 35px;
  margin: auto;
  color: #9bacc9;
  background: var(--quinary-color);
  z-index: 3;
  padding-bottom: 0.3% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-theme.review-slider .owl-nav button.owl-next {
  position: absolute;
  right: -4%;
  top: 0;
  bottom: 0;
  font-size: 24px;
  border-radius: 6px;
  height: 35px;
  width: 35px;
  margin: auto;
  color: #9bacc9;
  background: var(--quinary-color);
  z-index: 3;
  padding-bottom: 0.3% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-nav button:hover {}

.why-sec {
  position: relative;
  text-align: center;
  padding: 10px 0 30px;
}

.usp-container {
  background: #161827;
  padding: 20px 15px 30px;
  border-radius: 20px;
}

.usp-subtitle {
  font-size: 20px;
  margin: 0 auto 15px;
}

.green-text {
  color: var(--primary-text-color);
  font-weight: 700;
}

.usp-wrapper {
  padding-top: 20px;
}

.usp-box {
  position: relative;
  background: var(--quinary-color);
  max-width: 31%;
  margin: 0.5% 0.5%;
  display: inline-block;
  border-radius: 10px;
  padding: 0 15px 15px;
}

.uspimg {
  margin-top: -23px;
}

.usp-title {
  color: var(--primary-text-color);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.join-sec {
  position: relative;
  padding-bottom: 20px;
}

.join-today {
  background: linear-gradient(90deg,
      rgba(41, 48, 72, 1) 0%,
      rgba(19, 23, 36, 1) 100%);
  position: relative;
  display: grid;
  grid-template-columns: auto 200px;
  grid-gap: 10px;
  align-items: center;
  height: 80px;
  border-radius: 20px;
  padding: 5px 4%;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

button.join-btn {
  position: relative;
  min-width: 150px;
  background: var(--primary-color);
  height: 35px;
  border-radius: 45px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tertiary-text-color);
  padding: 2px 15px;
}

button.join-btn:hover {
  background: var(--primary-color);
}

/** Footer **/
footer {
  background: var(--bg-card);
}

.uwwfooter {
  padding: 0;
}

.uwwfooter .footer-logos img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(14%) sepia(74%) saturate(5180%) hue-rotate(355deg) brightness(104%) contrast(119%);
}

.uwwfooter .footer-logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.uwwfooter .footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0;
}

.uwwfooter .footer-column {
  flex: 1 1 160px;
  margin-bottom: 0;
}

.uwwfooter .footer-column h4 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
}

.uwwfooter .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uwwfooter .footer-column ul li {
  margin-bottom: 8px;
}

.uwwfooter .footer-column ul li a {
  text-decoration: none;
  color: #5f6d6d;
  font-size: 14px;
}

.uwwfooter .footer-column ul li a:hover {
  text-decoration: underline;
}

.uwwfooter .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.uwwfooter .footer-socials i {
  font-size: 18px;
  padding: 0 8px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.uwwfooter .footer-column h4 span {
  display: block;
  margin-top: 20px;
}

.seo-container {
  margin: auto;
}

.seo-container ul {
  line-height: 1.5;
  color: #5f6d6d;
  list-style: decimal;
  padding-left: 20px;
}

.seo-container h1 {
  margin: 10px 0;
  color: var(--text-primary);
  font-weight: bold;
  font-size: 14px;
}

.seo-container h2 {
  margin: 14px 0;
  color: var(--brand-500);
  font-weight: bold;
  font-size: 14px;
}

.seo-container h3 {
  margin: 15px 0;
  color: var(--brand-500);
  font-size: 14px;
}

.seo-container p {
  line-height: 1.5;
  color: var(--text-tertiary);
  font-size: 14px;
}

.seo-container p a {
  color: var(--brand-700);
}

#theme-footer {
  padding: 0;
  box-shadow: var(--shadow-soft);
}

.uwwseobtn:hover {
  filter: contrast(0.9);
}

.uwwseobtn {
  color: #171a1a;
  font-weight: 600;
  background-color: var(--bg-main);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.uwwseobtn p {
  font-size: 14px;
  height: 30px;
  margin: auto 0;
  color: #171a1a;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  font-weight: bold;
  margin-right: 5px;
}

.uwwseobtn span[aria-label="Next"] {
  transform: rotate(90deg);
}

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;
}

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;
}

.seo-sec {
  padding: 15px 0;
}

.seo-wrapper {
  position: relative;
  padding: 20px;
  color: var(--text-tertiary);
}

.seo-wrapper::after {
  content: "";
  display: none;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 100%);
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.readmore-seo {
  text-align: center;
  margin-top: -40px;
}

.seo-container.active .readmore-seo {
  margin-top: 0;
}

.seo-container.active .seo-wrapper {
  max-height: none;
}

.seo-container.active .seo-wrapper::after {
  content: none;
}

.seo-content-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.seo-content-collapsible.expanded {
  max-height: 100%;
}

.uwwseobtn.read-more p::before {
  content: "";
}

.uwwseobtn.read-more.active p {
  content: "";
}

.uwwseobtn.read-more.active span[aria-label="Next"] {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}

button.read-more {
  position: relative;
  min-width: 100px;
  background: var(--quinary-color);
  height: 35px;
  border-radius: 7px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 10px;
}

button.read-more:hover {
  opacity: 0.6;
}

.seo-wrapper h3 {
  margin: 15px 0 10px 0;
  font-weight: bold;
}

.seo-wrapper a {
  color: #f24647;
  text-decoration: underline;
}

.seo-wrapper a:hover {
  color: #000;
}

.footer-sec {
  position: relative;
  padding: 0 0 10px;
  color: #aaa;
}

.footer-sec a,
.footer-sec b {
  color: var(--text-tertiary);
}

.pmethod img {
  height: 35px;
  border-radius: 7px;
}

.footer-sec a:hover {
  color: var(--primary-text-color);
  text-decoration: none;
}

.footer-top-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  font-size: 13px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #f3f5f6;
}

.footer-column {
  position: relative;
  padding: 0px 10px;
}

.footer-column:last-child {
  border-right: none;
}

.ft-title {
  font-weight: 500;
  color: var(--secondary-text-color);
  margin-bottom: 8px;
}

ul.ft-list {
  padding-left: 16px;
}

ul.ft-list li {
  padding: 0.5px 0;
}

.mobile-footer-column {
  display: none;
}

.footer-btm-wrapper {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  font-size: 13px;
  border-bottom: 1px dashed #f3f5f6;
  padding: 20px 0;
}

.footer-btm-wrapper .ft-title {
  color: #aaa;
  font-weight: 400;
}

.ft-icon img {
  margin: 5px 5px;
}

.ft-crypto img {
  max-width: 45px;
  margin: 5px 3px;
}

.ft-payment img {
  max-height: 25px;
  margin: 5px 3px;
}

.ft-social img {
  max-height: 45px;
  margin: 5px 2px;
}

.footer-copyright {
  font-size: 13px;
  text-align: left;
  padding: 10px 0 0;
  text-transform: uppercase;
  display: flex;
  gap: 20px;
}

.footer-copyright a {
  text-decoration-line: underline;
  text-transform: uppercase;
}

.fc-box {
  flex: 1 0 50%;
}

.pay-icn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.fc-box img {
  width: 52px;
  border-radius: 50%;
  background: #4d4d4d;
}

/** Mobile Bottom Menu **/
.mobile-btm-sec {
  position: fixed;
  background: var(--bg-main);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10000;
  display: none;
}

ul.btm-menu-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  height: 57px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

a.bmenu-link {
  color: #9bacc9;
  font-size: 11px;
  font-weight: 500;
  display: block;
  padding: 5px 1px;
}

.bmimg {
  margin-bottom: 2px;
}

.bmimg img {
  max-height: 24px;
}

/** Register page **/

.reg-bg {
  background: var(--login-bg);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.reg-sec {
  padding: 15px 0 30px;
}

.reg-box {
  flex-basis: 50%;
}

.register-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #131623;
}

.reg-left-column {
  padding: 20px;
}

.reg-right-column {
  background: #161b2a;
  padding: 30px 20px 20px;
}

.regtitle {
  display: none;
}

form.reg-form {}

.rfwrap {
  position: relative;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.reg-field {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  z-index: 2;
  left: 15px;
  color: #535e76;
  font-size: 16px;
}

input.reg-input {
  background: #2c3247;
  color: var(--tertiary-text-color);
  border: none;
  height: 40px;
  padding: 2px 15px 2px 45px;
  border-radius: 8px;
}

input.reg-input::placeholder {
  color: #c4c4c4;
}

.field-icon {
  position: absolute;
  right: 17px;
  top: 13px;
  font-size: 17px;
  cursor: pointer;
}

.reg-line {
  background: #535e76;
  height: 1px;
  width: 100%;
  margin: 0px 0 20px;
}

.choose-text {
  font-size: 16px;
  text-align: center;
  padding-bottom: 10px;
}

.fav-game {
  display: flex;
  justify-content: space-evenly;
}

.game-option {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  margin: 4px 6px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}

.game-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 4px;
  background-color: #535e76;
}

.game-option:hover input~.checkmark {
  background-color: var(--primary-text-color);
}

.game-option input:checked~.checkmark {
  background-color: var(--primary-text-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.game-option input:checked~.checkmark:after {
  display: block;
}

.game-option .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--bg-main);
  border-width: 0px 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reg-btn-wrap {
  text-align: center;
  padding: 20px 0;
}

#groupSubmit {
  text-align: center;
  margin: 34px 0;
}

input#customform_submit,
input#registerform_btnSubmit {
  position: relative;
  min-width: 100%;
  background: var(--brand-500);
  border-radius: 8px;
  margin: 0;
  color: #000;
  height: 52px;
  padding: 0px 14px;
  box-shadow: var(--shadow-soft);
  -webkit-appearance: none;
  font-weight: bold;
  border: 0;
}

input#customform_submit:hover,
input#registerform_btnSubmit:hover {
  background: var(--brand-700);
  color: var(--text-tertiary);
}

.agree-text {
  font-size: 14px;
  color: #535e76;
}

.greentext,
.agree-text a {
  color: var(--secondary-text-color);
}

.agree-text a:hover {
  color: var(--tertiary-text-color);
}

.fun-begin {
  padding: 0 5px;
}

.regtext-1 {
  color: var(--tertiary-text-color);
  font-weight: 700;
  font-size: 24px;
}

ol.fun {
  padding: 10px 0 0px 17px;
  font-size: 17px;
}

ol.fun .greentext {
  font-weight: 700;
}

ol.fun li {
  padding-bottom: 10px;
}

.reg-feature-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.activate-wrapper {
  background: #131623;
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  text-align: center;
}

.active-img {
  margin-bottom: 10px;
}

.actext-1 {
  color: var(--primary-text-color);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.btn-act {
  padding-top: 20px;
}

.btn-act button.login-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
}

.panel {
  background: var(--bg-card);
  margin: 0;
  color: var(--text-primary);
  width: 100%;
  text-align: center;
  height: 100%;
}

/*====================lottery css=====================*/

.lottery-new .btn-primary:hover {
  color: #fff;
  background-color: #2caffc;
  border-color: #24b9fc;
}

.lottery-new .btn:hover {
  box-shadow: 0px 3px 5px rgb(46 46 46);
  transform: translateY(-3px);
}

.lottery-new button {
  margin: 17px;
  background-color: #1ac8fd;
  text-transform: uppercase;
}

.panel-heading {
  font-size: 15px;
}

.lottery-new .panel-heading {
  color: #000;
  border: 0px solid red;
}

.panel-body {
  padding: 0;
  color: #fff;
  font-size: 15px;
  min-height: 425px;
}

.panel-body .logo {
  padding: 10px 0;
  position: unset;
}

.panel-body .logo .col-sm-4 {
  margin-left: 9px;
  width: 29%;
  border: 0px solid red;
}

.liveresult-template>.row>div:nth-child(2) {
  width: 97%;
  margin: auto;
  padding-bottom: 20px;
}

.liveresult-template>.row>div:nth-child(2)>button {
  border: 1px solid var(--border-soft);
  background: var(--brand-100);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

#THV88,
#GDLotto,
#Toto-5D,
#Toto-6D {
  display: none;
}

#Magnumimg {
  background: url(/data/1767/uploads/4D_magnum.png) left no-repeat #383838;
  height: 50px;
  width: 85px;
}

#PMPimg {
  background: url(/data/1767/uploads/4D_damacai.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#Totoimg {
  background: url(/data/1767/uploads/4D_toto.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#Singaporeimg {
  background: url(/data/1767/uploads/4D_sgpool.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#Sabahimg {
  background: url(/data/1767/uploads/4D_sabah88.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#Sandakanimg {
  background: url(/data/1767/uploads/4D_stc.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#Sarawakimg {
  background: url(/data/1767/uploads/4D_cashsweep.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#GDLottoimg {
  background: url(/data/1767/uploads/4D_gdlotto.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#Perdanaimg {
  background: url(/data/1767/uploads/4D_perdana.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#LuckyHari-Hariimg {
  background: url(/data/1767/uploads/4D_luckyharihari.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#GOOD4Dimg {
  background: url(/data/1767/uploads/4D_good4d.png) left no-repeat;
  height: 50px;
  width: 85px;
}

#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;
}

#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;
}

#Perdana-3D,
#Perdana-3D .small {
  color: #fff !important;
}

#Perdana-3D .panel-heading {
  color: #000;
}

#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;
}

.panel.panel-default {
  background-color: #2e2e2e;
  height: auto;
  max-height: fit-content;
  margin-bottom: 10px;
  border: none;
}

.panel-body label {
  color: #fff;
  background: #000;
  padding: 4px;
  width: 100%;
}

.panel-body #TopThree .col-sm-4 {
  padding: 1px;
}

#TopThree,
#Special,
#Consolation {
  padding: 10px 20px;
}

.popwin {
  color: #fff;
}

#TopThree {
  padding-top: 20px;
}

#Consolation {
  padding-bottom: 20px;
}

.panel {
  max-height: max-content;
}

.webpage-lottery .panel-body {
  padding: 0;
}

.page-panel .panel-default {
  background-color: transparent;
}

.lotteryTable {
  display: table;
  width: 100%;
}

.lotteryec-sec {
  width: 100%;
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--bg-card);
  margin-bottom: 0;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.lotteryTableHeader {
  color: var(--text-primary);
  text-transform: uppercase;
  font-weight: bold;
  background: linear-gradient(45deg, var(--brand-500), var(--bg-card));
}

.lotteryTableColHeader {
  color: var(--brand-700);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  background: var(--bg-card);
}

.lotteryTableRow {
  color: var(--text-primary);
  background: var(--td-odd);
}

.lotteryTable td {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 14px;
  display: table-cell;
  border: 1px solid var(--border-soft);
}

.lotteryResults {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px auto;
}

/*====================product page =====================*/
.poster {
  border-radius: 20px;
  overflow: hidden;
}

.intro {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.intro button#customform_submit {
  width: 50%;
  padding: 14px;
  background: linear-gradient(0deg, var(--brand-500), var(--brand-100));
  font-weight: bold;
  color: #fff;
  border: 0;
  border-radius: 20px;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

.intro button#customform_submit:hover {
  background: linear-gradient(0deg, var(--brand-100), var(--brand-500));
  transition: 0.3s;
}

.notice-table {
  padding: 20px;
  background: var(--brand-500);
  border-radius: 10px;
  margin: 30px 0;
}

th#notice-title {
  color: rgb(255 0 0);
  padding-bottom: 14px;
}

.notice-table td {
  color: #000000;
}

.r {
  padding: 20px;
  background: var(--bg-card);
  border-radius: 10px;
}

.r.t {
  background: unset;
  margin-left: -13px;
}

.r ol li {
  padding: 4px 0;
}

p.t {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: bold;
  text-transform: uppercase;
}

/** Redeem Mall **/
/*====================product css=====================*/
#theme-contain-prod {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
  padding-top: 90px;
  min-height: 90dvh;
}

#theme-contain-prod .max-container,
#theme-contain-prod form {
  padding: 0;
}

#theme-contain-prod .modal-header {
  padding: 20px;
  border-bottom: unset;
}

#theme-contain-prod .modal-header .close {
  color: var(--text-primary);
  opacity: 1;
}

#theme-contain-prod .modal-content {
  background-color: var(--bg-card);
}

#cms5-prod-list ul {
  background: var(--menu-bg);
  border-radius: 5px;
  margin: auto;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid var(--border-soft);
  width: 100%;
  min-height: -webkit-fill-available;
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

#cms5-prodcatnav {
  position: relative;
}

#cms5-prodcatlist {}

#cms5-prodcatlist ul {
  display: flex;
  padding: 3px;
  margin: 0 0 15px;
  max-width: fit-content;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
  list-style: none;
}

#cms5-prodcatlist ul li {
  background: linear-gradient(45deg, var(--brand-500), var(--brand-700));
  margin: 4px;
  border-radius: 12px;
}

#cms5-prodcatlist ul li:hover {
  background: linear-gradient(231deg, var(--brand-500), var(--brand-700));
}

#cms5-prodcatlist ul li a {
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  display: inline-block;
  margin: 2px 5px;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
  border-radius: 45px;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  text-transform: capitalize;
  height: 35px;
  font-weight: bold;
}

#theme-contain-prod .prod-banner img {
  border-radius: 20px;
  margin: 0px auto 25px;
}

#cms5-prod-list #title {
  order: -1;
  margin-bottom: 10px;
}

#cms5-prod-list #title a {
  color: var(--text-primary);
  aspect-ratio: 4 / 2;
  border: 0px solid red;
  display: block;
  font-weight: bold;
}

#title span.caption,
#photo span.caption,
#price span.caption {
  display: none;
}

#cms5-prod-list #title a {
  color: var(--text-primary);
  aspect-ratio: 4 / 2;
  border: 0px solid red;
  display: block;
}

#cms5-prod-list ul #addcart a,
#cms5-prod-view #addcart a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 5px;
  border: 0;
  margin: auto;
  min-width: 80px;
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-700) 100%);
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  box-shadow: var(--brand-100) 0px -2px inset;
}

#cms5-prod-view #addcart a {
  width: fit-content;
  text-align: left;
  min-width: unset;
  margin: unset;
  padding: 12px 40px;
}

#cms5-prod-list ul #addcart a:hover {
  filter: contrast(0.9);
}



#cms5-prod-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}

#cms5-prod-list #price {
  color: var(--brand-500);
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
  letter-spacing: 1px;
}

#cms5-prod-list #photo {}

#cms5-prod-list #desc,
#cms5-prod-list #details,
#cms5-prod-list #enquiry,
#cms5-prod-list #code {
  display: none;
}

div#sort {
  margin-top: -17px;
}

select#sortlist {
  display: inline-block;
  width: 23%;
  height: 38px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: none;
  padding: 4px 15px;
  border-radius: 8px;
}

#myModalredeem ol.o img {
  width: calc(100% - 40px);
}

#myModalredeem .modal-content {
  background-color: var(--bg-card);
}

#price-range input#price-min {
  width: 23%;
  display: inline-block;
  height: 38px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: none;
  padding: 4px 15px;
  border-radius: 8px;
}

input#price-max {
  width: 23%;
  display: inline-block;
  height: 38px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: none;
  padding: 4px 15px;
  border-radius: 8px;
}

input#submit-btn {
  border-radius: 5px;
  padding: 6px;
  color: #03927c;
  font-weight: 600;
  width: 10%;
}

#search-bar {
  border: 1px solid var(--border-soft);
  padding: 16px;
  border-radius: 6px;
  background: var(--menu-bg);
  max-width: 1250px;
  margin: 25px auto;
  position: relative;
}

.panel-default>.panel-heading {
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  padding-bottom: 10px;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: inherit;
  color: var(--brand-500);
  border: 0;
  border-bottom: 1px solid var(--border-soft);
}

label {
  font-size: 18px;
  margin: 8px 0;
  color: #b4b4b4;
  display: inline-block;
  font-weight: 500;
  min-width: 100px;
}

div#price-range {
  color: #adadad;
}

div#price-range input#stock {
  margin-left: 10px;
}

#clear-btn {
  position: absolute;
  white-space: nowrap;
  color: #adadad;
  text-decoration: underline;
  right: 210px;
  bottom: 30px;
}



#search-form input#submit-btn {
  padding: 15px 1px;
  border: 0;
  width: 170px;
  position: absolute;
  bottom: 16px;
  right: 0;
  left: unset;
  margin: 0 15px 0 0;
  min-width: 80px;
  background: linear-gradient(180deg, var(--brand-500) 0%, var(--brand-100) 100%);
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  box-shadow: var(--brand-100) 0px -2px inset;
}

#search-form input#submit-btn:hover {
  filter: contrast(0.9);
}

div#keyword {
  display: none;
}

.intro p.r {
  width: 70%;
  padding-right: 5%;
}



/*====================product cart view=====================*/

#cms5-prod-view {
  border: 1px solid var(--border-soft);
  padding: 16px;
  border-radius: 6px;
  background: var(--menu-bg);
  max-width: 1250px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
}

#cms5-prod-view #addcart a:hover {
  filter: contrast(0.9);
}

#cms5-prod-view #title #caption {
  width: 80px;
}

#cms5-prod-view .gcontent {
  width: 100%;
  margin: -10px auto 0px;
}

#cms5-prod-view td {
  margin: 10px 5px;
}

#cms5-prod-view #desc #caption {
  width: 120px;
  border: red solid 0px;
}

#cms5-prod-view #back-btn a:hover {
  filter: contrast(0.9);
}

#cms5-prod-view #back-btn a {
  color: var(--text-primary);
  font-weight: 600;
  background-color: var(--menu-bg);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

#cms5-prod-view table {
  color: var(--text-primary);
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
}

.galleria-thumbnails-container {
  display: none;
}

#cms5-prod-view table td#price {
  color: var(--brand-500);
  font-weight: bold;
}

table#particular td#title {
  color: var(--text-primary);
  font-weight: bold;
}

#cms5-prod-view table tr#desc {
  display: none;
}

/*====================product cart checkout=======================*/
/*checkout table*/

#prod-cart {
  text-align: center;
  background: var(--menu-bg);
  padding-bottom: 20px;
  box-shadow: var(--shadow-soft);
}

#prod-cart .tbllist .tbl th {
  font-weight: 500;
  color: #fff;
}

#prod-cart .tbllist.rounded.spacer input[type="button"] {
  padding: 5px;
  color: #000;
  border: 0px solid;
  border-radius: 5px;
}

#prod-cart .tbllist {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#prod-cart .tbllist form table tfoot td#total {
  color: var(--brand-500);
  font-weight: bold;
}

#prod-cart .tbllist form table tr td {
  padding: 5px;
}

#prod-cart .tbllist form table td#photo img {
  width: 100%;
  min-width: 50px;
  height: fit-content;
}

#prod-cart .tbllist form table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

#prod-cart .tbllist form table tr {
  color: #171a1a;
  border-bottom: 1px solid #f1f2f3;
  background: var(--brand-700);
}

#prod-cart .tbllist form table input[value="EMPTY"] {
  background: transparent;
}

#prod-cart .tbllist form tr #photo {
  padding: 3px;
}

#prod-cart .tbllist.rounded.spacer tr th {
  background: var(--brand-100);
  text-align: center;
  padding: 12px;
}

#prod-cart .tbllist .tbl tfoot td {
  padding: 3px 8px;
  background: transparent;
}

#prod-cart td a {
  color: #ffffff;
}

#prod-cart input[type="text"] {
  box-shadow: none;
  margin-top: 0px;
}

#prod-cart .tbllist #qty input[type="text"] {
  border: 0px solid #ed0306;
}

#prod-cart #continue-shopping a {
  max-width: 200px;
  transition: all 0.2s ease;
  margin: 30px auto;
  text-transform: capitalize;
  font-weight: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  position: relative;
  min-width: 80px;
  background: linear-gradient(0deg, var(--brand-100), var(--brand-500));
  height: 35px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  padding: 2px 10px;
  box-shadow: var(--brand-100) 0px -2px inset;
}

#prod-cart #continue-shopping a:hover {
  filter: contrast(0.9);
}

#prod-cart .alert-warning {
  padding: 10px;
  width: 300px;
  margin: auto;
  border-radius: 6px;
}

#prod-cart #control ul {
  list-style: none;
  padding: 0;
  margin: auto;
}

#prod-cart #icon-delete a {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("/data/2152/uploads/delete.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  margin-top: 5px;
  border: none;
  cursor: pointer;
}

/*================checkout login========================*/
#theme-contain-prod #remoteloginform,
#theme-contain-prod #customform {
  width: 300px;
  margin: auto;
  text-align: center;
  background: #000000;
  padding: 16px;
  border-radius: 6px;
}

#theme-contain-prod #remoteloginform .caption,
#theme-contain-prod #customform .caption {
  display: none;
}

#theme-contain-prod form#customform img {
  width: 100%;
  max-width: 100px;
  margin: 0px auto 10px;
}

#prod-cart #cart-member-info div {
  margin: 5px 0;
}

#prod-cart #submit button[type="button"] {
  padding: 10px 16px;
  background: linear-gradient(180deg, #7e7e7e, #7a7a7a);
  border-radius: 10px;
}

#prod-cart table#cart-member-info td,
#prod-cart #cart-shipping td {
  padding: 10px;
  border: 1px solid #000000;
  text-align: left;
}

#prod-cart .alert-danger {
  color: #ff1d19;
  background-color: var(--bg-card);
  border-color: var(--border-soft);
  margin-top: 20px;
}

table#apimeminfo a {
  color: #ffffff;
  padding: 12px 30px;
  background: linear-gradient(360deg, #f3bd3d, #d69916, #fac846);
  border: 1px solid darkgoldenrod;
  border-radius: 20px;
  display: block;
  width: fit-content;
}

#theme-contain-prod input#customform_submit {}

#sys_msg {
  padding: 5px 20px;
}

#cartlist #price,
#cartlist #total,
#cartlist #weight {
  text-align: center !important;
}

#cartlist #qty {}

#icon-delete a {
  color: #171a1a;
}

#submember-login {
  width: 400px;
  background: #ebf3f5;
  padding: 30px 30px 5px 10px;
  display: block;
  margin: auto;
  border-radius: 20px;
}

/** Casino slots sport fishing **/
.product-game-sec {
  position: relative;
  padding: 50px 0 30px;
}

.display-game-wrap {
  background: var(--quaternary-color);
  border-radius: 12px;
  border-top: 2px solid #20273b;
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  margin-bottom: 20px;
}

.dg-column {
  position: relative;
  padding: 30px 15px;
}

.game-pvd-img {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.game-pvd-img img {
  max-height: 75px;
}

.dg-subtitle {
  max-width: 380px;
  margin: 0 auto 10px;
  font-size: 15px;
}

.dg-img-column {
  position: relative;
}

.casino-character {
  position: absolute;
}

button.gmplay-btn {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  height: 45px;
  font-size: 20px;
  min-width: 180px;
  border-radius: 8px;
  padding: 2px 15px;
}

button.gmplay-btn:hover {
  background: var(--quinary-color);
  color: var(--secondary-text-color);
}

.dg-img-column {
  position: relative;
  padding: 50px 30px 35px 0;
}

.casino-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 48%;
  margin: 0 auto;
  z-index: 3;
}

.casino-character img {
  max-height: 400px;
}

.deco.gold-dice {
  left: 0;
  right: 0;
  top: -7%;
  max-width: 66%;
  margin: 0 auto;
  animation: 2.2s float ease-in-out infinite;
}

ul.nav.nav-provider-game {
  justify-content: center;
  margin: 0 -10px;
}

ul.nav.nav-provider-game li.nav-item {
  max-width: 190px;
  width: 15.5%;
  margin: 0.5%;
}

ul.nav.nav-provider-game a.nav-link:hover {
  background: #141723;
  transition: 0.3s;
}

ul.nav.nav-provider-game a.nav-link {
  background: #2b3048;
  border: 1px solid transparent;
  border-top: 2px solid #535c76;
  border-radius: 10px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: 0.3s;
}

ul.nav.nav-provider-game a.nav-link img {
  max-height: 50px;
  max-width: 90%;
}

ul.nav.nav-provider-game .nav-item.active .nav-link {
  background-color: #2b3048;
  background: linear-gradient(180deg,
      rgba(43, 50, 72, 1) 0%,
      rgba(44, 59, 72, 0.9248949579831933) 40%,
      rgb(108 48 161) 100%);
  border: 1px solid var(--secondary-color);
}

.sport-template {
  background: var(--quaternary-color);
  padding: 30px 20px 45px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.sports-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 50%;
  margin: 0 auto;
  z-index: 3;
}

#api-leaguefeed {
  position: unset !important;
  text-align: center;
  height: unset !important;
}

#api-leaguefeed .brick {
  min-width: calc(20% - 10px);
  min-height: 178.17px;
  height: auto !important;
  margin: 5px;
  position: unset !important;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  border: 1px solid transparent;
  border-top: 2px solid #535c76;
  border-radius: 10px;
  background: #2b3048 !important;
}

#api-leaguefeed .brick>ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#api-leaguefeed .brick>ul>li {
  padding: 5px 10px;
}

#api-leaguefeed #playtime {
  background: var(--secondary-color);
  color: var(--tertiary-text-color);
  text-align: center;
  border-radius: 10px 10px 0 0;
}

#api-leaguefeed #livetv a:hover {
  transition: 0.3s;
  filter: brightness(1.3);
}

#api-leaguefeed #livetv a,
#api-leaguefeed #livetv a:visited {
  display: block;
  color: var(--tertiary-text-color);
  text-decoration: none;
  text-align: center;
  background: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

#api-leaguefeed #versus {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
}

#api-leaguefeed #versus div:nth-child(1) {
  color: #0080ff;
}

#api-leaguefeed #versus div:nth-child(2) {
  color: var(--black-color);
  font-size: 12px;
}

#api-leaguefeed #versus div:nth-child(3) {
  color: red;
}

.deco.baseball {
  left: 17%;
  top: 38%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.pingpong {
  right: 11%;
  top: 11%;
  max-width: 16%;
  animation: 2.4s float ease-in-out infinite;
}

.deco.volley {
  left: 19%;
  top: 34%;
  max-width: 13%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.bowling {
  top: 10%;
  right: 14%;
  max-width: 19%;
  animation: 2.4s float ease-in-out infinite;
}

.deco.football {
  left: 15%;
  top: 37%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.shuttercock {
  top: 9%;
  right: 10%;
  max-width: 16%;
  animation: 2.4s float ease-in-out infinite;
}

.deco.plate {
  left: 17%;
  top: 37%;
  max-width: 16%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.cup {
  right: 11%;
  top: 9%;
  max-width: 23%;
  animation: 2.4s float ease-in-out infinite;
}

.deco.whitsle {
  left: 15%;
  top: 33%;
  max-width: 17%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.cup-2 {
  right: 15%;
  top: 8%;
  max-width: 26%;
  animation: 2.4s float ease-in-out infinite;
}

.gaming-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 66%;
  margin: 0 auto;
  z-index: 3;
}

.gaming-character.live22 {
  max-width: 97%;
}

.deco.mahjong {
  left: 19%;
  top: 15%;
  max-width: 18%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.pussy {
  left: 17%;
  top: 33%;
  max-width: 18%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.ace {
  left: 23%;
  top: 33%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.gold {
  right: 21%;
  top: 22%;
  max-width: 18%;
  animation: 2.4s float ease-in-out infinite;
}

.deco.bomb {
  left: 21%;
  top: 10%;
  max-width: 14%;
  animation: 2.4s float ease-in-out infinite;
}

.deco.seven {
  right: 15%;
  top: 21%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.wild {
  left: 20%;
  top: 10%;
  max-width: 20%;
  animation: 2.4s float ease-in-out infinite;
}

.fish-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 62%;
  margin: 0 auto;
  z-index: 3;
}

.deco.joker {
  left: 16%;
  top: 8%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.jili {
  left: 10%;
  top: -4%;
  max-width: 17%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.dolly {
  left: 11%;
  top: 31%;
  max-width: 17%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.rocket {
  left: 13%;
  top: 56%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}

.deco.firefish {
  right: 13%;
  top: 28%;
  max-width: 19%;
  z-index: 3;
  animation: 2.4s float ease-in-out infinite;
}

/** Slots **/
.slots-sec {
  padding-bottom: 30px;
}

.slots-top-banner {
  position: relative;
}

.deco.slotdeco-1 {
  left: 9%;
  top: 9%;
  max-width: 12%;
  animation: 2.4s float ease-in-out infinite;
}

.deco.slotdeco-2 {
  left: 4%;
  top: 48%;
  max-width: 9%;
  animation: 2s float ease-in-out infinite;
}

.deco.slotdeco-3 {
  right: 14%;
  top: 12%;
  max-width: 8%;
  animation: 1.2s zooming infinite;
}

.deco.slotdeco-4 {
  right: 6%;
  top: 49%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}

@-webkit-keyframes zooming {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.slots-lobby-container {
  background: #161b2a;
  padding: 30px;
  border-radius: 30px;
  border-top: 3px solid #20273b;
  display: grid;
  grid-template-columns: 200px auto;
  grid-gap: 15px;
  position: relative;
  max-width: 1200px;
}

.slot-filter-wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px;
}

button.sfbtn {
  background: #293146;
  border: none;
  color: var(--tertiary-text-color);
  font-size: 15px;
  font-weight: 500;
  padding: 3px 10px;
  height: 35px;
  border-radius: 7px;
  min-width: 75px;
  position: relative;
}

button.sfbtn.active,
button.sfbtn:hover {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
}

.slot-search-box {
  position: relative;
  background: #2b3348;
  border-radius: 7px;
  display: grid;
  grid-template-columns: auto auto;
  height: 33px;
  max-width: 185px;
}

input.slots-input {
  background: none;
  border: none;
  height: 33px;
  padding: 5px 10px;
  color: var(--tertiary-text-color);
  width: 160px;
}

button.slot-search-btn {
  background: none;
  border: none;
  color: #666a73;
  padding: 5px;
}

input.slots-input::placeholder {
  color: #707f8d;
}

.slots-provider {
  background: #1b2132;
  border-top: 2px solid #20273b;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: fit-content;
}

a.spvdbox {
  display: block;
  color: var(--tertiary-text-color);
  font-size: 15px;
  padding: 5px 4px 4px 20px;
  position: relative;
  overflow: hidden;
  height: 55px;
  display: flex;
  align-items: center;
}

a.spvdbox.active,
a.spvdbox:hover {
  background: #445a71;
  color: var(--tertiary-text-color);
  font-weight: 500;
}

.hot-slot {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  width: 80px;
  padding: 17px 2px 3px;
  text-align: center;
  transform: rotateZ(39deg);
  position: absolute;
  right: -31px;
  top: -9px;
  box-shadow: 0 0px 4px rgb(0, 0, 0, 0.4);
  z-index: 2;
}

.pdv-icon {
  margin-right: 8px;
}

.slots-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}

.slotgbox {
  position: relative;
  max-width: 180px;
  margin: 0 auto;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

.slot-tumbnail {
  overflow: hidden;
}

.slot-tumbnail img {
  object-fit: cover;
  width: 100%;
}

.slot-name {
  background: #070f25;
  color: var(--tertiary-text-color);
  height: 50px;
  font-size: 13px;
  text-align: center;
  padding: 5px 5px;
  overflow: hidden;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}

.slotgbox:hover .play-hover {
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
}

button.playslot-btn {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  min-width: 110px;
  padding: 7px;
  margin: 5px 0px;
  border-radius: 7px;
  transform: scale(0.3);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

button.playslot-btn.demo {
  background: #081420;
  border: 1px solid #ffe27f;
  color: #ffe27f;
  transform: scale(0.3);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

button.playslot-btn:hover {
  transform: scale(0.97);
  filter: brightness(1.07);
  box-shadow: 0 0 10px -1px var(--primary-color);
}

.slotgbox:hover .play-hover button.playslot-btn {
  transition: 0.2s;
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

/** VIP **/
.vipWrapper {
  width: 100%;
}

.vipWrapper>div {
  margin-bottom: 0;
  border-radius: 15px;
}

.vipWrapper>h3.golden {
  font-weight: 700;
  font-style: oblique;
  background-image: -webkit-linear-gradient(#f13233 10%, #990003 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 60px;
  margin: 40px 0;
  text-align: center;
  font-size: 56px;
}

.vipBlockHeader {
  background: linear-gradient(to right, #f13233 10%, #990003 40%);
  color: var(--bg-main);
  font-size: 26px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  border-radius: 15px 15px 0 0;
}

.vipBlockBody {
  padding: 20px 15%;
  color: #171a1a;
  text-align: center;
  background: var(--bg-main);
  border-radius: 0 0 15px 15px;
}

.vipBlockBody p {
  font-size: 14px;
  line-height: 16px;
}

.vipContent {
  width: 100%;
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--menu-bg);
  margin: 30px 0;
  padding: 16px;
  border-radius: 15px;
}

.vipTable {
  display: table;
  border-spacing: 0;
  margin: 0;
  width: 100%;
}

.vipTable .vipCell {
  display: table-cell;
  flex: 1;
  padding: 4px 8px;
  font-size: 16px;
  text-align: center;
  min-width: 100px;
}

.vipTable .vipCell img {
  width: 60px;
  margin: -4px -8px;
}

.vipTable>.vipCat>.vipRow:nth-child(1)>.vipCellH2 {
  font-size: 20px;
  color: var(--brand-500);
}

.vipTable .vipCell.vipCellH2 {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-tertiary);
  flex: 2;
  padding: 5px;
  text-align: left;
}

.vipTable .vipCell.vipCellH1 {
  font-size: 28px;
  font-weight: bold;
  color: #171a1a;
  flex: 2;
  padding: 5px;
  text-align: left;
  background: -webkit-linear-gradient(#e0c7ae 40%, #c2a884 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sopnImg.ec_starter,
.sopnImg.ec_gold,
.sopnImg.ec_silver,
.sopnImg.ec_platinum {
  display: block;
  width: 100%;
  height: 70px;
}

.vipRules {
  margin-top: 40px;
}

.vipTable .vipCat {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 0px 20px;
  margin: 20px 0;
}

.vipTable .vipRow {
  color: var(--text-primary);
  font-size: 14px;
  display: flex;
  padding: 10px 0;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}

.vipTable .vipRow:last-child {
  border: unset;
  padding-bottom: 12px;
}

.sponBar.vip p {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  margin-top: 5px;
}

.sponBar.vip ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0;
}

.vipRules p {
  color: #171a1a;
  font-size: 14px;
  padding-bottom: 10px;
}

/** Info Pages **/
.info-page-sec {
  position: relative;
  padding: 5px 0 30px;
}

.infopage-container {
  display: grid;
  grid-template-columns: 250px auto;
  grid-gap: 15px;
}

.info-menu-wrap {
  background: var(--quaternary-color);
  border-radius: 16px;
  padding: 15px;
  height: fit-content;
}

a.infolink {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: var(--tertiary-text-color);
  font-size: 15px;
  padding: 5px 10px 5px 20px;
  margin: 5px 0;
  border-radius: 45px;
}

a.infolink.active,
a.infolink:hover {
  background: var(--quinary-color);
  color: var(--primary-text-color);
}

.info-content {
  background: var(--quaternary-color);
  border-radius: 16px;
  padding: 30px;
}

.info-title {
  font-size: 24px;
  font-weight: 500;
  padding: 0 20px 5px;
}

.info-divider {
  height: 2px;
  background: var(--primary-color);
  width: 100%;
  margin: 20px 0;
}

.info-content-inner {
  padding: 0 15px;
  line-height: 1.4;
  color: #adadad;
}

table.banking-table tr td {
  background: #0c293b;
  border: 1px solid #465a66;
  text-align: center;
  padding: 6px 2px;
}

table.banking-table tr td.bktitle {
  background: #051a27;
}

.tnc-card {
  margin-bottom: 7px;
}

button.btn-tnc {
  background: var(--primary-color);
  font-weight: 600;
  color: var(--tertiary-text-color);
  width: 100%;
  text-align: left;
  padding: 5px 35px 5px 20px;
  height: 42px;
  border-radius: 6px;
  position: relative;
  line-height: 1;
}

button.btn-tnc.collapsed {
  background: var(--quinary-color);
  color: var(--tertiary-text-color);
  font-weight: 500;
}

button.btn-tnc::after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  color: var(--tertiary-text-color);
  right: 15px;
  top: 13px;
}

button.btn-tnc.collapsed::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: var(--primary-text-color);
}

.tnc-body {
  padding: 10px;
}

.contactbox {
  background: rgb(0, 0, 0, 0.2);
  max-width: 180px;
  width: 100%;
  margin: 10px;
  display: inline-block;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}

.ct-icon {
  font-size: 50px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.ct-detail {
  background: var(--quinary-color);
  color: var(--tertiary-text-color);
  font-weight: 600;
  font-size: 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-detail a {
  color: var(--tertiary-text-color);
}

.ct-icon img {
  max-height: 90px;
}

.contactbox:hover .ct-detail {
  background: var(--primary-color);
}

/** Afterlogin Pages **/
.deposit-sec {
  position: relative;
  padding: 30px 0 30px;
}

.quick-menu-wrapper {
  padding-bottom: 15px;
  display: none;
}

.topmain-btn {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  grid-gap: 1%;
}

a.tpm-btn {
  background: var(--quaternary-color);
  color: var(--tertiary-text-color);
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 0;
}

a.tpm-btn.active {
  background: var(--quinary-color);
}

a.tpm-btn img {
  margin-bottom: 4px;
  filter: contrast(0) brightness(10);
  max-height: 30px;
}

a.tpm-btn.active img {
  filter: contrast(1) brightness(1);
}

.af-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px auto;
  grid-gap: 15px;
  position: relative;
}

.player-vip-box {
  background: url("../images/user-vip-bg.jpg") no-repeat;
  background-size: cover;
  border-radius: 20px;
  text-align: center;
  padding: 10px 10px 15px;
  margin-bottom: 15px;
}

.vip-badge-img {
  max-width: 120px;
  margin: -40px auto 10px;
  position: relative;
}

.mblvl-text-1 {
  font-size: 13px;
}

a.info-vip {
  color: var(--primary-text-color);
  margin: 0 5px;
}

.mblvl-text-2 {
  color: var(--primary-text-color);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.afmenu-box {
  background: var(--quaternary-color);
  border-radius: 25px;
  padding: 20px 20px;
}

ul.nav.afmenuside-nav {
  flex-direction: column;
}

ul.nav.afmenuside-nav li.nav-item {
  margin-bottom: 5px;
}

ul.nav.afmenuside-nav li.nav-item a.mslink {
  display: block;
  color: var(--tertiary-text-color);
  padding: 2px 20px;
  border-radius: 45px;
  font-size: 16px;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
}

.afn-icon {
  margin-right: 15px;
}

.afn-icon img {
  max-height: 24px;
  filter: brightness(10) contrast(1);
}

.deposit-note {
  background: var(--quaternary-color);
  border-radius: 25px;
  padding: 25px;
  margin-top: 15px;
}

.important-note {
  margin-bottom: 10px;
}

.important-note i {
  color: #ff0004;
  margin-right: 5px;
}

.deposit-note ul {
  font-size: 12px;
  color: #c2c2c2;
  margin-bottom: 0;
}

.deposit-note ul li {
  padding: 2px 0;
}

.deposit-note.mobile {
  display: none;
  padding: 15px 0;
}

ul.nav.afmenuside-nav li.nav-item a.mslink.active,
ul.nav.afmenuside-nav li.nav-item a.mslink:hover {
  background: var(--quinary-color);
  color: var(--primary-text-color);
}

ul.nav.afmenuside-nav li.nav-item a.mslink.active img,
ul.nav.afmenuside-nav li.nav-item a.mslink:hover img {
  filter: brightness(1) contrast(1);
}

.af-submenu-box {
  position: relative;
  padding: 0 5px 0 35px;
  margin-top: 5px;
}

.af-submenu-box::before {
  content: "";
  background: #78848b;
  height: 100%;
  width: 2px;
  margin: auto;
  position: absolute;
  left: 21px;
  top: 0;
}

.af-submenu-box a {
  display: block;
  color: var(--tertiary-text-color);
  margin: 3px 0;
  padding: 10px 15px;
  border-radius: 8px;
}

.af-submenu-box a:hover,
.af-submenu-box a.active {
  background: linear-gradient(to left,
      rgba(248, 236, 127, 1) 0%,
      rgba(201, 158, 66, 1) 100%);
  color: #0a1941;
}

.afcolumn-right {
  position: relative;
}

.afinner {
  border-radius: 25px;
  overflow: hidden;
}

.mainwallet-wrap {
  background: var(--quaternary-color);
  padding: 25px 35px;
  display: grid;
  grid-template-columns: 54% 45%;
  grid-gap: 1%;
  border-radius: 0 0 25px 25px;
}

.mwtext {
  color: var(--primary-text-color);
  font-size: 15px;
  padding: 5px 0;
  height: 38px;
}

button.restore-btn {
  border: 1px solid var(--primary-color);
  border-radius: 45px;
  color: var(--tertiary-text-color);
  padding: 5px 10px;
  font-size: 14px;
  margin: 0 2px 0 10px;
}

button.restore-btn i {
  color: var(--primary-text-color);
  margin-right: 5px;
}

button.restore-btn:hover {
  background: var(--primary-color);
}

button.restore-btn:hover i {
  color: var(--tertiary-text-color);
}

.info-restore {
  position: relative;
  cursor: pointer;
}

.info-wrap {
  position: absolute;
  color: var(--tertiary-text-color);
  width: 120px;
  background: rgb(0, 0, 0, 0.8);
  left: 105%;
  top: 0;
  font-size: 11px;
  padding: 6px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
}

.info-restore:hover .info-wrap {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

button.redeem-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 45px;
  color: var(--tertiary-text-color);
  padding: 5px 14px;
  font-size: 14px;
  margin-left: 10px;
  vertical-align: middle;
}

button.redeem-btn:hover {
  background: none;
}

.mwbalance {
  font-size: 38px;
  font-weight: 700;
}

sup.crt-my {
  text-transform: uppercase;
  font-size: 50%;
  color: var(--primary-text-color);
  top: -0.8em;
}

button.reload-btn {
  background: none;
  border: none;
  font-size: 21px;
  color: var(--primary-text-color);
  padding: 0px 5px 7px;
  vertical-align: middle;
}

button.reload-btn:hover {
  color: var(--tertiary-text-color);
}

button.reload-btn:hover i {
  transform: rotate(180deg);
  transition: 0.3s;
}

.frame-container {
  margin-top: 10px;
}

.aform-wrapper {
  background: #161b2a;
  padding: 15px 25px;
  height: 100%;
  color: var(--tertiary-text-color);
  border-radius: 25px 25px 0 0;
}

.aform-wrapper.trans {
  border-radius: 25px;
  margin-bottom: 15px;
}

.af-submenu-wrap {
  padding: 5px 0 20px;
}

a.afsub-btn {
  background: #2b3247;
  color: var(--tertiary-text-color);
  border-radius: 10px;
  border: none;
  padding: 6px 5px;
  margin: 0.5% 0.5% 0.5% 0;
  display: inline-block;
  min-width: 170px;
  text-align: center;
  font-size: 15px;
}

a.afsub-btn.active,
a.afsub-btn:hover {
  background: #535e76;
}

.aficon {
  margin-right: 15px;
}

.aficon img {
  max-height: 30px;
}

.afsub-btn.active .aficon img,
.afsub-btn:hover .aficon img {
  filter: contrast(1) brightness(5);
}

.af-field-wrap {
  display: grid;
  grid-template-columns: 160px auto;
  grid-gap: 5px;
  margin-bottom: 10px;
}

.label-col {
  color: var(--primary-text-color);
  font-weight: 500;
  padding-top: 10px;
}

.redtext {
  color: #f00;
}

.af-field {
  position: relative;
}

input.afinput,
select.afinput,
textarea.afinput {
  background: #2b3247;
  color: var(--tertiary-text-color);
  border: none;
  height: 40px;
  padding: 4px 15px;
  border-radius: 8px;
  width: 100%;
}

input.afinput::placeholder {
  color: #c5c5c5;
}

button.qamt-btm {
  background: #212738;
  color: var(--tertiary-text-color);
  border: none;
  font-weight: 600;
  font-size: 15px;
  min-width: 75px;
  border-radius: 8px;
  padding: 11px 5px;
  margin: 7px 5px 0 0;
}

button.qamt-btm:hover {
  background: #535e76;
}

.bank-depo-option.banking .bank-acct-btn img {
  max-height: 35px;
}

.afinput.upload {
  padding: 8px 15px;
}

.bank-pay {
  position: relative;
  cursor: pointer;
  margin-right: 5px;
  display: inline-block;
  max-width: 130px;
  width: 100%;
  vertical-align: text-top;
}

.input-hide input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
}

.bank-acct-btn {
  position: relative;
  background: #2b3247;
  text-align: center;
  border-radius: 10px;
  display: block;
  cursor: pointer;
  padding: 12px 5px;
}

.bank-acct-btn img {
  position: relative;
  max-height: 30px;
}

.input-hide[type="radio"],
.input-hide input[type="checkbox"] {
  appearance: none;
  display: none;
}

.input-hide .bank-pay input:active+.bank-acct-btn,
.input-hide .bank-pay input:checked+.bank-acct-btn {
  background: #535e76;
}

.bank-acct-btn.bnk {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--tertiary-text-color);
  padding: 5px;
}

label.bank-acct-btn.bnk img {
  max-height: 35px;
  margin-right: 10px;
}

.banking .bank-acct-btn {
  font-size: 13px;
  font-weight: 500;
  color: #f8f8f8;
}

.banking .bank-acct-btn img {
  margin-bottom: 5px;
}

.greytext {
  color: #535e76;
  font-size: 14px;
}

.agree-af-wrap {
  display: grid;
  grid-template-columns: 35px auto;
  padding: 15px 0;
}

.agree-depo {
  color: #8e8e8e;
  font-size: 13px;
  padding: 2px;
}

.agree-depo a {
  color: var(--primary-text-color);
}

.af-field-submit {
  padding: 15px 0;
  text-align: center;
}

.how-depo-wrap {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  margin-right: 20px;
  margin-bottom: 15px;
}

.how-depo-wrap a {
  color: #ccc;
}

.how-depo-wrap a i {
  color: #ccc;
}

.how-depo-wrap a:hover {
  color: var(--primary-text-color);
}

.wbank-table {
  text-align: center;
  margin-bottom: 20px;
}

.transfrom-amt-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  position: relative;
  grid-gap: 30px;
  padding: 15px 0px;
  max-width: 720px;
  margin: 0 auto;
}

.trans-card {
  background: #2b3247;
  border-radius: 10px;
  padding: 15px 20px 25px;
}

.tc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding-bottom: 10px;
}

button.max-btn {
  background: none;
  border: 1px solid var(--bg-main);
  color: var(--tertiary-text-color);
  padding: 1px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
}

button.max-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  border: 1px solid var(--primary-color);
}

.prod-amt-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}

select.trans-input {
  background: none;
  color: var(--tertiary-text-color);
  border: none;
  width: 150px;
  font-weight: 600;
  padding: 0;
}

select.trans-input option {
  color: #000;
}

input.trans-input-1 {
  text-align: right;
  background: none;
  border: none;
  color: var(--tertiary-text-color);
  font-size: 24px;
  font-weight: 600;
}

input.trans-input-1.edit {
  padding-right: 25px;
}

input.trans-input-1::placeholder {
  color: #c5c5c5;
}

.pdatext {
  font-size: 12px;
  color: #607e8f;
  font-weight: 500;
}

.edit-icon {
  position: absolute;
  right: 0;
  top: 7px;
}

input.trans-input-1.locked {
  color: #607e8f;
}

.swap-icon {
  text-align: center;
  max-width: 42px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}

button.swap-btn {
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 2;
}

button.swap-btn:hover {
  transform: scale(0.96);
  filter: brightness(1.07);
}

.trans-note {
  max-width: 450px;
  margin: 0 auto;
  border: 2px solid #c5c5c5;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 30px auto;
  color: #c5c5c5;
  padding: 15px;
  font-size: 13px;
}

button.balance-btn {
  background: var(--quinary-color);
  color: var(--tertiary-text-color);
  border: none;
  padding: 15px 38px;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  text-align: left;
  position: relative;
}

button.balance-btn::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  color: var(--tertiary-text-color);
  right: 30px;
  top: 17px;
  transform: rotate(180deg);
  transition: 0.3s;
}

button.balance-btn.collapsed::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  transform: none;
  transition: 0.3s;
}

.balance-panel {
  background: var(--quaternary-color);
}

.all-balance-card {
  background: var(--quaternary-color);
  padding: 20px 30px;
}

.abtitle {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 9px;
}

.pvd-balance-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
  padding-bottom: 10px;
}

.prvdbox {
  width: 100%;
  background: var(--quinary-color);
  padding: 15px 15px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  max-width: 250px;
}

.pvb-col-1 {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

button.allin-btn {
  border: 1px solid var(--bg-main);
  color: var(--tertiary-text-color);
  background: none;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  padding: 2px 7px;
  margin-top: 6px;
}

button.allin-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  border: 1px solid var(--primary-color);
}

.pvb-col-2 {
  text-align: right;
  font-size: 18px;
}

.crcy-text {
  font-size: 80%;
}

.date-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-date-wrapper {
  display: flex;
  align-items: center;
}

.date-icon {
  position: absolute;
  left: 10px;
  top: 7px;
  color: #78848b;
  font-size: 20px;
}

.hsword {
  margin: 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #78848b;
}

input.afinput.history {
  background: #2b3247;
  padding-left: 40px;
  max-width: 170px;
}

input#customform_submit.history {
  height: 40px;
  padding: 5px;
  font-size: 18px;
  min-width: 150px;
  margin-left: 10px;
}

.depo-divider {
  height: 1px;
  background: var(--primary-color);
  margin: 0 auto 15px;
  max-width: 95%;
}

.af-submenu-wrap.history a.afsub-btn {
  min-width: 15.5%;
  font-size: 15px;
  padding: 10px 5px;
}

.history-table-wrap {
  margin: 10px 0;
}

table.history-table {
  text-align: center;
  color: #f8f8f8;
  font-size: 14px;
}

table.history-table tr.hstop td {
  background: #2b3247;
  font-weight: 600;
}

table.history-table tr.hstop td:first-child {
  border-radius: 8px 0 0 8px;
}

table.history-table tr.hstop td:last-child {
  border-radius: 0 8px 8px 0;
}

table.history-table tr td {
  padding: 12px 1px;
}

span.pending-st {
  font-size: 14px;
  font-weight: 500;
  color: #08202f;
  background: #ff9600;
  padding: 1px 5px;
  border-radius: 6px;
}

span.success-st {
  font-size: 14px;
  font-weight: 500;
  color: #08202f;
  background: #49d166;
  padding: 1px 5px;
  border-radius: 6px;
}

span.fail-st {
  font-size: 14px;
  font-weight: 500;
  color: #08202f;
  background: #f05f5f;
  padding: 1px 5px;
  border-radius: 6px;
}

.paginiation-history {
  text-align: center;
  padding: 12px 0;
}

button.page-arrow-btn {
  background: none;
  border: none;
  color: var(--tertiary-text-color);
}

button.page-arrow-btn:hover {
  color: #ffe27f;
}

span.page-num-btn {
  letter-spacing: 1px;
  padding: 0 5px;
}

button.btncopy {
  background: none;
  border: none;
  padding: 0;
  color: var(--tertiary-text-color);
}

button.btncopy:hover {
  color: #ffe27f;
}

.profile-top-wrapper {
  background: #2b3247;
  position: relative;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pf-ftitle {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

.pfrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pfcol {
  padding-right: 20px;
}

.pfrow .pfcol:last-child {
  border: none;
  padding-left: 20px;
  padding-right: 0;
}

.pf-label {
  color: #c2c2c2;
  font-size: 15px;
  margin-bottom: 0;
}

.pfcol .af-field {
  margin-bottom: 5px;
}

input.profile-input {
  background: none;
  border: none;
  color: var(--tertiary-text-color);
  font-weight: 500;
  font-size: 17px;
  padding: 5px 0;
}

button.edit-btn {
  position: absolute;
  right: 15px;
  top: 6px;
  z-index: 2;
  background: none;
  border: none;
  color: #94b6be;
}

button.edit-btn:hover {
  color: var(--tertiary-text-color);
}

.pfrow-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin-bottom: 15px;
}

.pfcolumn {
  background: #2b3247;
  position: relative;
  padding: 20px 25px;
  border-radius: 10px;
}

.pw-note {
  color: #f8f8f8;
  padding: 5px 0;
}

.pw-btn-wrap {
  padding-top: 15px;
  text-align: center;
}

button.update-btn {
  background: var(--primary-color);
  border: 1px solid transparent;
  color: var(--tertiary-text-color);
  font-size: 15px;
  border-radius: 8px;
  padding: 7px 15px;
  height: 37px;
}

button.update-btn:hover {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-text-color);
}

.crypto-note {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background: #161b2a;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cytext {
  font-weight: 400;
  color: #c2c2c2;
}

.crypto-btn-wrap {
  display: grid;
  grid-template-columns: auto 75px;
  grid-gap: 10px;
  align-items: center;
}

input.crypto-input {
  background: #242a3d;
  height: 37px;
  color: var(--tertiary-text-color);
  border: none;
  padding: 2px 15px;
  border-radius: 8px;
}

button.update-btn.copy {
  padding: 5px;
}

.bank-profile-wrap {
  margin-top: 15px;
}

button.update-btn.add-bank {
  position: absolute;
  right: 25px;
  top: 13px;
}

.bank-pf img {
  max-height: 37px;
}

.bank-profile-wrap table.history-table tr.hstop td {
  background: #161b2a;
  font-weight: 600;
}

.bank-profile-wrap table.history-table {
  font-size: 15px;
}

.pm-box {
  display: grid;
  grid-template-columns: 55% 35% 10%;
  text-align: center;
  color: #f8f8f8;
  padding: 12px 10px;
  border-bottom: 1px solid #2b3247;
  margin: 3px auto;
  cursor: pointer;
}

.pm-box.top-title {
  background: #2b3247;
  font-weight: 600;
  font-size: 17px;
  border-radius: 12px;
  max-width: 100%;
}

.mail-icon {
  position: relative;
}

.unread .mail-icon::after {
  content: "";
  background: #ff0004;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  right: -2px;
  top: 0px;
  z-index: 2;
}

.mtitle {
  display: grid;
  grid-template-columns: 26px auto;
  grid-gap: 15px;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: hidden;
}

.unread .mtitle {
  font-weight: 700;
}

button.delete-btn {
  background: none;
  color: #f8f8f8;
  border: none;
  padding: 2px;
}

button.delete-btn:hover {
  color: var(--primary-text-color);
}

.mbtext {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-box {
  display: grid;
  grid-template-columns: auto 120px;
  grid-gap: 10px;
}

input.upload-custom {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  height: 100%;
  cursor: pointer;
}

button.upload-btn {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 15px;
  font-size: 15px;
}

.bank-info-depo {
  background: #2b3247;
  padding: 10px;
  max-width: 600px;
  margin-bottom: 30px;
  border-radius: 7px;
}

a.copy-icon {
  color: var(--primary-text-color);
  font-size: 15px;
  margin-left: 5px;
}

.subicon {
  margin-right: 10px;
}

.subicon img {
  max-width: 30px;
}

/** Download Page **/
.t-inner-body.download {
  background: url("/data/2135/uploads/download-bg2.jpg") no-repeat top center;
  background-size: 100%;
  background-position-y: 55px;
}

.download-sec {
  position: relative;
  padding: 10px 0 30px;
}

.dl-banner {
  position: absolute;
  left: -4%;
  top: 0;
  max-width: 65%;
  margin: 0 auto;
  pointer-events: none;
}

.download-content {
  max-width: 650px;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
}

ul.nav.nav-download {
  justify-content: center;
}

ul.nav.nav-download li.nav-item {
  margin: 0 10px;
}

ul.nav.nav-download li.nav-item a.nav-link {
  background: #283145;
  color: var(--tertiary-text-color);
  width: 150px;
  text-align: center;
  border-radius: 5px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
}

ul.nav.nav-download li.nav-item a.nav-link i {
  margin-right: 6px;
}

ul.nav.nav-download li.nav-item a.nav-link.active {
  background: var(--primary-color);
}

.download-list-wrapper {
  text-align: center;
}

.download-box {
  display: inline-block;
  background: linear-gradient(180deg,
      rgba(43, 50, 72, 0) 6%,
      rgba(43, 50, 72, 0.5999649859943977) 34%,
      rgba(43, 50, 72, 0.8828781512605042) 65%,
      rgba(43, 50, 72, 1) 100%);
  text-align: center;
  width: 31%;
  max-width: 190px;
  color: var(--tertiary-text-color);
  margin: 2% 0.5%;
  border-radius: 0 0 8px 8px;
  padding: 0 0 15px;
}

.dl-qr {
  max-width: 130px;
  margin: 5px auto;
}

.device-os {
  letter-spacing: 1px;
  padding: 6px 0;
  font-size: 14px;
}

.android-icon {
  color: #a4c639;
}

button.download-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--tertiary-text-color);
  height: 35px;
  padding: 2px 5px;
  width: 100%;
  max-width: 85%;
  border-radius: 7px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 5px;
}

button.download-btn:hover {
  filter: brightness(1.3);
}

#theme-contain-adminloginx {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 80px;
}

#theme-contain-adminloginx table {
  margin: auto;
  width: 100%;
  max-width: 500px;
  display: block;
  background: var(--menu-bg);
  margin-bottom: 0;
  padding: 16px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

#theme-contain-adminloginx table tr td:first-child {
  display: none;
}

#theme-contain-adminloginx table tr:nth-child(5) td:nth-child(2) {
  display: flex;
  flex-flow: row-reverse;
  gap: 10px;
}

#theme-contain-adminloginx table tr:nth-child(5) td div img {
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  border-radius: 8px;
}

#theme-contain-adminloginx table tr:nth-child(6) td {
  display: block;
}

#theme-contain-adminloginx table tr:nth-child(6) td a {
  color: var(--brand-700);
  margin: 30px 0 0 0;
  font-size: 16px;
}

#theme-contain-adminloginx table tr td input {
  margin-bottom: 10px;
  width: 100%;
  background: var(--bg-card);
  color: var(--text-primary);
  border: none;
  height: 40px;
  padding: 4px 15px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

#theme-contain-adminloginx table tr:nth-child(6) td input {
  position: relative;
  min-width: 100%;
  background: linear-gradient(-90deg,
      var(--brand-500) 0%,
      var(--brand-700) 100%);
  height: 40px;
  border-radius: 8px;
  margin: 0;
  color: var(--text-primary);
  padding: 2px 10px;
  box-shadow: var(--brand-100) 0px -2px inset;
  -webkit-appearance: none;
  font-weight: bold;
  border: 0;
  margin-bottom: 30px;
}

#theme-contain-adminloginx table tbody,
#theme-contain-adminloginx table tbody tr,
#theme-contain-adminloginx table tbody tr td {
  display: block;
}

#faq_fbinner::-webkit-scrollbar {
  display: none;
}

.lobby-btn-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16%;
  text-align: center;
}

button.globby-btn {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  height: 43px;
  font-size: 18px;
  font-weight: 500;
  min-width: 180px;
  border-radius: 8px;
  padding: 2px 10px;
  box-shadow: 0px 2px 9px rgb(0, 0, 0, 0.5);
}

button.globby-btn:hover {
  transform: scale(0.98);
  background: var(--primary-color);
  box-shadow: 0px 1px 4px rgb(0, 0, 0, 0.5);
}

/** Reward Center Updated - 1/8/2024**/
.player-reward-box {
  background: #131724 url(../images/user-vip-bg.jpg) top center no-repeat;
  background-size: 100%;
  border-radius: 20px;
  text-align: center;
  padding: 10px 15px 20px;
  margin-bottom: 15px;
}

.rwctitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 12px;
  border-bottom: 1px solid var(--quinary-color);
  padding-bottom: 12px;
}

.rwcimg {
  max-width: 90px;
  margin: -25px 15px 0 0;
}

.rwctitle {
  font-size: 24px;
  color: var(--primary-text-color);
  font-weight: 700;
  text-transform: uppercase;
}

button.wdr-btn {
  border: 1px solid var(--primary-color);
  border-radius: 45px;
  color: var(--tertiary-text-color);
  height: 32px;
  padding: 2px 4px;
  font-size: 14px;
  margin: 0 0.5%;
  width: 48%;
}

button.wdr-btn i {
  color: var(--primary-text-color);
  margin-right: 8px;
}

button.wdr-btn:hover {
  background: var(--primary-color);
}

button.wdr-btn:hover i {
  color: var(--tertiary-text-color);
}

.rwcinfo {
  text-align: left;
  padding: 0 10px 10px;
}

.rwrow {
  display: flex;
  align-items: center;
  grid-gap: 0 10px;
  margin: 5px 0 10px;
}

.rwicon {
  color: var(--primary-text-color);
}

.mw2balance {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.mw2balance button.reload-btn {
  font-size: 18px;
  padding: 0px 0px 3px;
  margin-left: 5px;
}

.rc-quickgame-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  margin-top: 2px;
}

.rc-quickgame {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  background: var(--quinary-color);
  border-radius: 10px;
  padding: 5px 2px;
  vertical-align: text-top;
  cursor: pointer;
}

.rc-quickgame img {
  max-width: 40px;
}

.rc-quickgame a {
  display: block;
}

.rcgtext {
  margin-top: 5px;
  color: var(--tertiary-text-color);
}

.rc-quickgame:hover {
  background: var(--wrapper-bg-color);
}

.rc-quickgame:hover .rcgtext {
  color: var(--primary-text-color);
}

a.mslink.noticed::after {
  content: "!";
  background: #fd0007;
  height: 15px;
  width: 15px;
  color: var(--tertiary-text-color);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
}

.rwc-toptitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-text-color);
  margin-bottom: 20px;
}

.rwcbox-wrap {
  background: var(--quaternary-color);
  padding: 15px 15px;
  border-radius: 15px;
  position: relative;
  margin: 10px 0;
}

.rwcbox-wrap.claimed {
  filter: grayscale(1);
  pointer-events: none;
}

.rwclaim-upper {
  display: grid;
  grid-template-columns: 360px auto;
  grid-gap: 10px;
}

.rwclaim-img {
  height: 125px;
  overflow: hidden;
  max-width: 360px;
}

.rwclaim-img img {
  object-fit: cover;
  height: 100%;
}

.rwclaim-info {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

.rwclaim-top {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
}

.rwctext-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rwctext-2 {
  color: var(--primary-text-color);
  font-size: 90%;
}

.date-legend {
  color: #888888;
  font-size: 13px;
}

.date-legend i {
  margin-right: 5px;
}

.claim-date-text {
  color: var(--tertiary-text-color);
  font-size: 14px;
  font-weight: 600;
  padding-top: 2px;
}

.rwclaim-btm {
  display: grid;
  grid-template-columns: auto 140px;
  grid-gap: 20px;
  margin-top: 5px;
}

.claim-requirement {
  font-size: 12px;
  color: #888888;
  padding: 5px 0px;
}

.claim-date {
  margin-bottom: 7px;
}

button.rw-claim-btn {
  background: var(--primary-color);
  border: 1px solid transparent;
  color: var(--tertiary-text-color);
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 2px 5px;
  height: 37px;
  width: 100%;
  max-width: 140px;
}

button.rw-claim-btn:hover {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-text-color);
}

.reward-claim-info {
  position: absolute;
  right: 9px;
  top: 7px;
  z-index: 2;
}

button.claim-info {
  background: none;
  border: none;
  padding: 0;
  color: var(--tertiary-text-color);
  font-size: 14px;
}

button.claim-info:hover {
  color: #ffe27f;
}

ul.nav.nav-provider-game.rwcenter li.nav-item {
  width: 23.5%;
}

ul.nav.nav-provider-game.rwcenter a.nav-link:hover {
  background-color: #2b3048;
  background: linear-gradient(180deg,
      rgba(43, 50, 72, 1) 0%,
      rgba(44, 59, 72, 0.9248949579831933) 40%,
      rgba(66, 193, 74, 0.5691526610644257) 100%);
  border: 1px solid #7b9eac;
}

.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: var(--bg-main);
  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: var(--bg-main);
  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: 40px;
}

.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;
}

/** Login Modal **/
.modal-dialog.login {
  max-width: 700px;
}

.modal-content.login {
  background: var(--quaternary-color);
  border: none;
  color: #535e76;
  padding: 25px;
  text-align: center;
}

button.close-x {
  background: none;
  color: var(--tertiary-text-color);
  border: none;
  padding: 0;
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 2;
}

button.close-x:hover {
  color: var(--primary-text-color);
}

.login-logo {
  padding-bottom: 30px;
}

.login-logo img {
  max-height: 55px;
}

.login-wrapper {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 40px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  background: var(--login-header-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
  height: 52px;
  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 var(--brand-500);
}

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: var(--text-secondary);
}

.small {
  color: #ff0f0f;
  margin-top: 5px;
  font-style: italic;
}

dl#groupCurrency::after {
  content: "Currency selection required.";
  color: #ff0f0f;
  margin-top: 5px;
  font-style: italic;
  font-size: 13px;
}

span.log-icon {
  position: absolute;
  left: 17px;
  top: 9px;
  font-size: 18px;
  color: #535e76;
}

.forgot-link {
  padding-bottom: 15px;
}

.forgot-link a {
  color: #535e76;
  font-size: 15px;
}

.forgot-link a:hover {
  color: var(--primary-text-color);
}

.regnow-text {
  font-size: 16px;
}

.regnow-text a {
  color: var(--secondary-text-color);
}

.regnow-text a:hover {
  color: var(--tertiary-text-color);
}

.reg-line.login {
  background: #535e76;
  height: 1px;
  width: 100%;
  margin: 20px 0 20px;
}

.note-issues {
  font-size: 13px;
  max-width: 400px;
  margin: 0 auto;
}

.title-forgot {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 5px;
  color: var(--tertiary-text-color);
}

.reset-text {
  font-size: 15px;
  padding-bottom: 15px;
}

.vcode-img {
  position: absolute;
  right: 15px;
  top: 9px;
}

/** Payout **/
.modal-dialog.payout {
  max-width: 800px;
}

.modal-content.payout {
  background: var(--quaternary-color);
  border: none;
  border-radius: 20px;
  padding: 25px;
  color: var(--tertiary-text-color);
}

.pytitle {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.lotto-divider {
  background: var(--quinary-color);
  height: 1px;
  margin: 15px auto;
  width: 100%;
}

.pytitle-1 {
  padding-bottom: 10px;
}

table.payout-table {
  text-align: center;
}

table.payout-table tr th {
  background: var(--quaternary-color);
  font-weight: 600;
  padding: 5px 1px;
  border: 1px solid var(--quinary-color);
}

table.payout-table tr td {
  background: var(--wrapper-bg-color);
  font-weight: 500;
  padding: 5px 1px;
  border: 1px solid var(--quinary-color);
}

ol.step {
  padding-left: 17px;
}

/** Promotion **/

.tbView {
  border-collapse: collapse;
  width: 100%;
}

.tbView th,
.tbView td {
  border: 1px solid var(--border-soft);
  padding: 5px;
}

.td-bg-color {
  background-color: var(--brand-500);
}

.td-bg-color th {
  border: 1px solid var(--border-soft);
}

.tbl-list a {
  color: var(--brand-500);
}

.modal-dialog.promo {
  max-width: 850px;
}

.fancybox-skin {
  background: var(--td-even);
}

#faq_fbinner {
  background: var(--td-even);
  color: var(--text-primary);
  border: none;
  border-radius: 14px;
  max-height: 90vh;
  overflow: auto;
}

.promo-popup-content {
  padding: 15px 0 0;
}

.pmtitle-wrap {
  padding: 0 20px;
}

.pmtitle {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 5px;
  color: #171a1a;
}

.pmcaption {
  text-align: center;
  color: #171a1a;
}

.pmwrap {
  padding: 5px 30px 15px;
}

.gtext {
  color: var(--primary-text-color);
  font-weight: 500;
  padding: 5px 0;
}

.table-responsive.promo-table {
  text-align: center;
  font-size: 14px;
  border: 0;
}

table.table-promo tr th {
  font-weight: 400;
  background: var(--quaternary-color);
  padding: 6px 2px;
  border: 1px solid var(--quinary-color);
}

table.table-promo tr td {
  font-weight: 400;
  background: var(--wrapper-bg-color);
  padding: 6px 2px;
  border: 1px solid var(--quinary-color);
}

.rules-btn-wrap {
  margin-bottom: 15px;
}

.pmtnc-wrap {
  background: #161b2a;
  padding: 30px;
}

ul.terms {
  padding-left: 17px;
}

#faq_fbinner.rules {
  border-radius: 15px;
  border: 1px solid var(--primary-color);
}

.pm-content {
  padding: 15px 15px;
}

.termscwrap {
  width: 100%;
  display: block;
  background: var(--bg-main);
  margin-bottom: 0;
  padding: 20px;
  border-radius: 15px;
}

.termscwrap ul {
  list-style: disc;
  color: #171a1a;
}

.termscwrap p {
  color: #171a1a;
  margin-bottom: 15px;
}

.termscwrap h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

/** Change Password modal **/
.modal-dialog.edit-popup {
  max-width: 550px;
}

.modal-content.edit-popup {
  background: var(--quaternary-color);
  color: var(--tertiary-text-color);
  border-radius: 15px;
  padding: 30px;
}

/** Inbox Modal **/
.modal-dialog.mail-popup {
  max-width: 750px;
}

.modal-content.mail-popup {
  background: var(--quaternary-color);
  border: none;
  color: var(--tertiary-text-color);
  padding: 20px 20px;
  border-radius: 15px;
}

.mail-title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 15px;
}

.mail-content {
  background: #2b3247;
  border-radius: 15px;
  padding: 30px;
}

.mail-content a {
  color: var(--primary-text-color);
}

.close-btn-wrap {
  padding-top: 15px;
  text-align: center;
}

button.close-pm-btn {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 40px;
  border: 1px solid var(--primary-color);
  text-transform: uppercase;
}

button.close-pm-btn:hover {
  background: transparent;
  color: var(--primary-text-color);
}

/** How Deposit Modal **/
.modal-dialog.how-pop {
  max-width: 900px;
}

.modal-content.how-popup {
  background: var(--quaternary-color);
  color: var(--tertiary-text-color);
  border: none;
  border-radius: 15px;
  padding: 20px 30px;
}

.how-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.how-depo-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  padding-bottom: 10px;
}

.dep-box {
  background: #2b3247;
  position: relative;
  border-radius: 10px;
  padding: 15px 15px 15px;
  font-size: 15px;
  text-align: center;
}

.step-num {
  color: var(--primary-text-color);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.depo-img {
  margin-bottom: 10px;
}

.don-show-tick {
  color: var(--tertiary-text-color);
}

.don-show-tick .game-option {
  font-size: 13px;
}

/** Download Modal **/
.modal-dialog.download {
  max-width: 600px;
}

.downloadbody {
  text-align: center;
}

.downloadbox {
  text-align: center;
  width: 30%;
  margin: 0 1%;
  display: inline-block;
}

a.dllink-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--tertiary-text-color);
  height: 35px;
  padding: 2px 5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  margin: 8px auto;
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.table-responsive.access-info {
  margin-top: 10px;
  text-align: center;
}

input.access-input {
  background: none;
  border: none;
  color: var(--tertiary-text-color);
  display: inline-block;
  width: auto !important;
  text-align: center;
}

input#customform_submit.password {
  font-size: 14px;
  height: 33px;
  min-width: auto;
}

/** Update - 6/8/2024 **/
.mainwallet-wrap {
  padding: 25px 30px;
  grid-template-columns: 48% 30% 20%;
}

a.rwc-wrap {
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-text-color);
  font-size: 13px;
  font-weight: 600;
}

.rwiconimg {
  margin-bottom: 5px;
}

.rwiconimg img {
  max-width: 45px;
}

a.rwc-wrap:hover .rwiconimg {
  transform: scale(1.05);
}

a.bmenu-link {
  position: relative;
}

.bmimg {
  height: 25px;
}

.bmtext {
  line-height: 1;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bmimg.rwc-img img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  margin: 0 auto;
  max-height: 45px;
}

.btncopy {
  cursor: pointer;
}

#snackbar {
  visibility: hidden;
  color: var(--tertiary-text-color);
  background-color: #333;
  min-width: 250px;
  margin-left: -125px;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  left: 50%;
  bottom: 70px;
  z-index: 100;
  position: fixed;
}

/* This will be activated when the snackbar's class is 'show' which will be added through JS */
#snackbar.show {
  visibility: visible;
  -webkit-animation:
    fadein 0.5s,
    fadeout 0.5s 2.5s;
  animation:
    fadein 0.5s,
    fadeout 0.5s 2.5s;
}

/* Animations for fading in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 70px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 70px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 70px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 70px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.tab-content>.active {
  display: block;
}

.show {
  display: none;
}


.announcetext {
  padding: 12px;
  background: var(--menu-bg);
  position: relative;
  margin: 16px 0;
}

.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;
}

/* =========================  BANNER ========================= */
.b-text {
  color: var(--text-primary);
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-text h3,
.b-glass h4 {
  font-weight: bold;
  margin: 0;
}

.b-text a {
  display: block;
  background: var(--brand-700);
  color: #ffffff;
  border-bottom: 2px solid var(--brand-500);
  font-weight: bold;
  width: 250px;
  margin: auto;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s ease;
  z-index: 9;
}

.b-text a:hover {
  transform: scale(1.1);
  background: var(--brand-500);
}

.b-glass {
  width: 300px;
  margin: auto;
  backdrop-filter: blur(8px);
  background: var(--glass-bg);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
}

.b-glass span {
  font-size: 20px;
}

.b-glass span strong {
  color: var(--brand-500);
}

.b-glass h4 {
  font-size: 16px;
}

[data-theme="dark"] .owl-prev span,
[data-theme="dark"] .owl-next span {
  filter: invert(1);
}

/*=================================== VIDEO & AMBASSADOR ===================================*/
.live {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}

.vid-wrapper {
  margin-bottom: 15px;
  aspect-ratio: 4 / 2.2;
  width: 100%;
}

.vid-wrapper iframe {
  border-radius: 15px;
}

.mySlides {
  display: none;
}

.vid-btn2 {
  margin: -35% auto 0;
  display: flex;
  justify-content: space-between;
}

.w3-light-grey {
  font-family: "flexslider-icon";
  color: #e7cda6;
  font-size: 60px;
  text-shadow: 1px 1px 0 rgb(255 255 255 / 80%);
  border: none;
  background: none;
}

.side-banner img {
  float: right;
  width: 100%;
  border-radius: 15px;
  filter: drop-shadow(0px 5px 6px #000000bd);
}

.live-btm {
  margin: 30px 0 0 0;
}

.vid-btn {
  display: flex;
  justify-content: space-between;
}

.vid-btn div {
  flex: 0 0 32%;
}

.vid-btn div img {
  filter: grayscale(1);
  width: 100%;
  border-radius: 15px;
}

.vid-btn div.w3-red img {
  filter: grayscale(0);
  width: 100%;
  border-radius: 15px;
}

.vid-btn:hover {
  cursor: pointer;
}

.video-box {
  margin-top: 30px;
}

.top-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 480px;
  max-height: 600px;
}

.top-container iframe {
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 10px;
}

.iframe-container iframe {
  width: 100%;
  height: 480px;
  max-height: 600px;
  border-radius: 15px;
  filter: drop-shadow(0px 5px 6px #000000bd);
}

section.home-promo-info {
  padding: 20px 0 50px;
}

.hpi-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    url(/data/2226/uploads/promobg.png) center center no-repeat,
    var(--bg-card);
  background-size: cover;
  box-shadow: var(--shadow-soft);
  padding: 32px 54px;
  border-radius: 20px;
}

.hpi-box h2 {
  margin: 0;
  color: var(--text-primary);
  font-weight: bold;
}

.hpi-box h2 strong {
  color: var(--brand-500);
}

.hpi-box>img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(35%) sepia(0%) saturate(1240%) hue-rotate(234deg) brightness(178%) contrast(100%);
  transition: 0.2s;
}

.hpi-box:hover>img {
  filter: brightness(1) contrast(0.5);
}

/*=================================== HOME LOTTERY ===================================*/

.lottery-timer {
  padding: 0 4px;
}

.lottery-slider .owl-stage-outer {
  overflow-y: visible;
  overflow-x: hidden;
  aspect-ratio: 5 / 1.2;
}

.lottery-slider .tumbox {
  overflow: unset;
  cursor: default;
}

.lotboxL {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2 / 1;
}

.lotboxR {
  position: relative;
  background: var(--bg-card);
  border: 1px outset var(--border-soft);
  padding: 14px 0 32px;
  margin-top: 10px;
  border-radius: 10px;
}

.lotboxR:hover a {
  transform: scale(1.1);
  background: var(--brand-500);
}

.lotboxR a {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  padding: 10px;
  background: var(--brand-700);
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
  transition: 0.3s;
}



.lot-text {
  padding: 0 0 10px 0;
  color: #a6a6a6;
}

.lottery-timer span {
  display: inline-block;
  background: var(--timer-bg);
  width: calc(100% / 5);
  border-radius: 6px;
  padding: 6px;
  font-weight: bold;
  font-size: 0.95em;
}

.top-box .well {
  min-height: 20px;
  padding: 0;
  margin-bottom: 20px;
  background-color: unset;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: unset;
}

.top-box .well ul {
  flex-direction: column;
}

.footer-sec {
  position: relative;
  padding: 80px 0 0px;
  color: var(--text-tertiary);
}

.footer-sec a:active:hover {
  background-color: unset;
  border-color: unset;
  color: var(--text-primary);
  border: unset;
  box-shadow: unset;
}

.footer-sec h3 {
  font-weight: bold;
  color: var(--text-primary);
  margin: 30px 0;
}

.top-footer {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.top-box {
  flex-basis: 50%;
}

.top-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 14px;
}

.top-box ul li {}

.top-box>ul li img {
  width: 36px;
}

.top-box p a {
  color: var(--brand-500);
}

.top-footer p {
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.top-box>.btn-primary {
  color: var(--text-tertiary);
  display: block;
  float: unset;
  padding: 0;
  width: unset;
  text-align: left;
  margin: 0;
  height: unset;
  font-size: 14px;
  text-transform: capitalize;
  margin-top: 20px;
  text-decoration: underline;
  background: unset;
  margin-bottom: 20px;
  border: unset;
}

.mid-footer {
  margin: 50px 0;
  padding: 50px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.mid-footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
}

.mid-footer ul li img {
  width: 100%;
  filter: grayscale(5);
}

.mid-footer ul li:hover img {
  filter: unset;
}

.f-sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.f-sitemap ul li {
  padding: 8px 0;
}

.btm-footer {
  display: flex;
  gap: 130px;
}

.copy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
}

.cf-box {
  font-size: 14px;
}

.cf-box img {
  width: 120px;
}

#theme-contain-registration .hpi-wrapper {
  justify-content: center;
}

#theme-contain-registration h2 {
  font-size: 18px;
  text-align: center;
}

.regimg {
  width: 100%;
  border-radius: 20px;
}

.registelbtn {
  width: 90%;
  background: linear-gradient(to right, #26a5e4 0%, #8fd7fb 50%, #26a5e4 100%);
  background-size: 200% 100%;
  padding: 10px 30px;
  border-radius: 10px;
  margin: 0 auto 20px;
  text-align: center;
  animation:
    shine 3s linear infinite,
    pulse 2s ease-in-out infinite;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #1e88e5;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  font-weight: bold;
}

.registelbtn a {
  color: #000000;
}

img.telegram-logo {
  width: 20px;
}

.page-games {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  grid-template-columns: repeat(7, 1fr);
}

.page-games .item {}

/*.page-games {
    display: grid;
    gap: 14px;
    margin: 30px 0;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}*/

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: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease-in;
}

.tab-btn-promo.active,
.tab-btn-promo:hover {
  background: var(--brand-500);
  color: var(--invert-text-light);
  cursor: pointer;
}

.promo-category {
  display: flex;
  background: linear-gradient(12deg, var(--bg-card) 70%, var(--brand-700));
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.promo-pcat {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.pcat-box {
  display: flex;
  overflow: hidden;
  flex: 0 0 22%;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  background: linear-gradient(0deg, var(--bg-card) -10%, var(--brand-700));
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.pcat-box::after {
  content: "";
  background: url(/data/2226/uploads/backlight.png) center center no-repeat;
  background-size: 100%;
  position: absolute;
  top: -6px;
  left: 3px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pcat-box:hover::after {
  content: "";
  background: url(/data/2226/uploads/backlight.png) center center no-repeat;
  background-size: 100%;
  filter: hue-rotate(110deg) contrast(1.5);
}

.pcat-box img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  z-index: 1;
}

.promo-cbox.pcat {
  flex-basis: 70%;
}

.promo-cbox {
  flex-basis: 30%;
}

.promo-title h3 {
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

.pcat-box:hover,
.pcat-box.active {
  outline: 2px solid var(--brand-100);
  box-shadow:
    0 0 20px 0px var(--brand-100),
    0 0 40px 0px var(--brand-100);
}

/*VIP*/
.vip-banner {
  background:
    url(/data/2226/uploads/vip-banner-bg.webp) bottom -70px center no-repeat,
    var(--bg-card);
  background-size: auto;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex-direction: column;
}

.vip-banner img {
  text-align: center;
  margin-top: -90px;
  margin-bottom: -30px;
}

.vip-txt {
  text-align: center;
}

.vip-txt h1,
.vip-txt h2 {
  font-weight: bold;
  color: transparent;
  background-image: linear-gradient(rgb(248, 227, 190) 0,
      rgb(208, 173, 110) 80%);
  background-clip: text;
  margin: 6px;
  padding: 0px;
  text-shadow: var(--shadow-soft);
}

.vip-txt h5 {
  color: var(--text-tertiary);
  font-weight: bold;
  margin: 20px 0 10px;
}

.v-jbtn {
  background: linear-gradient(45deg, var(--brand-100), var(--brand-700));
  border-bottom: 2px solid var(--brand-500);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.v-jbtn:hover {
  background: var(--brand-500);
}

.vip-tbcntnt {
  background: var(--menu-bg);
  border-radius: 16px;
  margin: 0;
  padding: 16px;
  display: flex;
  gap: 16px;
}

.vip-sub {
  flex: 1 0 40%;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
}

.vip-sub h3 {
  font-weight: bold;
  color: var(--brand-700);
}

.vip-sub h5 {
  margin: 20px 0;
  color: var(--brand-500);
  line-height: 22px;
}

.vip-sub ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vip-sub ul li {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 22px;
}

/*SIDE MENU CLOSED*/

.body-container.active .theme-switch {
  margin: 14px;
}

.body-container.active .theme-switch button {
  display: none;
}

.body-container.active .theme-switch button.active {
  display: block !important;
  width: 100%;
  font-size: 0;
}

.body-container.active .theme-switch button.active i {
  font-size: 16px;
  margin: 0;
}

.body-container.active .theme-switch .pill {
  opacity: 0;
}

#theme-contain-contact-us h2,
#theme-contain-contact-us h3 {
  font-weight: bold;
}

.contact {
  display: flex;
  gap: 30px;
  padding-top: 20px;
}

.contact-malaysia,
.contact-singapore {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-line {
  padding: 30px 0;
}

.c-area {
  width: 50%;
  padding: 20px 0;
}

.c-inner a {
  color: var(--text-primary);
  display: block;
  padding: 2px;
}

.c-title {
  font-weight: bold;
  font-size: 20px;
}

.ctc-wrapper {
  background: var(--bg-card);
  width: 26%;
  padding: 20px 20px 10px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.ctc-flag {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.ctc-box {
  border: 1px solid var(--border-soft);
  padding: 14px;
  border-radius: 8px;
  width: fit-content;
  background: var(--glass-bg);
  font-weight: bold;
  margin: 8px 0;
}

.ctc-qr {
  padding: 10px 3px;
}

.ctc-flag img {
  width: 30px;
}

.ctc-qr img {
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid var(--border-soft);
  width: 70%;
  border-left: none;
  height: 300px;
}

.help-center {
  display: grid;
  gap: 20px;
  grid-template-columns: 30% 68%;
}

.help-center .tab-pane a {
  color: var(--brand-500);
  text-decoration: underline;
}

.help-center .seo-container {
  margin: 0 0 20px;
}

.help-center ul.nav.nav-tabs {
  display: flex;
  flex-direction: column;
  border: unset;
  background: var(--menu-bg);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  height: fit-content;
}

.help-center .tab-content {
  width: 100%;
  background: var(--menu-bg);
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}

.help-center ul.nav.nav-tabs li {
  background: var(--td-even);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  margin: 0 0 6px;
  overflow: hidden;
}

.help-center ul.nav.nav-tabs li a {
  color: var(--text-primary);
  margin: 0;
  line-height: unset;
}

.help-center ul.nav.nav-tabs li.active a {
  background: linear-gradient(45deg, var(--brand-500), var(--brand-700));
  border-radius: 8px;
  border: 1px solid var(--border-soft);
}

.help-center ul.nav.nav-tabs li a:hover {
  border: 1px solid transparent;
  background: var(--brand-100);
}

.mobile-btm-sec {
  display: none;
}


.charity {
  position: relative;
}

.charity-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 30%;
  margin: auto;
}

.charity-txt {
  text-align: center;
}

.charity-txt img {
  width: 250px;
  animation: heartbeat 2.5s infinite;
  margin-bottom: 40px;
}

.charity-main-txt {
  text-align: center;
  margin: 30px 0 0;
}

.charity-main-txt img {
  width: 40px;
  margin: 20px 20px 26px;
  filter: hue-rotate(276deg) contrast(2);
}

.charity-main-txt h3 {
  margin: 0;
  display: unset;
  font-weight: bold;
}

.charity-main-txt button.register-btn {
  margin: 20px 0;
}



/*=================================== CHARITY ===================================*/

.carousel-inner {
  height: 100% !important;
  background: #fff !important;
}

.slide_btn {
  position: absolute;
  z-index: 999;
  bottom: 17%;
  top: 0px;
  text-align: center;
  left: 30%;
  width: 40%;
}

.logoOnBanner {
  width: 100%;
}

.logoOnBanner img {
  width: 200px;
  display: block;
  margin: 0 auto;
  animation: heartbeat 2.5s infinite;
}

.donation-container>p {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: bold;
  letter-spacing: 1.5px;
  margin: 10px 0 10px;
  text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.5);
}

.bgAmountdonation {
  font-size: 2vw;
  font-weight: bold;
  color: #fff;
  margin: auto;
  background-position: center center;
  border: 1px solid #fff;
  width: 100%;
  background-color: rgb(0 0 0 / 47%);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 8px;
}

.glow {
  font-size: 30px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 25px #e60073, 0 0 35px #e60073, 0 0 45px #e60073, 0 0 55px #e60073, 0 0 65px #e60073;
  }

  to {
    text-shadow: 0 0 15px #fff, 0 0 25px #ff4da6, 0 0 35px #ff4da6, 0 0 45px #ff4da6, 0 0 55px #ff4da6, 0 0 65px #ff4da6, 0 0 75px #ff4da6;
  }
}

.bgAmountdonation>p {
  color: #fff;
  margin: 10px;
}

.bigplaybtn {
  width: 25vw;
  line-height: 4vw;
  font-size: 1.8vw;
  text-align: center;
  color: #fff;
  background: linear-gradient(45deg, var(--brand-500), var(--brand-700));
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  display: block;
  box-shadow: 0 2px 5px #000;
}

.bigplaybtn:hover {
  color: #ffffff;
  background: var(--brand-500);
  text-decoration: none;
}

.downloadimg {
  width: 7.5vw;
  font-size: 0.9vw;
  position: absolute;
  z-index: 999;
  bottom: 6vw;
  right: 25%;
  color: #FFF;
  text-align: center;
}

.pcimg {
  display: block;
}

.pcimg img {
  width: 100%;
}

.mobimg {
  display: none;
}


.container {
  max-width: 100%;
}

.contbgabout {
  padding-top: 20px;
  padding-bottom: 90px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.ab_top {
  width: 90% !important;
  margin-left: 5%;
  margin-right: 5%;
  text-align: center;
  z-index: 5;
}

.contbgabout h4 {
  line-height: 2.8rem;
  text-transform: uppercase;
  color: #a3775e;
  font-weight: bold !important;
}

.ab_titleh3 {
  color: #fe3465;
  font-weight: bold !important;
}

.icon-h3 {
  width: auto;
  height: 50px;
  margin-right: 10px;
  filter: hue-rotate(210deg) brightness(0.5);
}



.donatetab {
  margin: auto;
  background: transparent;
  color: #0073ba;
}

.donatetab table {
  background: var(--brand-500);
  border: 2px solid #3c3836;
  width: 100%;
  margin: 0px;
  font-size: 14px;
}

.donatetab td a {
  color: var(--invert-text-light) !important;
}

.donatetab ul li {
  display: inline-block;
  width: 100%;
}

.donatetab ul li a {
  color: var(--brand-500);
}

.donatetab ul li a:hover {
  color: var(--brand-700);
}

.donatetab h1 {
  font-size: 30px;
  color: var(--text-primary);
  font-weight: bold;
  text-align: center;
  margin: 30px;
}

.donatetab table tr:nth-child(1) {
  background: var(--menu-bg);
}

.donatetab table tr:nth-child(even) {
  background: var(--brand-700);
}

.donatetab table tr,
.donatetab table td {
  padding: 10px;
  color: var(--text-primary);
  text-align: center;
  border: 1px solid var(--border-soft);
  font-weight: bold;
}

.donatetab table th {
  padding: 10px;
  color: var(--text-primary);
  text-align: center;
  border: 1px solid #ffffff;
}

.donatetab .col-md-6 {
  text-align: center;
  margin: 20px auto;
}



.divNewsList {
  background: #25aae1 !important;
}

.divNews {
  width: 100%;
}

.divNews>div {
  width: 50%;
  float: left;
}

.divNews>div:first-child img {
  width: 100%;
}

.divNews>div:last-child {
  padding: 20px;
}

.contbgabout h3 {
  font-weight: normal;
  line-height: 2.8rem;
  text-transform: uppercase;
}


.contbgnews,
.contgames,
.contst,
.cont_news_black {
  color: var(--text-primary);
  background: var(--brand-700);
  background-size: 100%;
  padding: 30px;
  margin-top: 50px;
}


.contbgnews>.container h1 {
  width: 80%;
  margin: 0 auto;
}

.contbgnews h1,
.contgames h1 {
  color: var(--text-primary);
  font-weight: bold;
}

.newscont {
  width: 80%;
  margin: 0 auto;
}

.contbgnews img,
.contgames img {
  width: 100%;
}

.contbgnews h3,
.contst h3 {
  color: var(--text-primary);
  font-weight: bold;
}


.newscont .newsbtn_more {
  width: 180px;
  line-height: 3.5rem;
  font-size: 16px;
  text-align: center;
  color: #eff9fd;
  background-color: var(--brand-100);
  font-weight: bold;
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  float: right;
  display: block;
}

.newsbtn_more:hover,
.newsbtn_more_s:hover {
  color: var(--text-primary);
  background: var(--brand-500);
  border: 1px solid transparent;
  text-decoration: none;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  overflow: auto;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  background: var(--bg-main);
  width: 70%;
  position: relative;
}

.popup .content {
  max-height: 30%;
  overflow: hidden;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-primary);
  opacity: 0.8;
}

.popup .close:hover {
  color: var(--text-primary);
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url(/data/1767/uploads/fancybox_sprite.png);
}


form {
  padding: 0 30px;
}

.feedback #tblForm input {
  padding: 1px 10px !important;
  width: 100%;
  color: #000;
}

element.style {
  padding-top: 0px;
}

.donation-form-text {
  padding: 30px;
}

.donation-form-text a {
  color: #bd1b1b;
}

.msg {
  display: none;
}

@keyframes heartbeat {


  0% {
    transform: scale(.75);
  }

  20% {
    transform: scale(1);
  }

  40% {
    transform: scale(.75);
  }

  60% {
    transform: scale(1);
  }

  80% {
    transform: scale(.75);
  }

  100% {
    transform: scale(.75);
  }
}



/*=================================== Proof-Of-Donation ===================================*/

.post {
  display: inline-block;
  width: 19%;
  padding: 12px;
  vertical-align: top;
  box-sizing: border-box;
}

.post img {
  width: 100%;
  /*border-radius: 10px;*/
}

.post h3 {
  text-transform: none;
  color: var(--text-primary);
  margin: 12px 0 8px;
  font-weight: bold;
  font-size: 16px;
}

.post p {
  color: var(--brand-700);
  line-height: normal;
  font-size: 12px;
  margin-bottom: 5px;
  text-align: justify;
  font-weight: bold;
}

.post span {
  color: #666;
  font-size: 12px;
}

.w1250 {
  max-width: 1250px;
  width: 100%;
  margin: 25px auto;
}

.page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: none;
}

.page.active {
  display: block !important;
}

.nav-pagination {
  margin: 15px auto;
  width: auto;
  text-align: center;
}

.list-pagination {
  display: inline-block;
}

.pagination-bullet.active {
  background-color: var(--brand-700);
  color: #fff;
  margin: 10px 0;
  border-radius: 10px;
}

.pagination-bullet {
  display: inline-block;
  cursor: pointer;
  padding: 4px;
  background-color: transparent;
  min-width: 30px;
  max-width: 30px;
  width: 30px;
  min-height: 30px;
  max-height: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  line-height: 22px;
}

.nav-pagination * {
  vertical-align: middle;
}

.nav-pagination>span {
  display: inline-block;
  cursor: pointer;
}

.btn-prev,
.btn-next {
  padding: 4px 10px;
}








/* MOBILE VIEW */
@media (max-width: 767px) {

  /* top menu & side menu */
  ul.nav.navbar-nav {
    display: none;
  }

  #theme-left-menu {
    display: none;
  }

  .header-container {
    max-width: 100%;
    padding: 6px;
    flex-wrap: wrap;
  }

  .header-wrap {
    grid-template-columns: 100%;
  }

  .header-logomenu {
    display: none;
  }

  .header-left-wrapper .logo {
    display: block;
    position: unset;
    height: unset;
  }

  .header-left-wrapper img {
    width: 114px;
    max-height: unset !important;
    margin: 0;
  }

  button.login-btn,
  button.register-btn {
    min-width: 76px;
  }

  .mobile-sidemenu {
    padding: 80px 0;
  }

  /* page width */
  .max-container {
    max-width: 100%;
    padding: 16px 20px;
  }

  .body-container {
    grid-template-columns: 100%;
    transition: unset;
  }

  /* HOME */

  @keyframes bannerFloat {
    0% {
      background-position:
        0 -200px,
        0 0;
    }

    50% {
      background-position:
        0 -180px,
        0 0;
    }

    100% {
      background-position:
        0 -200px,
        0 0;
    }
  }

  section.home-banner {
    padding: 30px 10px;
    background-size: 100%;
  }

  .banner-wrapper {
    flex-direction: column-reverse;
  }

  .b-left {
    margin-left: 0;
  }

  .live {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
  }

  .side-banner img {
    float: unset;
  }

  .side-banner {
    order: 3;
    margin-top: -20px;
  }

  .hpi-wrapper {
    flex-direction: column;
    gap: 10px;
    padding: 20px 30px;
  }

  .hpi-box h2 {
    text-wrap-mode: nowrap;
  }

  section.home-promo-info {
    padding: 20px 0;
    margin: -30px 0 10px;
  }

  .lottery-slider .owl-stage-outer {
    overflow-y: visible;
    overflow-x: visible;
    aspect-ratio: unset;
  }

  .lottery-timer {
    padding: 0 4px;
    display: flex;
    justify-content: center;
    gap: 2px;
    font-size: 0;
  }

  .lottery-timer span {
    font-size: 12px;
    width: 36px;
  }

  /*winner table*/
  .scroll-table thead tr th:first-child,
  .scroll-table tbody tr td:first-child,
  .scroll-table thead tr th:nth-child(2),
  .scroll-table tbody tr td:nth-child(2) {
    display: none;
  }

  .scroll-table table {
    min-width: 100%;
  }

  .win-table th,
  .win-table td {
    text-align: center !important;
    font-size: 12px !important;
  }

  .player-flag span.flag {
    display: none;
  }

  .player-flag {
    justify-content: center;
  }

  /* footer */
  .footer-sec {
    padding: 0;
    padding-bottom: 60px;
  }

  .top-footer,
  .copy-footer.copy-footer {
    flex-direction: column;
    gap: 4px;
  }

  .mid-footer {
    margin: 40px 0;
    padding: 30px 0;
  }

  .btm-footer {
    gap: 20px;
  }

  .mid-footer ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .mid-footer ul li img {
    width: 66px;
    filter: grayscale(5);
    aspect-ratio: 1 / 1;
    object-fit: scale-down;
  }

  .loginpopup.langactive {
    width: 90%;
  }

  .logbanner {
    grid-template-columns: auto;
  }

  #theme-contain-registration h2 {
    font-size: 16px;
    line-height: 26px;
    text-align: left;
  }

  section.home-promo-info {
    padding: 0 0 10px;
    margin: -30px 0 10px;
  }

  .home-promo-info .hpi-wrapper {
    padding: 20px;
  }

  .home-promo-info .hpi-box h2 {
    text-wrap-mode: wrap;
  }

  .reg-wrapper {
    gap: 20px;
    flex-direction: column;
  }

  .reg-bg {
    padding: 20px;
    margin-bottom: 30px;
  }

  .promo-btn {
    padding: 12px;
    gap: 12px;
    flex-direction: column;
  }

  .promo-r {
    width: 100%;
  }

  .pbtn-info {
    width: 100%;
    padding: 12px 0px;
    font-size: 14px;
  }

  .footer-sec {
    padding: 0;
    padding-bottom: 60px;
  }

  /** Mobile Bottom Menu **/
  .mobile-btm-sec {
    position: fixed;
    background: var(--bg-main);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    display: block;
    box-shadow: var(--shadow-soft);
  }

  ul.btm-menu-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    text-align: center;
    height: 57px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }

  a.bmenu-link {
    color: var(--brand-700);
    font-size: 11px;
    font-weight: bold;
    display: block;
    padding: 5px 1px;
  }

  .bmimg {
    margin-bottom: 2px;
  }

  .bmimg img {
    max-height: 24px;
  }

  /*games page*/
  .page-games {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-category {
    background: linear-gradient(30deg, var(--bg-card) 70%, var(--brand-500));
    padding: 22px;
    flex-direction: column;
    gap: 20px;
  }

  .promo-pcat {
    gap: 18px;
    flex-wrap: wrap;
  }

  .pcat-box {
    flex: 0 0 47%;
  }

  ul#promo-tab {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 40px 0;
    flex-wrap: wrap;
  }

  .tab-btn-promo {
    flex: 1 0 16%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .promo-wrapper ol#faq_modal {
    grid-template-columns: repeat(1, 1fr);
  }

  .promo-wrapper ol#faq_modal li.question {
    border-radius: 10px;
  }

  .promo-wrapper .promo-btn {
    width: 100%;
    flex-direction: row;
  }

  .vip-banner {
    height: 300px;
    margin-top: 50px;
  }

  .vip-banner img {
    text-align: center;

    margin-top: -60px;
    margin-bottom: 0px;
  }

  .vip-tbcntnt {
    flex-direction: column;
  }

  .help-center {
    display: grid;
    gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 100%;
  }

  .contact {
    flex-direction: column;
  }

  .fancybox-skin {
    max-width: 100%;
  }

  #cms5-prod-list {
    grid-template-columns: repeat(2, 1fr);
  }

  #search-bar {
    aspect-ratio: 4 / 3;
  }

  select#sortlist {
    width: 45%;
  }

  /* charity */

  .charity-wrapper {
    position: unset;
    transform: unset;
    width: 100%;
    padding: 20px;
  }

  .charity-main-txt h3 {
    font-size: 16px;
  }

  .charity-main-txt img {
    width: 30px;
    margin: 12px;
  }

  .bigplaybtn {
    width: 90%;
    line-height: unset;
    font-size: 18px;
    padding: 20px;
    margin-top: 50px;
  }

  .donatetab table tr,
  .donatetab table td {
    padding: 20px 0;
  }

  .popup {
    width: 100%;
  }

  .donatetab {
    overflow: scroll;
  }

  .charity-sub-txt {
    padding: 20px;
  }

  .newscont {
    width: 100%;
  }

  .post {
    width: 49%;
  }

  /*prod*/

  .intro button#customform_submit {
    width: 50%;
    padding: 16px 5px;

  }

  .fancybox-wrap {
    width: 90dvw !important;
  }

  .ctc-wrapper {
    width: 100%;
  }


}