img {
  max-width: 100%;
}
a {
  color: var(--link-color);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
a:hover {
  color: var(--link-color-hover);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
.table {
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
}

.text-heading {
  color: var(--heading-color);
  font-weight: bolder;
}
.modal {
  z-index: 999999;
}
.welcome-modal .modal-body {
  border: 1px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 0;
  text-align: right;
}
.welcome-modal .modal-body img {
  border-radius: var(--radius);
}
.welcome-modal .modal-body button {
  position: absolute;
  float: none;
  background: transparent;
  border: 1px solid var(--primary-color);
  border-bottom-left-radius: var(--radius);
  color: var(--primary-color);
  font-size: 1.8rem;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.25rem 0.75rem;
}
body {
  background: var(--body-background);
  color: var(--body-color);
}
header {
  background: var(--header-background);
}
.logo {
  max-width: var(--logo-max-width);
}
.col-kanan {
  width: calc(100% - var(--logo-max-width));
}
.input-group-icon {
  font-size: 1.25rem;
  padding: 0 0.5rem;
}
.btn,
.btn:hover {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.btn {
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
}
.btn-daftar {
  background: var(--button-daftar-background);
  font-weight: bolder;
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
}
.btn-masuk {
  background: var(--button-masuk-background);
  border-color: #fff;
  font-weight: bolder;
}
.btn-daftar:hover,
.btn-masuk:hover {
  background: var(--info);
}
.header-menu {
  text-transform: uppercase;
  font-weight: bold;
}
.header-menu .nav-link {
  padding: 0.5rem 1rem;
  color: var(--header-menu-color);
}
.header-menu .nav-link:hover,
.header-menu .nav-link.active {
  color: var(--link-color-hover);
}
.btn-rightmenu i:not(.bi-member) {
  font-size: 1.8rem;
}
.rightmenu-collapse {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  overflow-y: auto;
  visibility: hidden;
  background: var(--header-background);
  z-index: 99999999;
  transition: visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}
.rightmenu-collapse.open {
  visibility: visible;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.rightmenu-collapse .btn {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rightmenu-collapse .btn:hover {
  background: var(--info);
}
.scrolling-marquee {
  border-top: 2px solid #000;
  background: var(--running-text-background);
  color: var(--running-text-color);
}
.scrolling-container {
  position: relative;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  padding: 0.25rem;
}
.scrolling-container:before {
  font-family: bootstrap-icons !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "\F483";
  font-size: 20px;
  padding-left: 0.5rem;
  vertical-align: -0.125em;
  background: var(--running-text-background);
}
.scrolling-text {
  display: inline-block;
  animation: marquee var(--running-text-durasi) linear infinite;
  -webkit-animation: marquee var(--running-text-durasi) linear infinite;
}
.gamemenu {
  background: var(--gamemenu-background);
  text-transform: uppercase;
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
  position: relative;
}
.gamemenu .nav-link {
  color: var(--header-menu-color);
  font-weight: bolder;
  border-left: 2px inset var(--running-text-background);
}
.gamemenu .nav-item:last-child .nav-link {
  border-right: 2px outset var(--running-text-background);
}
.gamemenu .nav-link:hover,
.gamemenu .nav-link.active {
  background: rgba(0, 0, 0, 0.55);
  color: var(--link-color-hover);
}
.gamemenu .submenu {
  background: var(--running-text-background);
  width: 100%;
  min-height: 124px;
  text-align: center;
  position: absolute;
  top: 38px;
  left: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.gamemenu .nav-link:hover + .submenu,
.submenu:hover {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.submenu img {
  height: 45px;
  margin: 0.75rem;
  -webkit-filter: drop-shadow(1px 1px 0 #000);
  filter: drop-shadow(1px 1px 0 #000);
  -webkit-transition: filter ease-in-out 0.3s;
  transition: filter ease-in-out 0.3s;
}
.submenu a:hover img {
  -webkit-filter: drop-shadow(0 0 3px var(--primary-color));
  filter: drop-shadow(0 0 3px var(--primary-color));
}

.steps .card {
  background: var(--steps-background);
}
.steps .card:hover {
  cursor: crosshair;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 0 3px 3px var(--primary-color);
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
  z-index: 2;
}
.steps .card-body {
  align-content: center;
  justify-content: space-between;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
}
.steps i {
  margin-right: 0.25rem;
  color: var(--primary-color);
}
.container-left {
  width: 350px;
  display: flex;
  flex-wrap: wrap;
}
.btn-slot {
  color: #e68f25;
  border-color: #e68f25;
}
.btn-slot:hover {
  color: #fff;
  background-color: #e68f25;
  border-color: #e68f25;
}
.btn-casino {
  color: #e40e08;
  border-color: #e40e08;
}
.btn-casino:hover {
  color: #fff;
  background-color: #e40e08;
  border-color: #e40e08;
}
.btn-togel {
  color: #f1c300;
  border-color: #f1c300;
}
.btn-togel:hover {
  color: #fff;
  background-color: #f1c300;
  border-color: #f1c300;
}
.btn-sports {
  color: #ff7500;
  border-color: #ff7500;
}
.btn-sports:hover {
  color: #fff;
  background-color: #ff7500;
  border-color: #ff7500;
}
.btn-fishing {
  color: #00a1ff;
  border-color: #00a1ff;
}
.btn-fishing:hover {
  color: #fff;
  background-color: #00a1ff;
  border-color: #00a1ff;
}
.btn-sabung {
  color: #de4021;
  border-color: #de4021;
}
.btn-sabung:hover {
  color: #fff;
  background-color: #de4021;
  border-color: #de4021;
}
.btn-game {
  border-radius: var(--radius);
  background: var(--btn-game-background);
  padding: 0;
  outline-offset: 4px;
  width: 165px;
  height: 160px;
  margin: 0.25rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.btn-game img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 2px 2px #000);
  filter: drop-shadow(0 2px 2px #000);
}
.btn-game span {
  padding: 0 0.25rem;
  font-size: 1.2rem;
  font-weight: bolder;
  -webkit-text-shadow: 1px 2px 0 #000;
  text-shadow: 1px 2px 0 #000;
}
.btn-game:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
}
.tab-horizontal {
  overflow-x: auto;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.horizontal-menu,
.tab-dpwd {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.horizontal-menu .btn,
.tab-horizontal .btn,
.tab-dpwd .btn,
.bank-menu .btn {
  white-space: nowrap;
  border-color: #f4f4f4;
  color: #f4f4f4;
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  font-size: 1rem;
}
.bank-menu .btn {
  background: #f7f7f7;
}
.bank-menu img {
  max-height: 25px;
  filter: drop-shadow(0 1px 0 #333);
}
.horizontal-menu .btn:hover,
.horizontal-menu .btn.active,
.tab-horizontal .btn:hover,
.tab-horizontal .btn.active,
.tab-dpwd .btn:hover,
.tab-dpwd .btn.active {
  background: var(--info);
  border-color: var(--primary);
}
.bank-menu .btn:hover,
.bank-menu .btn.active {
  background: #f7f7f7;
  box-shadow: inset 0 0 30px var(--info);
}
.provider-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* overflow-x: auto;
  -webkit-overflow-scrolling: touch; */
  background: var(--provider-menu-background);
  border-radius: var(--radius);
}
.provider-menu .btn-provider {
  padding: 0.75rem;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.provider-menu .btn-provider img {
  height: 40px;
  -webkit-filter: drop-shadow(1px 2px 1px #000);
  filter: drop-shadow(1px 2px 1px #000);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.provider-menu .btn-provider:hover,
.provider-menu .btn-provider.active {
  background: var(--primary-color);
  background-image: url(/assets/img/bgline.png);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.product-box {
  position: relative;
  background: var(--product-background);
  padding: 0.5rem;
  border-radius: var(--radius);
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
}
.product-box img {
  border-radius: var(--radius);
}
.product-box .progress {
  font-size: 1rem;
  height: 25px;
  border-radius: var(--radius);
}
.namagame {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rtppersen {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 50%;
  transform: translateY(-50);
  -webkit-transform: translateY(-50%);
}
.product-box .overlay {
  position: absolute;
  z-index: 15;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  border-radius: var(--radius);
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-box:hover .overlay {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.container-right {
  width: calc(100% - 350px);
}
.market-slick {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  gap: 0.25rem;
}
.market-togel {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.slick-prev {
  left: 5px;
  z-index: 9999;
}
.slick-next {
  right: 18px;
  z-index: 9999;
}
.slick-prev::before,
.slick-next::before {
  font-size: 2rem;
}
.market-togel .result-box {
  width: 170px;
}
.result-box {
  width: 182px;
  background: var(--result-box-background);
  border-radius: var(--radius);
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
  margin: 0.25rem;
}
.result-box .h4 {
  font-size: 1.25rem;
  padding: 0.25rem 0.25rem 0;
  margin: 0;
  color: var(--heading-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.result-box p,
.result-ball {
  margin: 0.5rem 0;
}
.result-ball {
  border-top: 2px dotted var(--primary-color);
}
.result-box .btn {
  background: var(--result-ball-background);
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.top-ten {
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
}
.top-ten .card {
  background: var(--top-ten-background);
}
.top-ten .card-header {
  background: var(--top-ten-background);
  padding: 1rem;
}
.promo-card {
  background: var(--promo-card-background);
}
.metode-pembayaran {
  background: var(--metode-pembayaran-background);
  padding: 0.75rem 0.75rem 1rem;
  border-radius: var(--radius);
}
.metode-pembayaran .h4 {
  text-align: center;
  font-weight: bolder;
}
.metode-bank {
  padding: 0.5rem 0.75rem;
  margin: 0.75rem 0.5rem 0;
  border-radius: var(--radius);
  border: 2px inset rgba(255, 255, 255, 0.5);
}
.metode-bank img {
  display: inline-block;
  filter: drop-shadow(0 0 2px #000);
}
.metode-bank img:first-child {
  height: 30px;
  filter: brightness(0) invert(1) drop-shadow(0 0 2px #ff0000);
}
.metode-bank img:last-child {
  max-width: 40px;
  vertical-align: text-top;
  margin-left: 3px;
}
.metode-bank.online img:first-child {
  filter: drop-shadow(0 0 2px #000);
}
.online {
  border-color: #97e52d;
}
.offline {
  border-color: #ff0000;
}
.site-description h1,
.site-description h2,
.site-description h3,
.site-description h4,
.site-description h5,
.site-description h6 {
  color: var(--heading-color);
  text-align: center;
}
.pages {
  padding: 1rem;
  background: var(--footer-background);
  border-radius: var(--radius);
}
.pages h1,
.pages h2,
.pages h3,
.pages h4,
.pages h5,
.pages h6 {
  color: var(--heading-color);
}
footer {
  background: var(--footer-background);
}
.provider,
.contact {
  position: relative;
  border: 1px inset rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  padding-bottom: 1rem;
}
.provider .h4,
.contact .h4 {
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  background: var(--footer-background);
}
.contact .btn {
  margin: 0.5rem;
  font-size: 1.1rem;
  border-radius: var(--radius);
  border: 2px inset rgba(255, 255, 255, 0.5);
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
  font-weight: bolder;
}
.contact .btn:hover {
  filter: hue-rotate(50deg);
}
.contact i {
  font-size: 1.3rem;
  margin-right: 3px;
}
.contact .btn:has(.bi-whatsapp) {
  background: #25d366;
  border-color: #25d366;
}
.contact .btn:has(.bi-facebook) {
  background: #4267b2;
  border-color: #4267b2;
}
.contact .btn:has(.bi-telegram) {
  background: #2aabee;
  border-color: #2aabee;
}
.contact .btn:has(.bi-line) {
  background: #06c755;
  border-color: #06c755;
}
.contact .btn:has(.bi-skype) {
  background: #009edc;
  border-color: #009edc;
}
.contact .btn:has(.bi-telephone-fill) {
  background: #a4c639;
  border-color: #a4c639;
}
.provider img {
  width: auto;
  height: 40px;
  -webkit-filter: grayscale(100%) drop-shadow(1px 1px 1px #000);
  filter: grayscale(100%) drop-shadow(1px 1px 1px #000);
  -webkit-transition: filter ease-in-out 0.3s;
  transition: filter ease-in-out 0.3s;
  margin: 0.75rem 0.5rem;
}
.provider img:hover {
  -webkit-filter: grayscale(0) drop-shadow(0 0 3px var(--primary-color));
  filter: grayscale(0) drop-shadow(0 0 3px var(--primary-color));
}
.copyright img {
  -webkit-transition: filter ease-in-out 0.3s;
  transition: filter ease-in-out 0.3s;
}
.copyright img:hover {
  filter: drop-shadow(0 0 3px var(--primary-color));
}
.pagination .page-link {
  background: var(--pagination-background);
}
.pagination .page-link:hover,
.pagination .page-link.active {
  background: var(--primary-color);
}
.togelCard,
.togelCard table {
  border-radius: var(--radius);
}
.togelCard .card-header:first-child {
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}
.togelCard .card-footer:last-child {
  border-radius: 0 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px);
}
#betTable {
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
}
#placeBet {
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
  border-radius: var(--radius);
  background: var(--placebet-background);
}
.btn-pasaran,
.btn-pasang {
  background: var(--button-pasaran-background);
  border: 0;
  -webkit-text-shadow: 1px 1px 0 #000;
  text-shadow: 1px 1px 0 #000;
  font-weight: bolder;
  text-transform: uppercase;
}
.togelBtnGroup {
  text-align: center;
}
.togelBtnGroup .btn {
  margin: 0.25rem 0.15rem;
}
.togelTD {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.togelTD .form-control {
  max-width: 75px;
}
.col-shio {
  width: 25%;
  padding: 0.1rem;
}
.col-shio img {
  --webkit-filter: drop-shadow(0 2px 2px #000);
  filter: drop-shadow(0 2px 2px #000);
}
.col-shio .btn:hover .bg-white {
  background: var(--light) !important;
}
.badge-shio img {
  width: auto;
  height: 30px;
  background: #fff;
  margin-right: 0.25rem;
  border-radius: 0.25rem;
  --webkit-filter: drop-shadow(1px 1px 0 #000);
  filter: drop-shadow(1px 1px 0 #000);
}
.col-colok {
  width: 20%;
  padding: 0.1rem;
}
.col-colok .ball {
  width: 40px;
  height: 40px;
}
.col-colok .ball,
.set-posisi .ball {
  width: 40px;
  height: 40px;
}
.gap-1 {
  gap: 0.5rem;
}
.bi-slots:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url(/assets/img/slots.svg);
  mask-image: url(/assets/img/slots.svg);
  line-height: 1;
  vertical-align: top;
}
.bi-togel:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url(/assets/img/togel.svg);
  mask-image: url(/assets/img/togel.svg);
  line-height: 1;
  vertical-align: top;
}
.bi-casino:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url(/assets/img/casino.svg);
  mask-image: url(/assets/img/casino.svg);
  line-height: 1;
  vertical-align: top;
}
.bi-fish:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url(/assets/img/fish.svg);
  mask-image: url(/assets/img/fish.svg);
  line-height: 1;
  vertical-align: top;
}
.bi-sports:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url(/assets/img/sports.svg);
  mask-image: url(/assets/img/sports.svg);
  line-height: 1;
  vertical-align: top;
}
.bi-sabung:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url(/assets/img/sabung.svg);
  mask-image: url(/assets/img/sabung.svg);
  line-height: 1;
  vertical-align: top;
}
.bi-handshake:before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url(/assets/img/handshake.svg);
  mask-image: url(/assets/img/handshake.svg);
  line-height: 1;
  vertical-align: top;
}
.bi-chips:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(/assets/img/chips.webp);
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1;
  vertical-align: top;
}
.bi-chips-2x:before {
  width: 23px;
  height: 23px;
}
.bi-member-1:before,
.bi-member-2:before,
.bi-member-3:before,
.bi-member-4:before,
.bi-member-5:before,
.bi-member-6:before,
.bi-member-7:before,
.bi-member-8:before {
  content: "";
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1;
  vertical-align: top;
  -webkit-filter: drop-shadow(0 1px 1px #000);
  filter: drop-shadow(0 1px 1px #000);
}
.bi-member-1:before {
  background-image: url(/assets/img/member1.svg);
}
.bi-member-2:before {
  background-image: url(/assets/img/member2.svg);
}
.bi-member-3:before {
  background-image: url(/assets/img/member3.svg);
}
.bi-member-4:before {
  background-image: url(/assets/img/member4.svg);
}
.bi-member-5:before {
  background-image: url(/assets/img/member5.svg);
}
.bi-member-6:before {
  background-image: url(/assets/img/member6.svg);
}
.bi-member-7:before {
  background-image: url(/assets/img/member7.svg);
}
.bi-member-8:before {
  background-image: url(/assets/img/member8.svg);
}
.bi-member-sm:before {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.bi-member-chosen:before {
  width: 45px;
  height: 45px;
  margin: 0.25rem;
  cursor: pointer;
}
.ball {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain !important;
  -webkit-background-size: cover;
  display: inline-block;
  height: 35px;
  vertical-align: middle;
  width: 35px;
  filter: drop-shadow(1px 1px 3px #000);
  margin: 1px;
}
.ball-x {
  background-image: url(/assets/img/x.webp);
}
.ball-0 {
  background-image: url(/assets/img/0.webp);
}
.ball-1 {
  background-image: url(/assets/img/1.webp);
}
.ball-2 {
  background-image: url(/assets/img/2.webp);
}
.ball-3 {
  background-image: url(/assets/img/3.webp);
}
.ball-4 {
  background-image: url(/assets/img/4.webp);
}
.ball-5 {
  background-image: url(/assets/img/5.webp);
}
.ball-6 {
  background-image: url(/assets/img/6.webp);
}
.ball-7 {
  background-image: url(/assets/img/7.webp);
}
.ball-8 {
  background-image: url(/assets/img/8.webp);
}
.ball-9 {
  background-image: url(/assets/img/9.webp);
}
.ball-row {
  margin-bottom: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  display: flex;
}
.hot {
  display: inline-block;
  width: 30px;
  height: 20px;
  background-image: url(/assets/img/hot.gif);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: drop-shadow(1px 1px 1px #000);
  filter: drop-shadow(1px 1px 1px #000);
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
}
.chat .chat-history {
  padding: 20px;
  border-bottom: 2px solid #fff;
}
.chat .chat-history ul {
  padding: 0;
}
.chat .chat-history ul li {
  list-style: none;
  margin-bottom: 30px;
}
.chat .chat-history ul li:last-child {
  margin-bottom: 0px;
}
.chat .chat-history .message-data {
  margin-bottom: 15px;
}
.chat .chat-history .message-data-time {
  color: #fff;
  padding-left: 6px;
}
.chat .chat-history .message {
  color: #444;
  padding: 18px 20px;
  line-height: 26px;
  font-size: 16px;
  border-radius: 7px;
  display: inline-block;
  position: relative;
}
.chat .chat-history .message:after {
  bottom: 100%;
  left: 7%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}
.chat .chat-history .receiver-message {
  background: #efefef;
}
.chat .chat-history .receiver-message:after {
  bottom: 100%;
  left: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #efefef;
  border-width: 10px;
  margin-left: -10px;
}
.chat .chat-history .sender-message {
  background: #e8f1f3;
  text-align: right;
}
.chat .chat-history .sender-message:after {
  border-bottom-color: #e8f1f3;
  left: 93%;
}
.chat .chat-message {
  padding: 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(1140px);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(1140px);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}

.btn-play {
  background: var(--primary) !important;
}

.rs-calendar-table-cell:not(.rs-calendar-table-cell-selected):not(
    .rs-calendar-table-cell-in-range
  ):not(.rs-calendar-table-cell-disabled)
  span {
  color: var(--secondary);
}
.bottomRightFloat {
  background-color: var(--primary);
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999999;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.bottomRightFloat .bi {
  font-size: 1.5rem;
  object-fit: contain;
  background-size: contain;
}

.promo-img .lihat-detail {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem;
  border-radius: 0;
  background-color: var(--body-background);
  border: 1px solid var(--body-color);
  color: var(--primary-color);
  border-top-left-radius: 0.25rem;
  font-weight: bolder;
  font-size: 0.8rem;
}

.promo-img .lihat-detail:hover {
  color: #fff;
}

.promo-detail {
  display: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.box {
  border-radius: 0.25rem;
  padding: 0.25rem;
  background: var(--promo-card-background) none repeat scroll 0% 0%;
}

.traditional .game-digit {
  padding: 0.75rem;
  text-align: center;
  width: 35px;
  font-weight: bolder;
  display: inline-block;
}
.traditional [class*="digit-"] {
  font-weight: 2000 !important;
}
