html,
body {
	min-height: 100%;
	min-width: 1280px !important;
}

body {
	font-family: "Poppins", sans-serif !important;
	font-weight: 400 !important;
	color: #ffa600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	background-color: #040f15;
	background: url("../../assets/images/background.jpg") no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

/* h1,
h2,
h3,
h4,
h5,
p {
	font-weight: 400;
} */

a {
	cursor: pointer;
	text-decoration: none;
	/* color: #b40101!important; */
	transition: all 0.5s;
}
a:hover {
	text-decoration: none;
}
a:hover, .btn:hover {
	color: #ff0202;
}
a.btn:hover {
	color: initial;
}

a.btn.red:hover {
	background-color: #a50313!important;
	color: white;
}
a.btn.green:hover {
	background-color: #16741b!important;
	color: white;
}
a.btn.yellow:hover {
	background-color: #d6c423!important;
	color: white;
}
a.yellow-text:hover {
	color: #ff0202 !important;
}

a.btn.orange:hover{
	background-color: #ffc600 !important;
}

.btn {
	transition: all 0.5s ease-in-out;
	font-weight: 600;
}

.color-main {
	background: rgb(215, 202, 12);
	background: -moz-linear-gradient(
		0deg,
		rgba(215, 202, 12, 1) 0%,
		rgba(226, 213, 24, 1) 50%,
		rgba(238, 224, 23, 1) 100%
	);
	background: -webkit-linear-gradient(
		0deg,
		rgba(215, 202, 12, 1) 0%,
		rgba(226, 213, 24, 1) 50%,
		rgba(238, 224, 23, 1) 100%
	);
	background: linear-gradient(
		0deg,
		rgba(215, 202, 12, 1) 0%,
		rgba(226, 213, 24, 1) 50%,
		rgba(238, 224, 23, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d7ca0c", endColorstr="#eee017", GradientType=1);
}

.bg-one {
	background: rgb(177, 152, 0);
	background: -moz-linear-gradient(
		0deg,
		rgba(177, 152, 0, 1) 0%,
		rgba(255, 217, 0, 1) 67%,
		rgba(189, 163, 0, 1) 100%
	);
	background: -webkit-linear-gradient(
		0deg,
		rgba(177, 152, 0, 1) 0%,
		rgba(255, 217, 0, 1) 67%,
		rgba(189, 163, 0, 1) 100%
	);
	background: linear-gradient(
		0deg,
		rgba(177, 152, 0, 1) 0%,
		rgba(255, 217, 0, 1) 67%,
		rgba(189, 163, 0, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b19800", endColorstr="#bda300", GradientType=1);
	border: 1px solid #5d5d5d;
	color: #000000;
}

a.bg-one:hover {
	color: #ffffff;
	background: #000000;
	border-color: rgb(233, 214, 96);
}

.bg-two {
	background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
	color: #e7e7e7;
}

.bg-three {
	background: rgb(207, 191, 96);
	background: -moz-linear-gradient(
		0deg,
		rgba(207, 191, 96, 1) 0%,
		rgba(238, 221, 124, 1) 81%,
		rgba(227, 207, 82, 1) 100%
	);
	background: -webkit-linear-gradient(
		0deg,
		rgba(207, 191, 96, 1) 0%,
		rgba(238, 221, 124, 1) 81%,
		rgba(227, 207, 82, 1) 100%
	);
	background: linear-gradient(
		0deg,
		rgba(207, 191, 96, 1) 0%,
		rgba(238, 221, 124, 1) 81%,
		rgba(227, 207, 82, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cfbf60", endColorstr="#e3cf52", GradientType=1);
}

.bg-button {
	background-image: linear-gradient(
		0deg,
		rgba(215, 202, 12, 1) 0%,
		rgba(226, 213, 24, 1) 50%,
		rgba(238, 224, 23, 1) 100%
	);
	color: #1a1a1a;
}

/* .bg-button:hover {
	color: #000000;
	background-image: linear-gradient(0deg, rgb(240, 231, 112) 0%, rgb(230, 223, 132) 50%, rgb(240, 231, 116) 100%);
} */
.container {
	/* max-width: 1100px!important; */
	min-width: 1280px !important;
	padding: 0 10px;
}

#wrapperMenu {
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 4;
	/* transition: all 0.2s ease-in-out; */
}

#menu {
	position: absolute;
	display: block;
	top: 0px;
	bottom: 0px;
	left: 0px;
	width: 0px;
	height: calc(100vh);
	overflow-x: auto;
	z-index: 5;
	transition: all 0.3s ease;
	/* background: rgb(215, 202, 12);
	background: -moz-linear-gradient(0deg, rgba(215, 202, 12, 1) 0%, rgba(226, 213, 24, 1) 50%, rgba(238, 224, 23, 1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(215, 202, 12, 1) 0%, rgba(226, 213, 24, 1) 50%, rgba(238, 224, 23, 1) 100%);
	background: linear-gradient(0deg, rgba(215, 202, 12, 1) 0%, rgba(226, 213, 24, 1) 50%, rgba(238, 224, 23, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d7ca0c", endColorstr="#eee017", GradientType=1); */
	box-shadow: none;
}

#menu .title {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 0px;
	color: #000;
}

#menu .menuItem {
	padding: 5px 15px;
	transition: all 0.3s ease;
}

#menu .menuItem a {
	color: #222222;
	transition: all 0.3s ease;
}

body.showMenu #menu {
	width: 200px;
	box-shadow: 2px 0px 10px 2px rgb(140 131 11 / 84%);
}

#wrapper {
	/* margin-top: 90px; */
	/* margin-bottom: 50px; */
	/* padding: 10px 0px 0px 0px; */
	/* height: calc(100vh - 90px); */
	/* width: calc(100vw); */
	/* overflow-y: auto; */
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.ball {
	position: fixed;
	z-index: 1;
	border-radius: 100%;
	opacity: 0.5;
}

.separator {
	width: 100%;
	height: 2em;
}
.separator-sm {
	width: 100%;
	height: 1em;
}

#header {
	/* position: fixed;
	top: 0;
	left: 0;
	right: 0; */
	/* height: 90px; */
	/* z-index: 2; */
	/* background: rgb(0, 0, 0); */
	/* background: #0c1b2e; */
	/* background: url("../images/bg-top.jpg"); */
}

