/* ========================================================================== */
/*                                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;
}

/*-------------------------------*/
/*         General Style         */
/*-------------------------------*/
html, body {
  margin: 0;
  padding: 0;
}

body {
  /*position: relative;
  overflow-x: hidden;*/
  height: auto;
  font-size: 12px;
  font-family: 'montserrat',Tahoma,"Microsoft Yahei",Arial,Helvetica;
  background-color: #000;
  color: #000;
  -webkit-overflow-scrolling: touch;
}

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: #00a0ba;
}

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;
}

#sidebar-wrapper {
  z-index: 1000;
  left: 315px;
  width: 0;
  height: 100%;
  margin-left: -315px;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(to bottom,#061348 0,#0f1f5c 100%);
  /* background: linear-gradient(to bottom,#45515f 0,#2e3641 100%); */
  border-color: transparent;
  -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-transform: translate3d(272px, 0px, 0px);
  -ms-transform: translate3d(272px, 0px, 0px);
  transform: translate3d(272px, 0px, 0px);*/
}

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

#wrapper.toggled #sidebar-wrapper {
  width: 312px;
}

#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;
  background-color: #000;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -312px;
  -webkit-overflow-scrolling: touch;
}

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

/*-------------------------------*/
/*         Hamburger Menu        */
/*-------------------------------*/
.hamburger {
  position: fixed;
  top: 22px;
  z-index: 9999;
  display: block;
  width: 25px;
  height: 20px;
  margin-left: 10px;
  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 .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .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: #fff;
}
.hamburger.is-closed .hamb-top {
  top: 2px;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -1px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 2px;
  -webkit-transition: all .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: #fff;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.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 .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .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 .2s ease-in;
    -moz-transition:  width .2s ease-in;
     -ms-transition:  width .2s ease-in;
          transition: width .2s ease-in;

}

.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before,
.sidebar-nav li a.active {
  background: linear-gradient(to bottom,#061348 0,#0f1f5c 100%);
  /* background: linear-gradient(to bottom,#45515f 0,#2e3641 100%); */
  width: 100%;
  -webkit-transition: width .2s ease-in;
    -moz-transition:  width .2s ease-in;
     -ms-transition:  width .2s ease-in;
          transition: width .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 #00a0ba;
}

.lang li {
  width: 36px;
  height: 36px;
  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;
  height: 30px;
  width: 30px;
}

.lang-en {
  background: url(../img/lang/united-kingdom.svg);
}

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

.lang-vi {
  background: url(../img/lang/vietnam.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 {
  background-position: 0 0;
}

.ico-reg {
  background-position: -25px 0;
}

.ico-login {
  background-position: -47px 0;
}

.ico-depo {
  background-position: -67px 0;
}

.ico-tf {
  background-position: -87px 0;
}

.ico-wd {
  background-position: -108px 0;
}

.ico-sport {
  background-position: -129px 0;
}

.ico-casino {
  background-position: -152px 0;
}

.ico-multiplyr {
  background-position: -173px 0;
}

.ico-slot {
  background-position: -194px 0;
}

.ico-promo {
  background-position: -218px 0;
}

.ico-contact {
  background-position: -240px 0;
}

.ico-chat {
  background-position: -264px 0;
}

.ico-logout {
  background-position: -285px 0;
}

.ico-password {
  background-position: -307px 0;
}

.ico-memo {
  background-position: -331px 0;
}

.ico-forget {
  background-position: -354px 0;
}

.ico-history {
  background-position: -374px 0;
}

.ico-toto {
  background-position:-397px 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;
}

/*-------------------------------*/
/*            Header             */
/*-------------------------------*/
.header {
  /* height: 50px; */
  height: auto;
  /* background: linear-gradient(to bottom,#061348 0,#0f1f5c 100%); */
  background:  #0f1f5c;
  background: linear-gradient(to bottom,#061348 0,#0f1f5c 100%);
  width: 100%;
  position: fixed;
  z-index: 9997;
  /* border:1px solid #152971; */
}

.header-clear {
  height: 62px;
}
.center-block{
  margin: 0 auto;
  display: block;
}

.navbar-brand {
    /* height: 30px; */
    margin: 8px 0 2px;
    padding: 0;
    /* position: absolute; */
    /* left: 12%; */
    /* margin-left: -58px !important; */
    display: inline-block;
    float: none;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  margin: 0 auto;
}

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

.user-info {
  padding: 8px 10px;
  color: #fff;
}

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

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

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

.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: 13px 5px;
}

/*-------------------------------*/
/*          Breadcrumb           */
/*-------------------------------*/
.breadcrumb {
  background-color: #dddddd;
  border-radius: 0;
  padding: 0 5px;
  color: #1a1a1a;
  font-size: 12px;
  margin-bottom: 0;
  /*height: 38px;*/
  width: 100%;
}

.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: 50%;*/
  overflow: hidden;
}

.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,.7);
  position: absolute;
  width: 298px;
  height: 95px;
  padding-top: 13%;
  /*display: none;*/
  opacity: 0;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

.club-play-btn-hover {
  /*display: block !important;*/
  opacity: 1;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .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;
  /*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: linear-gradient(to bottom,#061348 0,#0f1f5c 100%); */
  /*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: #333333;
  margin: 5px;
  color: #fff;
  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-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 .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;
}

/*-------------------------------*/
/*            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: #0092b1 none repeat scroll 0 0;
  font-size: 12px;
  /*height: 40px;*/
  line-height: 2.3em;
  padding: 0 5px;
}

.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;
}

