@font-face {
	font-family: 'adamGorryLights';
	src: url('../fonts/adamgorrylights.eot');
	src: url('../fonts/adamgorrylights.eot?#iefix') format('embedded-opentype'),
	url('../fonts/adamgorrylights.woff') format('woff'),
	url('../fonts/adamgorrylights.ttf') format('truetype'),
	url('../fonts/adamgorrylights.svg#adamgorrylights') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'DS-Digital';
	src: url('../fonts/DS-Digital-Bold.eot');
	src: url('../fonts/DS-Digital-Bold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/DS-Digital-Bold.woff2') format('woff2'),
	url('../fonts/DS-Digital-Bold.woff') format('woff'),
	url('../fonts/DS-Digital-Bold.ttf') format('truetype'),
	url('../fonts/DS-Digital-Bold.svg#DS-Digital-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'chopsicregular';
    src: url('../fonts/chopsic-webfont.eot');
    src: url('../fonts/chopsic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/chopsic-webfont.woff2') format('woff2'),
         url('../fonts/chopsic-webfont.woff') format('woff'),
         url('../fonts/chopsic-webfont.ttf') format('truetype'),
         url('../fonts/chopsic-webfont.svg#chopsicregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
body {
	background-image: url(../img/bg.webp);
	background-repeat: no-repeat;
	background-color: #000;
	background-size: cover;
	color: #fff;
	position: relative;
}

/* MOBILE NAV BUTTON */
.burger {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}
.burger-strip {
    transition: all .5s ease;
}
.strip div {
    height: 3px;
    border-radius: 2px;
    background: #fff;
    margin: 8px 10px;
    transition: all .55s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 30px;
}
.navbar-burger.active .strip div {
    background: #fff;
}
.navbar-burger.active .burger-strip div:first-child {
    transform: translateY(11px) rotate(45deg);
}
.navbar-burger.active .burger-strip div:nth-child(2) {
    opacity: 0;
}
.navbar-burger.active .burger-strip div:last-child {
    transform: translateY(-11px) rotate(-45deg);
}

/* MOBILE BOTTOM NAV */
.nav-icons {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #c10303;
	z-index: 999;
}
.nav-icons ul {
	list-style-type: none;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	width: 100%;
	padding: 10px 20px 5px;
	text-align: center;
}
.nav-icons ul li {
	min-width: 55px;
}
.nav-icons ul li a {
	color: #fff;
	vertical-align: middle;
	text-decoration: none;
}
.nav-icons ul li i {
	display: block;
	font-size: 1.5rem;
	margin-bottom: -5px;
}
.nav-icons ul li span {
	font-size: 12px;
}
.nav-icons ul li a.active, 
.nav-icons ul li a:focus, 
.nav-icons ul li a:hover {
	color: #fff;
	text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
}

/* UTILITIES */
.btn-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.bg-black {
	background-color: #000 !important;
}
.bg-overlay {
	background: rgba(0, 0, 0, 1);
}
.img-logo {
	height: 50px;
}
.img-center {
	display: block;
	margin: 0 auto;
}
.text-justify {
	text-align: justify;
}
.text-title {
	font-size: 2.5rem;
	line-height: 2.5rem;
	font-weight: normal;
	font-family: adamGorryLights;
}
.text-title-modal {
	font-size: 1rem;
	line-height: 1rem;
	font-weight: normal;
	font-family: adamGorryLights;
}
.text-fancy {
	line-height: 0.5;
	text-align: center;
	position: relative;  
}
.text-fancy span {
	display: inline-block;
}
.text-fancy span:before,
.text-fancy span:after {
	content: "";
	position: absolute;
	border-top: 3px solid #ddd;
	top: 1.25rem;
	width: 30%;
}
.text-fancy span:before {
	right: 0;
}
.text-fancy span:after {
	left: 0;
}
.bg-theme {
	background: #c10303;
}
.modal {
	background: rgba(0,0,0,.5);
}
.divcarigame {
	margin-bottom: 20px;
}
#eventAccordion a {
	color: #c10303;
	text-decoration: none;
}
#eventAccordion a:hover,
#eventAccordion a:focus {
	color: #fff;
}

/* BANK */
.bank-wrapper {
	margin: 20px 0 0;
}
.bank-list ul {
	list-style-type: none;
	padding-left: 0;
	text-align: center;
	margin-top: 30px;
}
.bank-list ul li {
	display: inline-block;
	margin: 0 5px 10px;
}
.bank-list div {
	background: #222;
	border-radius: 50px;
	padding: 10px 20px;
}
.bank-list i.offline {
	color: #f00;
	vertical-align: middle;
	margin-right: 5px;
}
.bank-list i.online {
	color: #0f0;
	vertical-align: middle;
	margin-right: 5px;
}
.bank-list img {
	height: 30px;
	filter: grayscale(100%);
}

/* NAVBAR */
.navbar-dark .navbar-toggler {
	color: transparent;
}
#game-navbar .dropdown {
	position: inherit;
}
#game-navbar .dropdown-menu[data-bs-popper] {
	left: 50%;
	transform: translateX(-50%);
	padding: 1.5rem 2rem;
	background: rgba(0, 0, 0, 0.9);
	margin-top: 0;
	overflow-y: auto;
	max-height: 350px;
	border-radius: 0 0 5px 5px;
	box-shadow: 0px 5px 8px #fd4f4f;
	scrollbar-width: thin;
}
#game-navbar .game-navbar-item {
	margin-bottom: 1.5rem;
}
.navbar-dark #game-navbar .navbar-nav .nav-link.active,
.navbar-dark #game-navbar .navbar-nav .nav-link:focus, 
.navbar-dark #game-navbar .navbar-nav .nav-link:hover {
	color: #fff;
	text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
}
.navbar-expand-lg .navbar-nav .nav-link {
	padding-right: 1.5rem;
	padding-left: 1.5rem;
}
.navbar-space {
	padding: 38px 0;
}
.navbar-overlay {
	position: fixed;
	background: rgba(0,0,0,0.6);
	top: 76px;
	left: 0;
	right: 0;
	bottom: 0;
}

