@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  background:#121212;
  color:#FFF;
}
.theme--dark.v-application {
  background: #121212 !important;
}
:focus {
  outline: none;
}
.navbar-color-1 {
  background: #000;
}
.gradient1 {
  background: linear-gradient(45deg, #330000 0%,#aa0000 41%,#a80000 68%,#1c0000 100%) !important;
  color:#FFF;
}
.gradient1 > .v-btn__content, .gradient3 > .v-btn__content {
  color:#FFF;
}
.gradient2 {
  background: #850102 !important;
}
.gradient3 {
  background: linear-gradient(to bottom, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%) !important;  
}
.gradient3 .v-btn__content {
  color:#000;
}
.gradient4 {
  background: linear-gradient(to top, lightgrey 0%, lightgrey 1%, #e0e0e0 26%, #efefef 48%, #d9d9d9 75%, #bcbcbc 100%);
}
.all-btn.color1 {
  background: linear-gradient(to bottom, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%) !important;
  color:#000 !important;
}
.all-btn.color2 {
  background: linear-gradient(to bottom, #434343 0%, black 100%) !important;
  color:#FFF !important;
}

/* ============= POPUP ANNOUNCEMENT ============= */
.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.modal-popup-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index:99999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;    
}

.modal-popup-wrapper.open {
  opacity: 1;
  visibility: visible;  
}

.modal-popup {
  width: 600px;
  height: 800px;
  display: none;
  margin: 50% 0 0 -300px;
  position: relative;
  top: 30%;
  left: 50%;
  background: none;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.modal-popup-wrapper.open .modal-popup {
  margin-top: -200px;
  opacity: 1;
  display: block;
}

.head-popup {
  width: 100%;
  height: 55px;
  padding: 1.5em 7%;
  overflow: hidden;
  background: none;
  position:relative;
  top:35px;
  right:-40px;
}

.btn-close-popup {
  width: 32px;
  height: 32px;
  display: block;
  float: right;
  background:#000;
  border-radius:5px;	
  padding-left:4px;	
}

.btn-close-popup::before,
.btn-close-popup::after {
  content: '';
  width: 24px;
  height: 6px;
  display: block;
  background: #FFF;
}

.btn-close-popup::before {
  margin-top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-close-popup::after {
  margin-top: -6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.content-popup {
  background:none;
}

/* ============= POPUP ANNOUNCEMENT ============= */

.newmodal {
  text-decoration: none;
  color:#FFF;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;  
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
      width: 600px;
      margin: 30px auto;
  }
  .modal-content {
      -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
      width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
      width: 900px;
  }
}

#widget_lucky_spin {
	position: fixed;
	bottom: 250px;
	visibility: visible;
	z-index: 2147483639;
	background: transparent;
	border: 0px;
	padding: 10px 10px 0px 0px;
	float: left;
	margin-right: -10px;
	backface-visibility: hidden;
	opacity: 1;
	left: 0px;
	filter: drop-shadow(2px 2px 2px black);
}


#pagination_post {
  margin: 20px auto;
  padding: 0;
  text-align: center
}

#pagination_tabel {
  padding: 0
}

#pagination_tabel li {
  display: inline-block;
  background: #FFF;
  border-radius:8px;
}

#pagination_tabel li a {
  color: #000;
  float: left;
  font-weight:bold;
  padding: 8px 16px;
  text-decoration: none
}

#pagination_tabel .active {
  background: #a80000 !important;  
}

#pagination_tabel .active a {
  color: #FFF !important
}

#pagination_tabel li a:hover {
  color: #a80000;
}


#pagination_post_modal {
  margin: 20px auto;
  padding: 0;
  text-align: center
}

#pagination_tabel_modal {
  padding: 0
}

#pagination_tabel_modal li {
  display: inline-block;
  background: #FFF;
  border-radius:8px;
}

#pagination_tabel_modal li a {
  color: #000;
  float: left;
  font-weight:bold;
  padding: 8px 16px;
  text-decoration: none
}

#pagination_tabel_modal .active {
  background: #a80000 !important;  
}

#pagination_tabel_modal .active a {
  color: #FFF !important
}

#pagination_tabel_modal li a:hover {
  color: #a80000;
}


#pagination_post_modal2 {
  margin: 20px auto;
  padding: 0;
  text-align: center
}