#headerOne {
	display: flex;
	align-items: center;
	height: 120px;
	/* padding: 10px; */
}

#headerOne .sideLeft {
	display: flex;
	align-items: center;
	/* width: 130px; */
	height: 100%;
}

#headerOne .sideLeft > a {
	display: flex;
	align-items: center;
}

#headerOne .sideLeft img {
	width: auto;
	height: 60px;
}

#headerOne .sideRight {
	width: calc(100% - 130px);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#headerOne .sideRight > .btn {
	margin-left: 5px;
	line-height: 48px !important;
	/* font-size: 24px !important; */
	/* padding: 10px 10px !important; */
	/* height: auto !important; */
	/* line-height: 1 !important; */
}

/* #headerOne .sideRight > .btn-primary {
	background: rgb(255,222,0);
	background: linear-gradient(180deg, rgba(255,222,0,1) 0%, rgba(255,166,0,1) 100%);
	color : #000000;
}

#headerOne .sideRight > .btn-secondary {
	background: transparent !important;
	border: 1px solid #ffa600;
	color : #ffa600 !important;
} */

#headerTwo {
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	font-size: 12px;
	color: #000000;
}

#headerTwo .icon {
	width: 30px;
}

#headerTwo .runText {
	width: calc(100% - 30px);
	font-weight: bold;
	display: flex;
	align-items: center;
}

/* #header nav {
	background: #07111d !important;
} */

#header nav .dd-trigger {
	outline: none !important;
}

#header .nav-wrapper {
	padding: 0 5px !important;
}

#header .nav-wrapper .center {
	display: flex;
	justify-content: center;
}
#header .nav-wrapper .evenly {
	display: flex;
	justify-content: space-evenly;
}

#header .nav-wrapper > ul > li > a {
	position: relative;
	font-size: 12px;
	/* color: #ffa600 !important; */
	margin: 0 5px;
	font-weight: bold;
	transition: all 0.4s;
}

#header .nav-wrapper > ul > li.active {
	/* background-color: #03070c !important; */
}

#header .nav-wrapper > ul > li.active > a {
	background-color: transparent !important;
	font-weight: bold !important;
	/* color: #d94f5c !important; */
}

#header .nav-wrapper > ul > li:hover {
	/* background: #091626 !important; */
}

#header .nav-wrapper > ul > li > a:hover {
	background-color: transparent !important;
	font-weight: bold !important;
}

.slide-menu {
	/* margin-top: -2em;
	position: absolute;
	width: 100%;
	min-width: 1280px;
	left : 0; */
}

.navy {
	background: #102337 !important;
}

.dark-navy {
	background: #07111d !important;
}

