 /* ========================================================================== */
/*                                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 {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: 'montserrat',Tahoma,"Microsoft Yahei",Arial,Helvetica;
  background-color: #fafafa;
  color: #000000;
}

body {
  position: relative;
  overflow-x: hidden;
}

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

form {
  position: relative;
}

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: 10px 0;
}

/*-------------------------------*/
/*           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: 312px;
  width: 0;
  height: 100%;
  margin-left: -312px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #1a1a1a;
  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: absolute;
  width: 100%;
  overflow-x: hidden;
}

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

.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: 15px;  
  z-index: 999;
  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 .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-color: #393939;
  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 {
  height: 1px;
  background-color: #333333;
}

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

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

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

.badge {
  background-color: #f63d3d;
}

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

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

.copyright {
  padding: 10px;
  font-size: 12px;
  text-align: center;
}

/*-------------------------------*/
/*            Header             */
/*-------------------------------*/
.header {
  height: 50px;
  background-color: #000000;
  width: 100%;
  position: fixed;
  z-index: 999995;
}

.header-clear {
  height: 50px;
}

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

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

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

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

.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: 7px;
  padding: 8px 12px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

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

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

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

.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: 0 3px;
  white-space: nowrap;
  overflow: hidden; 
}

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

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

.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-slots {
  background: #5e8517;
  color: #fff;
  padding: 5px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-title-cas {
  padding: 5px 10px;
  display: block;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
}

.game-title-cas.play-btn {
  background: #0092b1;
  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: #1a1a1a;
  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: 8px 5px;
  color: #dddddd;
  font-size: 12px;
  display: inline-block;
}

.platform {
  padding: 5px 5px 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: #1a1a1a;
  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: #2a2b30;
  margin: 5px;
  color: #fff;
  font-size: 12px;
  border: 1px solid #525252;
  overflow: hidden;
}

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

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

.landing-text h1 {
  font-size: 38px;
  margin: 0;
  padding-top: 10px;
  text-align: center;
}

.landing-text h2 {
  font-size: 19px;
  margin-top: 0;
  color: #0092b1;
  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;
  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: #f4f4cb; /* Old browsers */
  background: -moz-linear-gradient(top,  #f4f4cb 0%, #f3d31f 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #f4f4cb 0%,#f3d31f 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #f4f4cb 0%,#f3d31f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4cb', endColorstr='#f3d31f',GradientType=0 ); /* IE6-9 */
  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;
}

/*-------------------------------*/
/*            Forms              */
/*-------------------------------*/
.forms {
  margin: 10px 0 4em;
  color: #000000;
}

.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 {
  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: #bcbcbc;
  background-color: transparent;
  border: 1px solid transparent;
}

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

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

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;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  pointer-events: none;
  color: #777777;
}

.help-block {
  color: #1a1a1a;
}

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

.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: #fff;
  background-color: #1a1a1a;
  border: 1px solid transparent;
  border-radius: 0;
  transition: 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.in {
  filter: alpha(opacity=70);
  opacity: .7;
}

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

.tabs .nav-tabs>li.active>a, .tabs .nav-tabs>li.active>a:focus, .tabs .nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
  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;
}

.panel-group h5 {
  color: #000;
} 

.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: #6F9C1B;
  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 .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: 'FontAwesome';
  content:"\f107";
  float: right;
  color: #fff;
}

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

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

.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: 4;
  padding-bottom: 1px;
  /*border: 1px solid #000;*/
  background-color: #000;
}

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

.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-5 {
  margin-top: 5px;
}

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

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

.mb-5 {
  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: hidden;
  position: fixed;
}

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