#pagination_tabel_modal2 {
  padding: 0
}

#pagination_tabel_modal2 li {
  display: inline-block;
  background: #FFF;
  border-radius:8px;
}

#pagination_tabel_modal2 li a {
  color: #000;
  float: left;
  font-weight:bold;
  padding: 8px 16px;
  text-decoration: none
}

#pagination_tabel_modal2 .active {
  background: #a80000 !important;  
}

#pagination_tabel_modal2 .active a {
  color: #FFF !important
}

#pagination_tabel_modal2 li a:hover {
  color: #a80000;
}

.table-responsive-custom-v2 {
  background: transparent;
  border-radius: 0.25em;
  border-collapse: collapse;
  margin: 0;
  width:100%;
}
.table-responsive-custom-v2 th {
  border-bottom: 1px solid #364043;
  color: #FFF;
  font-size: 1em;
  font-weight: 600;
  padding: 0.5em 1em;
  text-align: center;
}
.table-responsive-custom-v2 td {
  color: #fff;
  font-weight: 400;
  padding: 0.65em 1em;
  border-bottom:1px solid #5f5f5f;
}
.table-responsive-custom-v2 > .disabled td {
  color: #4F5F64;
}
.table-responsive-custom-v2 tbody tr {
  transition: background 0.25s ease;
}
.table-responsive-custom-v2 tbody tr:hover {
  background: #014055;
}

.desc-game {
  padding:20px;
  font-size:16px;
  display:none;
  color:#000;
}
.daily-win {
  width:30px !important;
  height:auto !important;
  position:absolute;
  top:-5px;
  right:-5px;
  z-index:99999;
}


.cpn-boxzero {
  margin: 0 0;
  padding: 0 !important;
}
ul.cpn-boxzero > li {
  list-style: none;
}
.ui-li-supply {
  padding:10px;
  background: linear-gradient(45deg, #330000 0%,#aa0000 41%,#a80000 68%,#1c0000 100%);
  width:calc((100% / 6) - 4px);
  margin:2px 0;
  text-align:center;
  border:1px solid #CCC;
  border-radius:7px;
}
.ui-li-supply a {
  text-decoration: none;
  color:#FFF;
  font-family: Noto Sans Thai, Roboto !important;  
  font-weight:bold;
}
.cpn-inBlock-row > .cpn-inBlock-cell, ul.cpn-inBlock-row > li {
  display: inline-block;
  letter-spacing: normal;
  word-spacing: normal;
}
.ui-lnk-inquire {
  width: 23px;
  height: 35px;
  background: url(../../img/resources/lnk_inquire.png) no-repeat left center;
  margin: 0 0 0 -33px;
  vertical-align: middle;
  position: relative;
}
#wrap-banner-show {
  margin-top:70px;
}


.ul-apSlot {
  padding: 0 3.6px;
}
.li-apSlot {
  width: 240px;
  margin: 7.2px 16px;
  padding-bottom: 28px;
  position: relative;
}
.lnk-apSlot-favorites {
  display: block;
  height: 37px;
  background: url(../../img/resources/lnk_slotgame_favorites.jpg) repeat-x;
  padding: 0 50px 0 15px;
  position: relative;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
}
.lnk-apSlot-favorites-selected {
  background-image: url(../../img/resources/lnk_slotgame_favoritesSelected.jpg);
}
.bg-apSlot-favorites {
  display: block;
  width: 20px;
  height: 17px;
  background: url(../../img/resources/icn_slotgame_favorites.png) no-repeat;
  margin-top: -8.5px;
  position: absolute;
  top: 50%;
  right: 15px;
}
.lnk-apSlot-favorites-selected > .bg-apSlot-favorites {
  background-image: url(../../img/resources/icn_slotgame_favoritesSelected.png);
}
.txt-apSlot-favorites {
  display: table-cell;
  height: 37px;
  color: #FFF;
  vertical-align: middle;
}
.lnk-apSlot-favorites-selected > .txt-apSlot-favorites {
  color: #f1cb80;
}
.img-apSlot {
  width: 240px;
  height: 146px;
}
.lnk-apSlot-enter, .lnk-apSlot-freeplay, .lnk-apSlot-enter-noFree {
  display: block;
  width: 120px;
  background: url(../../img/resources/lnk_slotgame.jpg) repeat-x;
  color: #fff;
  text-align: center;
  line-height: 31px;
  position: absolute;
  bottom: 0;
  text-decoration: none;
}
.lnk-apSlot-enter-noFree {
  width: 240px;
}
.lnk-apSlot-enter:hover, .lnk-apSlot-freeplay:hover {
  color: #ff7a76;
}
.lnk-apSlot-enter {
  left: 0;
  border-radius: 0 0 0 5px;
  -moz-border-radius: 0 0 0 5px;
  -ms-border-radius: 0 0 0 5px;
}
.lnk-apSlot-enter:after {
  display: block;
  content: "";
  width: 2px;
  height: 31px;
  background: url(../../img/resources/lnk_slotgame_line.jpg) no-repeat;
  position: absolute;
  bottom: 0;
  left: 119px;
}
.lnk-apSlot-freeplay {
  right: 0;
  border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  -ms-border-radius: 0 0 5px 0;
}
#record_cari {
  background:#FFF;
  border-radius:5px;
  margin-left:10px;
  padding:5px;
}


