.lv1{
    background: url(/data/2211/uploads/bg-vip-level-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.level {
    display: block;
    width: 100%;
    height: 93px;
    margin-top: -40px;
}
.level1:first-child {
    margin-top: -15%;
}

@media (min-width: 768px) {
.level {
    height: 124px;
    margin-top: -50px;
}
}
@media (min-width: 1280px) {
.level {
    height: 143px;
    margin-top: -60px;
}
}
@media (min-width: 1536px) {
.level {
    height: 185px;
    margin-top: -80px;
}
}



.vip-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vip-bg-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.vip-bg-text-container:after{
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(17 17 17 / 0), rgb(17 17 17));
    content: "";
}

.vip-bg-text {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.vip-bg-text.active {
  transform: translateY(-50%);
  animation: slideDown2 0.5s forwards;
}

@keyframes slideDown2 {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.vip-bg-text span {
  display: inline-block;
  transform: translateY(-100%);
  opacity: 0;
}

.vip-bg-text.active {
  opacity: 1;
}

.vip-bg-text.active span {
  animation: slideDown 0.5s forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.vip-bg-text span:nth-child(1) { animation-delay: 0s; }
.vip-bg-text span:nth-child(2) { animation-delay: 0.05s; }
.vip-bg-text span:nth-child(3) { animation-delay: 0.1s; }
.vip-bg-text span:nth-child(4) { animation-delay: 0.15s; }
.vip-bg-text span:nth-child(5) { animation-delay: 0.2s; }
.vip-bg-text span:nth-child(6) { animation-delay: 0.25s; }
.vip-bg-text span:nth-child(7) { animation-delay: 0.3s; }
.vip-bg-text span:nth-child(8) { animation-delay: 0.35s; }


.vip-slide {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    gap: 12px;
    opacity: 0;

    transition: all 0.6s ease;
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 0 75px;
}

.vip-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.vip-level-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex: 1;
    position: relative;
}

.vip-level-image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  z-index: 2;
  position: relative;
}

.vip-level-card {
    flex: 1;
    width: 100%;
    max-width: 420px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.vip-level-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.vip-level-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.vip-level-card ul li {
  background: #2a2a2a;
  border-radius: 50px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.vip-login-btn {
  width: 100%;
  background: #007aff;
  color: white;
  font-weight: 600;
  padding: 0.8rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
}

.vip-login-btn:hover {
  background: #0062cc;
}

.vip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, opacity 0.2s;
}

.vip-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.vip-arrow.left { left: 0; }
.vip-arrow.right { right: 0; }

.vip-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}



@font-face {
  font-family: Onest-Regular;
  src: url(/theme/m9/font/Onest-Regular.ttf);
}
@font-face {
  font-family: Onest-Bold;
  src: url(/theme/m9/font/Onest-Bold.ttf);
}
@font-face {
  font-family: Onest-Light;
  src: url(/theme/m9/font/Onest-Light.ttf);
}

@viewport {
  width: device-width;
  zoom: 1;
}

/*Define CSS Variables*/
:root {
  /*Base Colors*/
  --primary-color: #8f00ff;
  --secondary-color: #c57efd;
  --tertiary-color: #ffffff;
  --quaternary-color: #131723;
  --quinary-color: #2b3248;

  /*Text & link*/
  --primary-text-color: #8f00ff;
  --secondary-text-color: #c57efd;
  --tertiary-text-color: #ffffff;

  /*Body*/
  --body-background-color: #111111;
  --body-text-color: #fff;

  /*Menu*/
  --menu-bg-color: #131723;
  --menu-text-color: #fff;
  --menu-hover-bg-color: #2b3248;

  /*Wrapper Panel Table*/
  --wrapper-bg-color: #111111;
}

::-webkit-scrollbar {
  background: var(--quinary-color);
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: var(--quinary-color);
  border: 3px solid var(--quaternary-color);
}
::-webkit-scrollbar-track {
  background: var(--quaternary-color);
  border-radius: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Onest-Regular", "Arial", sans-serif;
  line-height: 1.2;
  font-size: 15px;
  color: var(--body-text-color);
  background: var(--body-background-color);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

body::-webkit-scrollbar {
  display: none;
}

body.noscroll {
  overflow: hidden;
  touch-action: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus,
button:focus,
button:hover,
input:focus,
select:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
}
button {
  background: none;
  border: none;
  padding: 0;
}

.desktop {
  display: block;
}
.tablet {
  display: none;
}
.mobile {
  display: none;
}

.t-body {
  overflow: hidden;
}
.deco {
  position: absolute;
}
.max-container {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 16px;
}
.t-inner-body {
  position: relative;
  padding-top: 72px;
}
.body-container {
  display: grid;
  grid-template-columns: 242px auto;
  transition: 0.3s;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
.burger {
  display: none;
}

/*Header*/
.header-wrap {
  position: fixed;
  z-index: 1050;
  background: #111111;
  width: 100%;
}
.header-content {
  background: #191919;
  display: grid;
  grid-template-columns: 234px auto;
  border-radius: 32px;
  margin: 8px 8px 0 8px;
}
.header-logomenu {
  display: flex;
  z-index: 10000;
}
.sm-btn-wrap {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 6px;
}
button.sidemenu-btn {
  position: relative;
  z-index: 99;
  width: 40px;
  height: 40px;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.opncls {
  display: block;
  background: url(/data/2211/uploads/menu.png);
  background-size: contain;
  width: 24px;
  height: 24px;
}
button.mb-sidemenu-btn {
  position: relative;
  z-index: 99;
  width: 30px;
  height: 30px;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
button.mb-sidemenu-btn .opncls {
  background: url(/data/2211/uploads/open.png) !important;
  background-size: contain !important;
}
.modal-open button.mb-sidemenu-btn .opncls {
  background: url(/data/2211/uploads/close.png) !important;
  background-size: contain !important;
}

.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin: 0 auto;
  padding: 0 12px;
}
.header-left-wrapper {
  display: flex;
  align-items: center;
}
.logo {
  position: absolute;
  left: 60px;
  display: flex;
  height: 64px;
  justify-content: center;
  align-items: center;
}
.logo img {
  max-height: 44px;
  margin-left: 4px;
}
.hdright-wrap {
  display: flex;
  align-items: center;
}
.logreg-wrap {
  display: flex;
  align-items: center;
}
button.login-btn {
  position: relative;
  min-width: 80px;
  background-color: #8e6c3c;
  margin: 0 auto 0 0;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 80px;
  font-family: Onest-Bold;
  min-height: 48px;
  padding: 0 24px;
}
button.login-btn:active {
  background-color: #413421;
  transition: 0.3s;
}
button.register-btn {
  position: relative;
  min-width: 80px;
  background-color: #d10000;
  margin: 0 auto 0 8px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 80px;
  font-family: Onest-Bold;
  min-height: 48px;
  padding: 0 24px;
  transition: 0.3s;
}
button.register-btn:active {
  background-color: #750000;
  transition: 0.3s;
}
button.login-btn:hover,
button.register-btn:hover {
  filter: brightness(1.1);
  transition: 0.3s;
}

/*Menu*/
.smenu-text {
  white-space: nowrap;
}
.changemode {
  display: block;
  width: 20px;
  height: 20px;
  background: url(/data/2211/uploads/dark.png);
  background-size: cover;
  border-radius: 50px;
  background-position: center;
  margin-right: 0;
}
.sidemenu-bottom .langflag {
  margin-right: 0;
}
.sidemenu-col button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #c2c2c2;
  font-family: Onest-Bold;
  transition: 0.2s;
}
.sidemenu-col button:hover {
  color: #fff;
  transition: 0.2s;
}
.sm-lang {
  border-right: 1px solid #333;
}
.sidemenu-bottom {
  position: relative;
  height: 90px;
  padding: 12px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -12px;
}
.sidemenu-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}
.side-menu hr {
  margin-top: 0;
  margin-bottom: 8px;
  border-top: 1px solid #333333;
  width: 100%;
}

.nav > li > a:focus,
.nav > li > a:hover {
  text-decoration: inherit;
  background-color: inherit;
}
.smenu-item:hover {
  color: #fff;
  transition: 0.2s;
}
.smenu-item.active,
.smenu-item.active:hover {
  background: #242424;
  color: #fff;
}
.smenu-item:hover img,
.smenu-item.active img {
  filter: grayscale(1) brightness(10);
  transition: 0.2s;
}
.sidemenu-wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100% - 90px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
ul.nav.sidemenu-nav li {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
}
.smenu-item {
  color: #c2c2c2;
  border-radius: 32px;
  font-family: Onest-Bold;
  background: transparent;
  font-size: 14px;
  line-height: 1.4;
  min-height: 52px;
  gap: 12px;
  transition: 0.2s;
}
.nav > li > a {
  position: relative;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.smenu-wrap a img {
  max-height: 28px;
  margin-right: 15px;
  transition: 0.2s;
}

.side-menu {
  position: fixed;
  width: 234px;
  padding: 12px;
  transition: 0.3s;
  background: linear-gradient(180deg, #151515 60%, rgb(36 37 44) 90%);
  height: calc(100% - 88px);
  bottom: 8px;
  left: 8px;
  border-radius: 20px;
}
.header-wrap.active .opncls {
  background: url(/data/2211/uploads/menu2.png);
  background-size: contain;
}

.body-container.active {
  grid-template-columns: 84px auto;
  transition: 0.3s;
}
.body-container.active .side-menu {
  width: 84px;
  padding: 12px;
  padding-left: 20px;
  transition: 0.3s;
  left: 0;
  border-radius: 0 20px 20px 0;
}
.body-container.active .member-info-wrapper {
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto;
  margin: 10px;
  padding: 5px;
}
.body-container.active .mbinfo-wrap {
  display: none;
}
.body-container.active .smenu-text {
  display: none;
}
.body-container.active .sidemenu-wrapper {
  height: calc(100% - 116px);
}
.body-container.active .sidemenu-bottom {
  height: 116px;
  padding: 0;
  margin: 0;
}
.body-container.active .sm-lang {
  border-bottom: 1px solid #333;
  border-right: 0;
}
.body-container.active .sidemenu-col {
  display: grid;
  grid-template-columns: 1fr;
}
.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%;
  max-width: 360px;
  height: 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: 76px;
  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: linear-gradient(180deg, #151515 60%, rgb(36 37 44) 90%);
  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: #fff;
  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;
}
.mobile-sidemenu .member-info-wrapper {
  margin: 15px 15px;
}
.mobile-sidemenu .sidemenu-wrapper {
  height: auto;
  margin: 12px 16px;
}
.mobile-sidemenu .language-wrap {
  margin: 0 15px;
}
#mobile-menu {
  height: calc(100% - 64px);
  top: 64px;
}
.modal-open .modal {
  background: rgb(36 36 36 / 0.8);
}

/*Home Banner*/
.flexslider {
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0;
}
.flexslider .slides img {
  border-radius: 0;
  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;
}
.flex-control-nav {
  bottom: 0;
  z-index: 10;
}
.flex-control-paging li a {
  width: 50px;
  height: 4px;
  background: #000;
}
.flex-control-paging li a:hover {
  background: #d10000;
}
.flex-control-paging li a.flex-active {
  background: #d10000;
}
.flex-direction-nav a:before,
.flex-direction-nav a:before {
  color: #000;
}

.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;
}

/** Login popup **/
.uwlog-right {
  padding: 28px 70px 32px 70px;
}
.uwlog-head {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 50px;
}
.reglink {
  color: #c2c2c2;
  margin: 0;
  margin-bottom: 16px;
  font-size: 16px;
}
.reglink a {
  color: #efbc15;
  text-decoration: underline;
  text-transform: capitalize;
}
input#customform_submit:hover input#customformv1_submit:hover,
input#customformv2_submit:hover,
input.btnCheckUser:hover,
input#registerform_btnSubmit:hover {
  filter: contrast(0.9);
}
input#customform_submit,
input#customformv1_submit,
input#customformv2_submit {
  position: relative;
  min-width: 100%;
  background: #d10000;
  height: auto;
  border-radius: 80px;
  font-size: 20px;
  min-height: 56px;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 10px;
  -webkit-appearance: none;
  font-family: Onest-Bold;
  border: 0;
}
.loginpopup.langshow,
.loginpopup-overlay.langshow {
  display: flex;
}

.loginpopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(36 36 36 / 0.8);
  z-index: 10000;
}
.loginpopup {
  position: fixed;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #111111;
  border-radius: 20px;
  width: calc(100% - 32px);
  max-width: 500px;
  box-shadow: 0 6px 16px rgb(37 14 61 / 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 {
  text-align: left;
  color: #fff;
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-size: 24px;
  font-family: Onest-Bold;
  word-break: break-word;
}
.loginpopup-close:hover {
  filter: brightness(10);
  transition: 0.3s;
}
.loginpopup-close {
  color: #8c8c8c;
  cursor: pointer;
  font-size: 40px;
  font-family: Onest-Light;
  transition: 0.3s;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  background: #ffffff;
  padding: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  height: 52px;
  font-size: 16px;
  color: #fafafa;
  background-color: #1b1b1b;
  border: 1px solid #575757;
  border-radius: 52px;
}
input::placeholder {
  color: #c2c2c2;
  opacity: 1;
}

textarea::placeholder {
  color: #c2c2c2;
}

/*Home Slider*/
section.feature-game-sec {
  margin: 16px 0;
}

.fgtitle {
  display: flex;
  align-items: center;
  font-family: Onest-Bold;
  margin-bottom: 0;
  font-size: 24px;
  color: #fff;
}
.fgtitle img {
  margin-right: 8px;
}

.owl-carousel .owl-stage-outer {
  padding: 8px 0;
  padding-bottom: 0;
}

.tumbox {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.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(/data/2211/uploads/plybtn.png);
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 3;
  opacity: 0;
  transition: 0.3s;
}
.tumbox:hover:before {
  opacity: 1;
  transition: 0.3s;
  transform: translate(-50%, -50%) scale(1);
}

.tumbox.moregame:before {
  content: "More Games";
  display: block;
  background: transparent;
  color: #fff;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  white-space: nowrap;
  width: auto;
  height: auto;
  font-family: Onest-Bold;
}

.tumbox:after {
  content: "";
  display: block;
  background: radial-gradient(
    circle,
    rgba(209, 0, 0, 0.8) 0%,
    rgba(17, 17, 17, 0.8) 90%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
.tumbox:hover:after {
  opacity: 1;
  transition: 0.3s;
}
.tumbox:hover,
.promobox:hover {
  transition: 0.3s;
}
.owl-carousel.main-slider {
  margin-bottom: 30px;
}
.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;
}

.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;
}
.allbtns p {
  font-size: 14px;
  height: 25px;
  margin: auto 0;
  color: #fff;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  margin-right: 5px;
  font-family: Onest-Bold;
  padding-left: 5px;
}
.allbtns {
  border-radius: 100px;
  height: 30px;
  width: auto;
  min-width: 50px;
  margin: auto;
  background: #242424;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-family: Onest-Bold;
  position: absolute;
  top: -30px;
  right: 70px;
  font-size: 14px;
}

.owl-theme .owl-nav button.owl-prev {
  border-radius: 100px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: #2d2d2d;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.owl-theme .owl-nav button.owl-next {
  border-radius: 100px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: #2d2d2d;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.owl-theme .owl-nav button.owl-next:hover,
.owl-theme .owl-nav button.owl-prev:hover,
.allbtns:hover {
  color: #000;
  filter: brightness(1.5);
  transition: 0.3s;
}
span[aria-label="Next"] {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(/theme/uw99usd/imgs/arrowright.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  filter: brightness(10);
}
span[aria-label="Previous"] {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("/theme/uw99usd/imgs/arrowleft.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  filter: brightness(10);
}
.newlabel {
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.3;
  background: #0a84ff;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  bottom: 8px;
  left: 8px;
  animation: pulseColor 2s infinite alternate ease-in-out;
}
@keyframes pulseColor {
  0% {
    background-color: #0a84ff;
  }
  100% {
    background-color: #d10000;
  }
}

/*Sticky Tab*/
.provider-tabs-wrapper {
  position: relative;
}
#provider-tabs-container {
  display: flex;
  gap: 10px;
  white-space: nowrap;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 0;
  background: #111111;
  scrollbar-width: none;
  overflow-x: auto;
  height: 64px;
}
.provider-tab img {
  margin-right: 5px;
  width: 24px;
  height: 24px;
}
#provider-tabs-container::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 0;
  width: 51px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0) 0%,
    rgba(17, 17, 17, 1) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#provider-tabs-container::-webkit-scrollbar {
  display: none;
}
#provider-tabs-container.fixed {
  position: fixed;
  top: 72px;
  z-index: 100;
  width: calc(100% - 274px);
}
#provider-tabs-container.fixed::after {
  position: fixed;
  height: 64px;
  top: 64px;
}
.provider-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #fafafa14;
  color: #c2c2c2;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: Onest-Bold;
  min-width: max-content;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.provider-tab:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.provider-tab.active {
  background-color: #8e6c3c;
  color: #fff;
  font-family: Onest-Bold;
}
.provider-tab.active img {
  filter: brightness(10);
}
.content {
  padding: 20px;
  line-height: 1.8;
  font-size: 16px;
  background-color: #111;
}