/* ----------- iPhone 4 and 4S potrait ----------- */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  .landing {
    height: 100vh !important;
  }
  .landing-text {
    float: none;
  }
  .landing-img.sports {
    content: url(../img/new-landing-sports.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.casino {
    content: url(../img/new-landing-casino.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.poker {
    content: url(../img/new-landing-poker.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.slots {
    content: url(../img/new-landing-slots.jpg);
    width: 100%;
    height: auto;
  }
  .landing-btn {
    margin-top: 75%;
  }
  .landing-btn .gb .btn {
    float: left;
    width: 32.44%;
    font-size: 12px;
    padding: 12px 12px;
  }
  .landing-btn .gb:nth-child(2) .btn {
    margin: 0 4px;
  }
}

/* ----------- iPhone 4 and 4S landscape ----------- */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .landing {
    height: 63vh !important;
  }
  .landing-text {
    float: right;
    margin: 0 4% 0 0;
    display: block;
  }
  .landing-img.sports {
    content: url(../img/new-landing-sports-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.casino {
    content: url(../img/new-landing-casino-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.poker {
    content: url(../img/new-landing-poker-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.slots {
    content: url(../img/new-landing-slots-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-text h1 {
    font-size: 30px !important;
  }
  .landing-text h2 {
    font-size: 16px !important;
  }
  .landing-btn {
    margin: 12% 17% 0 0;
    position: absolute;
    right: 0;
  }
  .landing-btn .gb .btn {
    width: 130%;
    font-size: 130%;
    padding: 12px 12px;
  }
  .landing-btn .gb:nth-child(2) .btn {
    margin: 4px 0;
  }
}

/* ----------- iPhone 5 and 5S potrait ----------- */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 420px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  
}

/* ----------- iPhone 5 and 5S landscape ----------- */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 420px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .landing {
    height: 80vh !important;
  }
}

/* ----------- iPhone 6 potrait ----------- */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  .landing {
    height: 100vh !important;
  }
  .landing-text {
    float: none;
  }
  .landing-img.sports {
    content: url(../img/landing-sports.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.casino {
    content: url(../img/landing-casino.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.poker {
    content: url(../img/landing-poker.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.slots {
    content: url(../img/landing-slots.jpg);
    width: 100%;
    height: auto;
  }
  .landing-btn {
    margin-top: 75%;
  }
  .landing-btn .gb .btn {
    float: left;
    width: 32.44%;
    font-size: 12px;
    padding: 12px 12px;
  }
  .landing-btn .gb:nth-child(2) .btn {
    margin: 0 4px;
  }
}

/* ----------- iPhone 6 landscape ----------- */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .landing {
    height: 80vh !important;
  }
  .landing-text {
    float: right;
    margin: 0 4% 0 0;
    display: block;
  }
  .landing-img.sports {
    content: url(../img/landing-sports-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.casino {
    content: url(../img/landing-casino-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.poker {
    content: url(../img/landing-poker-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.slots {
    content: url(../img/landing-slots-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-btn {
    margin: 12% 15% 0 0;
    position: absolute;
    right: 0;
  }
  .landing-btn .gb .btn {
    width: 130%;
    font-size: 120%;
    padding: 10px 12px;
  }
  .landing-btn .gb:nth-child(2) .btn {
    margin: 4px 0;
  }
}

/* ----------- iPhone 6+ potrait ----------- */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) {
  
}

/* ----------- iPhone 6+ landscape ----------- */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
  .landing {
    height: 80vh !important;
  }
  .landing-text {
    float: right;
    margin: 0 4% 0 0;
    display: block;
  }
  .landing-img.sports {
    content: url(../img/landing-sports-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.casino {
    content: url(../img/landing-casino-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.poker {
    content: url(../img/landing-poker-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.slots {
    content: url(../img/landing-slots-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-btn {
    margin: 12% 15% 0 0;
    position: absolute;
    right: 0;
  }
  .landing-btn .gb .btn {
    width: 130%;
    font-size: 120%;
    padding: 10px 12px;
  }
  .landing-btn .gb:nth-child(2) .btn {
    margin: 4px 0;
  }
}

/* ----------- iPad potrait ----------- */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .landing {
    height: 100vh !important;
  }
  .landing-text {
    float: none;
  }
  .landing-img.sports {
    content: url(../img/landing-sports.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.casino {
    content: url(../img/landing-casino.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.poker {
    content: url(../img/landing-poker.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.slots {
    content: url(../img/landing-slots.jpg);
    width: 100%;
    height: auto;
  }
  .landing-text h1 {
    font-size: 500% !important;
  }
  .landing-text h2 {
    font-size: 260% !important;
  }
  .landing-btn {
    margin-top: 91%;
  }
  .landing-btn .gb .btn {
    float: left;
    width: 32.8%;
    font-size: 200%;
    padding: 12px 12px;
  }
  .landing-btn .gb:nth-child(2) .btn {
    margin: 0 4px;
  }
}

/* ----------- iPad landscape ----------- */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .landing {
    height: 56vh !important;
  }
  .landing-text {
    float: right;
    margin: 3% 4% 0 0;
    display: block;
  }
  .landing-img.sports {
    content: url(../img/landing-sports-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.casino {
    content: url(../img/landing-casino-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.poker {
    content: url(../img/landing-poker-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-img.slots {
    content: url(../img/landing-slots-landscape.jpg);
    width: 100%;
    height: auto;
  }
  .landing-text h1 {
    font-size: 500% !important;
  }
  .landing-text h2 {
    font-size: 260% !important;
  }
  .landing-btn {
    margin: 15% 17% 0 0;
    position: absolute;
    right: 0;
  }
  .landing-btn .gb .btn {
    width: 130%;
    font-size: 200%;
    padding: 10px 12px;
  }
  .landing-btn .gb:nth-child(2) .btn {
    margin: 10px 0;
  }
}


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

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

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

@media (min-device-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;
}

.collapse span {
  color: #1a1a1a !important;
}
.collapse {
  color: #1a1a1a !important;
}
/*th span {
  color: #fff;
}
td span {
  color: #fff;
}