.ul-lang { display: none; border-radius: 0 0 2px 2px; -moz-border-radius: 0 0 2px 2px; -ms-border-radius: 0 0 2px 2px; }
.lnk-lang { box-sizing: border-box; display: block; position: relative; top:3px; width: 15px; height: 29px; padding: 0 50px 0 0; line-height: 28px; color: #fff; -moz-border-radius: 4px; -ms-border-radius: 4px; }
.lnk-lang:hover { color: #ff0; }
.lnk-lang:hover + .ul-lang {
  display: block;
}
.ul-lang:hover {
  display: block;
}
.txt-lang { display: none; }
.bg-lang { position: absolute; top: 1px; left: 5px; width: 32px; height: 27px; background: no-repeat center; }
.bg-lang-en { background-image: url(../../img/resources/lang_iconEn.png?qq); background-size:cover; }
.bg-lang-th { background-image: url(../../img/resources/lang_iconTh.png?qq); background-size:cover; }
.bg-lang-arrow { background: none; display: inline-block; transform: scale(1.5); position: absolute; top: 0; right: 3px; color: #000; }

.forgot-pass-action {
  color:red !important;
  bottom:0 !important;
}


.btn-close-newmodal {
  width: 32px;
  height: 32px;
  display: block;
  float: right;
  background:#000;
  border-radius:5px;	
  padding-left:4px;	
}

.btn-close-newmodal::before,
.btn-close-newmodal::after {
  content: '';
  width: 24px;
  height: 6px;
  display: block;
  background: #FFF;
}

.btn-close-newmodal::before {
  margin-top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-close-newmodal::after {
  margin-top: -6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.blk-freeregist {
  margin-bottom:10px;
}
.txt-freeregist-star {
  color:red;
}
.txt-head {
  color:#FFF;
  display:block;
  font-size:16px;
  text-align:left;
}
.ipt-freeregist {
  background:hsla(0,0%,100%,.16);
  color:#FFF;
  width:100%;
  border-radius: 10px;
  padding:5px;
  padding-left:15px;
  font-size:16px;
}
.blk-notice {
  color:#8C8C8C;
}
.blk-freeregist select {
  background:hsla(0,0%,100%,.16);
  color:#FFF;
  width:100%;
  border-radius: 10px;
  padding:8px;
  font-size:16px;
}
.blk-freeregist select option {
  background: rgba(0, 0, 0, 1);
  color: #fff;
}
.ol-notice {
  color:#FFF;
  margin-top:20px;
}
.btn-send {
  background: linear-gradient(45deg, #330000 0%,#aa0000 41%,#a80000 68%,#1c0000 100%) !important;
  color:#FFF !important;
  font-weight: 700;
  padding:10px 60px;
  border-radius:27px;
}
.lnk-services {
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  cursor: pointer;
  margin-top:20px;
  line-height:30px;
}

.cutsom-checkbox-row input[type="checkbox"] {
  margin: 0;
  opacity: 0;
}
.cutsom-checkbox-row {
  position: relative;
  margin-bottom: 15px;
}
.cutsom-checkbox-row input[type="checkbox"] + label {
  padding-left: 25px;
  display: inline-block;
  margin-bottom: .4rem;
}
.cutsom-checkbox-row input[type="checkbox"] + label::before {
  border-color: #dddddd;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 21px;
  left: 0;
  position: absolute;
  transition: 0.3s linear all;
  width: 21px;
}
.cutsom-checkbox-row input[type="checkbox"] + label::before {
  border-color: #b20909;
  background-color: #000;
  border-radius: 5px;
  transform: scale(1);
}
.cutsom-checkbox-row input[type="checkbox"]:checked + label::before {
  border-color: #b20909;
  border-style: dotted;
  transition: 0.3s linear all;
}
.cutsom-checkbox-row input[type="checkbox"]:checked + label::before {  
  border-style: solid;
  transform: scale(1.2);
  border-color: #fbebeb;
}
.cutsom-checkbox-row input[type="checkbox"]:checked + label::after {
  transform: scale(1);
  opacity: 1;
}
.cutsom-checkbox-row  input[type="checkbox"]:checked + label::after {
  color: #FFF;
  content: "\f00c";
  cursor: pointer;
  font-family: 'FontAwesome';
  left: 3px;
  position: absolute;
  top: 3px;
  transform: scale(1);
  transition: 0.3s linear all;
}
.cutsom-checkbox-row  input[type="checkbox"] + label::after {
  transform: scale(2);
  opacity: 0;
}
.cutsom-checkbox-row  input[type="checkbox"] + label::after {
  content: "";
  transform: scale(0);
  transition: 0.3s linear all;
}
.h1-title {
  text-align:center;
  margin-bottom:20px;
}
.theme-content-desc h3 {
  font-size:20px;
  margin:25px 0 5px;
}
.cpn-ul-decimal > li {
  list-style-type: decimal;
}
.cpn-ul-decimal {
  padding-left: 35px !important;
}
.v-btn--disabled {
  background-color: hsla(0,0%,100%,.12)!important;
  text-shadow: 0 0 #000;
  opacity: .5!important;
}
.desc-footer {
  margin-bottom:20px;
}
.modalnew {
  text-decoration: none;
}

.btn {
  margin-right: 0.07rem;
  margin-left: 0.07rem;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  outline: none;
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0069d9;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #5a6268;
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #218838;
}
.btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #c82333;
}
.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #e0a800;
}
.btn-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #138496;
}
.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #e2e6ea;
}
.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #23272b;
}
.btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}
.theme--dark.v-text-field--filled:not(.v-input--is-focused):not( .v-input--has-state ) > .v-input__control > .v-input__slot:hover {
  background: #000;
}
#box-loading-cont {
  height:10000px;
}