/*LOTTERY PAGE*/
div#TopThree a {
  color: #fff;
  padding-bottom: 6px;
  display: block;
}
.lotteryuww-sec {
  width: 100%;
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #191919;
  margin-bottom: 0;
  padding: 16px;
  border-radius: 20px;
}
.lotteryTable {
  display: table;
  width: 100%;
  color: #c2c2c2;
}
.lotteryTableHeader {
  color: #fff;
  text-transform: uppercase;
  font-family: Onest-Bold;
  font-size: 22px;
  background: #d10000;
}
.lotto-drawresult .row {
  margin: 0;
}
.lotto-drawresult .col-sm-4 {
  width: 100%;
  padding: 0;
}
.lotto-drawresult {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 12px;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lotteryTable td {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 14px;
  display: table-cell;
  border: 1px solid #333;
}
.liveresult-template .row {
  margin-right: 0;
  margin-left: 0;
}
.liveresult-template {
  background: #191919;
  padding: 16px;
  border-radius: 20px;
  margin: 16px 0;
}
.btn-primary {
  display: none;
}
.panel {
  background: linear-gradient(180deg, #151515 60%, rgb(36 37 44) 90%);
  margin: 0;

  width: 100%;
  text-align: center;
  height: 100%;
}
.panel-default > .panel-heading .row {
  display: flex;
  width: 100%;
}
.panel-default > .panel-heading .row .col-sm-2 {
  width: 100%;
  margin: auto;
  text-align: right;
  padding: 0;
}
.panel-default > .panel-heading {
  background: #242424;
  color: #fff;
  font-family: Onest-Bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 15px;
  border-color: #333;
  height: 55px;
}
.panel-heading .col-sm-9 {
  width: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-align: left;
}
.lotto-img {
  max-width: 40px;
  overflow: hidden;
  border-radius: 6px;
}
.lotto-title {
  text-align: right;
  font-size: 18px;
  font-family: Onest-Bold;
  text-transform: uppercase;
}
.lottitle-2 {
  font-size: 70%;
  font-weight: 500;
  text-transform: uppercase;
}
.panel-body:before,
.row:before,
.row:after {
  display: none;
}
#TopThree .control-label {
  background: #242424;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 0;
  width: 100%;
  margin: 0;
  min-width: 100%;
  margin-bottom: 6px;
}
table.rs-top tr td {
  font-size: 20px;
  font-weight: 500;
  padding: 5px 1px;
  border-right: 1px solid var(--quinary-color);
}
table.rs-top tr td:last-child {
  border: none;
}
table.rs-btm tr th {
  background: var(--quaternary-color);
  color: var(--primary-text-color);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 1px;
}
#Magnumimg {
  background: url(/data/2211/uploads/4D_magnum.png) left no-repeat #383838;
  height: 50px;
  width: 85px;
}
#PMPimg {
  background: url(/data/2211/uploads/4D_damacai.png) left no-repeat;
  height: 50px;
  width: auto;
}
#Totoimg {
  background: url(/data/2211/uploads/4D_toto.png) left no-repeat;
  height: 50px;
  width: auto;
}
#Singaporeimg {
  background: url(/data/2211/uploads/4D_sgpool.png) left no-repeat;
  height: 50px;
  width: auto;
}
#Sabahimg {
  background: url(/data/2211/uploads/4D_sabah88.png) left no-repeat;
  height: 50px;
  width: auto;
}
#Sandakanimg {
  background: url(/data/2211/uploads/4D_stc.png) left no-repeat;
  height: 50px;
  width: auto;
}
#Sarawakimg {
  background: url(/data/2211/uploads/4D_cashsweep.png) left no-repeat;
  height: 50px;
  width: auto;
}
#GDLottoimg {
  background: url(/data/2211/uploads/4D_gdlotto.png) left no-repeat;
  height: 50px;
  width: auto;
}
#Perdanaimg {
  background: url(/data/2211/uploads/4D_perdana.png) left no-repeat;
  height: 50px;
  width: auto;
}
#LuckyHari-Hariimg {
  background: url(/data/2211/uploads/4D_luckyharihari.png) left no-repeat;
  height: 50px;
  width: auto;
}
#GOOD4Dimg {
  background: url(/data/2211/uploads/4D_good4d.png) left no-repeat;
  height: 50px;
  width: auto;
}
#Perdana-3Dimg {
  background: url(/data/2211/uploads/4D_perdana.png) left no-repeat;
  height: 50px;
  width: auto;
}
.row.logo .col-sm-4 {
  padding: 0 15px;
}