/* NAVBAR DROPDOWN ANIMATION */
.animate {
animation-duration: 0.3s;
-webkit-animation-duration: 0.3s;
animation-fill-mode: both;
-webkit-animation-fill-mode: both;
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

@keyframes slideIn {
  0% {
    transform: translate(-50%, 1rem);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0rem);
    opacity: 1;
  }

  0% {
    transform: translate(-50%, 1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, 0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translate(-50%, 1rem);
    -webkit-opacity: 0;
  }
}

/* BUTTON */
.btn-theme {
	position: relative;
	display: inline-block;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border-radius: 50px;
	padding: .15rem .75rem .2rem;
}
.btn-theme-primary {
	position: relative;
	display: inline-block;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	transition: all ease 0.5s;
	box-shadow: 0px 0px 2px 2px rgba(247, 4, 4, 0.8);
	text-shadow: 5px 4px 0px #c10303;
	background: linear-gradient(to bottom, #fd4f4f 30%, #c10303 70%);
	border-color: #c10303;
	width:120px;
}
.btn-theme-primary:hover,
.btn-theme-primary:focus {
	border-color: #c10303;
	box-shadow: 0px 0px 2px 2px rgba(247, 4, 4, 0.8);
}
.btn-theme-secondary {
	box-shadow: 0px 0px 2px 2px rgba(247, 172, 4, 0.8);
	text-shadow: 5px 4px 0px #efa500;
	background: linear-gradient(to bottom, #ffd679 30%, #f7ac03 70%);
	border-color: #efa500;
}
.btn-theme-secondary:hover,
.btn-theme-secondary:focus {
	border-color: #efa500;
	box-shadow: 0px 0px 2px 2px rgba(247, 172, 4, 0.8);
}

.btn-login,
.btn-daftar {
	font-family: chopsicregular;
	letter-spacing: 2px;
}
.btn-line.btn-daftar:after {
	content:'DAFTAR';
}

/* RUNNING TEXT */
#running-text {
	background: url('../img/runningtext.png') no-repeat 15px center;
	background-color: rgba(0, 0, 0, 0);
	background-color: #fd0000;
	padding: 5px 20px 5px 60px;
	color: #fff;
	font-size: 14px;
	border-radius: 0;
	border-radius: 5px 5px 0 0;
}
.running-content {
	background-color: #000;
	padding: 5px 10px;
	border-radius: 10px;
}

/* CAROUSEL */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	display: block !important;
	font-size: 40px;
	height: 100%;
	top: 0;
	text-shadow: 1px 1px 2px #fff, 0 0 25px #fff, 0 0 5px #fff;
}
.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel .owl-nav button.owl-next {
	right: 0;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
	background-color: transparent;
}
#owl-slide-mobile .owl-dots,
#owl-slide .owl-dots {
	position: absolute;
	bottom: 0;
	width: 100%;
	margin-bottom: 10px;
}
.owl-theme .owl-nav {
	margin-top: 0;
}
#owl-game-new,
#owl-game {
	margin: 20px 0 30px;
}
.game-new-space {
	margin-top: 20px;
}
.game-new-space .col-lg-2.col-4 {
	margin-bottom: 20px;
}

/* JACKPOT */
.jackpot-wrapper{
	position: relative;
	margin: 1rem auto 1rem;
}
.jackpot-counter {
	font-size: 5rem;
	line-height: 3rem;
	text-align: left;
	font-weight: normal;
	font-family: DS-Digital;
	text-shadow: 3px 3px 4px #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-5%,-50%);
	color: #fff;
	text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
}

/* TEXT CONTENT */
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5 {
	font-weight: bold;
}
.text-content p {
	font-size: 18px;
	color: #ccc;
}

