/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
  position:relative;
  width:100%;
  height:auto;
  overflow: hidden;
}
.nivoSlider img {
  position:absolute;
  top:0px;
  left:0px;
  max-width: none;
}
.nivo-main-image {
  display: block !important;
  position: relative !important; 
  width: 100% !important;
  height: auto !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
  position:absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  border:0;
  padding:0;
  margin:0;
  z-index:6;
  display:none;
  background:white; 
  filter:alpha(opacity=0); 
  opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
  display:block;
  position:absolute;
  z-index:5;
  height:100%;
  top:0;
}
.nivo-box {
  display:block;
  position:absolute;
  z-index:5;
  overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
  position:absolute;
  left:0px;
  bottom:0px;
  background:#000;
  color:#fff;
  width:100%;
  z-index:8;
  padding: 5px 10px;
  opacity: 0.8;
  overflow: hidden;
  display: none;
  -moz-opacity: 0.8;
  filter:alpha(opacity=8);
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
  padding:5px;
  margin:0;
}
.nivo-caption a {
  display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
  position:absolute;
  top:45%;
  z-index:9;
  cursor:pointer;
  /*display: none;*/
  overflow: hidden;
  text-indent: -999px;
  width: 15%;
  
}
.nivo-prevNav,
.nivo-nextNav{
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}
.nivo-prevNav {
  left:0px;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
.nivo-nextNav {
  right:0px;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
  text-align:center;
  padding: 15px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 9999;
}
.nivo-controlNav a {
  cursor:pointer;
    color: red;
    display: inline-block;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.36);
    overflow: hidden;
    text-indent: -999px;
    margin: 0 4px;
}
.nivo-controlNav a.active{
  background: #fff;
}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
    position: relative;
}
.slick-slide:focus{
  outline: none;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
/*@font-face*/
/*{*/
/*    font-family: 'slick';*/
/*    font-weight: normal;*/
/*    font-style: normal;*/

/*    src: url('./fonts/slick.eot');*/
/*    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');*/
/*}*/
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: 'â†';
}
[dir='rtl'] .slick-prev:before
{
    content: 'â†’';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: 'â†’';
}
[dir='rtl'] .slick-next:before
{
    content: 'â†';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 13px;
    height: 13px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: #c2c2c2;
    
    border-radius: 50%;
}
.slick-dots li button:hover{
    background: #0049cc;
}
.slick-dots li.slick-active button{
    background: #0049cc;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
/*.slick-dots li button:before*/
/*{*/
/*    font-family: 'slick';*/
/*    font-size: 6px;*/
/*    line-height: 10px;*/

/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/

/*    width: 10px;*/
/*    height: 10px;*/

/*    content: 'â€¢';*/
/*    text-align: center;*/

/*    opacity: .25;*/
/*    color: black;*/

/*    -webkit-font-smoothing: antialiased;*/
/*    -moz-osx-font-smoothing: grayscale;*/
/*}*/
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body{
  background: #010417;
  font-family: sourcesans,roboto,arial,sans-serif;
  font-size: 14px;
  color: #fff;
}
h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
.h1, 
.h2, 
.h3, 
.h4, 
.h5, 
.h6{
  font-weight: bold;
}
#page{
  overflow-x: hidden;
  position: relative;
}
a{
  color: #015cff;
}
  a:hover{
    color: #0040b4;
  }
.fl{
  float: left;
}
.fr{
  float: right;
}
.aligncenter{
  display: block;
  margin: 15px auto;
}
.alignleft{
  float: left;
  margin-right: 15px;
}
.alignright{
  float: right;
  margin-left: 15px;
}
iframe{
  border: 0;
}
img{
  max-width: 100%;
  height: auto;
}
.arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #f00;
}

.screen-reader-text{
  display: none;
}
/* SVG Icons base styles */
.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  position: relative; /* Align more nicely with capital letters */
  top: -0.0625em;
  vertical-align: middle;
  width: 1em;
}
.bg-overlay{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}
.btn{
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.container{
  max-width: 1140px;
}
.site-header{
  background-repeat: repeat;
  background-size: auto 100%;
  overflow-x: hidden;
}
.site-branding{
  padding: 10px 0;
}
.site-branding img{
  width: 100%;
  height: auto;
}
.navigation-top{
  background: #efd419;
  width: 100%;
  font-size: 14px;
  letter-spacing: 1px;
  background: -webkit-linear-gradient(left, #061348 0%, #0f1d86 49%, #061348 100%);
  background: -o-linear-gradient(left, #061348 0%, #0f1d86 49%, #061348 100%);
  background: linear-gradient(to right, #061348 0%, #0f1d86 49%, #061348 100%);
}
#site-navigation button,
.menu-scroll-down{
  display: none;
}
#site-navigation > div{
  width: 100%;
  text-align: center;
}
#top-menu{
  padding-left: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: normal;
}
#top-menu a{
  display: block;
  color: #fff;
  padding: 7px 12px;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: 'Open Sans', sans-serif;
}
#top-menu > li{
  float: left;
  list-style: none;
  width: calc(100%/6 - .01px);
  /*min-width: 100px;*/
}