.txt-head-profile, .txt, .ipt-BankAccount1, .ipt-BankAccount2 {
  width:46%;
  display:inline-block;
  text-align:left;
  vertical-align:top;
}
.txt-colon {
  width:2%;
  display:inline-block;
  text-align:left;
  vertical-align:top;
}
.i-necessary {
  color:red;
}

.vip_stat {
  padding: 0;
  background: #fdfdfd;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  color:#000;
  width:80px;
}

.vip_stat.silver {
  background: #dcdcdc
}

.vip_stat.gold {
  background: #ffefd5
}

.vip_stat.vip {
  background: #ffdead
}
.t-highlight {
  margin-bottom:2px;
}
.t-box-list {
  margin:2px 0;
}

[hover-tooltip] {
  position: relative;
  cursor: default;
}
[hover-tooltip]:hover::before {
  content: attr(hover-tooltip);
  font-size: 14px;
  text-align: center;
  position: absolute;
  display: block;
  left: -100px;
  min-width: 150px;
  max-width: 250px;
  bottom: calc(100% + 10px);
  transform: translate(-50%);
  animation: fade-in 300ms ease;
  background: #FFF;
  border-radius: 4px;
  padding: 10px;
  color: #000;
  z-index: 99999999;
}
[hover-tooltip]:hover::after {
  content: "";
  position: absolute;
  display: block;
  left: -100px;
  width: 0;
  height: 0;
  bottom: calc(100% + 6px);
  margin-left: -100px;
  border: 1px solid black;
  border-color: #272727 transparent transparent transparent;
  border-width: 4px 6px 0;
  animation: fade-in 300ms ease;
  z-index: 99999999;
}
[hover-tooltip][tooltip-position=bottom]:hover::before {
  bottom: auto;
  top: calc(100% + 10px);
}
[hover-tooltip][tooltip-position=bottom]:hover::after {
  bottom: auto;
  top: calc(100% + 6px);
  border-color: transparent transparent #272727;
  border-width: 0 6px 4px;
}