#THV88,
#GDLotto,
#Toto-5D,
#Toto-6D {
  display: none;
}

#Magnum .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#PMP .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#Toto .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#Singapore .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#Sabah .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#Sandakan .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#Sarawak .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#GDLotto .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#Perdana .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#LuckyHari-Hari .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#Perdana-3D .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#GOOD4D .panel-default {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
#LuckyHari-Hari .col-sm-9 {
  font-size: 14px;
}
#Magnum #datetime label,
#GOOD4D #datetime label,
#Sabah #datetime label {
  color: #c2c2c2;
}

#datetime {
  text-align: right;
  white-space: nowrap;
}
#datetime label {
  background: transparent;
}
#datetime .col-sm-12 {
  padding: 0;
  font-size: 70%;
  font-weight: 500;
  text-transform: uppercase;
  color: #c2c2c2;
  font-size: 14px;
}
a#show3d {
  color: #fff;
  font-family: Onest-Bold;
}
.panel-body .small {
  color: #c2c2c2;
}
.panel-body .row.logo {
  background: #242424;
  display: flex;
  align-items: center;
  padding: 5px 0;
  position: relative;
  right: 0;
  left: 0;
}
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border: 1px solid #333;
}
.table-bordered {
  border: 0;
  margin: 10px 0;
  border-top: 1px solid #333;
}
#Consolation {
  float: left;
  width: 50%;
}
#Special {
  width: 50%;
  float: left;
}
#Special .row:nth-child(2) {
  border-right: 1px solid #333;
}
#Special .row label,
#Consolation .row label {
  background: #242424;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 1px;
  margin: 0;
  width: 100%;
}
.panel-body .col-sm-3 {
  padding: 5px 1px;
  font-size: 16px;
  width: 50%;
}
.panel-body {
  padding: 0;
}
.panel-body .col-sm-3 a {
  color: #c2c2c2;
}
table.rs-btm tr td:last-child {
  border: none;
}
.consol-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 5px;
}

