/* ========================================================================== */
/*                                Main Layout                                 */
/* ========================================================================== */

/*-------------------------------*/
/*            Fonts              */
/*-------------------------------*/

@font-face {
  font-family: "montserrat";
  src: url("../../fonts/montserrat-regular.eot");
  src: url("../../fonts/montserrat-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../../fonts/montserrat-regular.woff") format("woff"),
    url("../../fonts/montserrat-regular.ttf") format("truetype"),
    url("../../fonts/montserrat-regular.svg#montserratregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "bebasKai";
  src: url("../../themes/aaaaks/fonts/BebasKai/BebasKai.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/poppins-v8-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Poppins Regular"), local("Poppins-Regular"),
    url("../../fonts/poppins/poppins-v8-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../../fonts/poppins/poppins-v8-latin-regular.woff2")
      format("woff2"),
    /* Super Modern Browsers */
      url("../../fonts/poppins/poppins-v8-latin-regular.woff") format("woff"),
    /* Modern Browsers */
      url("../../fonts/poppins/poppins-v8-latin-regular.ttf") format("truetype"),
    /* Safari, Android, iOS */
      url("../../fonts/poppins/poppins-v8-latin-regular.svg#Poppins")
      format("svg"); /* Legacy iOS */
}

@font-face {
  font-family: "Aller Regular";
  src: url(../../fonts/aller/Aller_Rg.ttf);
}

@font-face {
  font-family: "open_sansregular";
  src: url("../../fonts/opensans-regular-webfont.woff2") format("woff2"),
    url(".././fonts/opensans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans Semibold";
  src: url(../../fonts/opensans/OpenSans-Semibold.ttf);
}

@font-face {
  font-family: "Calibri";
  src: url(../../fonts/calibri/calibri.ttf);
}

@font-face {
  font-family: "aller";
  src: url("../../themes/aaaaks/fonts/Aller/Aller_Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "allerBold";
  src: url("../../themes/aaaaks/fonts/Aller/Aller_Bd.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Aller Lt";
  src: url("../../themes/aaaaks/fonts/Aller/Aller_Lt.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/*-------------------------------*/
/*         General Style         */
/*-------------------------------*/

html,
body {
  margin: 0;
  padding: 0;
}

body {
  /*position: relative;
  overflow-x: hidden;*/
  height: auto;
  width: 100vw;
  height: 100vh;
  font-size: 12px;
  font-family: "montserrat", Tahoma, "Microsoft Yahei", Arial, Helvetica;
  background-color: #000;
  color: #fff;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
  padding-right: 0px !important;
}

body.modal-open {
  overflow-y: auto;
}

ul,
ol,
dl,
form {
  margin: 0;
  padding: 0;
  list-style: none;
}

form {
  position: relative;
  overflow: visible;
}

img {
  border: 0;
}

input,
button,
select,
textarea {
  outline: none;
}

.nav span,
.nav li.underline a,
.footer a,
.footer span {
  white-space: nowrap;
}

.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  font-size: 0;
}

.clearfix {
  *zoom: 1;
}

.clear {
  clear: both;
}

a {
  text-decoration: none;
  color: #f7d988;
}

a:hover,
a:focus,
a:active {
  color: #00a0ba;
  text-decoration: none;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin-bottom: 10px;
  padding-top: 10px;
}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

.container {
  /*width: 100%;*/
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* #wrapper.toggled {
  padding-left: 312px;
} */
#wrapper #sidebar-wrapper {
  height: 100vh;
  position: absolute;
  width: 100vw;
  left: -100vw;
}

#wrapper.toggled #sidebar-wrapper {
  height: 100vh;
  position: absolute;
  width: 100vw;
  left: 0;
}

#sidebar-wrapper {
  float: left;
  display: block;
  z-index: 1000;
  left: 0;
  width: 0;
  margin-left: 0;
  padding: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #1a1a1a;
  border-color: transparent;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  /*-webkit-transform: translate3d(272px, 0px, 0px);
  -ms-transform: translate3d(272px, 0px, 0px);
  transform: translate3d(272px, 0px, 0px);*/
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#page-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-overflow-scrolling: touch;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -312px;
  height: 0.1px;
}

.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 5;
}

/*-------------------------------*/
/*         Hamburger Menu        */
/*-------------------------------*/

.hamburger {
  position: absolute;
  top: 15px;
  z-index: 9999;
  display: block;
  width: 25px;
  height: 20px;
  margin-left: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}

.hamburger.is-closed:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #e1cf4b;
}

.hamburger.is-closed .hamb-top {
  top: 0px;
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -1px;
}

.hamburger.is-closed .hamb-bottom {
  bottom: 0px;
  -webkit-transition: all 0.35s ease-in-out;
}

/*.hamburger.is-closed:hover .hamb-top {
top: 0;
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
bottom: 0;
-webkit-transition: all .35s ease-in-out;
}*/

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #dbc344;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}

.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(30deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  top: 20%;
}

.hamburger.is-open .hamb-middle {
  display: none;
}

.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-30deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  top: 80%;
}

.hamburger.is-open:before {
  content: "";
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
}

/*-------------------------------*/
/*            Sidebar            */
/*-------------------------------*/

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 312px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.sidebar-nav li {
  position: relative;
  line-height: 20px;
  display: inline-block;
  width: 100%;
}

.sidebar-nav li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 3px;
  background-color: #393939;
  -webkit-transition: width 0.2s ease-in;
  -moz-transition: width 0.2s ease-in;
  -ms-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
}

.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before,
.sidebar-nav li a.active {
  background-color: #393939;
  width: 100%;
  -webkit-transition: width 0.2s ease-in;
  -moz-transition: width 0.2s ease-in;
  -ms-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
}

.sidebar-nav li a {
  display: block;
  color: #dddddd;
  text-decoration: none;
  padding: 10px 15px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}

.sidebar-nav li a i {
  margin-right: 15px;
  vertical-align: middle;
}

.sidebar-decoration {
  width: 100%;
  height: 1px;
  background-color: #333333;
}

.select-lang {
  width: 100%;
  background-color: #000000;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
}

.lang {
  list-style: none;
  padding: 10px 0 0;
}

.lang .active {
  border: 3px solid #f5d972;
}

.lang li {
  /* width: 36px;
  height: 36px; */
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
}

.lang li:last-child {
  margin-right: 0;
}

.lang li a {
  padding: 0;
  display: inline-block;
}

.lang li a i {
  padding: 0;
  font-size: normal;
}

.lang-en,
.lang-id,
.lang-vi {
  /* display: block;
  background-size: 30px 30px; */
  display: inline-block;
  background-size: cover !important;
  height: 34px;
  width: 34px;
}

.lang-en {
  background: url(../img/lang/en.webp);
}

.lang-id {
  background: url(../img/lang/indonesia-ref-1.svg);
}

.lang-vi {
  background: url(../img/lang/vietnam-ref-1.svg);
}

/* .ico-home,
.ico-reg,
.ico-login,
.ico-depo,
.ico-tf,
.ico-wd,
.ico-sport,
.ico-casino,
.ico-multiplyr,
.ico-slot,
.ico-promo,
.ico-contact,
.ico-chat,
.ico-logout,
.ico-password,
.ico-memo,
.ico-forget,
.ico-history,
.ico-toto {
  display: inline-block;
  background: url(../img/icon/sidebar-icon.png) no-repeat;
  height: 20px;
  width: 20px;
} */

.ico-home,
.ico-join,
.ico-gift,
.ico-deposit,
.ico-livechat,
.ico-hamburger {
  display: inline-block;
  background: url(../img/menu/footer-menu-mobile.png) no-repeat;
  height: 34px;
  width: 40px;
}

.ico-home {
  background-position: 2px 0;
}

.ico-join {
  background-position: -34px 0;
}

.ico-gift {
  background-position: -117px 0;
}

.ico-deposit {
  background-position: -77px 0;
}

.ico-livechat {
  background-position: -158px 0;
}

.ico-hamburger {
  background-position: -183px 0;
}

.badge {
  background-color: #f63d3d;
}

.btn-sidebar {
  padding: 10px 15px;
}

.btn-sidebar .btn {
  /*padding: 10px 38px;*/
  max-width: 140px;
}

.copyright {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

/*-------------------------------*/
/*            Header             */
/*-------------------------------*/

.header {
  height: 50px;
  background-color: #0f151b;
  width: 100%;
  position: fixed;
  z-index: 101;
}

.header-clear {
  height: 50px;
}

.navbar-brand {
  height: 30px;
  margin: 10px 0;
  padding: 0;
  position: absolute;
  left: 2%;
  /*margin-left: -58px !important;*/
  /* 50% of your logo width */
  display: block;
}

.navbar-brand img {
  height: 37px;
  width: auto;
  margin: 0 auto;
  margin-top: -5px;
}

.navbar-brand-login {
  width: 30px;
  /* left: 16%; */
  /*margin-left: 0 !important;*/
}

.user-info {
  /* padding: 8px 10px; */
  color: #fff;
  height: 40px;
  background: #313131;
  margin-top: 4px;
  width: 40%;
  border-radius: 5px;
  padding: 2px 5px;
  margin-right: 10px;
  text-transform: uppercase;
  font-family: "Aller Regular";
  font-weight: lighter;
}

.user-info .cl-green {
  color: #43c343;
}

.user-info > div {
  display: block;
}

.user-info .user-welcome {
  border-right: none;
  padding-right: 0;
}

.user-info .user-balance {
  padding-left: 2px;
  margin-left: 20px;
}

.user-info .user-balance a {
  color: #00a0ba;
  text-decoration: underline;
  cursor: pointer;
}

.login-btn {
  float: right;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

.login-btn:last-child {
  margin: 5px 0 5px 5px;
}

.bonus-content {
  position: relative;
  display: inline-block;
}

.menu-bonus::before {
  content: "";
  background: url(../../img/icon/bonus-v3.gif);
  background-size: cover;
  position: absolute;
  width: 73px;
  height: 21px;
  bottom: 13px;
  margin-left: -90px;
  margin-bottom: -18px;
  top: -11px;
}

.count-bonus {
  background: red;
  border-radius: 100px;
  width: 10px;
  display: flex;
  padding: 0.18em;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 1.625rem;
  position: absolute;
  top: -14px;
  left: -22px;
  font-size: 8px;
}

/*-------------------------------*/
/*          Breadcrumb           */
/*-------------------------------*/

.breadcrumb {
  background-color: #3d3d3d;
  border-radius: 0;
  padding: 0 5px;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 0;
  /*height: 38px;*/
  width: 100%;
  text-transform: uppercase;
}

.breadcrumb > ol {
  padding: 3px 0;
}

.breadcrumb > ol,
.breadcrumb > ol > li {
  display: inline-block;
  vertical-align: middle;
}

/*-------------------------------*/
/*            Slider             */
/*-------------------------------*/

#slider {
  position: relative;
  overflow: hidden;
  display: block;
  clear: both;
  height: auto;
}

.slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}

.slider-btn {
  position: absolute;
  right: 10px;
  bottom: 6%;
  /*left: 50%;
bottom: 8%;
margin-left: -75px !important;*/
  z-index: 1020;
}

.shade {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.85);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.85);
}

.responsive-image {
  width: 100%;
  height: 100%;
}

/*-------------------------------*/
/*          Game List            */
/*-------------------------------*/

.game-list {
  clear: both;
}