.read-text{
	color: rgba(255,255,255,.8) !important;
}

/* #header .nav-wrapper > ul > li > a::before {
	background: #000000;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
} */

/* #header .nav-wrapper > ul > li.active > a::after,
#header .nav-wrapper > ul > li.active > a::before {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

#header .nav-wrapper > ul > li > a::before,
#header .nav-wrapper > ul > li > a::after {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 3px;
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
	-webkit-transform-origin: center left;
	transform-origin: center left;
	-webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#header .nav-wrapper > ul > li > a::after {
	background: #d94f5c;
}

#header .nav-wrapper > ul > li > a:hover::before {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
} */

/* #header .marqueeHolder {
	background: #07111d !important;
} */

#pageContent {
	/* position: relative; */
	min-height: calc(100vh - 248px - 80px);
	/* padding-top: 3em; */
	/* padding-bottom: 3em; */
}

footer {
	height: 80px !important;
	z-index: -1;
}

.footer-copyright{
	background : none !important;
	color: white !important;
}

ul.showDisc {
	list-style-type: disc !important;
	padding-left: 20px !important;
}

ul.showDisc li {
	list-style-type: disc !important;
}

ol {
	padding-left: 20px !important;
}

button,
input,
optgroup,
select,
textarea {
	font-family: "Poppins ", sans-serif !important;
}

.input-field label,
.input-field input[type="text"],
.input-field input[type="password"],
.input-field input[type="email"],
.input-field input[type="date"],
.input-field input[type="number"],
.input-field textarea {
	/* color: #ffea00 !important; */
	color: #ffffff !important;
}

.select-wrapper .caret {
	/* fill: #ffea00 !important; */
	fill: #ffffff !important;
}

.input-field .helper-text {
	color: #bbbbbb !important;
}

.orange-text {
	color : #ffa600 !important;
}

.black-text .input-field label,
.black-text .input-field input[type="text"],
.black-text .input-field input[type="password"],
.black-text .input-field input[type="email"],
.black-text .input-field input[type="date"],
.black-text .input-field input[type="number"],
.black-text .input-field textarea {
	border-color: #444444;
	color: #000000 !important;
}

.white-text .input-field label,
.white-text .input-field input[type="text"],
.white-text .input-field input[type="password"],
.white-text .input-field input[type="email"],
.white-text .input-field input[type="date"],
.white-text .input-field input[type="number"],
.white-text .input-field input[type="tel"],
.white-text .input-field textarea {
	/* color: #ffea00 !important; */
	border-color: #cccccc;
	color: #ffffff !important;
}

input:not([type]):focus:not([readonly]),
input[type="text"]:not(.browser-default):focus:not([readonly]),
input[type="password"]:not(.browser-default):focus:not([readonly]),
input[type="email"]:not(.browser-default):focus:not([readonly]),
input[type="url"]:not(.browser-default):focus:not([readonly]),
input[type="time"]:not(.browser-default):focus:not([readonly]),
input[type="date"]:not(.browser-default):focus:not([readonly]),
input[type="datetime"]:not(.browser-default):focus:not([readonly]),
input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
input[type="tel"]:not(.browser-default):focus:not([readonly]),
input[type="number"]:not(.browser-default):focus:not([readonly]),
input[type="search"]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
	border-bottom: 1px solid #000000 !important;
	-webkit-box-shadow: 0 1px 0 0 #000000 !important;
	box-shadow: 0 1px 0 0 #000000 !important;
}

input::-webkit-input-placeholder {
	color: #777777 !important;
}

.white-text input:not([type]):focus:not([readonly]),
.white-text input[type="text"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="password"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="email"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="url"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="time"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="date"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="datetime"]:not(.browser-default):focus:not([readonly]),
.white-text
	input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="tel"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="number"]:not(.browser-default):focus:not([readonly]),
.white-text input[type="search"]:not(.browser-default):focus:not([readonly]),
.white-text textarea.materialize-textarea:focus:not([readonly]) {
	border-bottom: 1px solid #ffffff !important;
	-webkit-box-shadow: 0 1px 0 0 #ffffff !important;
	box-shadow: 0 1px 0 0 #ffffff !important;
}

.black-text .select-wrapper .caret {
	/* fill: #ffea00 !important; */
	fill: #000000 !important;
}

.input-field .helper-text {
	color: #bbbbbb !important;
}

.sidenav a {
	font-weight: 600 !important;
}

.sidenav i {
	/* font-weight: 600!important; */
	color: #000000 !important;
}

.sidenav .halfway-fab i {
	color: #ffffff !important;
}