@media only screen and (max-width: 600px) {
  .modal-popup {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding:10px;
    text-align: center;
    position: relative;
    left:0;
    background: none;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .modal-popup-wrapper.open .modal-popup {
    opacity: 1;
  }

  .head-popup {
    width: 100%;
    height: 55px;
    padding: 0 1%;
    overflow: hidden;
    background: none;
    position:relative;
    top:55px;
    left:3px;
  }
  .cutsom-checkbox-row  input[type="checkbox"]:checked + label::after {    
    top:25px;
  }
}

.list-game-slot {
  width:100% !important;
}


.wrap-logo {
  max-width:1600px;
  overflow-x:auto;
  overflow-y:hidden;
}
.wrap-credit {
  padding-left:15px;
}
.navbar-header .wrap-header .menu-content li .nav-link {
  min-width:85px;
}
.item-credit, .banker {
  white-space: nowrap;
  float:right;
}

.wrap-nav-categorygame {
  margin-top:5px;
}

#nav-categorygame .nav-item {
  margin-left:5px;
}
#nav-categorygame .nav-item .nav-link:before {
  background: linear-gradient(to bottom, #434343 0%, black 100%);
}
#nav-categorygame .nav-item .nav-link:hover .text-wrap { 
  color:#FFF !important;  
}

#nav-cashback-select .nav-item .nav-link:before {
  background: linear-gradient(to bottom, #434343 0%, black 100%);
}
#nav-cashback-select .nav-item .nav-link:hover .text-wrap { 
  color:#FFF !important;  
}
#wrap-menu-wallet .nav-item .nav-link:before {
  background: linear-gradient(to bottom, #434343 0%, black 100%);
}
#wrap-menu-wallet .nav-item .nav-link:hover .text-wrap { 
  color:#FFF !important;  
}
.menu-side-bar .nav-item .nav-link:before {
  background: linear-gradient(to bottom, #434343 0%, black 100%);
}
.menu-side-bar .nav-item .nav-link .text-wrap span:nth-child(2) { 
  color:#FFF !important;  
}

#header-line-contact {
  margin-left:5px;
  padding:0;
}
.menu-content .item-menu {
  color:#FFF;
}

#x-footer .x-main .item[data-v-5966ab82] {
  position: absolute;
  width: 100%;
  height: 115%;
  bottom: 0;
  background: linear-gradient(45deg, #330000 0%,#aa0000 41%,#a80000 68%,#1c0000 100%) !important;
  border-radius: 25px 25px 0 0;
}
#x-footer .x-main .item span[data-v-5966ab82] {
  font-size: 15px;
  color: #FFF;
  font-weight: 700;
}

#header-table[data-v-fbc8944a] {
  background: linear-gradient(45deg, #330000 0%,#aa0000 41%,#a80000 68%,#1c0000 100%) !important;
  color:#FFF;
  text-align: center;
  padding: 0.5rem 0;
  font-weight: 700;
  border-radius: 5px 5px 0 0;
}
.lnk-filter {
  background: linear-gradient(to bottom, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%) !important;  
  padding: 0 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #000 !important;
  font-weight: bold;
  font-size: 15px;  
}