.horizontal-list-wrapper {
  width: 100%;
  /*padding: 5px;*/
  white-space: nowrap;
  overflow: hidden;
}

.horizontal-list-wrapper.slots-wrapper {
  padding: 55px 5px 5px;
}

.horizontal-list-wrapper-cas {
  width: 100%;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 50px;
}

.game-full {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

.game-full:last-child {
  margin-bottom: 0 !important;
}

.game-one-half-cas {
  float: left;
  width: 33.33%;
  overflow: hidden;
}

.csn-image {
  height: 88.7px;
}

.csn-img-all {
  height: 116.69px;
  width: 100%;
}

.csn-image-customize {
  height: 116.69px;
  width: 100%;
}

.club-box-slots1,
.club-box-slots2 {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

.club-pic-slots1,
.club-pic-slots2 {
  border: 1px solid transparent;
  border-color: #72a416;
  overflow: hidden;
}

.club-pic-slots-hover {
  border-color: #404040;
}

.club-play-btn1,
.club-play-btn2 {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 298px;
  height: 95px;
  padding-top: 13%;
  /*display: none;*/
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.club-play-btn-hover {
  /*display: block !important;*/
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.club-play-btn1 span,
.club-play-btn2 span {
  padding: 8px 10px;
  background: #72a416;
  color: #000000;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

.club-title-slots {
  background: #000000;
  color: #fff;
  padding: 10px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.game-category {
  background-color: #5e8517;
  padding: 5px 15px;
  color: #fff;
  font-size: 14px;
  margin-top: 3px;
  margin-bottom: 3px;
  height: 38px;
}

.game-category:first-child {
  margin-top: 0 !important;
}

.game-category > div,
.game-category > i {
  padding: 5px 3px;
  vertical-align: middle;
  text-transform: uppercase;
  display: inline-block;
}

.game-category > div > a {
  color: #fff;
  text-transform: none !important;
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #fff;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

.game-category > div > a:hover,
.game-category > div > a:active {
  color: #a3e924;
  border: 1px solid #a3e924;
}

.game-one-half {
  width: 48%;
  float: left;
  margin-right: 4%;
}

.game-one-third {
  float: left;
  width: 33.3%;
}

.game-two-third {
  float: left;
  width: 66.6%;
}

/*.game-box-slots {
border: none;
-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
margin: 3px;
}*/

.game-pic-slots {
  width: auto;
}

.game-title-cas {
  padding: 5px 10px;
  display: block;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  /*border: 1px solid #464646;*/
}

.game-title-cas.play-btn {
  /*background: #4fa74f;*/
  color: #fff;
}

.game-title-cas.play-btn:hover,
.game-title-cas.play-btn.hovered,
.game-title-cas.play-btn:active,
.game-title-cas.play-btn.hovered {
  background: #004655;
}

.platform-slots {
  position: relative;
}

.last-column {
  margin-right: 0% !important;
}

.game-box {
  background-color: #333333;
  /*border: 1px solid #464646;*/
  /*border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;*/
  /*-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);*/
}

.game-image {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

.game-title {
  margin: 0;
  padding: 5px;
  color: #fff;
  font-size: 12px;
  /*display: inline-block;*/
  text-align: center;
}

.platform {
  padding: 0;
}

.platform > div {
  display: inline-block;
}

.platform .html5,
.platform .ios,
.platform .android {
  height: 20px;
  width: 20px;
}

.platform .html5 {
  background: url(../img/icon/html5.svg);
  background-size: 20px 20px;
}

.platform .ios {
  background: url(../img/icon/apple.svg);
  background-size: 20px 20px;
}

.platform .android {
  background: url(../img/icon/android.svg);
  background-size: 20px 20px;
}

.game-box-cas {
  background: rgba(222, 199, 71, 1);
  background: -moz-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(222, 199, 71, 1)),
    color-stop(18%, rgba(255, 243, 114, 1)),
    color-stop(30%, rgba(240, 225, 88, 1)),
    color-stop(54%, rgba(169, 141, 29, 1)),
    color-stop(95%, rgba(222, 199, 71, 1)),
    color-stop(100%, rgba(222, 199, 71, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dec747', endColorstr='#dec747', GradientType=0);
  margin: 5px;
  color: #fff;
  font-size: 12px;
  border: 1px solid #e0b451;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

/*.game-box-cas:hover, .game-box-cas:active {
border: 1px solid #0092b1;
background: #0092b1;
}*/

.game-box-cas-inside {
  background: #4fa74f;
  margin: 5px;
  color: #fff;
  font-size: 12px;
  /*border: 1px solid #525252;*/
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

/*.game-box-cas-inside:hover, .game-box-cas-inside:active {
border: 1px solid #0092b1;
background: #2a2b30;
}*/

/*.game-box-cas:hover .game-title-cas, .game-box-cas:active .game-title-cas {
color: #000;
}*/

.cas-games .hover-button {
  display: none;
  position: absolute;
  z-index: 15;
  margin: 8% 0 0 10%;
}

.cas-games:hover .hover-button,
.cas-games:active .hover-button {
  transition: all 0.2s;
  display: inline-block;
}

.cas-games .play-button {
  padding: 10px 20px;
  background: #18c8dd;
  color: #000;
  font-size: 14px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  text-align: center;
}

.cas-games .play-button:hover,
.cas-games .play-button:active {
  background: #13abbd;
  color: #fff;
}

.img-search {
  background-image: url(/assets/mobile/img/icon/search.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
  margin-left: 33%;
  transform: translateX(-50%);
}

.slot-list-wrapper {
  height: 50px;
  position: fixed;
  z-index: 101;
  width: 100%;
}

.slot-list-wrapper #search-bt {
  width: 80px;
  height: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset -1px 0 0 0 rgba(101, 118, 140, 0.3);
  background: #0f1419;
}

.slot-list-wrapper #search-bt a {
  width: 80px;
  height: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slot-list-wrapper .wrapper-menu {
  width: 100%;
  position: relative;
  overflow-x: scroll;
}

.slots-game-menu {
  width: 100%;
  list-style: none;
  text-transform: uppercase;
}

.slots-game-menu ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

.slots-game-menu ul > li {
  display: inline-block;
}

.slots-game-menu .game-link {
  height: 50px;
  background-color: rgba(15, 20, 25, 0.95);
  box-shadow: inset -1px 0 0 0 rgba(101, 118, 140, 0.3);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.87);
}

.slots-game-menu .game-link .svg-hot,
.slots-game-menu .game-link .svg-new {
  margin-left: 38%;
}

.slots-game-menu .game-link.all-games-link {
  font-size: 13px;
  z-index: 1;
  line-height: 14px;
}

.slots-game-menu .game-link.active {
  background: #00a0ba;
}

.slots-game-menu .game-link a {
  display: block;
  width: 80px;
  height: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.slots-game-menu .game-link a .ribbon-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slots-game-menu .game-link a .ribbon-wrapper .ribbon {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slots-game-menu .game-link a .ribbon-wrapper .ribbon span {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0px 0;
  background-color: red;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 1px 1px black;
  text-transform: uppercase;
  text-align: center;
  top: 9px;
  left: -23px;
  z-index: 100;
}

.slots-game-menu .games-menu-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 50px;
}

.slots-game-menu .games-menu-inner .games-menu-overlay {
  position: absolute;
  width: 100%;
  z-index: 101;
}

.slots-game-menu .games-menu-inner.games-menu-expanded {
  overflow: visible;
}

.slots-game-menu .games-menu-inner.games-menu-expanded .games-menu-overlay {
  background-color: rgba(15, 20, 25, 0.79);
}

.slots-game-menu .items-row {
  display: flex;
  flex-wrap: wrap;
}

.slots-game-menu .items-row .game-link {
  font-size: 13px;
  padding-top: 2px;
  background-color: black;
}

.slots-game-menu .game-link.games-menu-expand {
  font-size: 11px;
  line-height: 11px;
  box-shadow: inset 0 -1px 0 0 rgba(101, 118, 140, 0.3);
  position: relative;
  z-index: 99;
  cursor: pointer;
}

.slots-game-menu .game-link.games-menu-expand a {
  color: rgba(255, 255, 255, 1);
}

.previous-button {
  left: 19%;
  display: none;
}

.next-button {
  right: 0;
}

.previous-button,
.next-button {
  background: transparent;
  height: 50px;
  width: 30px;
  position: fixed;
  z-index: 105;
  cursor: pointer;
}
.previous-button img,
.next-button img {
  height: 100%;
}
/*-------------------------------*/
/*            Footer             */
/*-------------------------------*/

.footer {
  display: block;
  margin: 10px 0 0;
}

.social {
  text-align: center;
}

.social a {
  display: inline-block;
}

.social a.facebook {
  color: #3460a1;
}

.social a.twitter {
  color: #28aae1;
}

.social a.instagram {
  color: #ff5b13;
}

.banking {
  padding: 5px 15px;
  text-align: center;
}

.partner {
  padding: 6px 10px;
  background-color: #333333;
}

.copy {
  padding: 5px 15px;
  background-color: #000;
  font-size: 11px;
  color: #777777;
}

.contact p {
  color: #dddddd;
}

/*-------------------------------*/
/*           Slots Page          */
/*-------------------------------*/

.slot-category {
  background: rgba(222, 199, 71, 1);
  /* background: -moz-linear-gradient(top, rgba(222, 199, 71, 1) 0%, rgba(255, 243, 114, 1) 18%, rgba(240, 225, 88, 1) 30%, rgba(169, 141, 29, 1) 54%, rgba(222, 199, 71, 1) 95%, rgba(222, 199, 71, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(222, 199, 71, 1)), color-stop(18%, rgba(255, 243, 114, 1)), color-stop(30%, rgba(240, 225, 88, 1)), color-stop(54%, rgba(169, 141, 29, 1)), color-stop(95%, rgba(222, 199, 71, 1)), color-stop(100%, rgba(222, 199, 71, 1)));
  background: -webkit-linear-gradient(top, rgba(222, 199, 71, 1) 0%, rgba(255, 243, 114, 1) 18%, rgba(240, 225, 88, 1) 30%, rgba(169, 141, 29, 1) 54%, rgba(222, 199, 71, 1) 95%, rgba(222, 199, 71, 1) 100%);
  background: -o-linear-gradient(top, rgba(222, 199, 71, 1) 0%, rgba(255, 243, 114, 1) 18%, rgba(240, 225, 88, 1) 30%, rgba(169, 141, 29, 1) 54%, rgba(222, 199, 71, 1) 95%, rgba(222, 199, 71, 1) 100%);
  background: -ms-linear-gradient(top, rgba(222, 199, 71, 1) 0%, rgba(255, 243, 114, 1) 18%, rgba(240, 225, 88, 1) 30%, rgba(169, 141, 29, 1) 54%, rgba(222, 199, 71, 1) 95%, rgba(222, 199, 71, 1) 100%);
  background: linear-gradient(to bottom, rgba(222, 199, 71, 1) 0%, rgba(255, 243, 114, 1) 18%, rgba(240, 225, 88, 1) 30%, rgba(169, 141, 29, 1) 54%, rgba(222, 199, 71, 1) 95%, rgba(222, 199, 71, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dec747', endColorstr='#dec747', GradientType=0); */
  font-size: 16px;
  height: 40px;
  line-height: 2.5em;
  padding: 0 5px;
  margin-bottom: 5px;
  color: #000;
}

.game-big-slot {
  float: left;
  width: 100%;
}

.game-title-slots {
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 90%;
  overflow: hidden;
  padding: 3px 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}

.game-btn-slots {
  background: #4fa74f;
  border: 1px solid #59990e;
  border-radius: 0;
  /*display: inline-block;*/
  padding: 5px;
  right: 10px;
  bottom: 10px;
}

.game-btn-slots.fav {
  position: absolute;
}

.game-box-slots {
  /*background: #333333;*/
  margin: 5px;
  color: #333;
  font-size: 12px;
  /*border: 1px solid #464646;*/
  overflow: hidden;
  /*-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);*/
}

.game-box-slots .responsive-image {
  border-radius: 0;
  height: auto;
  width: 100%;
}

.game-box-slots .responsive-image-big {
  border-radius: 0;
  height: auto;
  width: 100%;
}

.mg {
  margin-top: -31px;
}

.btn-blue {
  /*background: #007cad none repeat scroll 0 0;*/
  background: #0c98fa;
  /* Old browsers */
  background: -moz-linear-gradient(top, #0c98fa 0%, #0366ab 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #0c98fa 0%, #0366ab 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0c98fa 0%, #0366ab 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c98fa', endColorstr='#0366ab', GradientType=0);
  color: #fff;
}

.slot-category > a.links {
  color: #fff;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #484a52;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #0092b1;
}

.owl-theme .owl-controls {
  margin-top: 0;
  margin-bottom: 0;
}

.badge-game {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
}

.badge-game i {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 19px;
  width: 20px;
  background-size: 14px;
}

.badge-game.ttg {
  background: #d61e01;
}

.badge-game.ttg i {
  background-image: url(/assets/img/icon/provider/logo-ttg.svg);
}

/* .badge-game.playstar {
  background: #2a6ac4;
} */

.badge-game.playstar i {
  background-image: url(/assets/img/icon/provider/Playstar_Badge_Game.jpg) !important;
  background-size: 20px !important;
  height: 20px;
  width: 20px;
}

.badge-game.redtiger {
  background: #70080d;
}

.badge-game.redtiger i {
  background-image: url(/assets/img/icon/provider/redtiger.svg);
}

.badge-game.spadegaming {
  background: #bf9a62;
}

.badge-game.spadegaming i {
  background-image: url(/assets/img/icon/provider/spadegaming.svg);
}

.badge-game.gameplay {
  background: #a8c52c;
}

.badge-game.gameplay i {
  background-image: url(/assets/img/icon/provider/gameplay.svg);
}

.badge-game.cq9 {
  background: #a8c52c;
}

.badge-game.cq9 i {
  background-image: url(/assets/img/icon/provider/cq9.svg);
}

.badge-game.gaming {
  background: #ddd05f;
}

.badge-game.gaming i {
  background-image: url(/assets/img/icon/provider/gg.svg);
}

.badge-game.sa {
  background: #bf9a5d;
}

.badge-game.sa i {
  background-image: url(/assets/img/icon/provider/sa.svg);
}

.badge-game.playtech {
  background: #353c7a;
}

.badge-game.playtech i {
  background-image: url(/assets/img/icon/provider/playtech.png);
  filter: brightness(0) invert(1);
}

.badge-game.idnslot {
  background: #17163b;
}

.badge-game.idnslot i {
  background-image: url(/assets/img/icon/provider/idnslot-new.png);
  padding-left: 1px;
}

.badge-game.skywind i {
  background-image: url(/assets/img/icon/provider/skywind.png);
  height: 14px;
  width: 25px;
  background-size: 15px;
}

.badge-game.nettent i {
  background-image: url(/assets/img/icon/provider/nettent.png);
  height: 14px;
  width: 25px;
  background-size: 15px;
}

.badge-game.pgsoft {
  background: #ff2d56;
}

.badge-game.pgsoft i {
  background-image: url(/assets/img/icon/provider/pgsoft.png);
  padding-left: 1px;
}

.badge-game.ttgplayson i {
  background-image: url(/assets/img/icon/provider/playson.jpg);
  padding-left: 1px;
  height: 19px;
  width: 22px;
  background-size: 18px;
}

.badge-game.ttgga i {
  background-image: url(/assets/img/icon/provider/gameart.jpg);
  padding-left: 1px;
  height: 19px;
  width: 22px;
  background-size: 18px;
}

.badge-game.jdb i {
  background-image: url(/assets/img/icon/provider/jdb.png);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.jg i {
  background-image: url(/assets/img/icon/provider/jg.png);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.png i {
  background-image: url(/assets/img/icon/provider/png.png);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.btg i {
  background-image: url(/assets/img/icon/provider/btg.png);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.nlc i {
  background-image: url(/assets/img/icon/provider/nlc.png);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.sbo i {
  background-image: url(/assets/img/icon/provider/sbo.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.fachai i {
  background-image: url(/assets/img/icon/provider/sbo.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}
.badge-game.gmw i {
  background-image: url(/assets/img/icon/provider/gmw.jpg);
  height: 14px;
  width: 25px;
  background-size: 15px;
}

.badge-game.mg i {
  background-image: url(/assets/img/icon/provider/microgaming.svg);
  margin-top: 30px;
}

.badge-game.rtg i {
  background-image: url(/assets/img/icon/provider/rtg.png);
  background-size: 20px;
}

.badge-game.betsoft i {
  background-image: url(/assets/img/icon/provider/betsoft.png);
  background-size: 20px;
}

.badge-game.fastspin i {
  background-image: url(/assets/img/icon/provider/fastspin.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.clotplay i {
  background-image: url(/assets/img/icon/provider/clotplay.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.live22 i {
  background-image: url(/assets/img/icon/provider/live22.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.mario i {
  background-image: url(/assets/img/icon/provider/mario.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.reevo i {
  background-image: url(/assets/img/icon/provider/reevo.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.fatpanda i {
  background-image: url(/assets/img/icon/provider/fatpanda.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.badge-game.idnlottery i {
  background-image: url(/assets/img/icon/provider/idnlottery.jpg);
  padding-left: 1px;
  height: 18px;
  width: 22px;
  background-size: 18px;
}

.search-form {
  padding: 1px 0px 3px;
}

/*-------------------------------*/
/*         Popup Wallet          */
/*-------------------------------*/

.wallet-popup {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  color: #dddddd;
  background-color: #262626;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 400ms;
  transition: transform 400ms;
  font-size: 12px;
  z-index: 9999999;
}

.wallet-popup[aria-expanded="true"] {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 400ms;
  transition: transform 400ms;
}

.wallet-popup .wallet-popup-header {
  background-color: #000;
  padding: 17px 15px;
}

.wallet-popup .wallet-popup-header .wallet-header-text {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.wallet-popup .wallet-popup-header .wallet-header-text img {
  padding-right: 5px;
}

.wallet-popup .wallet-popup-header .wallet-icon-close {
  margin-top: 0;
  color: #fff;
  text-shadow: none;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.wallet-popup .wallet-popup-content {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

/*-------------------------------*/
/*         Landing Page          */
/*-------------------------------*/

.landing-text {
  font-family: "aller", Arial, Helvetica;
}

.landing-img {
  position: absolute;
  display: block;
}

.landing-content {
  position: relative;
  width: 100%;
}

.landing-text h1 {
  font-size: 40px;
  margin: 0;
  padding-top: 10px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    180deg,
    #ac8105 0%,
    #c19a0f 17%,
    #f8e37c 47%,
    #e1c748 77%,
    #d49d00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-text h2 {
  font-size: 19px;
  margin-top: 0;
  color: #fff;
  text-align: center;
}

.landing-btn {
  padding: 10px;
}

/*-------------------------------*/
/*         Button Style          */
/*-------------------------------*/

.btn {
  padding: 8px 12px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

.btn-mid {
  width: 49.8%;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 0 !important;
}

.btn-danger,
.btn-default,
.btn-info,
.btn-primary,
.btn-success,
.btn-warning {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-default {
  color: #fff;
  background-color: #a5a5a5;
  border: none;
}

.btn-primary {
  color: #000 !important;
  background: rgba(222, 199, 71, 1);
  background: -moz-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(222, 199, 71, 1)),
    color-stop(18%, rgba(255, 243, 114, 1)),
    color-stop(30%, rgba(240, 225, 88, 1)),
    color-stop(54%, rgba(169, 141, 29, 1)),
    color-stop(95%, rgba(222, 199, 71, 1)),
    color-stop(100%, rgba(222, 199, 71, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dec747', endColorstr='#dec747', GradientType=0);
  border: none;
}

.btn-success {
  color: #fff;
  background: -moz-linear-gradient(
    bottom,
    rgba(32, 124, 229, 1) 0%,
    rgba(32, 124, 229, 1) 34%,
    rgba(73, 155, 234, 1) 52%,
    rgba(32, 124, 229, 1) 80%,
    rgba(32, 124, 229, 1) 100%
  );
  background: -webkit-linear-gradient(
    bottom,
    rgba(32, 124, 229, 1) 0%,
    rgba(32, 124, 229, 1) 34%,
    rgba(73, 155, 234, 1) 52%,
    rgba(32, 124, 229, 1) 80%,
    rgba(32, 124, 229, 1) 100%
  );
  background: -o-linear-gradient(
    bottom,
    rgba(32, 124, 229, 1) 0%,
    rgba(32, 124, 229, 1) 34%,
    rgba(73, 155, 234, 1) 52%,
    rgba(32, 124, 229, 1) 80%,
    rgba(32, 124, 229, 1) 100%
  );
  background: -ms-linear-gradient(
    bottom,
    rgba(32, 124, 229, 1) 0%,
    rgba(32, 124, 229, 1) 34%,
    rgba(73, 155, 234, 1) 52%,
    rgba(32, 124, 229, 1) 80%,
    rgba(32, 124, 229, 1) 100%
  );
  background: linear-gradient(
    bottom,
    rgba(32, 124, 229, 1) 0%,
    rgba(32, 124, 229, 1) 34%,
    rgba(73, 155, 234, 1) 52%,
    rgba(32, 124, 229, 1) 80%,
    rgba(32, 124, 229, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dec747', endColorstr='#dec747', GradientType=0);

  border: none;
}

.btn-info {
  color: #fff;
  background-color: #00a9d9;
  border: none;
}

.btn-warning {
  color: #1a1a1a;
  background-color: #ffc600;
  border: none;
}

.btn-warning .badge {
  color: #fff;
  background-color: #d10000;
  padding: 5px 8px;
  font-size: 14px;
  border-radius: 15px;
}

.btn-danger {
  color: #fff;
  background-color: #94001f;
  border: none;
}

.btn-ym {
  color: #fff;
  background-color: #8a2c90;
  border: none;
}

.btn-ym:focus,
.btn-ym:active {
  background-color: #712476;
  border: none;
}

.btn-bbm {
  color: #fff;
  background-color: #0092cd;
  border: none;
}

.btn-bbm:focus,
.btn-bbm:active {
  background-color: #007bac;
  border: none;
}

.btn-line {
  color: #fff;
  background-color: #00c300;
  border: none;
}

.btn-line:focus,
.btn-line:active {
  background-color: #00a800;
  border: none;
}

.btn-wechat {
  color: #fff;
  background-color: #2cc100;
  border: none;
}

.btn-wechat:focus,
.btn-wechat:active {
  background-color: #239800;
  border: none;
}

.btn-ym > div,
.btn-bbm > div,
.btn-line > div,
.btn-wechat > div {
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icon/contact-icon.png") no-repeat;
  margin-right: 5px;
}

.btn-ym .icon-ym {
  background-position: 0 0;
  width: 52px;
  height: 30px;
}

.btn-bbm .icon-bbm {
  background-position: -62px 0;
  width: 30px;
  height: 30px;
}

.btn-line .icon-line {
  background-position: -102px 0;
  width: 31px;
  height: 30px;
}

.btn-wechat .icon-wechat {
  background-position: -142px 0;
  width: 35px;
  height: 30px;
}

.btn-block + .btn-block {
  margin-top: 10px;
}

.btn-ibank {
  background: rgb(244, 244, 203);
  background: -moz-linear-gradient(
    0deg,
    rgb(199, 166, 59) 0%,
    rgb(168, 140, 29) 50%,
    rgb(249, 234, 104) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgb(199, 166, 59) 0%,
    rgb(168, 140, 29) 50%,
    rgb(249, 234, 104) 100%
  );
  background: linear-gradient(
    0deg,
    rgb(199, 166, 59) 0%,
    rgb(168, 140, 29) 50%,
    rgb(249, 234, 104) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4cb', endColorstr='#f3d31f', GradientType=0);
  color: #1a1a1a;
  border: none;
}

.btn-ibank:focus,
.btn-ibank:active {
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-ibank > div {
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icon/bank-icon.png") no-repeat;
  margin-right: 5px;
}

.btn-ibank .bca {
  background-position: -1px -2px;
  width: 78px;
  height: 30px;
}

.btn-ibank .mandiri {
  background-position: -86px -2px;
  width: 82px;
  height: 30px;
}

.btn-ibank .bni {
  background-position: -178px -2px;
  width: 82px;
  height: 30px;
}

.btn-ibank .bri {
  background-position: -268px -2px;
  width: 106px;
  height: 30px;
}

.btn-ibank .danamon {
  background-position: -386px -2px;
  width: 89px;
  height: 30px;
}

.btn-ibank .cimb {
  background-position: -488px -2px;
  width: 149px;
  height: 30px;
}

.btn-ibank .permata {
  background-position: -647px -2px;
  width: 98px;
  height: 30px;
}

.btn-game {
  padding: 3px 8px;
}

/*-------------------------------*/
/*            Forms              */
/*-------------------------------*/

.forms {
  margin: 10px 0 4em;
}

.forms h2 {
  font-size: 16px;
}

.contact > .form-group > label,
label {
  display: block;
  font-weight: 400;
}

.form-group {
  margin-bottom: 5px;
}

.contact > .form-group {
  margin-bottom: 10px;
}

.form-control {
  height: 40px;
  padding: 6px 10px;
  font-size: 12px;
  color: #fff;
  background-color: #393939;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

.form-control:focus {
  background: #393939;
  color: #fff;
  border-color: #66afe9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.input-group-addon {
  padding: 0;
  color: #737373;
  background-color: transparent;
  border: 1px solid transparent;
}

.input-group-addon > div {
  padding: 10px;
}

.input-group-addon img {
  margin-top: -1px;
  padding-left: 5px;
  height: 40px;
}

span.input-group-addon {
  padding-right: 10px;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.has-success .form-control {
  border-color: transparent;
}

.has-success .form-control-feedback {
  color: #6ea900;
}

.form-control-feedback {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.has-feedback-left .form-control {
  padding-left: 40px;
}

.has-feedback-left .form-control-feedback {
  position: absolute;
  left: 0;
  margin-top: -40px;
  z-index: 2;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  pointer-events: none;
  color: #777777;
}

/*.help-block {
color: #dddddd;
}*/

.forms .table {
  background-color: transparent;
  margin-bottom: 10px;
  color: #fff;
}

.forms .table > tbody > tr > td {
  padding: 5px;
}

.forms .table > tbody > tr > td:last-child {
  text-align: left;
}

ol.notes {
  list-style-type: decimal;
  padding-left: 20px;
}

#account-number-holder {
  height: 30px;
  padding: 6px 0px;
  font-size: 12px;
  color: #fff;
  background-color: #262626;
  border: 1px solid transparent;
  border-radius: 0;
  transition: none;
}

#account-number-holder {
  border-color: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#account-number-holder-deposit.form-control {
  height: 30px;
  padding: 6px 0px;
  font-size: 12px;
  color: #000;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 0;
  transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#account-number-holder-deposit.form-control:focus {
  border-color: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*-------------------------------*/
/*            Modal              */
/*-------------------------------*/

/*.modal {
position: absolute
height: 60vh;

margin-top: 25%;
overflow: hidden;
z-index: 999999;
}*/

/*
.modal-backdrop {
position: absolute;
}*/

/*.modal-backdrop.fade {
filter: alpha(opacity=0);
opacity: 0;
}
.modal-backdrop.show {
filter: alpha(opacity=85);
opacity: .85;
}*/

.modal {
  top: 13%;
}

.modal-backdrop {
  position: absolute;
}

.body-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0, 0.5);
  display: none;
}

.modal-header {
  padding: 15px 15px 0;
  border-bottom: none;
}

.modal-header .h4,
.modal-header h4 {
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

/*.modal-header img {
padding-right: 5px;
}*/

/* .modal-header .close {
margin-top: 0;
} */

.modal-body {
  text-align: center;
}

.modal-body.memo {
  text-align: left;
  color: #000;
}

.modal-body a {
  color: #222222;
}

.modal-body a:hover {
  color: #00a0ba;
}

.modal-content {
  background-color: #fff;
  border: 2px solid #2a2a2a;
  border-radius: 4px;
}

.modal-footer {
  background: #222222;
  border-top: none;
  text-align: center;
}

/*.modal .form-control {
color: #fff;
background-color: #b5b5b5;
}

.modal .form-control::-moz-placeholder {
color: #777777;
opacity: 1;
}

.modal .form-control:-ms-input-placeholder {
color: #777777;
}

.modal .form-control::-webkit-input-placeholder {
color: #777777;
}

.modal .checkbox {
color: #777777;
}

.close {
color: #fff;
text-shadow: none;
filter: alpha(opacity=100);
opacity: 1;
}*/

#poker-notice .modal-dialog {
  width: 75%;
  margin: 0 auto;
}

/*-------------------------------*/
/*         Owl Carousel          */
/*-------------------------------*/

.slide-wrapper #progressBar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 4;
}

.slide-wrapper #progressBar #bar {
  width: 0%;
  max-width: 100%;
  height: 2px;
  background: #d0b83c;
}

.slide-wrapper .owl-carousel .owl-controls {
  position: absolute;
  width: 100%;
  bottom: 2px;
}

.slide-wrapper .owl-carousel {
  height: 100%;
}

.slide-wrapper .owl-carousel .owl-controls .owl-pagination {
  display: none;
}

.slide-wrapper .owl-carousel .item {
  padding: 0px 0;
  color: white;
}

.slide-wrapper .owl-carousel .item img {
  max-width: 100%;
  padding: 0 2.7%;
}

/*-------------------------------*/
/*             Tabs              */
/*-------------------------------*/

.tabs .nav-tabs,
.nav-tabs {
  background: #000;
  border-bottom: 1px solid #000;
  border-radius: 2px 2px 0 0;
}

.tabs .nav-tabs > li > a,
.nav-tabs > li > a {
  position: relative;
  display: block;
  padding: 5px 3px;
  color: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #fff;
  cursor: default;
  background: rgba(222, 199, 71, 1);
  background: -moz-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(222, 199, 71, 1)),
    color-stop(18%, rgba(255, 243, 114, 1)),
    color-stop(30%, rgba(240, 225, 88, 1)),
    color-stop(54%, rgba(169, 141, 29, 1)),
    color-stop(95%, rgba(222, 199, 71, 1)),
    color-stop(100%, rgba(222, 199, 71, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dec747', endColorstr='#dec747', GradientType=0);
  border: transparent;
  border-bottom-color: transparent;
  border-radius: 0;
  text-transform: uppercase;
}

.tabs .panel-group .panel {
  margin-top: 5px;
  border-radius: 0;
  border: 1px solid #393939;
}

.tabs .panel-default > .panel-heading {
  color: #ffffff;
  background-color: #333333;
  padding: 0;
}

.tabs .panel-heading a:after {
  display: none;
}

.tabs .panel-body {
  color: #dddddd;
  padding: 5px;
  background-color: #393939;
  border: none;
}

.tabs .panel-body > p > span {
  font-size: 12px;
}

.box_table .retable {
  font-size: 13px;
}

.box_table table,
.box_table2 table {
  border-collapse: separate !important;
  width: 100%;
  border: 0 none;
  color: #fff;
}

.box_table th {
  background: #0092b1;
  padding: 5px;
  color: #fff;
  border: none;
}

.box_table .oddrow {
  background: #ffffff;
}

.box_table .evenrow {
  background: #f5f5f5;
}

.box_table .retable td {
  padding: 5px 5px;
}

.box_table td:first-child {
  padding-left: 10px;
  text-align: left;
}

.box_table td {
  padding: 5px;
  padding-right: 10px;
  text-align: right;
  border: none;
  color: #2d2d2d;
}

/*-------------------------------*/
/*         Panel Style           */
/*-------------------------------*/

.panel-group {
  margin-bottom: 10px;
}

.panel-group h5 {
  margin-top: 10px;
  font-size: 14px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 2px;
  border: 1px solid #464646;
}

.panel-default > .panel-heading {
  color: #ffffff;
  background-color: #333333;
}

.panel-heading {
  padding: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.panel-title {
  font-size: 14px;
}

.panel-title a {
  color: #fff;
  text-decoration: none;
}

.panel-title a:focus,
.panel-title a:active {
  color: #fff;
  text-decoration: none;
}

.panel-body {
  color: #dddddd;
  padding: 10px;
  background-color: #1a1a1a;
  border-top: 1px solid #464646 !important;
}

.panel-heading a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  float: right;
  color: #fff;
  font-weight: 900;
}

.panel-heading a.collapsed:after {
  content: "\f078";
}

/*-------------------------------*/
/*            Popover            */
/*-------------------------------*/

.popover {
  z-index: 999996;
  display: block;
  width: 100%;
  max-width: 1024px;
  /*height: 100%;
  max-height: 1024px;*/
  font-size: 12px;
  font-family: inherit;
  background-color: rgba(51, 51, 51, 0.95);
  border: none;
  border: rgba(0, 0, 0, 0);
  border-radius: 0;
}

.popover.bottom {
  margin-top: 13px;
}

.popover.bottom > .arrow {
  border-bottom-color: none;
  border-bottom-color: rgba(0, 0, 0, 0);
}

.popover.bottom > .arrow:after {
  border-bottom-color: rgba(51, 51, 51, 0.95);
}

.popover-content {
  padding: 10px;
  border: none;
}

.popover-content h4 {
  font-size: 14px;
  margin-top: 0;
}

.popover-content a {
  color: #fff;
}

.popover-content span {
  font-size: 1.5em;
}

.table {
  background-color: #454545;
  margin-bottom: 0;
  color: #fff;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border-top: none;
}

.table > tfoot > tr:first-child {
  border-top: 1px solid #ddd;
}

.table > tbody > tr > td:last-child,
.table > tfoot > tr > td:last-child {
  text-align: right;
}

.table > tfoot > tr > td {
  font-size: 14px;
}

.popover-content .table > tbody > tr > td > i {
  margin-top: -3px;
  margin-right: 5px;
  font-style: normal;
  vertical-align: middle;
}

.forms .table > tbody > tr > td:nth-child(even) {
  text-align: right;
}

/*-------------------------------*/
/*      Quick Button Footer      */
/*-------------------------------*/

.quick-footer {
  overflow-x: hidden;
  left: 0px;
  bottom: 0px;
  width: 100%;
  position: fixed;
  z-index: 199;
  padding-bottom: 6px;
  /* border: 1px solid #000; */
  background: #11151a;
}

.quick-footer-navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  border: 0;
  max-width: 100%;
  overflow: visible;
}

.quick-footer-navbar ul:before,
.quick-footer-navbar ul:after {
  content: "";
  display: table;
}

ul.navbar-grid,
li.navbar-grid-a,
li.navbar-grid-b,
li.navbar-grid-c,
li.navbar-grid-d {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  list-style: none;
}

.navbar-grid > .navbar-grid-a,
.navbar-grid > .navbar-grid-b,
.navbar-grid > .navbar-grid-c,
.navbar-grid > .navbar-grid-d {
  width: 20%;
}

.navbar-grid-a {
  clear: left;
}

.navbar-grid-a,
.navbar-grid-b,
.navbar-grid-c,
.navbar-grid-d {
  margin: 0;
  border: 0;
  float: left;
  min-height: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.quick-footer-navbar li .grid-btn {
  font-size: 10px;
  display: block;
  margin: 0;
  border-right-width: 0;
  font-family: "Aller Regular", Arial, sans-serif;
}

/* .quick-footer-navbar li .grid-btn:last-child {
  border-right-width: 1px;
} */

.quick-footer-navbar a {
  /* color: #000;
  background-color: transparent;
  border-color: #996f35;
  border-bottom: none;
  border-top: none; */
  border: none;
}

.quick-footer-navbar a.active {
  color: #000;
  border-top: 2px solid #dbc344;
  /* background: linear-gradient(0deg, rgb(199, 166, 59) 0%, rgb(168, 140, 29) 50%, rgb(249, 234, 104) 100%); */
}

.quick-footer-navbar a.hamburger.is-closed {
  top: 0.7rem;
  margin-left: 1.5rem;
}

.quick-footer-navbar a.hamburger.is-open {
  top: 0.7rem;
  margin-left: 1.5rem;
}

.grid-btn {
  position: relative;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none !important;
  border-width: 1px;
  border-style: solid;
  text-overflow: initial;
  font-family: inherit;
  text-shadow: none !important;
  box-shadow: none !important;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.grid-btn-icon-top {
  padding: 5px 0 0;
}

.grid-btn i {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
}

/*-------------------------------*/
/*          Datepicker           */
/*-------------------------------*/

.datepicker th.switch {
  color: #333333;
}

.datepicker th.next,
.datepicker th.prev {
  color: #333333;
}

.datepicker .dow {
  color: #333333;
  border-top: 1px solid #ddd !important;
}

.datepicker td.day {
  color: #333333;
  cursor: pointer;
}

.table-history th {
  background: #0092b1;
}

.table-history tbody {
  color: #333333;
}

.table-history .evenrow {
  background: #f5f5f5;
}

.table-history .oddrow {
  background: #ffffff;
}

.forms .table-history > tbody > tr > td:nth-child(even) {
  text-align: left;
}

/*-------------------------------*/
/*         Helper Class          */
/*-------------------------------*/

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.mt-2 {
  margin-top: 2px;
}

.mt-5p {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-lg {
  margin-top: 4em;
}

.mb-5p {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb--10 {
  margin-bottom: -10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-lg {
  margin-bottom: 4em;
}

.mb-xlg {
  margin-bottom: 6em;
}

.mtb-10 {
  margin: 10px 0 !important;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pd-12 {
  padding: 12px;
}

.display-block {
  display: block !important;
}

.no-scroll {
  overflow-y: hidden;
  position: fixed;
}

.m--12 {
  margin: -12px !important;
}

/*-------------------------------*/
/*         Device Style          */
/*-------------------------------*/

@media (min-width: 375px) {
  #referral-landing .circle-connector {
    margin-left: 70%;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
  #referral-landing .circle-connector {
    margin-left: 34%;
  }
}

@media (min-width: 768px) {
  .container {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  /*.home .main .container {
  margin: 0 auto;
  }*/
}

@media (min-width: 1200px) {
  /*.container {
  width: 100%;
  }*/
}

.other-links > a > i,
.other-links > a > div {
  display: inline-flex;
  vertical-align: middle;
}

.other-links > a > div {
  margin-left: 5px;
  /*color: #dddddd;*/
  text-decoration: none;
}

.other-links > a:active > div {
  text-decoration: underline;
}

.status-pending {
  color: #0cbec9;
  text-transform: capitalize;
}

.status-cancel {
  color: #9f9f9f;
  text-transform: capitalize;
}

.status-reject {
  color: #ff0000;
  text-transform: capitalize;
}

.status-approve {
  color: #1e971b;
  text-transform: capitalize;
}

.game-box-cas a {
  color: #fff;
}

.cas-games > .game-maintenance {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  margin: 5px;
  /*width: 48.6%;*/
  /*height: 135px;*/
  overflow: hidden;
  display: flex;
  /* Magic begins */
  flex-direction: column;
  justify-content: center;
  /* Center in main axis */
  align-items: center;
  /* Center in cross axis */
  cursor: pointer;
  /*display: none;*/
  z-index: 10;
}

.cas-games > .game-maintenance > img {
  -webkit-transform: scale(2.5);
  -moz-transform: scale(2.5);
  -o-transform: scale(2.5);
  -ms-transform: scale(2.5);
  transform: scale(2.5);
  width: 24px;
  height: 24px;
}

.cas-games > .game-maintenance > div {
  color: #fff;
  font-size: 14px;
  padding-top: 24px;
}

.cas-games > .game-inactive {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  margin: 5px;
  /*width: 48.6%;*/
  /*height: 232px;*/
  overflow: hidden;
  display: flex;
  /* Magic begins */
  flex-direction: column;
  justify-content: center;
  /* Center in main axis */
  align-items: center;
  /* Center in cross axis */
  cursor: pointer;
  /*display: none;*/
  z-index: 10;
}

.cas-games > .game-inactive > div {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.cas-games > .game-inactive > div + div {
  color: #ffd565;
  text-transform: uppercase;
}

.btn-home {
  padding: 6px 8px;
}

#transfer-alert.alert,
#manage-alert.alert {
  width: 100%;
  position: absolute;
  bottom: 43px;
  margin-bottom: 0;
  border-radius: 0;
  z-index: 12;
}

#transfer-alert.alert p,
#manage-alert.alert p {
  max-width: 65%;
}

/*.game-thumb {
background-image: url(../img/live-number.jpg);
background-size: cover;
width: 100%;
height: auto;
}*/

.user-rank {
  padding: 10px 0;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.user-rank > img {
  width: 30px;
  height: 30px;
  -webkit-animation: bounce 0.8s linear infinite;
  -moz-animation: bounce 0.8s linear infinite;
  -o-animation: bounce 0.8s linear infinite;
  animation: bounce 0.8s linear infinite;
}

/*.limit-icon {
display: inline-block;
width: 26px;
height: 26px;
background: #305379;
border-radius: 50%;
padding: 3px;
}

.limit-icon-inner {
width: 20px;
height: 20px;
border-radius: 50%;
border: 2px solid #fff;
padding: 0px 4px;
}

.limit-icon-inner > i {
color: #fff;
vertical-align: middle;
text-align: center;
font-size: 1em;
}*/

/*[id^='limit-content'] {
position: absolute;
background: rgba(9,28,45,.9);
display: none;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}

[id^='limit-content'].show {
display: block;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}

[class^='limit-div'] {
display: block;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}

[class^='limit-div'].hide {
display: none;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}

[class^='play-div'] {
display: none;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}

[class^='play-div'].show {
display: block;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
}*/

.game-box-cas table thead tr td {
  border-bottom: 1px solid #fff !important;
}

/* Loading Spinner */

.overlaySpinner,
.overlayPage {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 120%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #000;
  -moz-opacity: 0.7;
  opacity: 0.7;
  z-index: 9998;
}

.overlayPage {
  z-index: 11;
}

.spinner {
  width: 15px;
  height: 15px;
  background: url(../../../../mobile/img/loader.gif) center center no-repeat;
  position: fixed;
  left: 50%;
  margin-left: -7px;
  top: 50%;
  z-index: 9999;
  display: none;
}

.spinnerInitial {
  display: block;
}

.card-container {
  position: relative;
}

.card {
  position: relative;
  width: 100%;
  height: 100%;
  -ms-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.card.selected {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card .face {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}

.card .front {
  z-index: 10;
}

.card.selected .front {
  z-index: 0;
}

.card .back {
  position: absolute;
  width: 100%;
  height: auto;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #1a1a1a;
  border: 1px solid #464646;
  /*padding: 0px 5px;*/
}

/* New Slots Page */

.overlay-bg {
  z-index: 1;
  left: 0;
  top: 0;
  overflow-x: hidden;
  transition: all 0.1s;
  background-color: rgba(29, 37, 49, 0);
}

.overlay-bg.open {
  background-color: rgba(29, 37, 49, 0.76);
  height: 100%;
  width: 100%;
  position: fixed;
  display: block;
}

#show-more-games {
  cursor: pointer;
}

.icon-popular,
.icon-new,
.icon-all,
.icon-playson,
.icon-playstar,
.icon-spade,
.icon-ttg,
.icon-pragmatic,
.icon-redtiger,
.icon-betsoft,
.icon-gameplay,
.icon-laxino {
  display: inline-block;
  background: url(../../img/icon/slots-icons.png) no-repeat;
  height: 26px;
  width: 31px;
}

.icon-popular {
  background-position: 2px 0;
}

.icon-new {
  background-position: -34px 0;
}

.icon-all {
  background-position: -72px -3px;
}

.icon-playson {
  background-position: -111px 0;
}

.icon-playstar {
  background-position: -150px 0;
}

.icon-spade {
  background-position: -184px 0;
}

.icon-ttg {
  background-position: -216px 0;
}

.icon-pragmatic {
  background-position: -245px 0;
}

.icon-redtiger {
  background-position: -275px 0;
}

.icon-betsoft {
  background-position: -313px 0;
}

.icon-gameplay {
  background-position: -351px 0;
}

.icon-laxino {
  background-position: -388px 0;
}

.svg-sport {
  display: inline-block;
  background-image: url(../../mobile/img/menu/soccer-ball.svg);
  height: 20px;
  width: 20px;
}

.svg-casino {
  display: inline-block;
  background-image: url(../../mobile/img/menu/servant-outline.svg);
  height: 20px;
  width: 20px;
}

.svg-casino-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/casino.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-multiplyr {
  display: inline-block;
  background-image: url(../../mobile/img/menu/symbol-of-spades.svg);
  height: 20px;
  width: 20px;
}

.svg-multiplyr-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/symbol-of-spades.svg?v=5);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-sports-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/sports.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-bola-tangkas-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/bola-tangkas.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
}

.svg-lottery-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/lottery.svg?v=1);
  background-size: 20px;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
}

.svg-slot {
  display: inline-block;
  background-image: url(../../mobile/img/menu/coins.svg);
  height: 20px;
  width: 20px;
}

.svg-slot-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/slot.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-toto {
  display: inline-block;
  background-image: url(../../mobile/img/menu/billiard-ball-number-eight.svg);
  height: 20px;
  width: 20px;
}

.svg-home {
  display: inline-block;
  background-image: url(../../mobile/img/menu/home.svg);
  height: 20px;
  width: 20px;
}

.svg-home-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/home.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-home-ft {
  display: inline-block;
  background-image: url(../../mobile/img/menu/home-black.svg?v=2);
  height: 20px;
  width: 20px;
  background-size: 100%;
}

.svg-bonus-gold {
  display: inline-block;
  background: url(../../mobile/img/menu/gold/bonus.svg) no-repeat;
  background-size: contain;
  background-position: center;
  height: 20px;
  width: 20px;
}

.svg-user {
  display: inline-block;
  background: url(../../img/icon/user.svg) center no-repeat;
  background-size: 20px;
}

.svg-users-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/users.svg);
  background-size: cover;
  height: 18px;
  width: 20px;
}

.svg-promo {
  display: inline-block;
  background-image: url(../../mobile/img/menu/giftbox.svg);
  height: 20px;
  width: 20px;
}

.svg-promo-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/promo.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-promo-ft {
  display: inline-block;
  background-image: url(../../mobile/img/menu/giftbox-black.svg?v=2);
  height: 20px;
  width: 20px;
  background-size: 100%;
}

.svg-contact {
  display: inline-block;
  background-image: url(../../mobile/img/menu/call-answer.svg);
  height: 20px;
  width: 20px;
}

.svg-contact-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/contact.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-chat {
  display: inline-block;
  background-image: url(../../mobile/img/menu/speech-bubbles-comment-option.svg);
  height: 20px;
  width: 20px;
}

.svg-chat-ft {
  display: inline-block;
  background-image: url(../../mobile/img/menu/speech-bubbles-comment-option-black.svg?v=2);
  height: 20px;
  width: 20px;
  background-size: 100%;
}

.svg-chat-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/chat.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-reg {
  display: inline-block;
  background-image: url(../../mobile/img/menu/edit.svg);
  height: 20px;
  width: 20px;
}

.svg-reg-ft {
  display: inline-block;
  background-image: url(../../mobile/img/menu/edit-black.svg?v=2);
  height: 20px;
  width: 20px;
  background-size: 100%;
}

.svg-depo {
  display: inline-block;
  background-image: url(../../mobile/img/menu/deposit.svg);
  height: 20px;
  width: 20px;
}

.svg-depo-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/depo.svg);
  background-size: cover;
  height: 19px;
  width: 20px;
}

.svg-depo-ft {
  display: inline-block;
  background-image: url(../../mobile/img/menu/deposit-black.svg);
  height: 20px;
  width: 20px;
  background-size: 100%;
}

.svg-tf {
  display: inline-block;
  background-image: url(../../mobile/img/menu/cash.svg);
  height: 20px;
  width: 20px;
}

.svg-wd {
  display: inline-block;
  background-image: url(../../mobile/img/menu/cash.svg);
  height: 20px;
  width: 20px;
}

.svg-wd-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/wd.svg);
  background-size: cover;
  height: 19px;
  width: 20px;
}

.svg-password {
  display: inline-block;
  background-image: url(../../mobile/img/menu/lock.svg);
  height: 20px;
  width: 20px;
}

.svg-password-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/lock.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-profile-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/profile.svg?v=1);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-download-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/download.svg);
  background-size: cover;
  height: 19px;
  width: 20px;
}

.svg-history {
  display: inline-block;
  background-image: url(../../mobile/img/menu/history.svg);
  height: 20px;
  width: 20px;
}

.svg-history-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/trans-history.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-memo {
  display: inline-block;
  background-image: url(../../mobile/img/menu/envelope.svg);
  height: 20px;
  width: 20px;
}

.svg-memo-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/envelope.svg);
  background-size: cover;
  height: 18px;
  width: 20px;
}

.svg-bell-gold {
  display: inline-block;
  background-image: url(../../mobile/img/menu/gold/bell.svg);
  background-size: cover;
  height: 20px;
  width: 20px;
}

.svg-tfc {
  display: inline-block;
  background-image: url(../../mobile/img/menu/transfer-wallet.svg);
  height: 20px;
  width: 20px;
}

.svg-pragmatic {
  display: inline-block;
  background-image: url(../../mobile/img/provider/Pragmaticplay.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 32px;
}

.svg-ttg {
  display: inline-block;
  background-image: url(../../mobile/img/provider/logo-ttg.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 32px;
}

.svg-spade {
  display: inline-block;
  background-image: url(../../mobile/img/provider/spadegaming.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 32px;
}

.svg-redtiger {
  display: inline-block;
  background-image: url(../../mobile/img/provider/redtiger.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 32px;
}

.svg-gameplay {
  display: inline-block;
  background-image: url(../../mobile/img/provider/gameplay.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 32px;
}

.svg-microgaming {
  display: inline-block;
  background-image: url(../../mobile/img/provider/microgaming.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
}

.svg-hbn {
  display: inline-block;
  background-image: url(../../mobile/img/provider/habanero.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
}

.svg-gg {
  display: inline-block;
  background-image: url(../../mobile/img/provider/gg.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
}

.svg-cq9 {
  display: inline-block;
  background-image: url(../../mobile/img/provider/cq9.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 37px;
  width: 41px;
  background-size: 43px;
}

.svg-playstar {
  display: inline-block;
  background-image: url(../../mobile/img/provider/playstar.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
}

.svg-sa {
  display: inline-block;
  background-image: url(../../mobile/img/provider/sa.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
}

.svg-isb {
  display: inline-block;
  background-image: url(../../mobile/img/provider/isoftbet.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 15px;
}

.svg-hot {
  display: block;
  background-image: url(../../mobile/img/provider/hot.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.svg-new {
  display: block;
  background-image: url(../../mobile/img/provider/new.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.svg-lock {
  display: inline-block;
  background: url(../../img/icon/lock.svg) center no-repeat;
  background-size: 20px;
}

.svg-close-o {
  background: url(../../img/icon/close-o.svg) center no-repeat;
  background-size: 28px;
  opacity: unset;
}

.svg-android-black {
  background: url(../../mobile/img/icon/android-black.svg) center no-repeat;
  background-size: 22px;
  display: inline-block;
  height: 22px;
  width: 22px;
}

.svg-android-head {
  display: inline-block;
  background: url(../../mobile/img/android-head.svg) center no-repeat;
  background-size: cover;
  height: 22px;
  width: 22px;
}

.svg-android-font {
  display: block;
  background: url(../../mobile/img/android-font.svg) center no-repeat;
  background-size: cover;
  height: 30px;
  width: 180px;
}

/*-------------------------------*/
/*        Referral Page          */
/*-------------------------------*/

#referral-landing {
  background-color: black;
  color: white;
}

#referral-landing .container {
  text-align: center;
}

#referral-landing .image-wrapper img {
  width: 100%;
}

#referral-landing h4,
#referral-landing h5 {
  background: #6db3f2;
  background: -moz-linear-gradient(
    top,
    #3fd1f8 10%,
    #21bfef 35%,
    #0e88d3 51%,
    #0595c9 100%
  );
  background: -webkit-linear-gradient(
    top,
    #3fd1f8 10%,
    #21bfef 35%,
    #0e88d3 51%,
    #0595c9 100%
  );
  background: linear-gradient(
    to bottom,
    #3fd1f8 10%,
    #21bfef 35%,
    #0e88d3 51%,
    #0595c9 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6db3f2', endColorstr='#1e69de', GradientType=0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#referral-landing .circle {
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  border: 2px solid #0083c2;
  color: #0083c2;
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

#referral-landing .circle-title {
  color: #0083c1;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  width: 50%;
}

#referral-landing .title-wrapper {
  width: 100%;
}

#referral-landing #ref-instruction .col-xs-4 {
  padding-right: 0px;
  text-align: center;
}

#referral-landing #ref-instruction .col-xs-8 {
  padding-left: 0px;
  text-align: left;
}

#referral-landing .circle-icon {
  color: white;
}

#referral-landing .circle-line {
  border-bottom: 1px solid #0083c1;
}

#referral-landing .circle-connector {
  display: inline-block;
  border: 1px solid #0083c2;
  height: 100%;
  /* margin-left: 70%; */
}

#referral-landing .seperator {
  border-top: 1px solid #727272;
  width: 100%;
  padding-bottom: 25px;
  padding-right: 0px;
  padding-left: 0px;
}

#referral-landing .referral-body-text {
  font-size: 12px;
  color: #c3c3c3;
  padding-bottom: 15px;
}

#referral-landing .mobile-rounded-box {
  width: 100%;
  height: 360px;
  border-radius: 3%;
  background-color: #1a1a1a;
  border-top: 60px solid #727272;
  border-left: 1px solid #727272;
  border-right: 1px solid #727272;
  border-bottom: 1px solid #727272;
  margin-bottom: 30px;
  position: relative;
}

#referral-landing .mobile-rounded-box-top {
  width: 100%;
  height: 360px;
  margin-bottom: 30px;
  padding-right: 4%;
  padding-left: 4%;
}

#referral-landing .mobile-rounded-box-top-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
}

#referral-landing .rounded-box-wrapper {
  margin-right: 12%;
  margin-left: 12%;
  position: relative;
}

#referral-landing .mobile-rounded-box-title {
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  font-weight: bold;
}

#referral-landing .mobile-rounded-box-content {
  height: 248px;
  font-size: 14px;
}

#referral-landing .rounded-box-percentage-table,
.rounded-box-table {
  width: 100%;
}

#referral-landing .rounded-box-percentage-table tr {
  border-bottom: 1px solid white;
}

#referral-landing .rounded-box-percentage-table td {
  text-align: left;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

#referral-landing .rounded-box-table td {
  text-align: left;
  padding-top: 0.5%;
  padding-bottom: 0.5%;
}

.referral-container {
  text-align: center;
  background-color: #18171d;
  color: white;
  height: 100vh;
}

.referral-container .rounded-box {
  border-radius: 8px;
  width: 100%;
}

.referral-container .bottom-box {
  height: 150px;
  background-color: #1a1a1a;
}

.referral-container .top-box {
  background-color: black;
  position: absolute;
  top: 0px;
  height: 75%;
}

.referral-container .rounded-box-wrapper {
  position: relative;
  width: 100%;
}

.referral-container .ref-input {
  background: white;
  color: black;
  width: 85%;
  border-radius: 5px;
  border: 0px;
  height: 28px;
  padding: 8px;
}

.referral-container .btn-copy {
  width: 25%;
  margin-top: 10px;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.referral-container .icon-wrapper {
  font-size: 28px;
  margin-top: 8px;
}

.referral-container .information-box-bottom {
  height: 300px;
  background-color: #1a1a1a;
  margin-top: 20px;
}

.referral-container .tablink {
  width: 100%;
  color: white;
  padding-bottom: 10px;
  padding-top: 10px;
  cursor: pointer;
}

.referral-container .tablink-wrapper {
  padding-right: 0px;
  padding-left: 0px;
  border-right: 1px solid white;
}

.referral-container .selected {
  background-color: black;
}

.referral-container .tablink-target {
  width: 100%;
  height: 300px;
  background-color: black;
  padding: 10px;
  overflow-y: auto;
}

.referral-container .referral-report-table {
  width: 100%;
  border: 1px solid white;
}

.referral-container .referral-report-table tr,
.referral-container .referral-report-table th,
.referral-container .referral-report-table td {
  border: 1px solid white;
  padding: 0.5%;
}

.referral-container .referral-report-table th {
  text-align: center;
}

.referral-container .referral-downline-table {
  width: 100%;
}

.referral-container .referral-downline-table th {
  padding-top: 1%;
  padding-bottom: 1%;
  background-color: white;
  color: black;
  text-align: center;
}

.referral-container .referral-downline-table td {
  padding-left: 1%;
  padding-top: 0.5%;
  padding-bottom: 0.5%;
  padding-right: 1%;
  text-align: center;
}
/*-------------------------------*/
/*        Dashboard Page          */
/*-------------------------------*/

.game-box-slots-small {
  background: rgba(222, 199, 71, 1);
  background: -moz-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(222, 199, 71, 1)),
    color-stop(18%, rgba(255, 243, 114, 1)),
    color-stop(30%, rgba(240, 225, 88, 1)),
    color-stop(54%, rgba(169, 141, 29, 1)),
    color-stop(95%, rgba(222, 199, 71, 1)),
    color-stop(100%, rgba(222, 199, 71, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(222, 199, 71, 1) 0%,
    rgba(255, 243, 114, 1) 18%,
    rgba(240, 225, 88, 1) 30%,
    rgba(169, 141, 29, 1) 54%,
    rgba(222, 199, 71, 1) 95%,
    rgba(222, 199, 71, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dec747', endColorstr='#dec747', GradientType=0);
  /*border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;*/
  margin: 2px;
  color: #fff;
  font-size: 12px;
}

/* .game-box-slots-small .responsive-image{
  height: 11vh;
} */

.game-title-slots-full {
  max-width: 100%;
  padding: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-align: center;
  color: #000;
}

.refresh {
  position: absolute;
  /* margin: -2px -17px; */
  /* font-size: 15px; */
}

.badge-game {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
}

.badge-game i {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 19px;
  width: 20px;
  background-size: 14px;
}

.badge-game.ttg {
  background: #d61e01;
}

.badge-game.ttg i {
  background-image: url(/assets/img/icon/provider/logo-ttg.svg);
}

.badge-game.pragmatic {
}

.badge-game.pragmatic i {
  background-image: url(/assets/img/icon/provider/pragmaticplay.png);
  height: 22px;
  width: 22px;
  background-size: 35px;
}

.badge-game.habanero {
}

.badge-game.habanero i {
  background-image: url(/assets/img/icon/provider/habanero.png);
}

.badge-game.redtiger {
  background: #70080d;
}

.badge-game.redtiger i {
  background-image: url(/assets/img/icon/provider/redtiger.svg);
}

.badge-game.spadegaming {
  background: #bf9a62;
}

.badge-game.spadegaming i {
  background-image: url(/assets/img/icon/provider/spadegaming.svg);
}

.badge-game.microgaming {
}

.badge-game.microgaming i {
  background-image: url(/assets/img/icon/provider/microgaming.png);
  background-size: 19px;
}

.badge-game.gameplay {
  background: #a8c52c;
}

.badge-game.gameplay i {
  background-image: url(/assets/img/icon/provider/gameplay.svg);
}

.badge-game.isoftbet {
}

.badge-game.isoftbet i {
  background-image: url(/assets/img/icon/provider/isoftbet.png);
  background-size: 14px;
}

.badge-game.sa {
  background: #bf9a5d;
}

.badge-game.sa i {
  background-image: url(/assets/img/icon/provider/sa.svg);
}

.badge-game.fiveg i {
  background-image: url(/assets/img/icon/provider/5G_Badge_Game.jpg);
}

.badge-game.slotmania i {
  background-image: url(/assets/img/icon/provider/Slotmania_Badge_Game.jpg);
}

.badge-game.jili i {
  background-image: url(/assets/img/icon/provider/Jili_Badge_Game.jpg);
}

.badge-game.sns i {
  background-image: url(/assets/img/icon/provider/Streamnspin_Badge_Game.jpg);
}

.badge-game.bigpot i {
  background-image: url(/assets/img/icon/provider/Bigpot_Badge_Game.jpg);
}
.badge-game.pk i {
  background-image: url(/assets/img/icon/provider/Penguin_Badge_Game.jpg) !important;
  background-size: 20px !important;
  height: 20px;
  width: 20px;
}
.badge-game.pp98 i {
  background-image: url(/assets/img/icon/provider/PP98rtp_Badge_Game.jpg) !important;
  background-size: 20px !important;
  height: 20px;
  width: 20px;
}

/*--------------------------*/
/*         Register         */
/*--------------------------*/

.alert.alert-danger {
  margin-top: 15px;
  margin-right: 20px;
}

.breadcrumb {
  padding-left: 3vw;
}

.breadcrumb li,
.breadcrumb li > a {
  font: 15px "montserrat";
}

.forms .reg_content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.forms .reg_content .alert {
  width: 100%;
  margin: 15px;
}

.forms .title-page {
  font: bold 16px Arial;
  text-decoration: underline;
  color: #15c586;
  text-transform: capitalize;
}

.forms .frm-group {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.forms .frm-group.active .input-rounded {
  border-radius: 0 50px 50px 0;
}

.forms .frm-group .input-rounded {
  padding: 8px 0 7px 15px;
  border-radius: 50px;
  border: none;
  width: 100%;
  height: 84%;
  font: 16px Arial;
  margin-bottom: 7px;
}

.forms .frm-group .input-rounded::placeholder {
  text-transform: capitalize;
}

.forms .frm-group .help-block {
  margin-left: 5%;
}

.forms .frm-group .group-prepend {
  background-color: #f1e267;
  height: 84%;
  border-radius: 50px 0 0 50px;
  padding-left: 9px;
  padding-right: 9px;
  font: 13px Arial;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: bold;
  text-transform: capitalize;
}
.forms .frm-group .group-prepend:not(.number) {
  width: 35%;
}

.forms .frm-group .group-prepend + input {
  padding: 8px 0 8px 11px;
}

.forms .frm-group .group-prepend.validation {
  padding: 0;
  overflow: hidden;
  background: #e1e6e8;
}

.forms .frm-group .group-prepend.validation img {
  width: 85%;
}

.separator {
  padding: 11px 0;
  width: 100%;
}

.acceptable label {
  height: 35px;
}

.acceptable input[type="checkbox"]:not(old) {
  width: 2em;
  margin: 0;
  padding: 0;
  font-size: 1em;
  opacity: 0;
}

.acceptable input[type="checkbox"]:not(old) + label > span:first-child {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin: 0.35em 0.5em 0.25em 0.25em;
  background-color: #fff;
}

.acceptable input[type="checkbox"]:not(old) + label > span:last-child {
  position: absolute;
}

.acceptable
  input[type="checkbox"]:not(old):checked
  + label
  > span:first-child::after {
  content: "✓";
  color: #000;
  padding: 0;
  margin-top: -3px;
  margin-left: 1px;
}

.btn-submit {
  margin-top: 20px;
  width: 100%;
  font: 20px Arial;
  padding: 5px 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  border-radius: 50px !important;
  border: 3px solid #36ad62;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(
    0deg,
    rgba(36, 124, 227, 1) 0%,
    rgba(70, 152, 232, 1) 50%,
    rgba(70, 152, 232, 1) 55%,
    rgba(36, 124, 227, 1) 100%
  );
}

.divider {
  display: none;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  font-size: 16px;
}

/* Specifically reset passwords with page=reset-pass attribute */

input[type="text"][page="reset-pass"],
input[type="number"][page="reset-pass"],
input[type="password"][page="reset-pass"] {
  border: 1px solid #c08119;
  color: #1b1b1b;
  background-color: #ffffff;
  border-radius: 8px !important;
}

.form-control[page="reset-pass"] {
  margin-bottom: 10px;
}

.btn-success[page="reset-pass"] {
  border-radius: 5px;
  border: 1px solid #28a745;
}

#captcha-resetpass {
  border-radius: 8px;
  width: 155px;
  border: 1px solid #c08119;
  padding: 0;
  margin-left: 3px;
}

#re-captcha-resetpass {
  padding: 5px;
  border-radius: 20px;
  background-color: white;
  margin-left: 5px;
  height: 36px;
}

/* Wrapper contract */

.wrapper-type1 {
  background: #000;
  display: flex;
  justify-content: center;
  padding: 10px 10px;
}

.wrapper-type1 a {
  height: 45px;
  padding-top: 5px;
  font-size: 24px;
  border-radius: 4px;
  margin-top: 10px;
}

.wrapper-modal {
  border: unset;
  border-radius: 4px;
  overflow: hidden;
}

.wrapper-center {
  padding-left: 0px;
  padding-right: 0px;
}

.wrapper-center img {
  width: 100%;
}

.card-download {
  height: 140px;
  width: 100%;
  border: 2px solid #e3d054;
  margin: 4px 0px;
  overflow: hidden;
  background-color: #101010;
}

.card-download .on-right {
  display: inline;
  position: absolute;
  text-align: center;
  margin: auto;
  padding-top: 13px;
  right: 25px;
}

.wrapper-round {
  padding: 7px 12px;
  border-radius: 4px;
}

.app-container {
  display: none;
  height: 84px;
  z-index: 9999;
  position: relative;
}

.navbar-m-wrapper {
  height: 100%;
  position: fixed;
  z-index: 102;
  left: 0;
}

/* Button style contract */

.btn-mx-w100 {
  margin: 5px;
  width: 100%;
}

.btn.ff-bebaskai-21 {
  font-family: "bebasKai";
  font-size: 21px;
  padding: 4px 18px;
}

.btn-type1-secondary {
  font-family: "bebasKai";
  font-size: 28px;
  padding: 1px 18px;
  border-radius: 4px;
}

.btn-type1-primary {
  font-family: "bebasKai";
  font-size: 28px;
  padding: 0px 18px;
  border-radius: 4px;
  border: 1px solid #fef270;
}

.btn-primary-flat {
  width: 100%;
  background-color: #e3d054;
  font-size: 13px;
  height: 46px;
  margin: 8px 0px;
}

.btn-secondary-mini {
  padding: 3px 12px;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #007ccb;
  color: white;
  background: rgb(1, 59, 185);
  background: -moz-linear-gradient(
    0deg,
    rgba(1, 59, 185, 1) 0%,
    rgba(7, 153, 215, 1) 55%,
    rgba(0, 84, 138, 1) 94%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(1, 59, 185, 1) 0%,
    rgba(7, 153, 215, 1) 55%,
    rgba(0, 84, 138, 1) 94%
  );
  background: linear-gradient(
    0deg,
    rgba(1, 59, 185, 1) 0%,
    rgba(7, 153, 215, 1) 55%,
    rgba(0, 84, 138, 1) 94%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#013bb9",endColorstr="#00548a",GradientType=1);
}

/* Input style contract */

.input-type1 {
  background-color: #fff;
  color: #000;
  border-radius: 4px;
  height: 44px;
}

.input-type1:focus {
  background-color: #fff;
  color: #000;
}

.input-type2 {
  border-radius: 4px !important;
  border: 1px solid #dcc449;
}

/* Color contract */
.bg-primary-black {
  background-color: #000 !important;
}

.bg-secondary-black {
  background-color: #26272c;
}

.bg-primary-grey {
  background-color: #313131;
}

/* Text style contract */

.text-center {
  text-align: center;
}

.text-c-main {
  color: #fff !important;
  font-size: 16px !important;
}

.title-gold {
  color: #ffed76;
  text-transform: uppercase;
}

.title-gold a {
  color: #ffed76 !important;
}

.title-dark-grey {
  color: #939391;
  text-transform: uppercase;
}

.text-c-18 {
  color: #fff !important;
  font-size: 18px !important;
}

.text-c-i-white {
  font-style: italic;
  color: #fff !important;
  font-size: 15px !important;
}

.text-c-primary {
  font-family: arial;
  font-size: 16px;
  color: #f1d74d;
}

.text-c-desc {
  font-family: arial;
  font-size: 11px;
  color: #ffffff;
}

.text-poppins {
  font-size: 18px;
  font-family: "Poppins";
}

.text-title-sm {
  font-size: 9px;
  text-align: center;
}

.text-title-md {
  font-size: 11px;
  text-align: center;
}

.text-aller {
  font-family: "Aller Regular" !important;
}

.text-opensans-sb {
  font-family: "OpenSans Semibold";
}

/* Position Contract */

.center-flex {
  width: 100%;
  display: flex;
  justify-content: center;
}

.total-wallet-header {
  margin-top: -4px;
  margin-left: -2px;
}

/* Icon stylush contract */

.icon-mod-login {
  margin-top: -40px !important;
  width: 40px !important;
  height: 34px !important;
}

.icon-landing-android-head {
  position: relative;
  bottom: -15px;
  height: 122px;
  width: 130px;
}

/* Sidebar with dot */

ul.sidebar-dot li.item-sidebar-dot a::before {
  content: " ";
  display: block;
  height: 15px;
  width: 15px;
  background-color: #707070;
  border-radius: 15px;
  position: absolute;
  right: 10px;
  top: 12px;
}

ul.sidebar-dot li a.active {
  background: #252525 !important;
  background-color: #252525 !important;
}

ul.sidebar-dot li a.active::before {
  content: " ";
  display: block;
  background: #f5d972;
  height: 15px;
  width: 15px;
  border-radius: 40px;
  position: absolute;
  right: 10px;
  top: 12px;
}

ul.sidebar-dot li.item-sidebar-dot a {
  text-transform: uppercase;
  font-family: "bebasKai";
  font-size: 21px;
  color: #fff;
}

ul.sidebar-dot a {
  font-family: "bebasKai";
}

.item-sidebar-dot {
  margin-left: -2px;
  background-color: #111111;
}

/* sidebar m new */

.sidebar-m {
  height: 100vh;
  padding: 12px 10px 0px;
  color: #dbc344;
  font-size: 12px;
  margin-bottom: 100px;
}

.sidebar-m .list {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  width: 95vw;
  padding: 0;
}

.sidebar-m .list li {
  padding: 10px;
  width: 32.3%;
  height: 4rem;
  display: flex;
  justify-content: center;
  background: #1c2126;
  flex-direction: column;
  border-radius: 5px;
  text-align: left;
}

.sidebar-m .list li:not(.list li:nth-child(3n)) {
  margin-right: 0.3rem;
}

.sidebar-m .list li.smt-5 {
  margin-top: 0.3rem;
}

.sidebar-m .list li a img {
  height: 3vh;
}

.sidebar-m .list li a span {
  display: block;
  padding: 5px 0px 0px 0px;
  font-size: 11px;
}

.sidebar-m.menu .menu-list {
  margin-top: 5px;
  display: grid;
  grid-template-columns: auto auto auto auto;
}

.sidebar-m-header {
  font-size: 14px;
  width: 95vw;
}

.sidebar-m .divider {
  display: block;
  padding: 10px;
}

.sidebar-m .language {
  width: 95vw;
  font-family: "Aller Regular" !important;
}

.sidebar-m .copyrigh-footer {
  color: #ffffff;
  font-family: "Aller Regular" !important;
  font-size: 12px;
  width: 95vw;
}

.sidebar-m .list li a span.badge {
  border-radius: 50%;
  color: white;
  height: 1.25rem;
  width: 1.35rem;
  border: 1px solid rgb(231, 68, 68);
  position: absolute;
  margin-top: -8%;
  margin-left: 9%;
}

.ico-footer-img {
  width: 8vw;
}

.ico-footer-img.w10 {
  width: 10vw;
}

.ico-footer-title {
  display: block;
  padding: 5px 0px 0px 0px;
  font-size: 12px;
  color: #d0bc3d;
  font-family: "Aller Regular" !important;
  text-transform: none;
}

.ico-footer-title.menu {
  position: absolute;
  top: 26px;
  left: -4px;
}

.sidebar-m .list .btn-head-footer.smt-5 {
  background: none;
  font-family: "bebasKai";
}
.sidebar-player-online {
  font-weight: bold !important;
  color: #ffffff !important;
}
.sidebar-player-online img {
  width: 20px;
  height: 20px;
}
.sidebar-player-online span {
  color: #0eff02;
}

.btn-footer {
  width: 108%;
  border-radius: 6px;
  font-size: 18px;
}

.btn-footer.join {
  margin: -8px;
}

/* LOADER STYLE */

/* shimmer */
.w80 {
  width: 80%;
}

.card-loader {
  padding: 30px 40px;
  margin: 35px auto;
}

.card-loader.br,
.card-loader .br {
  border-radius: 8px;
}

.wrapper-loader {
  width: 0px;
  animation: fullView 0.5s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.line-loader {
  height: 10px;
  background: #777;
  margin-top: 20px;
}

@keyframes fullView {
  100% {
    width: 100%;
  }
}

.animate-loader {
  animation: shimmer 3s infinite linear;
  background: linear-gradient(to right, #a0a0a0 4%, #616161 25%, #a0a0a0 36%);
  background-size: 1000px 100%;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Content footer */

ul.static-menu {
  padding: 2px 12px 12px 12px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #252525;
  font-size: 14px;
}

ul.static-menu li {
  padding: 5px 0px;
  border-bottom: 1px solid #e3d054;
}

ul.static-menu li a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.payment-method .bank-list {
  margin-top: 5px;
  display: grid;
  grid-template-columns: auto auto auto auto;
}

.payment-method ul.bank-list li img {
  width: 70px;
  height: auto;
  margin: 6px;
}

/* .payment-method .bank-list .mandiri {
  margin-left: 13px;
} */

.payment-method .bank-list .bri {
  margin-top: 5px;
}

.payment-method .bank-list .bni img {
  width: 65px;
  margin: 10px;
}

.payment-method .bank-list .cimb {
  position: relative;
  bottom: -10px;
}

.payment-method .bank-list .dana {
  position: relative;
  top: -2px;
  grid-column-start: 2;
}

.payment-method .bank-list .voucher88 {
  position: relative;
  bottom: -7px;
}

.payment-method .bank-list .maybank {
  position: relative;
  bottom: -6px;
}

.payment-method .bank-list .panin {
  position: relative;
  bottom: -6px;
}

.footer-extra {
  margin-top: 10px;
  display: grid;
  grid-template-columns: auto auto;
}

.footer-extra .col-footer {
  margin-right: 12px;
  text-align: center;
}

.footer-extra .col-footer img {
  width: 115px;
  margin: 10px 0px;
}

.footer-content {
  background-color: #0f151b;
  /* margin-top: 30px; */
  margin-bottom: 25px;
  padding-bottom: 100px;
}

.footer-content .copyright {
  text-transform: uppercase;
  font-size: 8px;
}

.footer-extra .col-footer .license-img {
  width: 75px;
}

/* Merge style list provider in box */

.--container-prelese {
  padding: 4px 9px !important;
}

.provider-container {
  padding: 9px;
  background-color: #000;
}

.provider-list {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  grid-gap: 1vw;
}

.provider-item {
  display: inline-block;
  /* height: 60px; */
  font-size: 5vw;
  padding: 8px;
  border-radius: 8px;
  background-color: #3d3d3d;
  overflow: hidden;
}

.provider-logo {
  width: 30px;
  height: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: -6px;
    margin-top: -3px;
    padding-top: 0px; */
}

.provider-name {
  font-size: 5px;
  text-align: center;
  margin: 0;
}

.slot-category a {
  color: white;
}

/* Merge style list provider in box */

/* Style badge label for icon event */

.badge-label {
  position: absolute;
  height: 20px;
  border-radius: 0;
  left: 0;
  top: 4px;
  z-index: 1;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
}

.badge-label.news i {
  background-image: url(../../img/icon/label/news.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 20px;
  display: inline-block;
}

.badge-label.popular i {
  background-image: url(../../img/icon/label/popular.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 20px;
  display: inline-block;
}

.badge-label.jackpot i {
  background-image: url(../../img/icon/label/jackpot.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 20px;
  display: inline-block;
}

.badge-label.tournament i {
  background-image: url(../../img/icon/label/tournament1.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 20px;
  display: inline-block;
}

/* Additional for default */
.game-one-half-slot {
  float: left;
  width: 33.33%;
}

.nw-m-dialog-titlebar-close {
  position: absolute;
  right: -9px;
  font-size: 0.75rem !important;
  top: -10px;
  background: #b73333;
  border-radius: 50%;
  padding: 3px 7px;
  color: #fff !important;
}

/* Home page */

.home-interface--padding {
  padding: 0 4px;
}

.home-interface__game {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 2px;
  padding-top: 2.5px;
}

.home-interface__game__item {
  width: 100%;
  max-width: 50%;
  padding: 2px !important;
  border: 1px solid transparent;
  position: relative;
}

.home-interface__game__item__link {
  color: #ffffff;
}

.home-interface__game__item__img {
  height: fit-content;
}

.home-interface__game__item__img img {
  width: 100%;
}

.home-interface__game__item__title {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  background-color: #001524e0;
  border-bottom: 3px solid transparent;
  font-family: "Aller Regular" !important;
  padding: 1px 0px;
}

.home-menu__ico {
  background-repeat: no-repeat !important;
  width: 30px;
  height: 22px;
  display: inline-block;
  position: relative;
  top: 4px;
}

.home-menu__ico--slots {
  background: url(/assets/img/home/icon/slots.webp);
  background-size: 29px !important;
  background-position: 0px 3px;
}

.home-menu__ico--poker {
  background: url(/assets/img/home/icon/poker.webp);
  background-size: 17px !important;
  background-position: 9px 1px;
}

.home-menu__ico--casino {
  background: url(/assets/img/home/icon/casino.webp);
  background-size: 14px !important;
  background-position: 10px 2px;
}

.home-menu__ico--sportsbook {
  background: url(/assets/img/home/icon/sportsbook.webp);
  background-size: 17px !important;
  background-position: 10px 3px;
}

.home-menu__ico--esports {
  background: url(/assets/img/home/icon/icon-esport.webp);
  background-size: 17px !important;
  background-position: 10px 3px;
}

.home-interface__banner {
  padding: 2px;
}

.home-interface__banner__link > img {
  width: 100%;
  max-width: 100%;
}

.home-interface__thumbnail {
  display: flex;
  width: 100%;
  padding: 5px 2px;
}

.home-interface__thumbnail__item:first-child {
  padding-right: 2.5px;
}
.home-interface__thumbnail__item:last-child {
  padding-left: 2.5px;
}

.home-interface__thumbnail__item {
  width: 50%;
}

.home-interface__thumbnail__item__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.home-interface__img-thumbnail {
  max-width: 100%;
  width: 100%;
}

.home-interface__mobile-app {
  padding: 2px;
}

.footer-extra-new {
  padding-top: 10px;
}

/* .footer-extra-new .col-footer {
  margin-right: 12px;
  text-align: center;
} */