/* PARTNER / Feature / Sosmed */
.partner-list,
.feature-list,
.sosmed-list {
	list-style-type: none;
	padding-left: 0;
}
.partner-list li,
.feature-list li,
.sosmed-list li {
	display: inline-block;
}
.partner-list li img {
	transition: all 0.6s ease 0s;
}
.feature-list li {
	margin-bottom: 10px;
}
.sosmed-list li a {
	font-size: 24px;
	color: #fff;
	margin: 0 10px;
	transition: all ease 0.2s;
}
.sosmed-list li a:hover,
.sosmed-list li a:focus {
	text-shadow: 0 0 3px #fff, 0 0 5px #fff;
}
.sosmed-list li:first-child a {
	margin-left: 0;
}
.sosmed-list li:last-child a {
	margin-right: 0;
}

/* game list switch */
.game-list-switch .form-check-input:checked {
	background-color: #c10303;
	border-color: #c10303;
}
.game-list-switch {
	padding-left: 0;
	list-style-type: none;
	text-align: right;
}
.game-list-switch li {
	display: inline-block;
}
.form-switch.form-switch-md label {
	margin-left: 10px;
	margin-top: 3px;
	margin-right: 10px;
}

.form-switch.form-switch-md .form-check-input {
	height: 1.5rem;
	width: calc(2rem + 0.75rem);
	border-radius: 3rem;
}

/* game list nav tab scroll */
.game-list {
	margin-bottom: 30px;
}
.game-list #nav-tab::-webkit-scrollbar,
.game-list #member-nav-tab::-webkit-scrollbar,
.game-list .game-nav-tab::-webkit-scrollbar {
	display: none;
}
.game-list #nav-tab,
.game-list #member-nav-tab,
.game-list .game-nav-tab {
	overflow-x: auto;
	overflow-y: hidden;
	flex-wrap: nowrap;
	padding: 2px 5px 0;
	scrollbar-width: none;
}

.game-list-nav {
	position: relative;
}
.game-list-title {
	margin: 15px auto 10px;
}
.game-list .nav-tabs {
	border: none;
}
.game-list .nav-link {
	transition: color .15s ease-in-out,background-color .15s ease-in-out;
	color: #fff;
}
.game-list .nav-tabs .nav-link:focus, 
.game-list .nav-tabs .nav-link:hover {
	border: none;
	text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
	color: #fff;
}
.game-list .nav-tabs .nav-item.show .nav-link, 
.game-list .nav-tabs .nav-link.active {
	color: #fff;
	text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
	background-color: rgba(0,0,0,.8);
	border: none;
	box-shadow: #fd4f4f 0px -2px 2px 0px, #fd4f4f 0px -2px 6px 2px;
}
.game-list .nav-tabs .nav-item:first-child.show .nav-link, 
.game-list .nav-tabs .nav-link:first-child.active {
}
.game-list .tab-content {
	background-color: rgba(0,0,0,.8);
	padding: 25px 30px 5px;
	border-radius: 0 0 5px 5px;
	box-shadow: #fd4f4f 0px 1px 2px 0px, #fd4f4f 0px 2px 6px 2px;
}

.game-list .tab-content .card {
	border-radius: 5px;
	border: 1px solid #cca751;
	overflow: hidden;
	margin-bottom: 20px;
}
.game-list .tab-content .card-body {
	background: #c10303;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 5px 5px 10px;
}
.game-list-content {
	padding: 0 5px 0;
}

#nav-tab-prev,
#nav-tab-next,
#member-nav-tab-prev,
#member-nav-tab-next,
.game-nav-tab-prev,
.game-nav-tab-next {
	position: absolute;
	display: block !important;
	font-size: 35px;
	height: 100%;
	top: 0;
	text-shadow: 1px 1px 2px #fff, 0 0 25px #fff, 0 0 5px #fff;
	background: 0 0;
	color: inherit;
	border: none;
}
#nav-tab-prev i,
#nav-tab-next i,
#member-nav-tab-prev i,
#member-nav-tab-next i,
.game-nav-tab-prev i,
.game-nav-tab-next i {
	vertical-align: text-top;
}
#nav-tab-prev,
#member-nav-tab-prev,
.game-nav-tab-prev {
	left: 0;
}
#nav-tab-next,
#member-nav-tab-next,
.game-nav-tab-next {
	right: 0;
}
.game-list .tab-content a {
	text-decoration: none;
}

/* FOOTER */
.footer {
	margin-bottom: 3rem;
	margin-top: 3rem;
}
.footer-title {
	margin-top: 1.5rem;
}

/* GAME POPULER CARD */
.game-card {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	border-radius: 20px;
}

.game-card-image {      
	width: 100%;
	height: auto;
}

.game-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;      
	border-radius: calc(var(--curve) * 1px);    
	background-color: var(--surface-color);      
	transform: translateY(100%);
	transition: .2s ease-in-out;
	background: #c10303;
	border-radius: 20px 20px 0 0;
}

.game-card:hover .game-card-overlay {
	transform: translateY(0);
}