.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;
  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;
}

/*-------------------------------*/
/*         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: .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: 38px;
  margin: 0;
  padding-top: 10px;
  text-align: center;
  color: #fff;
}

.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,.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.35),0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35),0 1px 1px rgba(0,0,0,.075);
}

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

.btn-primary {
  color: #fff !important;
  background-color: #0073a8;
  border: none;
}

.btn-success {
  color: #fff;
  background-color: #4fa74f;
  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(top, rgba(244,244,203,1) 0%, rgba(243,211,31,1) 100%);
  background: -webkit-linear-gradient(top, rgba(244,244,203,1) 0%,rgba(243,211,31,1) 100%);
  background: linear-gradient(to bottom, rgba(244,244,203,1) 0%,rgba(243,211,31,1) 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;
}

/*-------------------------------*/
/*            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,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .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: #000;
}

.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 {
  padding-top: 15%;
  z-index: 999999;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999998;
  background-color: #000;
}

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

.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: #00a0ba;
}

.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%;
}

/*-------------------------------*/
/*             Tabs              */
/*-------------------------------*/
.tabs .nav-tabs, .nav-tabs {
  background: #0092b1;
  border-bottom: 1px solid #004655;
  border-radius: 2px 2px 0 0;
}

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

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #fff;
  cursor: default;
  background-color: #004655;
  border: 1px solid #004655;
  border-bottom-color: transparent;
  border-radius: 2px 2px 0 0;
}

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

.tabs .panel-default>.panel-heading {
  color: #ffffff;
  background: linear-gradient(to bottom,#061348 0,#0f1f5c 100%);
  border:1px solid #152971;
  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: linear-gradient(to bottom,#061348 0,#0f1f5c 100%);
  border:1px solid #152971;
}

.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,.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,.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: 11;
    padding-bottom: 1px;
    /* border: 1px solid #000; */
    /* background: linear-gradient(to bottom, #29323c, #485563); */
    background: linear-gradient(to bottom,#0f1f5c 0,#061348 100%);
    /* border: 1px solid #152971; */
}
.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: 25%;
}

.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: 11px;
  display: block;
  margin: 0;
  border-right-width: 0;
}

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

.quick-footer-navbar a {
  color: #ddd;
  background-color: transparent;
  border-color: #333;
}

.quick-footer-navbar a:active {
  color:#ffffff;
  /* background-color:#0092b1; */
  background: url(http://localhost:8000/images/nav_bg_hover.png) no-repeat;
  background-position: bottom;
}
.quick-footer-navbar a:hover {
  color:#ffffff;
  /* background-color:#0092b1; */
  background: url(http://localhost:8000/images/nav_bg_hover.png) no-repeat;
}

.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-lg {
  margin-top: 4em;
}

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

.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;
}

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

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

/*-------------------------------*/
/*         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,.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,.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(.9); }
  100%  { transform: scale(1); }
}

.user-rank > img {
  width: 30px;
  height: 30px;
  -webkit-animation: bounce .8s linear infinite;
  -moz-animation:    bounce .8s linear infinite;
  -o-animation:      bounce .8s linear infinite;
  animation:         bounce .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: .7;
  opacity: .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 .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .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 */
.slots-game-menu {
  width: 100%;
  display: flex;
  list-style: none;
  padding-left: 0;
  text-transform: uppercase;
  position: fixed;
}

.slots-game-menu .game-link {
  /*width: 20%;*/
  /* width: 33.33%; */
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(15,20,25,.95);
  flex-direction: column;
  box-shadow: inset -1px -1px 0 0 rgba(101,118,140,.3);
  font-size: 13px;
  color: rgba(255,255,255,.87);
  padding-top: 2px;
}

.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.all-games-link a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  /* padding-top: 2px; */
  padding-left: 3px;
  color: #fff;
}