.sidenav .collapsible-header {
	position: relative;
	font-weight: 600 !important;
}

.sidenav .collapsible .iconRight {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.sidenav .collapsible .iconRight i {
	transition: transform 0.2s ease;
}

.sidenav .collapsible li.active .iconRight i {
	transform: rotate(90deg);
}

.sidenav .collection .collection-item {
	padding-left: 55px;
	border-bottom: none;
	font-weight: 600 !important;
}

.sidenav .collection .collection-item span.title {
	position: relative;
	padding: 5px 10px;
	top: -2px;
	color: #000000;
}

.sidenav li > a > i.material-icons {
	margin-left: 3px !important;
	margin-right: 15px !important;
}

/* .sidenav .user-view {
	padding-bottom: 16px!important;
	margin-bottom: 0px!important;
} */
.sidenav .user-view .btn-floating {
	height: 56px !important;
}

.margin-0 {
	margin: 0px !important;
}

.padding-0 {
	padding: 0px !important;
}

span.ballSmall {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	font-size: 16pt !important;
	/* background-color: #000000;
	color: #ffea00; */
	font-weight: 800;
	/* box-shadow: inset 4px 4px 5px rgba(255, 255, 255, 0.3);
	text-shadow: 1px 1px 2px #968901; */
	margin-top: 4px;
	transition: all 0.3s ease;
}

#xx-goTop {
	/* display: none; */
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	z-index: 3;
	padding: 20px;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadein {
	/* Firefox */
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {
	/* Safari and Chrome */
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes fadein {
	/* Opera */
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.mobile-fab-tip {
	position: fixed;
	right: 85px;
	width: auto;
	margin-top: 3px;
	padding: 7px 10px;
	text-align: right;
	/* background-color: #ffea00; */
	/* background-color: #000000; */
	border-radius: 2px;
	/* border: 1px solid #e7de7a; */
	color: #ffffff !important;
	opacity: 0;
}

.mobile-fab-tip {
	-webkit-animation: fadein 1s;
	-moz-animation: fadein 1s;
	-o-animation: fadein 1s;
	animation: fadein 1s;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	/* -webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s; */
}

.fixed-action-btn ul {
	display: none;
}

.fixed-action-btn.active ul {
	display: block;
}

.card .card-title {
	font-weight: 600 !important;
}

.w-100 {
	width: 100% !important;
}

.mx-auto {
	margin-left: auto !important;
	margin-right: auto !important;
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.breadcrumb,
.breadcrumb:before {
	font-weight: bold;
}

.breadcrumb {
	font-size: 14px !important;
}

.breadcrumb:before {
	font-size: 20px !important;
	margin: 0 !important;
}

.input-field .helper-text {
	color: #555555 !important;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.my-1 {
	margin-top: 0.5em !important;
	margin-bottom: 0.5em !important;
}

.my-1 {
	margin-top: 1em !important;
	margin-bottom: 1em !important;
}

.my-2 {
	margin-top: 1.5em !important;
	margin-bottom: 1.5em !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.5em !important;
}

.mt-2 {
	margin-top: 1em !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.5em !important;
}

.mb-2 {
	margin-bottom: 1em !important;
}

.mr-0 {
	margin-right: 0 !important;
}

.mr-1 {
	margin-right: 0.5em !important;
}

.mr-2 {
	margin-right: 1em !important;
}

.ml-0 {
	margin-left: 0 !important;
}

.ml-1 {
	margin-left: 0.5em !important;
}

.ml-2 {
	margin-left: 1em !important;
}

.p-1 {
	padding: 1em !important;
}

.p-2 {
	padding: 1.5em !important;
}

.p-3 {
	padding: 2em !important;
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.py-1 {
	padding-top: 0.5em !important;
	padding-bottom: 0.5em !important;
}

.py-1 {
	padding-top: 1em !important;
	padding-bottom: 1em !important;
}

.py-2 {
	padding-top: 1.5em !important;
	padding-bottom: 1.5em !important;
}

.collection,
.collection-header,
.collection-item {
	border-color: #968810 !important;
}

i {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.select-dropdown.dropdown-content {
	background-color: #0d141a !important;
}

.select-dropdown.dropdown-content li:nth-child(odd){
	background-color: #0d141a !important;
}

.select-dropdown.dropdown-content li:nth-child(even){
	background-color: #0f1a23 !important;
}

.select-dropdown li > a,
.select-dropdown li > span {
	color: #ffa600 !important;
}

.select-dropdown.dropdown-content li:hover {
	background-color: #ffa600 !important;
}

.select-dropdown.dropdown-content li:hover > span {
	color: #000000 !important;
}

.border {
	border: 1px solid #222222 !important;
}

table.border {
	border-collapse: inherit !important;
}

.border-black {
	border-color: rgba(0, 0, 0, 0.2) !important;
}



.border-light {
	border-color: rgba(185, 185, 185, 1) !important;
}

.border-dark {
	border-color: rgb(94, 94, 94) !important;
}

table td,
table th {
	white-space: nowrap;
	border-radius: 0px !important;
	padding: 15px 15px !important;
}

table.w100 {
	width: 100% !important;
}

table.w-auto {
	width: auto !important;
}

.dropdown-content li > a,
.dropdown-content li > span {
	line-height: 1.5em !important;
}

.flex-center {
	display: flex;
	align-items: center !important;
}
#pasaranFavorit .grid-item {
	padding: 10px;
	background-color: #f3e03e;
}
.ballParent {
	padding: 10px;
}

.grey-text{
	color : rgba(255,255,255,.95);
}

.rounded-card{
	border-radius: 10px;
}
.fb_new_button {
    max-width : 150px;
}
/* GENERAL */
body{
    background-color : #000000 !important;
}
.disable-scroll{
    position : fixed;
    height : 100%;
    overflow: hidden;
}

#floating-snap-btn-wrapper {
	position: fixed;
	transform: translate(-50%, -50%);
	bottom: 10px;
	left: 80%;
	width: 125px;
	height: 109px;
	border-radius: 50%;
	z-index : 10000;
}
.fab-btn {
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: url('../images/frontend_new/freespin2.gif');
	background-size : cover;
	color: white;
	z-index: 10000;
}
#floating-snap-btn-wrapper-pp {
    position: fixed;
	transform: translate(-50%, -50%);
	top: 20%;
	left: 5%;
	width: 138px;
	height: 170px;
	border-radius: 50%;
	z-index : 10000;
}

.pp-btn {
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: url('../images/frontend_new/pp.gif');
	background-size : cover;
	color: white;
	z-index: 10000;
}
#rekening-detail{
    text-align: center;
    position: relative;
    background : #002630;
    border-radius : 5px;
    border : 1px solid #00de8d;
    padding : 10px;
    margin-bottom : 10px;
}

#rekening-detail #salin-rekening{
    position : absolute;
    right : 0;
    top : 0;
    border-top-left-radius : 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

#rekening-header{
    text-transform: uppercase;
    margin:0px; 
    font-size: 16px !important;
    font-weight: 900;
    color : #00de8d;
}

#rekening-body {
    font-size : 14px;
    color : #fff;
}

#rekening-no{
    font-weight: bold;
    font-size: 18px !important;
    color : #fff;
}