/*GAME PAGE*/
.slider-sec {
  position: relative;
}
.slider-sec h1 {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  font-size: 28px;
  text-transform: uppercase;
  font-family: Onest-Bold;
}
.gamebanner {
  width: 100%;
  margin-top: 8px;
  border-radius: 20px;
}
.gamepage-container {
  margin: 16px 0;
}
.gamepage-stage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
#theme-contain-casino .gamepage-stage > div:nth-child(1),
#theme-contain-slots .gamepage-stage > div:nth-child(1),
#theme-contain-sports .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-sports .gamepage-stage > div:nth-child(1) img {
  margin-top: -7px;
}
.tumbox {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.gamepage-stage .tumbox img {
  width: 100%;
}

/*LANGUAGE POPUP*/
.langitem.active {
  background: #8e6c3c;
  color: #fff;
}
.langitem:hover {
  color: #fff;
  transition: 0.3s;
}
.lang-eng {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/data/2211/uploads/en.png);
  background-size: cover;
  background-position: center;
  border-radius: 50px;
}
.lang-cn {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/data/2211/uploads/cn.png);
  background-size: cover;
  background-position: center;
  border-radius: 50px;
}
.langbody {
  background: #242424;
  margin: 0 70px 32px 70px;
  border-radius: 16px;
}
.langitem:first-child {
  border-radius: 16px 16px 0 0;
}
.langitem:last-child {
  border-radius: 0 0 16px 16px;
}
.langitem {
  padding: 12px;
  font-family: Onest-Bold;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #c2c2c2;
  transition: 0.3s;
}
.langbody hr {
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid #333333;
  width: calc(100% - 20px);
}
.langpopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #111111;
  border-radius: 14px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 10001;
}
.langpopup.langshow,
.langpopup-overlay.langshow {
  display: flex;
}
.langpopup,
.langpopup-overlay {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.langpopup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(36 36 36 / 0.8);
  z-index: 10000;
}
.langpopup.langactive {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.langpopup.langshow,
.langpopup-overlay.langshow {
  display: flex;
}
.langpopup-close {
  color: #8c8c8c;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  z-index: 1;
  font-family: Onest-Light;
}
.langhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 32px 28px 70px;
}
.langpopup-header {
  text-align: left;
  font-family: Onest-Bold;
  color: #fff;
  position: relative;
  font-size: 28px;
}