.game-card-header {
	position: relative;
	align-items: center;
	gap: 2rem;
	padding: 1rem 2rem;
	border-radius: calc(var(--curve) * 1px) 0 0 0;    
	background-color: var(--surface-color);
	transform: translateY(-100%);
	transition: .2s ease-in-out;
	background: #c10303;
	border-radius: 20px 0 0 0;
}

.game-card-arc {
	width: 80px;
	height: 80px;
	position: absolute;
	bottom: 99%;
	right: 0;      
	z-index: 1;
}

.game-card-arc path {
	fill: #c10303;
	d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
} 

.game-card:hover .game-card-header {
	transform: translateY(0);
}

.game-card-title {
	font-size: 1rem;
	margin: 0 0 .3rem;
	color: #fff;
}

.game-card-description {
	padding: 0 2rem 2rem;
	margin: 0;
	color: #ddd;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.game-card-description > div {
	background: #fff;
	border-radius: 50px;
	padding: 5px 25px;
	text-align: center;
	display: block;
	display: inline-block;
	color: #c10303;
} 

/* GAME TERBARU CARD */
.game-card-new {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	border-radius: 20px;
	background: #c10303;
	height: 100%;
}
#owl-game-new .game-card-new {
	margin-bottom: 0;
}
.game-card-image-new {
	border-radius: 20px 20px 0 0;
	background-color: #000;
}
.game-new-label {
	position: absolute;
	background: #f00;
	color: #fff;
	top: 0;
	left: auto;
	right: 0;
	font-size: 12px;
	font-weight: bold;
	padding: 3px 5px;
	border-radius: 5px;
	margin: 12px 12px 0 0;
}
.game-event-label {
	padding: 0px 5px;
	margin: 0;
}
.game-card-new h3 {
	background: #c10303;
	border-radius: 0 0 20px 20px;
	padding: 8px 10px 10px;
}