.all_cate {
  width:100%; 
  display: table !important;
  height: 50px;
}
.all_cate .cate {
  width: 75px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  background:  url(../../../others/img/icon/f2_inactive.png);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.all_cate .cate.active{
  background: url(../../../others/img/icon/f2_active.png?a);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.all_cate .cate .text-wrap{
	color:#fff;
	font-weight:bold;
	font-size:9px;
    position: relative;
    height: 0;
    top: -13px;
}
.title-pannel-game {
  margin-top:0.5rem;
}
#footer_games2 {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  display: table !important;
  border: 1px solid #555;
  padding: 7px;
  padding-bottom: 0;
  height: 7vh;
  background: linear-gradient(45deg, #330000 0%,#aa0000 41%,#a80000 68%,#1c0000 100%) !important;
}
.div_footer {
  width: 19vw;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding: 0 1px;
}
.div_footer.bg_menubar {
    background-size: contain;
    background-repeat: no-repeat;
    border:0.2px solid #272727;
}
.div_footer .btn_footer{
	display: block;
  color:#FFF;
  text-decoration: none;
  font-size:12px;
}
.card-game-xl {
  margin-top: 0.5rem;
  width: 100%;
}

.card-game-xl .card .card-hover,
.card-game-xl .card .card-hover:hover {
  background: linear-gradient(45deg, #330000 0%,#aa0000 41%,#a80000 68%,#1c0000 100%) !important;
  color: #FFF;
}

.rtp_div {
	position:fixed;
	bottom:170px;
	left:10px;
	z-index:100;
}
.rtp_div .rtp_link img{
  width:60px;
  background: #000;
  border-radius: 50%;
  padding: 2px;
}


.lucky_box_div {
	position:fixed;
	bottom:90px;
	right:10px;
	z-index:100;
}
.lucky_box_link img{
  width:60px;
  border-radius: 50%;
  padding: 2px;
}

.fab-container {
	position: fixed;
	bottom: 75px;
	left: 15px;
	z-index: 999;
	cursor: pointer;
}
.fab-icon-holder {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #D4A10B;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.fab-icon-holder:hover {
	opacity: 0.6;
}
.fab-icon-holder i {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 25px;
	color: #ffffff;
}
.fab1 {
	width: 40px;
	height: 40px;
	background: #850102;
}
.fab1 span{
	width: 100%;
    height: 100%;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
}
.fab-options {
	list-style-type: none;
	margin: 0;
	position: absolute;
	bottom: 40px;
	left: 0px;
	opacity: 0;
	transition: all 0.3s ease;
	transform: scale(0);
	transform-origin: 85% bottom;
}
.fab1:hover+.fab-options,
.fab-options:hover {
	opacity: 1;
	transform: scale(1);
}
.fab-options li {
	margin: 2px;
  line-height: 30px;
  text-align: center;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #850102;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.fab-options li a {
	color: #fff;
}
.fab-label {
	padding: 1px 2px 3px 2px;
    margin-left: 35px;
	white-space: nowrap;
	border-radius: 3px;
	font-size: 12px;
	background: #850102;
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	top: -32px;
    position: relative;
    width: 80px;
    line-height: 16px;
    vertical-align: middle;
    display: inline-block;
}
.apk_div {
	position:fixed;
	bottom:115px;
	left:12px;
	z-index:100;
}
.apk_div .apk_link img{
	width:47px;
	background: #850102;
  border-radius: 50%;
  padding: 8px;
}


/* ==== Pengumuman ==== */
#home_pengumuman {
  color: #FFF;
  padding: 5px;
  font-size: 10px !important;
  position: relative;
  width: 100%;
}
#home_pengumuman img {
position: relative;
  width: 5%;
  display: inline-block;
  vertical-align: top;
}
.marquee {
  width: 94%;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  color: #FFF;
  display: inline-block;
}
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
  font-size: 18px;
}
.marquee span:hover {
  animation-play-state: paused
}
@keyframes marquee {
  0% {
      transform: translate(0, 0)
  }
  100% {
      transform: translate(-100%, 0)
  }
}
#pengumuman1 {
  margin-right: 100px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: .5px
}
#pengumuman2 {
  margin-left: 100px;
  margin-right: 100px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: .5px
}
/* ==== Pengumuman ==== */