.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,.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,.3);
  position: relative;
  z-index: 99;
  cursor: pointer;
}

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

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

.overlay-bg.open {
  background-color: rgba(29,37,49,.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-multiplyr {
  display: inline-block;
  background-image: url(../../mobile/img/menu/symbol-of-spades.svg);
  height: 20px;
  width: 20px;
}

.svg-slot {
  display: inline-block;
  background-image: url(../../mobile/img/menu/coins.svg);
  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-promo {
  display: inline-block;
  background-image: url(../../mobile/img/menu/giftbox.svg);
  height: 20px;
  width: 20px;
}

.svg-contact {
  display: inline-block;
  background-image: url(../../mobile/img/menu/call-answer.svg);
  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-reg {
   display: inline-block;
   background-image: url(../../mobile/img/menu/edit.svg);
   height: 20px;
   width: 20px;
 }

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

.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-password {
  display: inline-block;
  background-image: url(../../mobile/img/menu/lock.svg);
  height: 20px;
  width: 20px;
}

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

.svg-memo {
  display: inline-block;
  background-image: url(../../mobile/img/menu/envelope.svg);
  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-mgs {
  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.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 27px;
}

.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%);
}

/*-------------------------------*/
/*        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;
}

/*gamelisting*/
.gamesingle-item .game-box img{
  border-radius: 8px;
}





/**/
.bg-image{
    /* background-image: url("../../mobile/img/ug396_mobile_bg.jpg");
    background-position: center top;
    background-size: 100% auto;
    background-attachment: fixed; */
    /* background-color: #242424; */
}
/* .bg-image #page-content-wrapper {
  background-color: transparent;
} */
.nopad{
  padding-left: 0;
  padding-right: 0;
}

.homegamelist-wraper {
    background-image: url("../../mobile/img/ug396_mobile_game_bg.png");
    background-position: center top;
    background-size: 100% auto;
    min-height: 240px;
    background-repeat: no-repeat;
}
.gamecat-single{
  padding: 0 4px;
}
.homegamelist-inner {
    margin-top: 15px;
    display: inline-block;
    padding: 25px;
    margin-bottom: 25px;
}
.bg-image .owl-theme .owl-controls {
    margin-top: -26px;
}
.customnew-wraper span.newslabel {
    background: #031116;
    color: #ffffff;
    line-height: 31px;
    padding: 2px 18px;
    position:static;
}
.customnew-wraper.news_marquee {
    height: auto;
    width: 100%;

    margin: 10px 0 40px;
    /* background: #103840; */
    background: rgba(3, 17, 21, 0.4);
    display: flex;
    align-items: center;
    overflow: hidden;
    /* text-transform: uppercase; */

}
.customnew-wraper > marquee span{
   color: #fff !important;
}
.customnew-wraper marquee ul, .customnew-wraper marquee ul li{
  margin:0;
}
.img-reponsive {
    max-width: 100%;
    display: block;
}

.jackpot-wraper{
  margin-bottom: 20px;
}
.jackpot-counter {
    position: absolute;
    bottom: calc(20% - 17px);
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    left: 20px;
    width: calc(100% - 15px);
}
.jackpotwraper-inner {
    position: relative;
}
.login-btn.btn, .login-btn.btn:hover, .login-btn.btn:focus{
    margin: 10px 5px;
    padding: 0;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
}
.login-btn.btn>img{
  display: inline-block;
    float: right;
}
.navbar .copyright p{
  margin-top: 10px;
  font-size: 11px;
}
.owl-theme .owl-controls .owl-page {
    display: inline-flex;
}
.slidertop-wraper {
    background-image: linear-gradient(to right, rgba(19,15,12,1), rgb(53, 63, 74), rgba(19,15,12,1));
    color: #ffffff;
    padding: 7px 5px 5px;
}

.slick-slide{
  outline: none;
}
.jackpot-section{
  margin-top: -70px;
}
.jackpot-section .news_marquee {
  height: 34px;
  margin: 20px 0;
  font-size: 14px;

}
.slider-wrapper{
  position: relative;
}


/**/
.populargames-wraper{
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 50px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: inset 0 6px 3px 3px rgba(0, 0, 0, 0.5);
  background-image: url(../../../images/popular-bg.png);
  /* min-height: 210px; */
  display: inline-block;
}
.populargames-wraper .slick-dots{
      bottom: -35px;
}
.populargames-section{
  margin-top: 15px;
}
.populargames-wraper .game-title{
  margin-top: -25px;
  padding: 0 35px;
}
.game-title img{
  max-width: 200px;
}
.common-section *:before, .common-section *:after, .common-section *{
  -webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.img-reponsive{
  max-width: 100%;
  display: block;
}
.popularslider{

    margin-top: 30px;
}
.populargames-wraper .slick-dots li button:before{
  font-size: 10px;
  color: #ffffff;
}
.populargames-wraper .slick-dots li{
  margin:  0;
}
.populargames-wraper .slick-dots li.slick-active button:before {
    opacity: .75;
    color: #ffffff;
}
.leftjackpot-img {
    padding: 0 20px;
    margin-bottom: -1px;
    position: relative;
    z-index: 30;
}
.bonus_outside {
    float: left;
    width: 100%;
    border: 5px solid #770000;
    border-radius: 10px;
    margin-bottom: 20px;
}
.bonus_box {
    width: 100%;
    border: 1px solid #fff;
    float: left;

    padding: 10px 0;
    margin: 0 auto;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 8px;

    z-index: 1;
    cursor: pointer;
}
.bonus_box .num_group {
    display: flex;
    float: left;
    width: 100%;
    position: relative;
    justify-content: center;
}

.partners-wraper .copyright_partners{
    padding: 0;

}
.partners-wraper .copyright_partners img {
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    background-color: #031115;
    box-sizing: border-box;
    width: 100%;
}


.slick-slide{
  outline: none;
}
.jackpot-section{
  /* margin-top: -50px; */
  margin: 30px 0;
}
/* .jackpot-section .news_marquee {
  height: 34px;
  margin: 20px 0;
  font-size: 14px;

} */
.slider-wrapper{
  position: relative;
}
.slider-wrapper:after {
    position: absolute;
    content: "";
    /* background: linear-gradient(to bottom,rgba(36, 36, 36, 0) 0, rgba(36, 36, 36, 0.65) 50%,#242424 100%); */
    background: linear-gradient(to bottom,rgba(1, 4, 22, 0) 0, rgba(0, 0, 0, 0.5) 50%,#000000 100%);
    width: 100%;
    height: 85px;
    left: 0;
    bottom: -2px;
    z-index: 10;
}

@media(max-width: 767px){
  .game-title img {
    max-width: 150px;
}
.popularslider-wraper{
  padding: 0;
}
}

@media(min-width: 360px) and (max-width:767px) and (orientation: landscape){
  .homegamelist-inner {
    padding: 65px;
        margin-top: 20px;
  }
  span.jackpot_numbers_home{
    font-size: 30px;
    font-weight: 600;
  }
  .jackpot-counter{
    bottom: 64px;
  }
}


@media(min-width: 768px){
  .homegamelist-inner {
    padding: 65px;
        margin-top: 20px;
  }
  .jackpot-counter{
    bottom: 58px;
  }
  span.jackpot_numbers_home{
    font-size: 30px;
    font-weight: 600;
  }
  .customnew-wraper.news_marquee{
    font-size: 15px;
  }
  .customnew-wraper span.newslabel {
    padding: 15px;

}
.leftjackpot-img {
    padding: 0 150px;
}

}
@media(min-width: 1024px){
  .jackpot-counter{
    bottom: 78px;
  }
  .homegamelist-inner {
    padding: 100px;
    margin-top: 20px;
}
.jackpot-section .news_marquee {
    margin: 80px 0 20px;
}
}