#salin-rekening {
    display: none;
    background: transparent !important;
    border: 1px solid #00de8d;
    color: #00de8d !important;
    padding : 5px 4px !important;
    border-radius: 5px !important;
    cursor: pointer;
}

.bank-container{
    display : flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding : 20px 0;
}

.web .swiper-container {
    border-radius : 5px !important;
    margin-top: 25px !important;
    margin-bottom: 30px !important;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 20px 30px;
}

.web .marqueeHolder{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding : 10px;
}

#pasaranFavorit .grid-item .subtitle{
    color : #fff !important;
}

.primary {
    background : #002630 !important;
}

.headerContainer {
    background : #002630 !important;
}

.secondary {
    background : #00171d !important;
}

.secondary-bg {
    background : rgba(0,0,0,.3) !important;
}

.padding10{
    padding : 20px;
}

.bottom-br {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.accent-bg {
    background : #00de8d;
}

.accent {
    color : #00de8d !important;
}

.border-theme {
	border-color: #00de8d !important;
}

.main-navbar {
    background: #001d24;
}
.main-navbar ul li a{
    color : #fff !important;
    font-size: 11pt !important;
}

.main-navbar ul li:hover{
    background : linear-gradient(#07ecae,#00de8d) !important;
    /* transform: skew(-10deg,0deg); */
}

/* .main-navbar ul li:hover a{
    color : #111 !important;
    transform: skew(10deg,0deg);
} */

.main-navbar .active {
    background : linear-gradient(#07ecae,#00de8d) !important;
    /* transform: skew(-10deg,0deg); */
}

.main-navbar .active a{
    color : #111  !important;
    /* transform: skew(-10deg,0deg); */
}

.main-navbar .active:hover a{
    color : #00de8d  !important;
}

.slide-menu-theme {
	background: rgba(0,38,48,.8) !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    /* margin-top : 10px !important; */
}


.slide-menu-theme .tabs .tab>a.active {
    background: rgba(0,0,0,.3);
    color : #00de8d !important;
    font-weight: bold;
}

.slide-menu-theme .tabs .tab>a:focus {
    background: rgba(0,0,0,.3);
    color : #00de8d !important;
}

.slide-menu-theme .tabs .indicator {
    background-color: #00de8d;
    
}

.slide-menu-theme .tabs .tab>a.active,
.slide-menu-theme .tabs .tab>a:hover {
    background: rgba(0,0,0,.3);
    color: #00de8d;
}

.web #tabContent {
    padding : 20px !important;
}

.tab_content-item{
    margin-top:20px;
}

#tabContent {
    margin : 0 0 20px 0 !important;
    /* padding : 20px !important; */
    background :rgba(0, 0, 0, 0.2);
}

#tabContent .card {
    /* border: 1px solid #00de8d; */
    background-color: #002630;
}