/* ==== JACKPOT STYLE ==== */
#jackpot_body {
	background: rgb(191, 133, 13);
	background: -moz-linear-gradient(
	180deg,
	rgba(191, 133, 13, 1) 0%,
	rgba(252, 244, 154, 1) 33%,
	rgba(252, 244, 154, 1) 36%,
	rgba(252, 244, 154, 1) 39%,
	rgba(248, 236, 187, 1) 45%,
	rgba(191, 133, 13, 1) 82%,
	rgba(147, 102, 10, 1) 100%
	);
	background: -webkit-linear-gradient(
	180deg,
	rgba(191, 133, 13, 1) 0%,
	rgba(252, 244, 154, 1) 33%,
	rgba(252, 244, 154, 1) 36%,
	rgba(252, 244, 154, 1) 39%,
	rgba(248, 236, 187, 1) 45%,
	rgba(191, 133, 13, 1) 82%,
	rgba(147, 102, 10, 1) 100%
	);
	background: -webkit-gradient(
	linear,
	100% 0,
	0 0,
	from(rgba(191, 133, 13, 1)),
	color-stop(0.33, rgba(252, 244, 154, 1)),
	color-stop(0.36, rgba(252, 244, 154, 1)),
	color-stop(0.39, rgba(252, 244, 154, 1)),
	color-stop(0.45, rgba(248, 236, 187, 1)),
	color-stop(0.82, rgba(191, 133, 13, 1)),
	to(rgba(147, 102, 10, 1))
	);
	background: -o-linear-gradient(
	180deg,
	rgba(191, 133, 13, 1) 0%,
	rgba(252, 244, 154, 1) 33%,
	rgba(252, 244, 154, 1) 36%,
	rgba(252, 244, 154, 1) 39%,
	rgba(248, 236, 187, 1) 45%,
	rgba(191, 133, 13, 1) 82%,
	rgba(147, 102, 10, 1) 100%
	);
	background: linear-gradient(
	180deg,
	rgba(191, 133, 13, 1) 0%,
	rgba(252, 244, 154, 1) 33%,
	rgba(252, 244, 154, 1) 36%,
	rgba(252, 244, 154, 1) 39%,
	rgba(248, 236, 187, 1) 45%,
	rgba(191, 133, 13, 1) 82%,
	rgba(147, 102, 10, 1) 100%
	);
	padding:10px 0;
}
.jackpot-left {
    width:30%;
}
.jackpot-right {
    width:70%;
}
.jackpot-title {
  font-family: "Quantico", sans-serif;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom:30px;
}
.jackpot-left .jackpot-title-1 {
	font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    z-index: 10;
    color: #fff;
    background: #222;
    letter-spacing: 2px;
    width: 100%;
}
.jackpot-left .jackpot-title-2 {
	font-family: 'Orbitron', sans-serif;
    text-align: center;
	font-size:28px;
	margin:0;
	text-transform: uppercase;
    z-index:10;
    color:#222;
    letter-spacing: 2px;
}
#jackpot-text {
	font-family: 'Orbitron', sans-serif;
    text-align: center;
	font-size:38px; 
	padding:0;
	margin:0;
}
#jackpot-text .each_digit_n, #jackpot-text .each_digit_c {
	display:inline-block;
	padding:10px 5px;
	margin:5px;
	text-align:center;
	border-radius:5px;
}
#jackpot-text .each_digit_n{
	color:#FFF;
}
#jackpot-text .each_digit_c {
	color:#000;
}
#jackpot-text .each_digit_n {
	background:#222;
	width:45px;
}
#jackpot-text .each_digit_c {
	display:inline-block;
	width:10px;
}
#jackpot_body .boxx {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	color: transparent;
    height:60px;
}

#jackpot_body {
	width:100%;
	padding: 0 2px;
}
.jackpot-left .jackpot-title-1 {
	font-size:2vw;
}
.jackpot-left .jackpot-title-2 {
	font-size:3vw;
}
#jackpot-text {
	font-size:4vw; 
}
#jackpot-text .each_digit_n, #jackpot-text .each_digit_c {
	padding:5px 2px;
	margin:2px;
}
#jackpot-text .each_digit_n {
	width:6.5vw;
}
#jackpot-text .each_digit_c {
	width:1vw;
}
/* ==== JACKPOT STYLE ==== */

.box_winner_game {
	border: 3px solid #a80000;
  border-radius:7px;
	padding:2px;
	width:35%;
  display:inline-block;
  margin-bottom:8px;
}
.box_winner_game .winner_gname{
  margin-top:8px;
	font-size:10px;
	font-weight:bold;
  text-align:center;
}
.box_winner_game .winner_name{
	font-size:9px;
}
.box_winner_game .winner_total{
	font-size:9px;
	font-weight:bold;
	color:#FFF;
}
.box_winner_game .content{
	width:100%;
}
.box_winner_game .content .left{
	width:45%;
	display:inline-block;
	padding:0;
	margin:0;
	vertical-align:middle;
}
.box_winner_game .content .left img{
	width:100%;
}
.box_winner_game .content .right{
	width:50%;
	display:inline-block;
	padding:0;
	margin:0;
	vertical-align:middle;
  text-align: left;
}
.box_winner_game .simply-scroll, .simply-scroll .simply-scroll-clip {
	height: 245px !important;
}
#scroller {
  padding:0 3px;
}