/*FOOTER*/
.payment {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-flow: wrap;
}
.paymentimg {
  display: flex;
  padding: 6px;
  background: #242424;
  border-radius: 50px;
  height: 36px;
  min-width: 100px;
  justify-content: center;
  transition: 0.2s;
}
.paymentimg:hover {
  background: #313131;
  transition: 0.2s;
}
.ageimg {
  display: block;
  width: 100%;
  max-width: 40px;
  margin: 32px auto;
}

.langflag {
  display: block;
  width: 20px;
  height: 20px;
  background: url(/data/2211/uploads/en.png);
  background-size: cover;
  border-radius: 50px;
  background-position: center;
  margin-right: 8px;
}
.footerbtn {
  display: flex;
  justify-content: center;
  height: 44px;
  align-items: center;
  background-color: #242424;
  color: #c2c2c2;
  border: none;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: Onest-Bold;
  min-width: max-content;
  white-space: nowrap;
  transition: 0.2s;
}
.footerbtn:hover {
  color: #fff;
  background-color: #2a2a2a;
  transition: 0.2s;
}
.footerbtn img {
  width: auto;
  height: 20px;
  margin-right: 8px;
}
.uwwfooter {
  border-radius: 20px;
  background: linear-gradient(180deg, #151515 60%, rgb(36 37 44) 90%);
  padding: 32px;
  margin-bottom: 8px;
}

.footer-btncolumns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0;
}
.footer-column {
  flex: 1 1 160px;
  margin-bottom: 0;
  position: relative;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 20px 0 0 0;
}
.footer-column ul li {
  margin-bottom: 16px;
}
.footer-column ul li a {
  color: #c2c2c2;
  font-size: 12px;
  font-family: Onest-Bold;
  line-height: 1.3;
}
.footer-column h4 {
  font-size: 14px;
  color: #c2c2c2;
  line-height: 1.3;
  font-family: Onest-Bold;
  margin: 0;
}
.footer-column .acc i {
  display: none;
}
.footer-copyright {
  color: #c2c2c2;
  font-size: 12px;
  line-height: 1.3;
  font-family: Onest-Bold;
  text-align: center;
}