.btn-copy {
    background: transparent !important;
    border: 1px solid #00de8d;
    color: #00de8d !important;
    padding : 5px 4px !important;
    border-radius: 5px !important;
    cursor: pointer;
}

.helper-msg{
	    text-transform : uppercase;
	    padding : 20px;
	    border-radius : 10px;
	    background : rgba(255,255,255,.1);
	    border : 1px solid #00de8d;
}

.btn-primary {
    background: linear-gradient(180deg,#00de8d,#00a167);
    color : #00171d !important;
}

.btn-secondary {
    background: transparent !important;
    border: 1px solid #00de8d;
    color: #00de8d !important;
}

.gradient-btn{
	background: linear-gradient(180deg,#00de8d,#00a167);
    color : #00171d !important;
}

.gradient-btn:hover{
	background: linear-gradient(180deg,#00a167,#00de8d);
	color : #000 !important;
}


table>tbody>tr:nth-child(odd){
    background : #001d25;
    margin-top: 5px;
}

table>tbody>tr:nth-child(even){
    background : #00171d;
    margin-top: 5px;
}

.grid .grid-item {
	color: #00de8d;
	background-color: #00171d;
}

.grid .grid-item:hover {
	color: #00de8d;
	background-color: #002630;
}

.grid .grid-item.--box {
	border: 1px solid #00de8d;
}

.grid .grid-item.active {
	background-color: #00de8d;
	color: #000000;
}
.grid .grid-item.--box.active {
	border: 1px solid #000000;
}

/* View pasaran home */
table#latest_close_market {
    background: transparent !important;
    /* border-top: 1px dashed #00de8d !important;
    border-left: 1px dashed #00de8d !important;
    border-right: 1px dashed #00de8d !important; */
    /* border-bottom: 1px dashed #ffee58 !important; */
    border-collapse:separate; 
    border-spacing: 0 1em;
    margin-bottom: 2rem;
}

table#latest_close_market>tbody>tr>td {
    background: #002630 !important;
}

table#latest_close_market>tbody>tr>td:first-child {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

table#latest_close_market>tbody>tr>td:last-child {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

table#latest_close_market>tbody>tr:last-child {
    /* border-bottom: 1px dashed #00de8d !important; */
}

#pasaranFavorit {  
    background : #002630;
}

#pasaranFavorit .grid-item{
    background : #00171d;
    border : 1px solid #00de8d;
}

#pasaranFavorit .grid-item .date-label{  
    color : #111 !important;
    background : linear-gradient(180deg,#00de8d,#00a167);
}

#pasaranFavorit .sTitle::after{  
    background: #002630;
}

#pasaranFavorit .grid-item .date-label{
	color : #000;
}

.ballSmall {
	color : #111;
    border-radius: 5px !important;
    background: #00de8d;
    font-weight: 900 !important;
	/* background: radial-gradient(closest-side at 40% 40%, #f7ef8a 0%, #f7ef8a 65%, #ae8625 100%); */
    border : 1px solid #00de8d;
}

span.ballVerySmall{
    color : #111;
    border-radius: 5px !important;
    background: #00de8d;
	/* background: radial-gradient(closest-side at 40% 40%, #f7ef8a 0%, #f7ef8a 65%, #ae8625 100%); */
    border : 1px solid #00de8d;
}

#pasaran {
    border : 1px solid #00de8d !important;
}

#pasaran li:nth-child(even){
    background-color: #00171d !important;
}