#top-menu > li > a{
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

  #top-menu>li>a:hover,
  #top-menu>li.current-menu-item>a,
  #top-menu>li.current-menu-ancestor>a{
    background: #0049cc;
  }
  #top-menu .sub-menu-wrap{
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #040e38;
    border-bottom: 15px solid #061348;
    padding: 5px 0;
    box-shadow: inset 0 5px 5px 0px rgba(0, 0, 0, 0.25);
  }
  .sub-menu-wrap .container{
    /*display: table;*/
  }
  .sub-menu-wrap ul{
    /*display: table-row;*/
    padding: 0;
    text-align: center;
    margin: 0 -5px;
  }
  .sub-menu-wrap li{
    display: inline-block;
    list-style: none;
    padding: 5px;
    float: left;
    width: 16.66%;
  }
  .sub-menu-wrap li a{
    position: relative;
  }
  #top-menu .sub-menu-wrap a{
    color: #fff;
    padding: 5px;
    text-transform: none;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
  }
  #top-menu>.menu-icon>a:before{
    background: url('../images/icon_nav_white-new.png') no-repeat;
    display: block;
    width: 100%;
    height: 37px;
    background-size: 60px auto;
    vertical-align: middle;
  }
  .menu-icon>a:before{
    background: url('../images/providers.png') no-repeat;
    content: "";
    display: block;
    width: 100px;
    height: 90px;
    margin: auto;
  }
  .menu-icon.rng-icon>a:before{
    background-image: url('../images/logo_rng.png');
    background-repeat: no-repeat;
    content: "";
    display: block;
    width: 140px;
    height: 120px;
    margin: auto;
  }
  .menu-icon.other-icon>a:before{
    background-image: url('../images/icon_nav_white2.png');
    background-repeat: no-repeat;
    content: "";
    display: block;
    width: 100px;
    height: 90px;
    margin: auto;
  }
  .menu-icon.main-icon>a:before{
    background: url('../images/icon_nav_white.png') no-repeat;
    display: block;
    width: 100%;
    height: 60px;
    background-size: 80px auto;
    vertical-align: middle;
  }
  #top-menu>.menu-icon.home-icon>a:before{
    background-position: center -724px;
  }
  #top-menu>.menu-icon.sports-icon>a:before{
    background-position: center -10px;
  }
  #top-menu>.menu-icon.casino-icon>a:before{
    background-position: center -66px;
  }
  #top-menu>.menu-icon.slot-icon>a:before{
    background-position: center -122px;
  }
  #top-menu>.menu-icon.lotere-icon>a:before{
    background-position: center -286px;
  }
  #top-menu>.menu-icon.poker-icon>a:before{
    background-position: center -230px;
  }
  #top-menu>.menu-icon.tangkas-icon>a:before{
    background-position: center -637px;
  }
  #top-menu>.menu-icon.fish-icon>a:before{
    background-position: center -132px;
  }
  #top-menu>.menu-icon.sabung-icon>a:before{
    background-position: center -780px;
  }
  #top-menu>.menu-icon.promo-icon>a:before{
    background-position: center -395px;
  }
  #top-menu>.menu-icon.referral-icon>a:before{
    background-position: center -378px;
  }
  #top-menu>.menu-icon.blog-icon>a:before{
    background-position: center -1012px;
  }
  #top-menu>.menu-icon.draw-icon>a:before{
    background-position: center -1014px;
  }
  #top-menu>.menu-icon.boxone-icon>a:before{
    background-position: center -1067px;
  }
  #top-menu>.menu-icon.news-icon>a:before{
    background-position: center -1121px;
  }
  #top-menu>.menu-icon.link-icon>a:before{
    background-position: center -1179px;
  }
  .bti-icon>a:before{
    background-position: -200px -90px;
  }
  .sbo-icon>a:before{
    background-position: -500px -540px;
  }
  .ug-icon>a:before{
    background-position: -500px -720px;
  }
  .pp-icon>a:before{
    background-position: 0 -450px;
  }
  .mg-icon>a:before{
    background-position: -500px -360px;
  }
  .sa-icon>a:before{
    background-position: -600px -450px;
  }
  .ag-icon>a:before{
    background-position: -500px 0;
  }
  .ebet-icon>a:before{
    background-position: -500px -180px;
  }
  .gp-icon>a:before{
    background-position: 0 -270px;
  }
  .bg-icon>a:before{
    background-position: 0 -90px;
  }
  .wm-icon>a:before{
    background-position: -200px -721px;
  }
  .sb-icon>a:before{
    background-position: -300px -540px;
  }
  .sg-icon>a:before{
    background-position: -100px -630px;
  }
  .hb-icon>a:before{
    background-position: -200px -270px;
  }
  .ttg-icon>a:before{
    background-position: -300px -631px;
  }
  .joker-icon>a:before{
    background-position: -300px -360px;
  }
  .sp-icon>a:before{
    background-position: -600px -630px;
  }
  .isb-icon>a:before{
    background-position: -100px -360px;
  }
  .cq9-icon>a:before{
    background-position: -100px -180px;
  }
  .rtg-icon>a:before{
    background-position: -400px -450px;
  }
  .pn-icon>a:before{
    background-position: -200px -810px;
  }
  .pt-icon>a:before{
    background-position: -200px -450px;
  }
  .oneg-icon>a:before{
    background-position: -100px 0;
  }
  .idn-icon>a:before{
    background-position: -600px -270px;
  }
  .tangkas-icon>a:before{
    background-position: -140px 0;
    width: 140px;
    height: 120px;
  }
  .c-tangkas-icon>a:before{
    background-position: 0 -120px;
  }
  .keno-icon>a:before{
    background-position: 0 -360px;
  }
  .c-keno8-icon>a:before{
    background-position: 0 -240px;
  }
  .c-studpoker-icon>a:before{
    background-position: -280px 0;
  }
  .c-keno15-icon>a:before{
    background-position: -280px -120px;
  }
  .baccarat-icon>a:before{
    background-position: 0 0;
  }
  .s128-icon>a:before{
    background-position: -400px -90px;
  }
  .joker-icon>a:before{
    background-position: -300px -360px;
  }
  .news-icon>a:before{
    background-position: 28px -5px;
  }
  .games-icon>a:before{
    background-position: 26px -107px;
  }
  
  .menu-icon.main-icon.sports-icon>a:before{
    background-position: center -7px;
  }
  .menu-icon.main-icon.casino-icon>a:before{
    background-position: center -83px;
  }
  .menu-icon.main-icon.slot-icon>a:before{
    background-position: center -156px;
  }
  .menu-icon.slot2-icon>a:before {
      background-position: center -1334px;
  }
  .menu-icon.main-icon.lotere-icon>a:before{
    background-position: center -376px;
  }
  .menu-icon.main-icon.poker-icon>a:before{
    background-position: center -304px;
  }
  .menu-icon.main-icon.tangkas-icon>a:before{
    background-position: center -637px;
  }
  .menu-icon.main-icon.fish-icon>a:before{
    background-position: center -132px;
  }
  .menu-icon.main-icon.sabung-icon>a:before{
    background-position: center -1035px;
  }
  .menu-icon.main-icon.promo-icon>a:before{
    background-position: center -522px;
  }
  .menu-icon.main-icon.hammer-icon>a:before{
    background-position: center -1639px;
  }
  .menu-icon.main-icon.users-icon>a:before{
    background-position: center -669px;
  }
  .menu-icon.main-icon.trophy-icon>a:before{
    background-position: center -1710px;
  }
  .menu-icon.maintenance-icon>a:after,
  .menu-icon.comingsoon-icon>a:after{
    content: "";
    display: block;
    position: absolute;
    top: 25%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    background: url(../images/flags.png) no-repeat;
  }
  .menu-icon.maintenance-icon>a:after{
    background-position: 0 -40px;
    width: 150px;
    height: 40px;
  }
  .menu-icon.comingsoon-icon>a:after{
    background-position: 0 0;
    width: 150px;
    height: 40px;
  }
  #top-menu .sub-menu > 
  #top-menu .sub-menu li{
    /*position: relative;*/
  }
    #top-menu .sub-menu li:hover>a{
      background: radial-gradient(ellipse at center,#80a4e6 17%,#4d80db 27%,#015cff 31%,#0049cc 52%,#0039c0 57%,#0021ad 97%);
      background-image: radial-gradient(circle,#4d80db,#015cff,#0049cc,#0039c0,#0021ad);
    }
  #top-menu .icon{
    display: none;
    margin-left: 5px;
    font-size: 15px;
    margin-bottom: 3px;
  }
  #top-menu .sub-menu .icon{
    float: right;
    transform: rotate(-90deg);
    margin-bottom: 0;
    margin-top: 5px;
  }

#top-menu .sub-menu-wrap .sub-menu-wrap{
  padding-top: 15px;
  box-shadow: none;
}
#top-menu .sub-menu-wrap .sub-menu-wrap:before {
    display: block;
    content: "";
    width: 100%;
    left: 0;
    height: 15px;
    background: #061348;
    transform: translateY(-5px);
}

#secondary-nav {
    background: -webkit-linear-gradient(left, #061348 0%, #0f1d86 49%, #061348 100%);
    background: -o-linear-gradient(left, #061348 0%, #0f1d86 49%, #061348 100%);
    background: linear-gradient(to right, #061348 0%, #0f1d86 49%, #061348 100%);
    padding: 0;
    margin: 20px 0 0;
    letter-spacing: 1px;
}
    #secondary-nav>div{
        display: table;
        width: 100%;
        text-align: center;
    }
.secondary-menu{
    display: table-row;
}
.secondary-menu>li {
    display: table-cell;
    float: none;
    list-style: none;
}
.secondary-menu>li>a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
}

  .secondary-menu .menu-item-has-children > a:after{
    content: "\f107";
    font-family: "FontAwesome";
    display: inline-block;
    margin-left: 10px;
  }


  .secondary-menu .sub-menu{ 
    background: #0b1b43;
    display: none; 
    position: absolute;
    padding-left: 0;
    margin: 0;
    min-width: 200px;
    border: 1px solid #1c1c1c;
    border-top: 0;
    box-shadow: 0px 7px 10px -5px rgba(0, 0, 0, 0.55);
    text-align: left;
  }

  .secondary-menu .sub-menu li{
    list-style: none;
    border-bottom: 1px solid #00113a;
    position: relative;
  }
.secondary-menu>li:hover>a, 
.secondary-menu>li.current_page_item>a, 
.secondary-menu>li.current-menu-parent>a, 
.secondary-menu>li.current-menu-ancestor>a, 
.secondary-menu>li.current-menu-item>a, 
.secondary-menu .sub-menu>.current-menu-item>a {
    background: #0049cc;
    color: #fff;
}
  .secondary-menu .sub-menu li:hover > a,
  .secondary-menu .sub-menu > .current_page_item > a,
  .secondary-menu .sub-menu > .current-menu-parent > a,
  .secondary-menu .sub-menu > .current-menu-ancestor > a,
  .secondary-menu .sub-menu > .current-menu-item > a{
    background: #0049cc;
    color: #fff;
  }
  .secondary-menu .sub-menu li a{
    padding: 10px 15px;
    display: block;
    color: #fff;
    text-decoration: none;
  }
  .secondary-menu .sub-menu .sub-menu{
    right: -100%;
    top: 0;
    margin-left: 1px;
    box-shadow: none;
  }