/*SEO READ MORE*/
.text-section {
  width: 100%;
  padding: 20px 0;
  border-radius: 8px;
  position: relative;
  max-width: calc(800px + 16px * 2);
  margin: auto;
  margin-bottom: 16px;
}

.text-content {
  max-height: 80px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
  line-height: 1.3;
  font-size: 12px;
  color: #c2c2c2;
}
.text-section h1 {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  font-family: Onest-Bold;
  margin-top: 0;
}
.text-content h4 {
  color: #fff;
  font-size: 12px;
  font-family: Onest-Bold;
}

.text-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(27, 27, 27, 0), #111111);
  pointer-events: none;
}

.text-section.expanded .text-content::after {
  display: none;
}

.show-more-btn {
  font-size: 12px;
  background: none;
  border: none;
  color: #c2c2c2;
  margin-top: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: 0.3s;
}

.show-more-btn:hover {
  color: #fff;
  transition: 0.3s;
}

.show-more-btn i {
  transition: transform 0.3s ease;
}

.text-section.expanded .show-more-btn i {
  transform: rotate(180deg);
}

/*CTA*/
.promo-banner.home2 {
  background: url(/data/2211/uploads/home-web-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #1b1211;
}
.promo-banner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  background: url(/data/2211/uploads/halloween-web-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #1b1211;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}
.promo-image img {
  display: none;
}
.promo-image {
  flex: 1;
  height: 300px;
}

.promo-content {
  padding: 20px;
  width: 100%;
  max-width: 25vw;
  margin: auto 5%;
  border-radius: 20px;
  background: #1b1a1a;
}

.promo-content h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Onest-Bold;
}

.promo-content p {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: Onest-Bold;
  color: #c2c2c2;
}

.btn-bonus {
  display: inline-block;
  background: #d10000;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  transition: background 0.3s;
  font-family: Onest-Bold;
}

.btn-bonus:hover {
  background: #0056d2;
}
/*Promotion PAGE*/
body:has(.fancybox-overlay-fixed) {
  overflow: hidden !important;
  touch-action: none !important;
}
.promo-modal-content img {
  width: 100%;
}
.fancybox-close:hover {
  filter: brightness(10);
}
.fancybox-close:before {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
  content: "×";
  font-size: 40px;
  font-family: Onest-Light;
  color: #c2c2c2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fancybox-close {
  background-image: none;
}
.fancybox-wrap {
  width: calc(100% - 40px) !important;
  max-width: 800px !important;
  margin: auto !important;
  left: 0 !important;
  right: 0 !important;
}
.fancybox-inner {
  width: 100% !important;
}
.promo-title {
  padding: 16px 20px;
  margin: 0;
  font-size: 16px;
  font-family: Onest-Bold;
  line-height: 1.2;
}

#faq_fbinner .promo {
  display: none;
}
#faq_fbinner p,
#faq_fbinner h4 {
  margin: 0;
}
.fancybox-overlay {
  background-color: #242424cc;
}
.promo:hover .promo-txt:before {
  background-color: #242424;
}
.promo:hover .pbtn-info {
  color: #fff;
  transition: 0.2s;
}
.p-label {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #fafafa;
  border-radius: 20px;
  text-transform: uppercase;
  min-height: 26px;
  min-width: 56px;
}
.p-special {
  background-color: #d10000;
}
.p-sport {
  background-color: #007d14;
}
.p-casino {
  background-color: #0a84ff;
}