#pasaran li:nth-child(odd){
    background-color: #001d25 !important;
}

/* buku mimpi */
#bukuMimpi .tabs .indicator {
    background-color: #00de8d !important;
    height: 5px;
}

#bukuMimpi .tabs .tab a {
    color: #00de8d !important;
    font-weight: normal;
    font-size: 2em;
}
#bukuMimpi .tabs .tab a:hover {
    background-color: #00de8d !important;
    color : #000 !important;
}

#bukuMimpi .tabs .tab a.active {
    background-color: transparent !important;
    font-weight: bolder;
    color : #00de8d !important;
    /* color: #ffee00 !important; */
}

/* PAITO */
#paito .grid-item {
    border: 1px solid #00de8d;
    background : #00171d !important;
    color: #00de8d;
}

#paito .grid-item:hover {
    background-color: #00de8d !important;
    color: #000;
    font-weight: bold;
}

#paito .grid-item:hover .sub {
    color: #2c1b02;
}

#paito .grid-item .sub{
    color : rgba(255,255,255,.8);
}

#member-box table thead tr th{
    color: #00de8d !important;
}

#member-box table thead tr, #member-box table{
    background : #00171d !important;
    border : 1px solid #00de8d;
}


/* PILIH PASARAN */
#pilih_pasaran .dropdown-content li a:hover {
    background: #00de8d !important;
    color: #000000 !important;
}

#pilih_pasaran .dropdown-content li:nth-child(odd) a{
    background : #001d25 ;
}

#pilih_pasaran .dropdown-content li:nth-child(even) a{
    background : #00171d;
}

/* MENU GAMES */

#menuGames > a:hover{
    background: #002630 !important;
    color : #00de8d !important;
}

#menuGames > a {
    color : #00de8d !important;
}

#menuGames > a.accent-bg {
    color : #00171d !important;
    background: #00de8d !important;
}

#pilih_games .dropdown-content li a:hover {
    background-color: #ffee58 !important;
    color: #000000 !important;
}

/* GAMES */
table.games.compact{
	border : 1px solid #00de8d !important;
	background: #00171d !important;
}

table.games.compact tfoot tr{
	border-bottom : 1px solid #00de8d !important;
}

table.games.compact thead {
	border-bottom : 1.5px solid #00de8d !important;
	background: #00171d !important;
	color : #00de8d !important;
}

table.games.compact button{
    background: linear-gradient(180deg,#00de8d,#00a167);
    color : #002630 !important;
}

table.games.compact button:hover{
    background: linear-gradient(180deg,#00a167,#00de8d);
    color : #002630 !important;
}

#form-pola_tarung label {
    color : #00de8d;
}

/* TRANSFER */
#saldo .collection-item:nth-child(even){
    background : #00171d;
}

#saldo .collection-item:nth-child(odd){
    background : #001d25;
}

#saldo .secondary-content {
    color: #000000;
    font-weight: bold;
}

#saldo .total{
    border-top : 1px solid #00de8d !important;
}


#saldo #toto {
    border-bottom : 1px solid #00de8d !important;
}

#saldo .pSaldo {
    color : 'white';
}

#saldo .collection-header{
    color: #000000;
    background: #ffee58;
}

#saldo .collection{
    border : 1px solid #00de8d !important;
}

/* DEPOSIT */
#deposit-cont .card-panel{
    background : #00171d !important;
}

#deposit-cont .table-responsive thead {
    border-bottom : 1.2px solid #00de8d !important;
    background : #00171d !important;
}

/* WITHDRAW */
#withdraw-cont .card-panel{
    background : #00171d !important;
}

#withdraw-cont .table-responsive thead {
    border-bottom : 1.2px solid #00de8d !important;
    background : #00171d !important;
}

/* HISTORY TRANSAKSI */
#transaction-cont .table-responsive table thead {
    background : #00171d !important;
    border : 1.2px solid #00de8d;
}

#transaction-cont .table-responsive table tbody {
    border : 1.2px solid #00de8d;
}

/* INVOICE */
#invoice-cont .table-responsive table thead {
    background : #00171d !important;
    border : 1.2px solid #00de8d;
}

#invoice-cont .table-responsive table tbody {
    border : 1.2px solid #00de8d;
}

#invoiceTable th{
    border-top : 1px solid #00de8d;
    border-bottom : 1px solid #00de8d;
}

/* DASHBOARD MOBILE */
#lottery .saldo {
    background: #002630;
    border : 1px solid #00de8d;
    color: #00de8d;
}