.game-ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.game-ribbon::before,
.game-ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #2980b9;
}
.game-ribbon span {
  position: absolute;
  display: block;
  width: 250px;
  padding: 7px 0;
  background-color: #f00;
  box-shadow: 0 5px 10px rgba(255,0,0,.1);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(255,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}

.game-ribbon-top-left {
  top: -10px;
  left: -10px;
}
.game-ribbon-top-left::before,
.game-ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.game-ribbon-top-left::before {
  top: 0;
  right: 0;
}
.game-ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.game-ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

/* FORM INPUT */
.game-form input {
	color: #888;
	height: 38px;
}

.game-form input::-webkit-input-placeholder,
.game-form input:-moz-placeholder {
	color: #888;
}

.game-form input:focus {
	animation: glow 800ms ease-out infinite alternate;
	background: #222;
	background: linear-gradient(#333933, #222922);
	border-color: #993333;
	box-shadow: 0 0 5px rgba(255,0,0,.2), inset 0 0 5px rgba(255,0,0,.1), 0 2px 0 #000;
	color: #eee;
	outline: none;
}

.game-form input:focus::-webkit-input-placeholder { 
	color: #efe;
}

.game-form input:focus:-moz-placeholder {
	color: #efe;
}
.form-error {
	color: rgb(255, 230, 0);
	font-size: 12px;
}
.form-success {
	color: rgb(12, 255, 0);
	font-size: 12px;
}
.game-form .form-select,
.game-form .form-control {
	background: transparent;
	color: #fff;
	border-color: #ff283a;
}
.game-form .form-select {
	background: #000;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
}
.game-form .form-control:disabled, 
.game-form .form-select:disabled, 
.game-form .form-control[readonly] {
  background-color: #333 !important;
}
.game-form .input-group .form-icon {
	flex: 1 1 auto;
	width: 1%;
}

.game-form .input-group .btn-theme-secondary i {
	width: 25px;
	text-align: center;
}

.form-icon {
	position: relative;
}
.form-icon .icons {
	position: absolute;
	top: 11px;
	left: 18px;
}
.form-captcha img {
	height: 38px;
}

@keyframes glow {
	0% {
		border-color: #993333;
		box-shadow: 0 0 5px rgba(255,0,0,.2), inset 0 0 5px rgba(255,0,0,.1), 0 2px 0 #000;
	}	
	100% {
		border-color: #ff6666;
		box-shadow: 0 0 20px rgba(255,0,0,.6), inset 0 0 10px rgba(255,0,0,.4), 0 2px 0 #000;
	}
}

/* Button Toggle */
.game-button-toggle .btn-check:active + .btn-outline-primary, 
.game-button-toggle .btn-check:checked + .btn-outline-primary, 
.game-button-toggle .btn-outline-primary.active, 
.game-button-toggle .btn-outline-primary.dropdown-toggle.show, 
.game-button-toggle .btn-outline-primary:active,
.game-button-toggle .btn-outline-primary:hover {
	color: #fff;
	background-color: #c10303;
	border-color: #c10303;
}
.game-button-toggle .btn-check:active + .btn-outline-primary:focus, 
.game-button-toggle .btn-check:checked + .btn-outline-primary:focus, 
.game-button-toggle .btn-outline-primary.active:focus, 
.game-button-toggle .btn-outline-primary.dropdown-toggle.show:focus, 
.game-button-toggle .btn-outline-primary:active:focus,
.game-button-toggle .btn-check:focus + .btn-outline-primary, 
.game-button-toggle .btn-outline-primary:focus {
	box-shadow: none;
}
.game-button-toggle .btn-outline-primary {
	color: #fff;
	border-color: #c10303;
}
/* LOGIN BUTTON */
.btn-line {
	height:38px;
	border-radius:5px;
	position:relative;
	background: linear-gradient(to bottom, #fd4f4f 30%, #c10303 70%);
	cursor:pointer;
	line-height:12px;
	border: none;
}

.btn-line:before {
	content:'';
	z-index:1;
	position:absolute;
	display:block;
	width:80%;
	height:70%;
	top:15%;
	left:10%;
	transition: 0.3s opacity ease-in-out;
	filter:blur(15px);
	opacity:0;
	background: linear-gradient(to bottom, #fd4f4f 30%, #c10303 70%);
}

.btn-line:hover:before {
	opacity:1;
	transition: 0.3s opacity ease-in-out;
	filter:blur(25px);
	background: linear-gradient(to bottom, #fd4f4f 30%, #c10303 70%);  
}

.btn-line:after {
	content:'LOGIN';
	text-align:center;
	line-height:28px;
	font-size:18px;
	color:rgba(235,235,235,1);
	font-weight:bold;
	z-index:5;
	position:absolute;
	display:block;
	border-radius:5px;
	width:96%;
	height:80%;
	top:10%;
	left:2%;  
	background-color:rgb(19, 20, 22);
}
@-webkit-keyframes pulseBox {
	0% {-webkit-box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, 0.6);}
	100% {-webkit-box-shadow: 0px 0px 18px 0px rgba(255, 0, 0, 0.9);}
}
@-moz-keyframes pulseBox {
	0% {-moz-box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, 0.6);}
	100% {-moz-box-shadow: 0px 0px 18px 0px rgba(255, 0, 0, 0.9);}
}
@-o-keyframes pulseBox {
	0% {-o-box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, 0.6);}
	100% {-o-box-shadow: 0px 0px 18px 0px rgba(255, 0, 0, 0.9);}
}
@keyframes pulseBox {
	0% {box-shadow: 0px 0px 10px 0px rgba(255, 0, 0, 0.6);}
	100% {box-shadow: 0px 0px 18px 0px rgba(255, 0, 0, 0.9);}
}

.pulseBox {
	-webkit-animation-name: pulseBox;
	-moz-animation-name: pulseBox;
	-o-animation-name: pulseBox;
	animation-name: pulseBox;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-moz-animation-direction: alternate;
	-o-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	-o-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	border: 0px;
}

/* REGISTER BUTTON */
.btn-rainbow {
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	line-height: 38px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	box-sizing: border-box;
	background: linear-gradient(90deg, yellow, orange, red, violet, purple, blue, yellow);
	background-size: 400%;
	border-radius: 5px;
	z-index: 1;
	animation: animate 8s linear infinite;
}
.btn-rainbow:hover {
	color: #fff;
}
.btn-rainbow:before {
	content: "";
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	background: linear-gradient(45deg, #f15523, #ef3224, #7c3697);
	background-size: 400%;
	border-radius: 40px;
	transition: 0.5%;
	filter: blur(20px);
	opacity: 1;
	animation: animate 8s linear infinite;
}	
@keyframes animate {
	0% {
		background-position: 0%;
	}
	100% {
		background-position: 400%;
	}
}

/* MODAL */
.modal-content {
	border-radius: 10px;
}
.modal-body {
	padding: 2rem 2.2rem;
}
.modal-body .btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
	opacity: 1;
	font-size: 22px;
	background: transparent;
}
.modal-body .btn-close:focus {
	box-shadow: none;
}

/* ACCORDION */
.accordion-item {
	background: #222;
}
.accordion-button:not(.collapsed)::after,
.accordion-button::after {
	background-image: none;
	width: 0;
}
.accordion-button {
	padding: 0;
}
.accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

/* TABLE */
.table-referral table.table{
	color: #fff;
}
.table-referral table.table thead{
	background: #c10303;
}
.table-referral table.table thead tr th{
	padding-left: 15px;
	padding-right: 15px;
}
.table-referral table.table tbody tr > td:first-child,
.table-referral table.table tfoot tr > th:first-child{
	padding-left: 15px;
}
.table-referral table.table tbody tr > td:last-child,
.table-referral table.table tfoot tr > th:last-child{
	padding-right: 15px;
}
.table-referral .referral-wrapper {
	background: #222;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 20px;
}
.table-referral-column.table-referral .referral-wrapper {
	height: 100%;
}
.table-referral .table-hover > tbody > tr:hover {
	text-shadow: 0 0 3px #fff, 0 0 5px #fff;
	color: #fff;
}
.table-referral .table > :not(caption) > * > * {
	border-bottom-color: #555;
}
.table-referral .col-lg-4.col-md-6.col-sm-6 {
	margin-bottom: 20px;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
	z-index: 9999;
	/*background: #25d366;*/
	color: #fff !important;
	position: fixed;
	bottom: 30px;
	left: 20px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 30px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

.btn-whatsapp-border {
	animation-play-state: paused;
}
.btn-whatsapp-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
/* BACK TO TOP */
.back-to-top,
.back-to-top:hover,
.back-to-top:focus {
	position: fixed;
	bottom: 25px;
	right: 25px;
	display: none;
	background-color: #c10303;
	border: 2px solid #fff;
	z-index: 99;
}

/*new*/
.text-balance {
	font-size: 16px;
	font-weight: bolder;
}
.game-member-nav {
	margin: 10px 0;
}
.game-member-nav .game-list,
.game-member-nav .game-list-nav,
.game-member-nav nav,
.game-member-nav .game-list #nav-tab, .game-list #member-nav-tab {
	height: 100%;
}
.game-member-nav .col-lg-8 {
	align-items: center;
	display: flex;
}
.game-member-nav .game-list .nav-tabs .nav-item.show .nav-link, 
.game-member-nav .game-list .nav-tabs .nav-link.active,
.game-member-nav .game-list .nav-tabs .nav-link:focus,
.game-member-nav .game-list .nav-tabs .nav-link:hover{
	background: #c10303;
	box-shadow: none;
	border-radius: 0;
}
.game-member-nav .nav-tabs .nav-link {
	font-size: 12px;
	min-width: 107px;

	align-content: center;
	display: grid;
	text-align: center;
}
.game-member-nav .nav-tabs .nav-link span{
	white-space: nowrap;
}
.game-member-nav .game-list #nav-tab, .game-list #member-nav-tab {
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
}
.game-member-nav .game-list {
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
	border: 1px solid #222;
	border-radius: 5px;
	overflow: hidden;
	background: #222;
}
.game-member-nav .table-referral table.table tbody tr {
	font-size: 12px;
}
.game-member-nav .table-referral table.table tbody tr td{
	padding-top: 0;
	padding-bottom: 0;
	vertical-align: middle;
}
.game-member-nav .table-referral table.table tbody tr:first-child td {
	padding-top: .25rem;
}
.game-member-nav .table-referral table.table tbody tr:nth-last-child(2) td,
.game-member-nav .table-referral table.table tbody tr:last-child td {
	padding-bottom: .25rem;
}
.game-member-nav .table-referral .table > :not(caption) > * > * {
	border-bottom: none;
}
.game-member-nav .table-referral .table-hover > tbody > tr:hover {
	text-shadow: none;
}
.link-theme {
	text-decoration: none;
	color: #fff;
}
.link-theme:focus,
.link-theme:hover {
	color: #fd4f4f;
	text-shadow: none;
}
.link-signout {
	color: #f7ac03;
}
.link-signout:focus,
.link-signout:hover {
	color: #ccc;
}
.game-list-nav .nav-tabs .nav-link img {
	height: 35px;
}
.alert-game-tab {
	background: #f7ac03;
	color: #222;
	border-color: #f7ac03;
	font-weight: bold;
	padding: .25rem 1rem;
}
.alert-game-tab a,
.alert-game-tab a:focus,
.alert-game-tab a:hover {
	text-decoration: none;
	color: #222;
}
.alert-game-tab a i {
	font-size: 20px;
}
.table-referral table.table{
	margin-bottom: 0;
}
.game-list-member #nav-tabContent .text-title {
	margin-top: 0;
}
#memo-tab {
	margin-bottom: 30px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	background: #c10303;
}
#memo-tabContent {
	width: 100%;
	box-shadow: none;
	padding-top: 0;
	padding-right: 0;
}
.game-list .nav-link span {
	white-space: nowrap;
}
/* MEMO */
.memo-msg-wrapper {
	overflow-y: auto;
	max-height: 70vh;
}
.memo-msg {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}
.memo-msg .memo-bubble {
  float: left;
  max-width: 75%;
  width: auto;
  height: auto;
  display: block;
  background: #ebebeb;
  border-radius: 5px;
  position: relative;
  margin: 10px 0 3px 25px;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
}
.memo-msg .memo-bubble.memo-alt {
  margin: 10px 25px 3px 0px;
  background: #DCF8C6;
  float: right;
}
.memo-msg .memo-bubble.memo-follow {
  margin: 2px 0 3px 25px;
}
.memo-msg .memo-bubble.memo-altfollow {
  margin: 2px 25px 3px 0px;
  background: #DCF8C6;
  float: right;
}
.memo-msg .memo-bubble .memo-txt {
  padding: 8px 0 8px 0;
  width: 100%;
}
.memo-msg .memo-bubble .memo-txt .memo-name {
  font-weight: 600;
  font-size: 14px;
  display: inline-table;
  padding: 0 0 0 15px;
  margin: 0 0 4px 0;
  color: #3498db;
}
.memo-msg .memo-bubble .memo-txt .memo-name span {
  font-weight: normal;
  color: #b3b3b3;
  overflow: hidden;
}
.memo-msg .memo-bubble .memo-txt .memo-name.memo-alt {
  color: #2ecc51;
}
.memo-msg .memo-bubble .memo-txt .memo-message {
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px 0 15px;
  margin: 0;
  color: #2b2b2b;
  display: table;
}
.memo-msg .memo-bubble .memo-txt .memo-timestamp {
  font-size: 11px;
  margin: auto;
  padding: 0 15px 0 0;
  display: table;
  float: right;
  position: relative;
  text-transform: uppercase;
  color: #999;
}
.memo-msg .memo-bubble .memo-bubble-arrow {
  position: absolute;
  float: left;
  left: -11px;
  top: 0px;
}
.memo-msg .memo-bubble .memo-bubble-arrow.memo-alt {
  bottom: 20px;
  left: auto;
  right: 4px;
  float: right;
}
.memo-msg .memo-bubble .memo-bubble-arrow:after {
  content: "";
  position: absolute;
  border-top: 15px solid #ebebeb;
  border-left: 15px solid transparent;
  border-radius: 4px 0 0 0px;
  width: 0;
  height: 0;
}
.memo-msg .memo-bubble .memo-bubble-arrow.memo-alt:after {
  border-top: 15px solid #DCF8C6;
  transform: scaleX(-1);
}
@media (max-width:991.98px) {
	.game-member-nav .nav-tabs .nav-link {
		min-width: 75px;
		padding: .75rem 1rem
	}
	.game-member-nav .table-referral table.table tbody tr:nth-last-child(2) td {
		padding-bottom: 0;
	}
	.game-member-nav .nav-tabs .nav-link {
		display: initial;
	}
}
@media (max-width:480.98px) {
	#memo-tabContent {
		padding-left: 0
	}
	.game-list-member #memo-tab .nav-link {
		padding: .25rem;
	}
}