.custom-logo-link{ float: left; }
.social-navigation{
    float: left;
}
.social-navigation > span,
.social-navigation > div{
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}
.social-navigation a{
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    line-height: 44px;
}
.social-navigation ul{
  padding-left: 0;
  margin: 0;
}
.social-navigation li{
    float: left;
    list-style: none;
    font-size: 28px;
    width: 48px;
    height: 48px;
    text-align: center;
    vertical-align: middle;
    border: 2px solid #fff;
    margin-right: 10px;
    border-radius: 50%;
}
  .social-navigation li.fb-icon:hover{
    background: #3b5897;
    border-color: #3b5897;
  }
  .social-navigation li.tw-icon:hover{
    background: #4099ff;
    border-color: #4099ff;
  }
  .social-navigation li.yt-icon:hover{
    background: #d01818;
    border-color: #d01818;
  }
  .social-navigation li.ig-icon:hover{
    background: #bd3381;
    border-color: #bd3381;
  }
.top-btns{
  text-align: right;
}
.top-btns ul{
  padding: 0;
  margin: 0;
}
.top-btns li{
  display: inline-block;
  list-style: none;
  vertical-align: middle;
}
.top-btns>ul>li:first-child{
  font-size: 11px;
}
.top-btns>ul>li:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 15px;
    background: #fff;
    margin: 0 5px;
}
.top-btns li.sc-fb>span:hover{
  background: #3b5897;
}
.top-btns li.sc-tw>span:hover{
  background: #4099ff;
}
.top-btns li.sc-ig>span:hover{
  background: #bd3381;
}
.top-btns li.sc-yt>span:hover{
  background: #d01818;
}
.social-icons,
.social-icons>.sc-share,
.social-icons>ul{
  display: inline-block;
  vertical-align: middle;
}
.social-icons>ul{
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transition: all .2s ease;
}
.social-icons.show-list>ul{
  width: 130px;
  opacity: 1;
}
.social-icons li{
  margin: 0 2px;
}
.social-icons li>span, 
.social-icons .sc-share>span{
  background: #0049cc;
  display: block;
  color: #fff;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
}
.id-lang-icon{
  font-size: 25px;
}
.header-buttons{
  text-transform: uppercase;
  text-align: right;
}
  .header-buttons ul{
    margin: 0;
    padding: 0;
  }
  .header-buttons li{
    display: inline-block;
    font-size: 23px;
    list-style: none;
    vertical-align: middle;
  }
  .header-buttons li:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 15px;
    background: #fff;
    margin: 0 5px;
  }
  .header-buttons li:first-child:before,
  .header-buttons li:last-child:before{
    display: none;
  }
  .header-buttons .btn{
    background: #fff;
    border: 0;
    border-radius: 0;
    color: #000;
    padding: 0;
    width: 77px;
    padding: 5px 10px;
  }
  .header-buttons .btn:hover{
    background: #e0e0e0;
  }
  .header-buttons .btn-style-2{
    background: #e4e404;
    margin-left: 5px;
    color: #fff;
  }
  .header-buttons .btn-style-2:hover{
    background: #ffff27;
  }
  .header-buttons a{
    display: inline-block;
    vertical-align: middle;
  }
  .header-buttons li>span {
    color: #015cff;
  }
  .btn-theme:hover{
    background: #f6bd14;
      background: -webkit-linear-gradient(#f6bd14 0%, #f6bd14 40%, #f6bd14 100%);
      background: -o-linear-gradient(#f6bd14 0%, #f6bd14 40%, #f6bd14 100%);
      background: linear-gradient(#f6bd14 0%, #f6bd14 40%, #f6bd14 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6bd14', endColorstr='#f6bd14',GradientType=0 );

  }
.btn-theme-2{
    background: #ffeb3b;
    background: -moz-linear-gradient(top, #ffeb3b 0%, #efd919 40%, #dcc603 100%);
    background: -webkit-linear-gradient(top, #ffeb3b 0%,#efd919 40%,#dcc603 100%);
    background: linear-gradient(to bottom, #ffeb3b 0%,#efd919 40%,#dcc603 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffeb3b', endColorstr='#dcc603',GradientType=0 );
  color: #102867;
}
  .btn-theme-2:hover{
      background: #ffeb3b;
      background: -moz-linear-gradient(top, #ffeb3b 0%, #ffeb3b 40%, #ffeb3b 100%);
      background: -webkit-linear-gradient(top, #ffeb3b 0%,#ffeb3b 40%,#ffeb3b 100%);
      background: linear-gradient(to bottom, #ffeb3b 0%,#ffeb3b 40%,#ffeb3b 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffeb3b', endColorstr='#ffeb3b',GradientType=0 );  }
.btn-theme-3{
  background: #7e47d0;
    color: #fff;
}
.btn-theme-4{
  background: #0d83ff;
  color: #fff;
}
.btn-theme-5{
    background: #f6bd14;
    background: -moz-linear-gradient(top, #f6bd14 0%, #f4b507 40%, #fc9300 100%);
    background: -webkit-linear-gradient(top, #f6bd14 0%,#f4b507 40%,#fc9300 100%);
    background: linear-gradient(to bottom, #f6bd14 0%,#f4b507 40%,#fc9300 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6bd14', endColorstr='#fc9300',GradientType=0 );
  color: #102867;
  border-right: 4px solid #0d83ff;
  border-left: 4px solid #0d83ff;
}
  .btn-theme-5:hover{
    background: #f6bd14;
      background: -webkit-linear-gradient(#f6bd14 0%, #f6bd14 40%, #f6bd14 100%);
      background: -o-linear-gradient(#f6bd14 0%, #f6bd14 40%, #f6bd14 100%);
      background: linear-gradient(#f6bd14 0%, #f6bd14 40%, #f6bd14 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6bd14', endColorstr='#f6bd14',GradientType=0 );
  }
.dpb-btn-sup {
    text-transform: uppercase;
    background: #e00101;
    color: #fff;
    display: inline-block;
    padding: 4px 15px;
    font-weight: bold;
    margin-bottom: 10px;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
    letter-spacing: 1px;
    text-decoration: none;
}

.dpb-btn-sup:hover{
    background: #f73934;
    color: #fff;
    text-decoration: none;
}

.dpb-btn-sup i {
    font-size: 19px;
    margin-right: 7px;
    vertical-align: middle;
    color: #e2c600;
    display: inline-block;
}

.dpb-btn-sup span {
    text-indent: 0;
    margin: 0;
}
.square-list li{
  margin-bottom: 20px;
}
.square-list li:before{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #4795fe;
  margin-right: 10px;
}
.square-list a{
  color: #fff;
}
.edit-link{
  display: none;
}
/*====================================================================
  Banner
  ====================================================================*/
#banner {
  background: #000;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.slide-content-img{ display: none; }
.slide-content-img img{ width: 100%; }
.fast-transaction{
  background: #04090d;
}
.ft-header{
  background: #eed318;
  color: #fff;
  text-align: center;
  position: relative;
  max-width: 700px;
  height: 90px;
  margin: 0 auto;
  z-index: 1;
}
  .ft-header h3{
    margin: 0 0 5px;
    padding-top: 20px;
    color: #102867;
  }
  .ft-header span{
    color: #404041;
  }
  .ft-header .arrow-down{
    position: absolute;
    top: 0;
    border-left: 50px solid transparent;
      border-right: 50px solid transparent;
      border-top: 90px solid #eed318;
  }
  .ft-header .arrow-down.left{
    left: -50px;
  }
  .ft-header .arrow-down.right{
    right: -50px;
  }
.ft-list{
    /*background: #000;*/
    color: #fff;
    z-index: 0;
    margin-top: -20px;
    position: relative;
    padding: 60px 0 50px;
}
  .ft-wrap {
      padding: 15px;
      border: 1px solid #4795fe;
  }
  .ft-list .ft-icon{
    margin-bottom: 0;
      margin-right: 23px;
      padding-right: 27px;
      border-right: 1px solid #1a2f4c;
  }
  .ft-title{
    font-weight: normal;
  }
  .ft-title span{
    margin-top:10px;
    font-weight: 300;
    color: #4795fe;
  }
.welcome-txt {
    color: #fff;
    padding: 30px 0 50px;
}
  .welcome-txt h1{
    text-transform: uppercase;
    color: #eed318;
    margin-bottom: 25px;
  }
  .welcome-txt p{
    /*font-size: 20px;*/
  }
  .welcome-txt img{
    max-width: 100%;
    height: auto;
  }
.news-thumb{
  width: 200px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.news-thumb img{
  max-width: 100%;
}


.download-app{
    background: url(../images/gradient-background.jpg);

    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 70px 0;
}
.app-btn{
    display: inline-block;
    /* border: 1px solid #fff; */
    font-size: 20px;
    width: 46%;
    padding: 15px 25px;
    margin: 20px 15px;
    border-radius: 15px;
    background: #060f17;
    color: #fff;
}
.app-btn:first-child{
  display: block;
  margin: 20px auto 10px;
}
.app-btn:hover{
  text-decoration: none;
  color: #eed318;
}
.app-btn img{
  /*width: 80px;*/
  margin-right: 15px;
  vertical-align: middle;
}
.app-btn > div{
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  letter-spacing: 4px;
}
.app-btn > div > span{
    font-size: 12px;
    text-transform: uppercase;
    color: #4795fe;
}


.md-wd{
  /*padding: 40px 0;*/
  background: #f08200;
  font-size: 40px;
}
  .md-wd-txt{
    padding: 95px 0;
  }
  .md-wd-img{
    background: #b76300;
    padding: 20px 0;
  }
  .md-wd span{
    color: #404041;
  }

/*Footer*/
.bank-list{
    margin-top: 10px;
    padding: 0;
}
.bank-list li {
    position: relative;
    display: inline-block;
    padding: 1px 0 1px 10px;
}
.bank-icon {
	 background:none;
    width: 150px;
    margin-right: 5px;
}

.bank-offline{
  padding-left: 0;
  margin: 0;
}
.bank-offline li{
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.bank-offline .bo-icon{
  float: left;
}
.bank-offline .bo-icon img{
  width: 50px;
}
.dw-content{
  padding-left: 80px;
}

.yt-vid iframe {
    max-width: 100%;
    width: 100%;
    height: 285px;
}
.site-footer{
  padding: 0;
  background: #272a3a;
  color: #fff;
  font-size: 12px;
}
.site-footer .h5{
  font-size: 10px;
  font-weight: normal;
  margin: 0 0 5px;
}
.site-info p{
    margin: 0;
}
.footer-top{
    padding: 15px 0;
}
.mbs-separator {
    width: 100%;
    border-top: 1px dotted #fff;
}
.info-footer{
  margin-bottom: 20px;
}
.info-footer .h5{
  border-bottom: 1px dotted #fff;
  font-weight: normal;
  color: #015cff;
  font-size: 12px;
  padding: 20px 0;
  margin-bottom: 20px;
}
.info-wrap{
  margin-bottom: 20px;
}
.info-wrap span{
  display: inline-block;
  margin-bottom: 10px;
}
.pb-icon{
  display: inline-block;
  background-image: url('../images/pw_by.png');
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 5px;
  filter: grayscale(1);
}
.pb-icon:hover{
  filter: none;
}
.pb-ag{
  background-position: -26px -175px;
  width: 53px;
  height: 30px;
}
.pb-pt{
  background-position: -34px -50px;
  width: 37px;
  height: 38px;
}
.pb-pp{
  background-position: -39px -559px;
  width: 28px;
  height: 39px;
}
.pb-sbo{
  background-position: -27px -694px;
  width: 44px;
  height: 39px;
}
.pb-sg{
  background-position: -36px -422px;
  width: 32px;
  height: 37px;
}
.pb-hb{
  background-position: -40px -627px;
  width: 26px;
  height: 39px;
}
.pb-joker{
  background-position: -19px -1218px;
  width: 71px;
  height: 16px;
}
.pb-mg{
  background-position: -35px -358px;
  width: 35px;
  height: 35px;
}
.pb-ttg{
  background-position: -39px -488px;
  width: 27px;
  height: 36px;
}
.bank-sup{
  padding-top: 20px;
  padding-bottom: 20px;

}
/*.bank-icon{*/
/*  display: inline-block;*/
/*  background-image: url('../images/ico_bank_white.png');*/
/*  background-repeat: no-repeat;*/
/*  vertical-align: middle;*/
/*}*/
.bank-danamon{
  background-position: 0 -1px;
  width: 128px;
  height: 32px;
}
.bank-bni{
  background-position: 0 -146px;
  width: 79px;
  height: 23px;
}
.bank-bca{
  background-position: 0 -260px;
  width: 79px;
  height: 24px;
}
.bank-bri{
  background-position: 0 -370px;
  width: 106px;
  height: 25px;
}
.bank-mandiri{
  background-position: 0 -453px;
  width: 93px;
  height: 28px;
}
table.togel-terbesar td, th {
    border: 1px solid #060f17;
    text-align: center;
    padding: 8px 20px;
    line-height: 1.42857143;
}
table.togel-terbesar th {
    background: #0049cc;
    color: #fff;
}

.box-togel{
   margin: 0 -8px; 
}
.table.table-togel {
  border: none;
  background: transparent;
  color: #fff;
}
.table.table-togel>tbody>tr>td{
    border-color: #0b1d2d;
    padding: 7px 8px;
}

.table-togel.table>thead>tr>th, 
.table-togel.table>tbody>tr>th, 
.table-togel.table>tfoot>tr>th, 
.table-togel.table>thead>tr>td, 
.table-togel.table>tbody>tr>td, 
.table-togel.table>tfoot>tr>td{
    border: none;
}
.table-togel strong{
    color: #f5ba0f;
    font-weight: normal;
    text-transform: uppercase;
}
.box-togel .slick-dots{
    bottom: -34px;
}
.site-footer .widget{
  font-size: 13px;
}
.site-footer .widget-title{
  margin-bottom: 20px;
  color: #fff;
}
.footer-bot {
  font-size: 13px;
  padding: 15px 0 15px 0;
}
.footer-bot .fr{
  max-width: 235px;
}
.footer-bot p{
  margin: 0;
}
.footer-bot h4{
    font-size: 14px;
}
.footer-links-menu{
  padding: 0;
  margin: 0;
  text-align: center;
}
.footer-links-menu li{
  display: inline-block;
  list-style: none;
  vertical-align: middle;
}
.footer-links-menu li:before{
  background: #fff;
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  vertical-align: middle;
  margin: 0 10px;
  /*padding-left: 10px;*/
}
.footer-links-menu li:first-child:before{
  display: none;
}
.footer-links-menu a{
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
.mbs-browser-logo{
    text-align: right;
}
.mbs-browser-logo img{
    width: 30px;
}
.slide-text-right {
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    background: -webkit-linear-gradient(left, #030b30 0%, #061348 49%, #030b30 100%);
    background: -o-linear-gradient(left, #030b30 0%, #061348 49%, #030b30 100%);
    background: linear-gradient(to right, #030b30 0%, #061348 49%, #030b30 100%);
}

.slide-text-right .container {
    position: relative;
    overflow: hidden;
}

.slide-text-right span {
    padding-right: 15px;
    height: 100%;
    z-index: 1;
    position: relative;
    background-color: #030b30;
    display: inline-block;
    color: #0049cc;

}

.marquee {
    position: absolute;
    width: 100%;
    padding-left: 40px;
    top: 0;
    right: 15px;
}
.marquee p{
    margin: 0;
}

.marquee-animate {
    width: 100%;
    overflow: hidden;
}

.announcement-icon{
  position: absolute;
  top: -5px;
  right: 0;
  background: #0b1b43;
  font-size: 15px;
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  padding: 0 5px 0 15px;
  color: #eed318;
}

.single-featured-image-header img{
  max-width: 100%;
  height: auto;
}
#content{
  text-align: justify;
  padding-bottom: 40px;
}
.page-template-product #content{
  min-height: 600px;
}
.home #content{
  padding-bottom: 0;
}
.home-content{
  margin: 20px 0;
}
.page-entry-header{
  color: #015cff;
  padding: 20px 0;
  margin: 0 0 0;
  border-bottom: 0;
}
  .entry-header h1{
    margin: 0;
  }

.table{
  background: #fff;
  color: #5e86af;
}
.table thead{
    letter-spacing: 1px;
    background: #0d83ff;
    color: #fff;
    text-transform: uppercase;
}
.table-striped>tbody>tr:nth-child(odd) {
    background-color: #f3faff;
}

.table-score table{
  background: #102867;
  color: #b5b5b5;
  font-size: 11px;
  width: 800px;
  margin: auto;
}
.table-score table>tbody>tr:nth-child(odd) {
    background-color: #073f8a;
}
.table-score table>tbody>tr:first-child{
  background: #efd419;
  color: #102867;
  font-size: 13px;
  font-weight: bold;
}
.table-score table>tbody>tr>td{
    border-bottom: 1px solid transparent;
    width: 30px;
    padding: 5px;
}
.table-score table>tbody>tr>td:first-child{
  width: 75px;
}
.table-score table>tbody>tr>td:nth-child(2){
  text-align: right;
  width: 175px;
}
.table-score table>tbody>tr>td:nth-child(3){
  text-align: right;
}
.table-score table>tbody>tr>td:nth-child(4){
  text-align: center;
}
.table-score table>tbody>tr>td:nth-child(5){
  text-align: left;
}
.table-score table>tbody>tr>td:nth-child(6){
    text-align: left;
    width: 245px;
}

.table-score .fdw-icon{
    display: block;
    margin: 0 auto 5px;
}
.table-score ul{
  padding-left: 0;
  list-style: none;
  width: 800px;
  margin: auto;
  background: #102867;
}
.table-score li{
    float: left;
    width: 25%;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    border-left: 1px solid #001a5f;
    border-top: 1px solid #001a5f;
    color: #fff;
}
.svg-icon {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    position: relative;
    top: -0.0625em;
    vertical-align: middle;
    width: 1em;
}
.ts-icon{
    display: block;
    margin: 0 auto 5px;
    font-size: 34px;
    color: #efd419;
    line-height: 34px;
}

.progressive-jackpot{
  padding: 15px 0;
}
.progressive-live{
  position: relative;
  margin: 20px auto;
  overflow: hidden;
  text-align: center;
}
.progressive-live>div {
  position: absolute;
  bottom: 25px;
  left: 0;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  width: 100%;
}
.mobile-btns{
  display: none;
}
/*Archive*/
.entry-meta{
  display: none;
}
.entry-meta .updated{
  display: none;
}

.archive .site-main > article,
.category .site-main > article,
.search .site-main > article{
    margin: 10px 0 10px;
    padding: 40px 0;
    border-bottom: 1px solid #fff;
}

.archive .site-main > article .entry-title,
.archive .site-main > article p,
.category .site-main > article .entry-title,
.category .site-main > article p,
.search .site-main > article .entry-title,
.search .site-main > article p{
  margin-bottom: 30px;
}

.page-header .page-title {
  float: left;
  margin: 0;
  margin-right: 15px;
  padding-right: 15px;
  /*border-right: 2px solid #060f17;*/
  font-weight: 600;
  text-transform: uppercase;
}
.page-numbers.current{
  background: #efd419;
  color: #102867;
}
.taxonomy-description{
  color: #060f17;
}

.entry-title a{
  color: #4795fe;
}
.nav-links > *{
  background: #4795fe;
  padding: 15px 20px;
  color: #fff;
  display: inline-block;
}
.pagination{
  display: block;
  text-align: center;
  margin: 40px 0;
}
.post-navigation{
  margin-top: 30px;
}
.post-navigation .nav-links > *{
  background: none;
  padding: 15px 25px;
}
.post-navigation .nav-next{
  float: right;
  text-align: right;
}
.post-navigation .nav-previous{
  float: left;
  text-align: left;
}
.post-navigation .nav-title{
  display: block;
  position: relative;
  color: #4795fe;
}
.nav-title-icon-wrapper{
  position: absolute;
  top: 0;
  color: #4795fe;
}
.nav-next .nav-title-icon-wrapper{
  right: -25px;
}
.nav-previous .nav-title-icon-wrapper{
  left: -25px;
}
.nav-next a,
.nav-previous a{
  display: block;
  color: #efd419;
  text-decoration: none;
}
.menu-btn {
  display: none;
  position: absolute;
  cursor: pointer;
  top: 3px;
  left: 20px;
  background: none;
  padding: 0;
  font-size: 25px;
  color: #0049cc;
  border: 0;
}
.mobile-login-btn {
  display: none;
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 25px;
}
.mobile-login-btn a{
  text-decoration: none;
}
.close-btn{
  display: none;
  float:right;
  background: #4795fe;
  padding: 10px 15px;
  font-size: 16px;
  color: #04090d;
  border: 0;
}
.page-wrap{
  position: relative;
  overflow: hidden;
}
html.menu-open,
html.menu-open body{
  overflow: hidden;
  width: 100%;
  height: 100%;
}
html.menu-open .navigation-top{
  left: 0;
}
html.menu-open .bg-overlay{
  display: block;
}
.menu-open .page-wrap {
  transform: translate(-7px, 0);
}
.entry-content img{
  max-width: 100%;
  height: auto;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body{
    background: #4389ed;
}
.panel-default{
  border-color: #3f80e4;
}
.panel-default>.panel-heading{
  background-color: #efd419;
  border-color: #060f17;
}


/*Promo Template*/
.cat-list{ text-align: center; margin: 0 0 20px; }
.cat-list ul{
    display: inline-block;
    padding-left: 0;
    margin-left: 0;
}
.cat-list .nav-pills>li+li{ margin-left: 15px; }
.cat-list .nav-pills>li+li:first-child{ margin-left: 0; }
.cat-list .nav-pills>li.active>a,
.cat-list .nav-pills>li.active>a:focus,
.cat-list .nav-pills>li.active>a:hover{
    background-color: #efd419;
    color: #102867;
}
.nav>li>a:focus,
.nav>li>a:hover{
    background-color: #efd419;
}
.cat-list .nav-pills>li>a{
    color: #fff;
}
.promo-list{
    max-width: 950px;
    margin: auto;
}
.promo-list h1,
.promo-list h2,
.promo-list h3,
.promo-list h4,
.promo-list h5,
.promo-list h6{
    color: #000;
}
.promo-list .panel-heading,
.promo-list .panel-default{
    border: none;
}
.promo-list .panel-default>.panel-heading+.panel-collapse>.panel-body{
    background: #030b30;
    border: 0;
    color: #fff;
    max-height: 280px;
    overflow-y: scroll;
}

#accordion.promo-list .panel-heading{
    background: #bdbdbd;
    padding: 0;
}
.promo-list .panel-heading+.panel-collapse>.panel-body{
    border-color: #bdbdbd;
    padding: 10px 30px 30px;
    color: #000;
}
.promo-list .panel{
    background: #bdbdbd;
    margin-bottom: 20px;
    display: none;
}
.promo-thumb{
    padding-right: 0;
    position: relative;
}
.promo-thumb img{
  width: 100%;
}
.promo-thumb>span{
  color: #015cff;
  text-decoration: underline;
  font-size: 15px;
  display: block;
  background: #020621;
  text-align: center;
  padding: 3px 5px;
}
.promo-button{
    width: 60px;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    height: 100%;
    background: #4795fe;
}
.promo-button span{
    display: block;
    word-break: break-all;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #102867;
    width: 12px;
    margin: 45px auto;
}
.promo-list h3.promo-title {
    font-size: 35px;
    font-weight: 700;
    color: #015cff;
    text-align: left;
}

.promo-list .arrow-left {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #4795fe;
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.promo-list .panel.show{
    display: block;
}
td, th {
    padding: 0 10px;
}
    table.plain-table, .plain-table td, .plain-table th {
        padding: 5px 5px;
        background: none;
        border: 0 !important;
        text-align: left;
    }
    table.plain-table td.text-center{
        text-align: center;
    }

.caption-center .caption-inner {
    float: left;
    margin: auto;
}

.mbs-btn-sup {
    text-transform: uppercase;
    background: #0b1b43;
    color: #f0ad4e;
    display: inline-block;
    padding: 4px 15px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
    vertical-align: middle;
}

.mbs-btn-sup:hover{
    color: #4795fe;
    text-decoration: none;
}

.mbs-btn-sup i {
    font-size: 19px;
    margin-right: 0;
    vertical-align: middle;
    color: #f0ad4e;
    display: inline-block;
}

.mbs-btn-sup span {
    text-indent: 0;
    margin: 0 0 0 6px;
    background: none;
    float: none;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

.svg-icon {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    position: relative;
    top: -0.0625em;
    vertical-align: middle;
    width: 1em;
}
.box-three{
  /*background: #04090d;*/
  padding: 30px 0;
  /*color: #f5ba0f;*/
}
.box-three .bx-wrapper{
    background: none;
}
.box-three .bx-wrapper .bx-pager{
    bottom: -20px;
}
.box-three .row > div{
/*  background: #000;
  height: 315px;*/
}
.box-three .row > div, .box-three .row-2 > div {
    /*background: rgba(4, 34, 66, 0.40);*/
    height: 300px;
}
.box-three .container{
    /*max-width: 985px;*/
}
.box-three h3{
  font-size: 18px;
  color: #015cff;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.box-three .center-box-wrap{
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  position: relative;
}
.box-three .center-box-wrap:before,
.box-three .center-box-wrap:after{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 2px solid #d8d8d8;
  -webkit-border-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),color-stop(#d8d8d8),to(rgba(0,0,0,.5))) 1 100%;
  -webkit-border-image: linear-gradient(to bottom,rgba(0,0,0,.5),#d8d8d8,rgba(0,0,0,.5)) 1 100%;
  -o-border-image: linear-gradient(to bottom,rgba(0,0,0,.5),#d8d8d8,rgba(0,0,0,.5)) 1 100%;
  border-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),color-stop(#d8d8d8),to(rgba(0,0,0,.5))) 1 100%;
  border-image: linear-gradient(to bottom,rgba(0,0,0,.5),#d8d8d8,rgba(0,0,0,.5)) 1 100%;
  background-size: 100% 100%;
  background-position: center;
  position: absolute;
  top: 0;
}
.box-three .center-box-wrap:before{
  left: 0;
}
.box-three .center-box-wrap:after{
  right: 0;
}
.box-three ul{
  padding-left: 0;
  list-style: none;
}
.box-list-1{}
.box-list-1 li{
    font-size: 18px;
    margin-bottom: 0;
    color: #fff;
    background:rgba(4, 34, 66, 0.40);
    border-bottom: 1px solid #022742;
    position: relative;
}
.box-list-1 li:hover{
    background: rgba(4, 34, 66, 0.70);
}
.box-list-1 li a{
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 15px 70px 15px 15px;
    padding-right: 40px;
}
.box-list-1 li span{
  position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    /*background: #021727;*/
    background: rgba(2, 23, 39, 0.35);
    padding: 13px 17px;
}
.box-slide{
  padding-left: 0;
}
/*.box-slide li{*/
/*  margin-bottom: 20px;*/
/*}*/
.box-list li{
  padding-left: 100px;
  margin-bottom: 20px;
  position: relative;
}
.box-icon{
  position: absolute;
  top: 0;
  left: 0;
  font-size: 35px;
  line-height: 35px;
}
.box-txt i{
  font-style: normal;
  display: block;
  text-transform: uppercase;
  color: #fff;
}
.box-wrap .h5{
  margin-top: 0;
}
.dw-box{}
.dw-title{
  font-size: 18px;
  display: block;
  color: #fff;
}
.dw-title.h4 {
    font-size: 16px;
    margin-top: 0;
}
.dw-box i{
  font-style: normal;
}
.dw-box .lg-txt{
  font-size: 30px;
  color:#fff;
}
.dw-box .md-txt{
  font-size: 14px;
}
.dw-box li{
  margin-bottom: 15px;
}
.dw-pg-bar{
  background: #fff;
  width: 100%;
  height: 16px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.dw-pg-inner{
  position: absolute;
  background: #40fe41;
  top: 0;
  left: 0;
  height: 16px;
}

.fast-transaction{
  display: none;
}
.col-4{
    float: left;
    width: 25%;
    padding: 5px;
}
.prod-item{
  display: block;
  vertical-align: middle;
  position: relative;
  max-width: 275px;
  overflow: hidden;
  margin: auto;
}
.prod-desc{
  z-index: 3;
  transition: all linear .2s; 
  text-align: center;
  position: absolute;
  width: 50%;
  height: 56px;
  top: 25%;
  right: 0;
}
.prod-item:hover .prod-desc{
  width: 100%;
  height: 100%;
}
.prod-logo {
  width: 130px;
  margin: 0 auto 5px;
}
.prod-item .btn{
  display: inline-block;
  background-color: transparent;
  width: 163px;
  margin: auto;
  color: #fff;
  border: 2px solid #fff;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-left: 100%;
  opacity: 0;
  margin-top: 65%;
  transition: all ease-in .2s;
}
.prod-item:hover .btn{
  margin-left: auto;
  opacity: 1;
  margin-top: auto;
}
.prod-item:hover .prod-logo{
  width: 100%;
}
.prod-item .btn i {
  float: right;
  padding: 3px 10px;
  background: #fff;
  color: #000;
  font-size: 25px;
}
.prod-item .btn .text-label {
  display: inline-block;
  padding: 5px 15px;
}
/*.prod-item.coming-soon:before{
  content: "";
  background: url('../images/coming-soon.png') no-repeat;
  background-size: 100%;
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
}
.prod-item.under-maintenance:before{
  content: "";
  background: url('../images/under-maintenance.png') no-repeat;
  background-size: 100%;
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
}*/
.prod-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    background: #000;
    opacity: 0.5;
    transition: all linear .2s;
}
.prod-item:hover .prod-overlay{
  width: 100%;
  height: 100%;
}
.prod-item.coming-soon .prod-overlay,
.prod-item.under-maintenance .prod-overlay{
  display: none;
}
.mbs-floating{
  position: fixed;
  top: 174px;
  right: -216px;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9999;
  transition-delay: 1s;
}
  .mbs-floating-left{
    left: -216px;
    right: auto;
  }

.mbs-btn-float{
    background: #0049cc;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    width: 193px;
    font-size: 17px;
    text-transform: uppercase;
    padding: 7px 5px;
    position: absolute;
    left: -124px;
    top: 70px;
    cursor: pointer;
    text-align: center;
}
  .mbs-floating-right:hover{
    right: 0;
    transition-delay: 0s;
  }
  .mbs-floating-left.active{
    left: 0;
  }
  .mbs-floating-right .mbs-btn-float{
    box-shadow: -3px -7px 10px -3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -3px -7px 10px -3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: -3px -7px 10px -3px rgba(0, 0, 0, 0.4);
  }
  .mbs-floating-left .mbs-btn-float{
    right: -112px;
    top: 67px;
    left: auto;
    width: 177px;
    box-shadow: -3px 7px 10px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -3px 7px 10px 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: -3px 7px 10px 3px rgba(0, 0, 0, 0.4);
  }
.mbs-btn-float *{
  vertical-align: middle;
}
.mbs-btn-float span{
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.mbs-floating-left .mbs-btn-float span{
  margin: 0 16px 0 15px;
}
.mbs-btn-float i{
  font-size: 20px;
}
.mbs-btn-float .fa-angle-double-down{
  margin-right: 4px;
}
.icon-big {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border: 1px solid #ffff;
  border-radius: 50%;
  text-align: center;
  transform: scaleY(-1);
  margin-left: 5px;
}
.icon-big i{
  font-size: 30px;
}
  .mbs-floating-right.active .mbs-btn-float .fa-angle-double-up:before{
    content: "\f103";
  }
.mbs-contacts{
  background: #040e38;
  padding: 10px 20px 0;
}
.mbs-contacts ul{
  padding: 0;
  margin: 0 -20px;
  background: #0b1b43;
}
.mbs-contacts ul a{
    color: #fff;
    text-decoration: none;
}
.mbs-contacts li{
  background: #061348;
  list-style: none;
  padding: 12px 15px 12px 60px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  font-size: 16px;
  font-weight: bold;
}
  .mbs-contacts li:first-child{
    border-top: 0;
  }
  .mbs-contacts li:hover{
    background: #304fd0;
  }
  .mbs-contacts li:hover a{
    color: #040e38;
  }
  .mbs-contacts li:hover .mbs-c-icon{
    color: #40fe41;
  }
.mbs-hc {
  text-align: center;
  padding-bottom: 10px;
}
.mbs-slogan{
  position: relative;
  padding: 10px 0 10px 40px;
  font-size: 12px;
}
.mbs-slogan .icon-clock{
  font-size: 35px;
  position: absolute;
  top: 8px;
  left: 0;
}
.mbs-hc img{
  width: 55px;
  display: inline-block;
}
.mbs-hc span{
  display: inline-block;
  line-height: 1.1;
  vertical-align: middle;
}

.mbs-hc1{
  font-size: 48px;
  letter-spacing: -4px;
  font-weight: bold;
  color: #fff;
}
.mbs-hc2{
  color: #95c2ff;
}
.mbs-bc{
  margin: 0 -20px;
}
.mbs-bc a{
  float: left;
  width: 50%;
  display: block;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding: 7px 0;
  text-decoration: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  font-size: 17px;
}
  .mbs-bc a:hover{
    opacity: 0.8;
  }
  .mbs-bc a:first-child{
    background: #e4e404;
  }
.mbs-c-icon{
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 30px;
}

.mbs-download{
  
}
.mbs-download ul{
padding: 0;
    background: #102867;
}
.mbs-download li{
    list-style: none;
    font-size: 18px;
    border-bottom: 1px solid #1a3477;
}
.mbs-download img{
  vertical-align: middle;
  margin-right: 10px;
  width: 45px;
}
.mbs-download a{
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  display: block;
}
  .mbs-download a:hover{
    background: #fff;
    color: #4795fe;
  }
  .mbs-download a:hover span{
    color: #04090d;
  }
.mbs-download div{
  display: inline-block;
  vertical-align: middle;
  line-height: 22px;
}
.mbs-download a span{
  font-size: 12px;
    text-transform: uppercase;
    color: #efd419;
}
.mbs-upper-links{
  background: #04090d;
  padding: 10px 0 0;
  color: #4795fe;
}
.mbs-upper-links ul{
  padding: 0;
  text-transform: uppercase;
}
.mbs-upper-links li{
  display: inline-block;
  list-style: none;
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid #172d3e;
}
.mbs-upper-links li:last-child{
  border-right: 0;
}
.mbs-upper-links a{
  color: #4795fe;
}

.mbs-browser-sup span{
  display: inline-block;
  margin-bottom: 0;
}
.mbs-browser-sup ul{
  padding: 0;
  margin: 0;
}
.mbs-browser-sup li{
  display: inline-block;
  border: 0;
  padding-right: 5px;
  margin-right: 0px;  
}
.secondary-menu .sub-menu {
    z-index: 999;
}
.ks-btn-mobile{
    display: none;
    margin: 10px 0;
}
/*.table-togel {*/
/*    text-align: left;*/
/*    margin-bottom: 0;*/
    /*margin-top: 15px;*/
/*}*/
/*.table-togel strong{*/
/*  color: #f5ba0f;*/
/*}*/
/*.table-togel.table>tbody>tr>td{*/
/*    border-top: 0;*/
/*    padding: 4px 8px 3px;*/
/*}*/
/*.table-togel.table>tbody>tr>td:first-child {*/
/*    padding-left: 0;*/
/*}*/

/*.table-togel tbody>tr:first-child .site-highlight{*/
/*  color: #09205e;*/
/*}*/
/*.table-togel tbody>tr:nth-child(2) .site-highlight{*/
/*  color: #00007c;*/
/*}*/
/*.table-togel tbody>tr:nth-child(3) .site-highlight{*/
/*  color: #e60017;*/
/*}*/
/*.table-togel tbody>tr:nth-child(4) .site-highlight{*/
/*  color: #c38a04;*/
/*}*/
/*.table-togel tbody>tr:nth-child(5) .site-highlight{*/
/*  color: #18adb5;*/
/*}*/
/*.table-togel tbody>tr:nth-child(6) .site-highlight{*/
/*  color: #F00;*/
/*}*/
/*.table-togel tbody>tr:nth-child(7) .site-highlight{*/
/*  color: #6fb900;*/
/*}*/
/*.table-togel tbody>tr:nth-child(8) .site-highlight{*/
/*  color: blue;*/
/*}*/
/*.table-togel tbody>tr:nth-child(9) .site-highlight{*/
/*  color: #6B8E23;*/
/*}*/

/*.site-highlight {*/
/*    display: inline-block;*/
/*    background: #fff;*/
/*    text-align: center;*/
/*    font-weight: 700;*/
/*    font-size: 13px;*/
/*    padding: 1px 5px;*/
/*    margin: auto;*/
/*}*/
.ses-hide{
    display: none;
}

.menu-floating {
  display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: #eed318;
    /*border-top: 1px solid #0c2358;*/
    font-size: 12px;
}

.menu-floating li {
    float: left;
    list-style: none;
    width: 25%;
    border-right: 1px solid #d0b810;
}

.menu-floating li:last-child{
    border-right: 0;
}

.menu-floating ul {
    padding:  0;
    margin: 0;
}

.menu-floating .menu-icon {
    display: block;
    font-size: 24px;
    line-height: 26px;
}

.menu-floating a {
    color: #102867;
    display: block;
    padding: 2px 10px;
    letter-spacing: 0px;
}

.post-entry {
    border-bottom: 1px solid #18347d;
    padding-bottom: 30px;
    margin: 35px 0;
    position: relative;
}
.post-entry:after {
    content: "";
    height: 1px;
    width: 30px;
    position: absolute;
    bottom: -1px;
    background: #0d83ff;
}
.popover,
.popover-title{
  background: #030b30;
}
.popover{
  border: 1px solid grey;
  font-size: 12px;
}
.popover.bottom>.arrow{
  border-bottom-color: grey;
}
.popover-title{
  border-color: #051664;
  color: #015cff;
  font-size: 12px;
}
.popover.bottom>.arrow:after{
  border-bottom-color: #00082a;
}
.tooltip-inner{
  font-size: 11px;
  text-transform: capitalize;
}
.hot-games .h3{
  color: #015cff;
  font-size: 17px;
  font-weight: normal;
  text-transform: uppercase;
}
.hot-games .icon-fire{
  color: red;
}
.scrolling-list{
  position: relative;
  overflow: hidden;
}
.scrolling-list>div{
  position: relative;
  overflow: hidden;
  height: 130px;
}
.scrolling-list>div>div{
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.scrolling-list>div>div:first-child{
  animation: 15s linear infinite normal none running leave_this;
}
.scrolling-list>div>div:nth-child(2){
  animation: 15s linear infinite normal none running enter_this;
}
.scrolling-list>div:hover>div{
    animation-play-state: paused;
}
.scrolling-list .item-game{
  float: left;
  padding: 3px;
  width: 135px;
  color: #fff;
}
.scrolling-list .item-game:hover{
  color: #015cff;
  text-decoration: none;
}
.scrolling-list .item-game .h5{
  margin-bottom: 2px;
}

@keyframes enter_this {
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}
@keyframes leave_this {
  0%{
    transform: translateX(100%);
  }
  100%{
    transform: translateX(0);
  }
}
@media (max-width: 1199px){
  .social-navigation{
    margin-left: 0;
  }
  .header-buttons ul{
    padding-left: 0;
  }
  .ft-list .ft-icon {
    float: none;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #1a2f4c;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .ft-title {
    text-align: center;
  }
}

@media (max-width: 1192px){
  .nivoSlider{
    position: relative;
  }
  .banner-slider{
    width: 159.4%;
    height: 100%;
    display: block;
    position: absolute;
    left: -30%;
    /* margin-left: 50%; */
    text-align: center;
  }
  .slide-content-img{
      display: block;
  }
}

@media (max-width: 991px){
  .site-branding{
    text-align: center;
  }
  .custom-logo-link {
    float: none;
    display: inline-block;
    margin-bottom: 20px;
  }
  #top-menu > li{
    font-size: 14px;
  }

  .caption-text{
    margin-top: 10%;
  }
  .caption-text h3{
    font-size: 30px;
  }
  .caption-text h6{
    font-size: 20px;
  }
  .caption-text p{
    font-size: 15px;
  }
  .flex-control-nav{
    display: none;
  }

}
@media (min-width: 768px){
  #top-menu>li:hover>.sub-menu-wrap,
  #top-menu>li>.sub-menu-wrap li:hover>.sub-menu-wrap{
    display: block;
  }
  .secondary-menu li:hover > .sub-menu{
    display: block;
  }
}
@media (max-width: 769px){
  .site-branding{
    position: relative;
  }
  .custom-logo-link{
      margin: 0;
  }
  .logo-wrap{
    float: none;
    padding: 0;
  }
  #site-navigation > div,
  #top-menu,
  #top-menu > li{
    display: block;
  }
  #top-menu > li{
    width: 100%;
    position: relative;
    font-size: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(1,4,23,.3);
    text-align: center;
  }

  #top-menu .icon{
    float: right;
    margin-top: 3px;
  }
  #top-menu li.current-menu-item > a,
  #top-menu li.current-menu-ancestor > a{
    background: #0f1d86;
  }
  #top-menu .dropdown-toggle .icon{
    display: block;
  }
  .navigation-top{
    display: block;
    position: fixed;
    width: 100px;
    height: 100%;
    top: 0;
    left: -100px;
    z-index: 9999;
    overflow-y: auto;
    background: #061348;
    transition-duration: 300ms;
  }
  .navigation-top .container{
    width: 100%;
    padding: 0;
  }
  #top-menu .sub-menu-wrap{
    width: 100px;
    height: 100%;
    position: fixed;
    left: 100px;
    top: 0;
    padding: 0;
    background: #0f1d86;
    box-shadow: none;
    overflow-y: scroll;
  }
  .sub-menu-wrap ul{
    margin: 0;
  }
  .sub-menu-wrap li {
    display: block;
    list-style: none;
    padding: 0;
    width: 100%;
    float: left;
    margin: 0;
    border-bottom: 1px solid rgba(1,4,23,.4);
  }
  .sub-menu li a{
    text-align: center;
  }
  #top-menu .icon{
    margin: 0;
  }
  #top-menu a{
    padding: 7px 5px;
  }
  #top-menu a > .icon{
    display: none;
    background: 0 0;
    border: 0;
    text-align: center;
    position: absolute;
    top: 13px;
    right: 15px;
    padding: 4px;
    color: #04090d;
    font-size: 25px;
  }
  #site-navigation button {
    display: none;
  }
  #site-navigation button.dropdown-toggle{
    transform: rotate(-90deg);
  }
  #site-navigation button.dropdown-toggle.toggled-on{
    transform: rotate(0);
  }
  #top-menu .open-submenu>.sub-menu-wrap,
  #top-menu .sub-menu.toggled-on{
    display: block;
  }
  #top-menu .sub-menu .icon{
    transform: rotate(0);
  }
  #top-menu .sub-menu .sub-menu{
    margin-left: 0;
    box-shadow: none;
  }
  #top-menu .sub-menu .icon{
    margin-top: 0;
  }
  #top-menu .sub-menu-wrap .sub-menu-wrap {
    width: 120px;
    left: 200px;
    padding: 0;
    background: #061348;
}
  #top-menu .sub-menu-wrap .sub-menu-wrap:before{
    display: none;
  }
  .fast-transaction{
    overflow: hidden;
  }
  .rigth-block{
    display: none;
  }
  .header-buttons,
  .social-navigation{
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
  }
  .header-buttons ul{
    margin: 0;
  }
  .menu-btn,
  .close-btn,
  .mobile-login-btn{
    display: block;
  }
    .box-three .row > div, 
    .box-three .row-2 > div{
      border-top: 3px solid rgba(15,29,134,.8);
      height: auto;
      padding-top: 0;
      padding-bottom: 10px;
    }
  .mobile-btns{
    display: block;
  }
  .box-three .center-box-wrap:before,
  .box-three .center-box-wrap:after{
    display: none;
  }
  .col-4{
    width: 50%;
  }
}

@media (max-width: 767px){
  .page-wrap{
    transition-duration: 300ms;
  }
  .site-header{
    background: #061348;
  }
  .site-branding img{
    max-width: 130px;
  }
  .secondary-menu>li:hover>a, 
  .secondary-menu>li.current_page_item>a, 
  .secondary-menu>li.current-menu-parent>a, 
  .secondary-menu>li.current-menu-ancestor>a, 
  .secondary-menu>li.current-menu-item>a, 
  .secondary-menu .sub-menu>.current-menu-item>a {
      background: none;
  } 
  .secondary-menu .sub-menu{
      position: relative;
      min-width: 100%;
      box-shadow: none;
  }
  .secondary-menu>li {
      display: block;
      float: none;
      list-style: none;
      border-bottom: 1px solid #04184c;
  }
  .secondary-menu .sub-menu li{
      border-top: 1px solid #2d3b44;
      border-bottom: 0;
  }
  .secondary-menu .sub-menu li a {
      padding: 10px 15px 10px 25px;
  }
  .secondary-menu .menu-item-has-children>a:after{
      float: right;
      content: "\f067";
  }
  .secondary-menu .menu-item-has-children>a.open-submenu:after{
      content: "\f068";
  }    
  #secondary-nav>div{
      text-align: left;
  }
  .header-buttons{
    width: 100%;
  }
  .header-buttons a.btn {
      float: left;
      display: block;
      margin-left: 0;
      width: 50%;
      padding: 10px;
  }
  .progressive-live img{
    max-width: 290px;
  }
  .progressive-live>div{
    bottom: 10px;
    font-size: 20px;
  }
  .box-three{
    padding: 0;
  }
}

@media (max-width: 667px){
  .site-branding .wrap{
    padding: 0;
  }
  .slide-text-right .ks-fd{
    display: none;
  }
  .ks-btn-mobile{
    display: block;
  }
  .social-navigation {
    margin-bottom: 15px;
  }
  .flex-direction-nav{
    display: none;
  }
  .page-entry-header{
    padding: 25px 0;
  }
  #banner{
      overflow:visible;
  }
  .site-footer{
      text-align: center;
  }
  .site-footer .fl,
  .site-footer .fr{
    float: none;
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .footer-bot img{
      max-width: 100%;
  }
  .footer-bot .text-right,
  .mbs-browser-logo{
      text-align: center;
  }
  #livechat-compact-container,
  #livechat-full{
      display: none;
  }
  .menu-floating{
      display: block;
  }
    .box-wrap.box-togel {
        margin-bottom: 55px;
    }
}

@media (max-width: 414px){
  .social-navigation{
    margin-bottom: 15px;
  }
  .fast-transaction {
    padding: 30px 0;
  }
  .ft-header{
    background: none;
    height: auto;
  }
  .app-btn{
    width: 100%;
    margin: 15px 0;
  }
  .ft-header h3{
    color: #fff;
    position: relative;
    z-index: 1;
  }
  .ft-header span {
      color: #9c9c9c;
  }
  .ft-header .arrow-down{
    display: none;  }
  .ft-list .ft-icon{
    max-width: 100px;
    margin: 0 auto 15px;
  }
  .welcome-txt,
  .download-app{
    padding: 30px 0;
  }
  .footer-bot {
     padding: 15px 0 20px;
   }
  .footer-links,
  .site-info{
    float: none;
  }
  .footer-links{
    margin-bottom: 15px;
  }
  .col-4{
    float: none;
    width: 100%;
  }
}



@media (max-width: 1023px){
  .mbs-floating{
    display: none;
  }
  .fast-transaction{
    display: block;
  }
}
@media (max-width: 787px){
  .mbs-upper-links .fl,
  .mbs-upper-links .fr,
  .mbs-browser-sup .fl,
  .mbs-browser-sup .fr{
    float: none;
    text-align: center;
    margin: 0 0 15px;
  }
}


.login-modal{
  display: none;
  background: rgba(0, 45, 170, 0.75);
  position: fixed;
  width: 370px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 2px 5px 5px rgba(0, 0, 0, 0.30);
}
.login-wrap{
  background: #102867;
  padding: 30px 15px;
}
.login-modal .h1{
  font-weight: bold;
  margin: 10px 0;
  text-transform: uppercase;
}
.btn-list .btn {
  display: block;
  /* background: red; */
  background: linear-gradient(to right, #d98e05 0%,#efd419 100%);
  color: #fff;
  max-width: 300px;
  margin: 30px auto;
  padding: 15px 10px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-list .btn-style4{
  background: linear-gradient(to right, #a80707 0%,#ff0000 100%);
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  opacity: 0.6;
}

.modal-close {
  position: absolute;
  background: #efd419;
  cursor: pointer;
  color: #102867;
  width: 40px;
  height: 40px;
  line-height: 35px;
  font-size: 25px;
  vertical-align: middle;
  border-radius: 50%;
  top: -15px;
  right: -15px;
  z-index: 999;
  text-align: center;
  border: 2px solid #fff;
}

@media(max-width: 400px){
  .login-modal{
    width: 90%;
  }
}