/* HISTORY MOBILE */
#historyTable th{
    border-top : 1px solid #00de8d;
    border-bottom : 1px solid #00de8d;
}

#historyTable tbody tr:nth-child(odd){
    background-color: #001d25 !important;
    color : #00de8d !important;

}

#historyTable tbody tr:nth-child(even){
    background-color: #00171d !important;
    color : #00de8d !important;
}

/* FOOTER MOBILE */
.fixed-footer .item{
	color: #00de8d;
}

.tabGames .owl-nav .owl-prev {
    color: #00de8d !important;
}

.tabGames .owl-nav .owl-next {
    color: #00de8d !important;
}

.tabGames .item.active {
    background-color: #00171d;
    border-bottom: 3px solid #00de8d;
}

.tabGames .item.active>.title {
    color: #00de8d;
}

/* WD MOBILE */
#withdrawTable th{
    border-top : 1px solid #00de8d;
    border-bottom : 1px solid #00de8d;
}

/* DEPO MOBILE */
#transferTable th{
    border-top : 1px solid #00de8d;
    border-bottom : 1px solid #00de8d;
}

/* TRANSFER MOBILE */
#saldo .collection-header,
#saldo .collection-item {
		color: #000000;
		background: #ffee58;
}

#saldo .secondary-content {
    color: #000000;
}

/* GAMES MOBILE */ 

#breadcrumb {  
    border : 1px solid #00de8d;
}

#breadcrumb .breadcrumb,
#breadcrumb .breadcrumb:before{
    color : #00de8d !important;
}

#pilih_games .dropdown-content li a:hover {
    background-color: #00de8d !important;
    color: #000000 !important;
}

.section-games input {
	background : #fff !important;
	border : none !important;
	border-radius : 2px !important;
}

.section-games .input-field input:focus + label {
   color: #00de8d !important;
 }

.section-games[dt-tipe_game="diskon"] .bg {
    border : 1px solid #07f0a2;
    color : #07f0a2 !important;
}

.section-games[dt-tipe_game="no-diskon"] .bg {
    border : 1px solid #ffd903;
    color : #ffd903 !important;
}

.section-games[dt-tipe_game="bolak-balik"] .bg {
    border : 1px solid #ff03c0;
    color : #ff03c0 !important;
}

footer {
	background : #00171d !important;
}

.result-card li:nth-child(even){
    background : #00171d;
    border : none;
}
.result-card li:nth-child(odd){
    background : #001d25;
    border : none;
}

.collection,
.collection-header {
    border-color : #00de8d !important;
}

#header nav .dropdown-content li a {
	background-color: #00de8d !important;
	color: #000000 !important;
}

#header nav .dropdown-content li a:hover {
	background-color: #002630 !important;
	color: #00de8d !important;
}

.mPage #headerSaldo {
	background: #00171d !important;
	border-top : 1px solid #00de8d;
	border-bottom : 1px solid #00de8d;
}

.pagination li a:hover {
	color: #00de8d !important;
}
.pagination li.active {
	background-color: #00de8d;
}
.pagination li.active a {
	color: #000;
}

/* TRANSFER */
#saldo .card-content label {
    color : #00de8d !important;
}

/* DEPOSIT */
#deposit-cont .card-content span{
    color : #00de8d !important;
}

/* WITHDRAW */
#withdraw-cont .card-content span{
    color : #00de8d !important;
}

#aGames .grid .grid-item {
	background : #00171d !important;
    border : 1px solid #00de8d;
}

#aGames .grid .grid-item .title {
    color : #00de8d;
}

.wwH label {
    color : #00de8d !important;
}

.section-games .input-field input{
    color : #000 !important;
}

.select-dropdown.dropdown-content {
	background-color: #00171d !important;
}

.select-dropdown.dropdown-content li:nth-child(odd){
	background-color: #001d25 !important;
}

.select-dropdown.dropdown-content li:nth-child(even){
	background-color: #00171d !important;
}

.select-dropdown li > a,
.select-dropdown li > span {
	color: #00de8d !important;
}

.select-dropdown.dropdown-content li:hover {
	background: #00de8d !important;
}

.select-dropdown.dropdown-content li:hover > span {
	color: #000000 !important;
}

.rtp-fab img{
    width : 150px;
    height : 150px;
}

.fb-fab{
    bottom : 90px !important;
}

.fb-bg{
    background-color: #4267B2 !important;
}

.fb-bg:hover{
    background-color: #29487D !important;
}
.fb-fab {
    bottom: 90px!important;
}