/* MEDIA WIDTH */
@media (max-width:1199.98px){
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: .75rem;
		padding-left: .75rem;
	}
	.jackpot-counter {
		transform: translate(-12%,-50%);
	}
}
@media (max-width:991.98px){
	.img-md-center {
		display: block;
		margin: 0 auto;
	}
	.navbar-dark #game-navbar {
		border-left: 1px solid #222;
	}
	.navbar-dark #game-navbar .navbar-nav .nav-item:first-child {
		border-top: 1px solid #222;
	}
	.navbar-dark #game-navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #222;
	}
	.navbar-dark #game-navbar .navbar-nav .nav-item:last-child {
		border: none;
	}
	.navbar-dark #game-navbar .navbar-nav .nav-link.active,
	.navbar-dark #game-navbar .navbar-nav .nav-link:focus, 
	.navbar-dark #game-navbar .navbar-nav .nav-link:hover {
		background: #c10303;
	}
	.navbar-dark #game-navbar .navbar-nav .nav-link {
		color: #fff;
		font-size: 12px;
		text-align: center;
		padding-top: .8rem;
	}
	.navbar-dark #game-navbar .navbar-nav .nav-link i{
		text-align: center;
		border-radius: 10px;
		width: auto;
		color: #fff;
		padding-bottom: 5px;
	}
	.navbar-expand-lg .navbar-nav .nav-link i {
		width: 25px;
	}
	#game-navbar .dropdown {
		position: relative;
	}
	#game-navbar .dropdown-menu[data-bs-popper] {
		left: 0;
		transform: none;
		padding: .5rem 2rem;
		margin-top: 0;
		overflow-y: auto;
		max-height: auto;
		border-radius: 5px;
		box-shadow: none;
		border: 1px solid #c10303;
	}
	#game-navbar .dropdown-menu .game-navbar-item {
		margin-bottom: 10px;
	}
	#game-navbar .dropdown-menu .game-navbar-item a {
		text-decoration: none;
	}
	#game-navbar .dropdown-menu .game-navbar-item a span {
		color: #fff;
	}
	#game-navbar .dropdown-menu .game-navbar-item a:hover span,
	#game-navbar .dropdown-menu .game-navbar-item a:focus span, {
		color: #fd4f4f;
	}
	.jackpot-counter {
		font-size: 4rem;
		line-height: 3rem;
		transform: translate(-15%,-50%);
	}
	.partner-list,
	.feature-list,
	.sosmed-list {
		text-align: center;
	}
	.text-fancy span:before,
	.text-fancy span:after {
		width: 20%;
	}
	.game-form {
		margin-top: 20px;
	}
	.footer {
		margin-bottom: 1rem;
	}
	.img-support {
		margin: 0 auto;
	}
	.web-wrapper {
		padding-bottom: 65px;
	}
	.text-copyright {
		margin-bottom: 10px;
	}
	.footer-title {
		margin-top: 1rem;
	}
	.game-card:hover .game-card-overlay {
		transform: translateY(100%);
	}
	.game-card:hover .game-card-header {
		transform: translateY(-100%);
	}
	.game-card-header {
		padding: .5rem 1rem;
		border-radius: 0;
	}
	.game-card-title {
		font-size: .85rem;
	}
	.game-card-arc {
		display: none;
	}
	.offcanvas-collapse {
		padding-left: 0;
		padding-right: 0;
		width: 90px;
		z-index: 99;
	}
	.game-sub-navbar {
		position: fixed;
		top: 76px;
		background: #000;
		padding: 10px 20px;
		width: calc(100% - 90px);
		left: 100%;
		bottom: 0;
		transition: transform .3s ease-in-out, visibility .3s ease-in-out;
		border-top: 1px solid #222;
	}
	.game-sub-navbar.open {
		visibility: visible;
		transform: translateX(calc(-100% - 90px));
	}
	.game-sub-navbar .col-md-3.col-sm-4.col-6{
		margin-bottom: 10px;
	}
	.game-sub-navbar .text-title {
		margin-top: 0;
		font-size: 1.25rem;
	}
}
@media (max-width:767.98px){
	.text-title {
		font-size: 1.9rem;
		line-height: 2rem;
		margin: 1rem auto 1rem;
	}
	.jackpot-counter {
		font-size: 2.5rem;
		transform: translate(-7%,-50%);
	}
	
	.game-list-switch {
		text-align: center;
	}
	.text-fancy span:before,
	.text-fancy span:after {
		width: 0%;
	}
	.partner-list li img {
		height: 80px;
	}
	.feature-list li img {
		height: 45px;
	}
	.text-content p {
		font-size: 14px;
	}
	.bank-list div {
		padding: 0px 6px 5px;
	}
	.bank-list img {
		height: 15px;
	}
	.game-card-description {
		padding: 0 .5rem 2rem;
	}
	.game-card-description div {
		font-weight: bold;
	}
	.game-card-description div i {
		display: none;		
	}
	.form-captcha .btn-theme-secondary {
		padding: .2rem .75rem;
	}
	.sosmed-list li a {
		font-size: 20px;
	}
	.game-button-toggle {
		margin-bottom: 10px;
	}
	.game-ribbon span {
	  padding: 5px 0;
	  font-size: 14px;
	}
	.game-ribbon-top-left span {
	  right: -20px;
	  top: 25px;
	}
}
@media (max-width:575.98px) {
	.flip-container, .front, .back {
		height: 115px;
		width: 100%;
	}
	.jackpot-counter {
		font-size: 2rem;
		transform: translate(0%,-50%);
	}
	#running-text{
		padding: 5px 5px 5px 45px;
	}
	.running-content {
		line-height: 1;
		border-radius: 5px;
	}
	.game-list .tab-content {
		padding: 20px 15px 5px;
	}
	.game-list-content > .tab-content > .tab-pane > .game-list > .game-list-content > .tab-content > .tab-pane > .row{
	  --bs-gutter-y: 0.5rem;
	  --bs-gutter-x: 0.5rem;
	}
	.game-card {
		border-radius: 5px;
	}
	.game-card-title {
		font-size: .7rem;
	}
	.game-card-new {
		border-radius: 5px;
		margin-bottom: 0;
	}
	.game-card-image-new {
		border-radius: 5px 5px 0 0;
	}
	.game-card-new h3 {
		border-radius: 0 0 5px 5px;
		padding: 5px 5px 6px;
	}
	.game-new-label {
		margin: 5px 5px 0 0;
	}
}
@media (max-width:480.98px) {
	.flip-container, .front, .back {
		height: 95px;
		width: 100%;
	}
	.memo-timestamp {
	    display: none;
	    color: red;
	}
	.jackpot-counter {
		transform:translate(-5%,-50%);
	}
}
@media (max-width:399.98px) {
	.jackpot-counter {
		transform:translate(-15%,-50%);
	}
}

.pragmatic-one{
	position: absolute;
	top: -3px;
	padding: 0 3px 3px;
	left: 5px;
}

.advt {
	width:100px;
	height:100px;
	color:black;
	font-weight:bold;
	font-size:12px;
	position:fixed;
	left:10px;
	top: 50%;
	z-index: 10000;
}

.closeadvt{
	float: right;
	cursor: pointer;
}

#chat-widget-container{
	bottom:50px !important;
}

@media (min-device-width:320px) and (max-device-width:768px) and (-webkit-min-device-pixel-ratio: 2) {
	@supports (-webkit-appearance:none) {
		#nav-tab-prev, #member-nav-tab-prev, .game-nav-tab-prev {
   			left: -30px;
		}
		#nav-tab-next, #member-nav-tab-next, .game-nav-tab-next {
   			right: -30px;	
		}
	}
}