.promo-txt {
  position: relative;
  padding: 12px 20px;
  height: auto;
  display: block;
  border-radius: 20px 20px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 4px;
  transform: scaleY(-1);
}

.promo-txt:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgb(27 27 27 / 0.95);
  border-radius: 20px 20px 0 0;
  transition: background-color 0.2s;
}

.promobg img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.promo-btn {
  display: flex;
  justify-content: right;
  transform: scaleY(-1);
}
.promo-txt h3 {
  margin: 0;
  transform: scaleY(-1);
  color: #fafafa;
  font-size: 16px;
  line-height: 1.2;
  word-break: break-word;
  font-family: Onest-Bold;
}
.fancybox-skin {
  border-radius: 20px;
  background: transparent;
  color: #fafafa;
}
#faq_fbinner {
  background: #1b1b1b;
  border: none;
  border-radius: 20px;
  max-height: 90vh;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pbtn-info {
  color: #caa164;
  font-family: Onest-Bold;
  padding: 0;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  white-space: nowrap;
  text-transform: uppercase;
  padding-top: 8px;
  gap: 8px;
  transition: 0.3s;
}
.promo-tab-box ol#faq_modal li.question {
  width: 100%;
  margin: 0;
}
.promo {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
}

.subpage {
  margin: 16px 0 32px 0;
}
.subpage .fgtitle {
  justify-content: center;
}
.promo-tab-box ol#faq_modal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  grid-gap: 12px;
  overflow-x: auto;
}
.promo-filter-tabs {
  display: flex;
  background: linear-gradient(
    180deg,
    rgb(250 250 250 / 0.02) 0%,
    rgb(250 250 250 / 0.06) 100%
  );
  border-radius: 50px;
  overflow-y: hidden;
  width: 100%;
  max-width: max-content;
  margin: 16px auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-filter-btn {
  height: 44px;
  background: transparent;
  border: none;
  color: #c2c2c2;
  font-family: Onest-Bold;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 0 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: fit-content;
}

.promo-filter-btn:hover {
  color: #ffffff;
  background: #3b3b3b;
  transition: all 0.3s ease;
}

.promo-filter-btn.active {
  background: #8e6c3c;
  color: #fff;
}
.promo-filter-btn:not(:last-child) {
  border-right: 1px solid #1b1b1b;
}
.promo-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.promo-tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.promo-tab-box h2 {
  color: #c0a676;
  margin-top: 0;
}

@media (max-width: 1080px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .burger {
    display: block;
  }
  .t-menu {
    display: none;
  }
  .body-container {
    display: block;
  }
  .t-inner-body {
    padding-top: 64px;
  }
  .burger {
    display: block;
  }
  .opncls {
    width: 25px;
    height: 25px;
  }
  .header-content {
    display: flex;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: #212121;
    justify-content: space-between;
  }
  .logo {
    position: relative;
    left: 0;
  }
  .logo img {
    margin-left: 10px;
  }
  .sm-btn-wrap {
    margin-left: 10px;
  }
  .header-container {
    padding: 0 10px;
  }
  .mobile .flexslider {
    margin: 0 -10px 0 -10px;
    width: 100vw;
  }
  button.register-btn,
  button.login-btn {
    padding: 0 12px;
    min-width: auto;
    min-height: 36px;
  }
  .uwlog-right {
    padding: 32px 16px;
  }
  #provider-tabs-container.fixed {
    position: fixed;
    top: 64px;
    z-index: 100;
    width: 100vw;
    padding: 10px;
  }
  #provider-tabs-container {
    width: 100vw;
    margin-left: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .max-container {
    padding: 0 10px;
  }

  .promo-image {
    height: 200px;
  }
  .gamepage-stage {
    grid-template-columns: repeat(5, 1fr);
  }
  .gamebanner {
    width: 100vw;
    max-width: 100vw;
    margin: 0 -10px;
    margin-top: 0;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .newlabel {
    font-size: 10px;
    padding: 2.5px 4px;
  }
  .promo-banner {
    background: #1b1a1a;
    display: block;
  }
  .promo-image img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .promo-image {
    height: auto;
  }
  .promo-content {
    max-width: 100%;
    text-align: center;
    margin: 0;
    border-radius: 0;
  }
  .btn-bonus {
    width: 100%;
    max-width: 400px;
  }

  .uwwfooter {
    padding: 20px 16px;
  }
  .footerbtn {
    width: calc(50% - 6px);
  }

  .footer-column {
    flex: none;
    width: 100%;
  }
  .footer-links {
    max-height: 0;
    overflow: hidden;
    background: #313131;
  }
  .footer-column ul {
    padding: 0;
    margin-bottom: 8px;
    border-radius: 0 0 24px 24px;
  }
  .footer-column h4.acc {
    position: relative;
    min-height: 48px;
    padding: 14px 16px;
    font-size: 14px;
    color: #c2c2c2;
    cursor: pointer;
    background-color: #242424;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-column ul li {
    margin-bottom: 0;
    padding: 22px 28px;
  }
  .footer-column.active .acc {
    border-radius: 24px 24px 0 0;
  }
  .footer-column .acc i {
    display: block;
    transition: transform 0.2s;
  }
  .footer-column.active .acc i {
    transform: rotate(180deg);
    transition: transform 0.2s;
  }
  .footer-column ul li a {
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    width: 100%;
    display: block;
    border-bottom: 1px solid #3e3e3e;
    padding: 8px 0;
  }
  .gamepage-stage {
    grid-template-columns: repeat(4, 1fr);
  }
  .slider-sec h1 {
    font-size: 24px;
  }
.vip-slide{
    flex-direction: column;
}
.vip-slide{
    padding: 0;
}
.vip-level-card{
    max-width: 100%;
}
.vip-arrow{
    top: 25%;
}
.vip-level-image img{
    width: fit-content;
    max-width: fit-content;
    height: 316px;
}
.vip-level-image{
    width: 100%;
}
}

@media (max-width: 392px) {
  .header-content {
    display: block;
  }
  .header-container {
    height: 50px;
    padding-bottom: 10px;
    width: 100%;
    display: block;
  }
  .hdright-wrap {
    display: block;
  }
  .logreg-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  button.register-btn,
  button.login-btn {
    min-width: 100%;
    width: 100%;
    margin: 0;
  }
  #mobile-menu {
    height: calc(100% - 114px);
    top: 114px;
  }
  .t-inner-body {
    padding-top: 114px;
  }
  #provider-tabs-container.fixed {
    top: 114px;
  }
  #provider-tabs-container.fixed::after {
    top: 114px;
  }
}
