#mobileMenu{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: 10001;
  transition: .5s ease-out;
  overflow: visible;
}

#mobileMenu.menu{
  min-height: 100vh;
}

#mobileMenu .pane{
  background-color: #31013d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px 0 60px;
  height: 50px;
  width: 100%;
  position: fixed;
  bottom: 0;
  transition: .3s;
}

#mobileMenu.menu .pane{
  bottom: -50px;
}

#mobileMenu .pane .chat,
#mobileMenu .pane .search{
  padding: 7px 6px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  font-weight: bold;
}
#mobileMenu .pane .search.active{
  border: 1px solid rgba(255,255,255,.6);
}
#mobileMenu .pane .chat{
  background: url('../media/images/icons/mobileMenuSupport.svg') no-repeat 8px 5px;
  background-size: 35px;
  padding-left: 32px;
}
#mobileMenu .pane .search{
  background: url('../media/images/icons/search.svg') no-repeat 6px 6px;
  background-size: 18px;
  padding-left: 32px;
  position: relative;
  top: 110%;
  font-size: 12px;
}
#mobileMenu .pane .search  img{
  position: relative;
  width: 25px;
}
#mobileMenu .pane .home svg{
  width: 17px;
  height: 17px;
  margin-bottom: 3px;
  margin-left: 6px;
}
#mobileMenu .pane .home a{
  color: white;
  font-size: 11px;
}
#mobileMenu .pane .slots_mobile img{
  width: 17px;
  height: 17px;
  margin-bottom: 4px;
  margin-left: 4px;
}
#mobileMenu .pane .slots_mobile a{
  color: white;
  font-size: 11px;
}
#mobileMenu .pane .slots_mobile{
  height: 35px;
  /*padding: 7px 10px;*/
  position: relative;
  /*border-radius: 5px;*/
  /*border: 1px solid rgba(255,255,255,.2);*/
  display: flex;
  align-items: center;
  font-weight: bold;
  top: 110%
}
#mobileMenu .pane .home{
  height: 50px;
  /*padding: 7px 10px;*/
  position: relative;
  /*border-radius: 5px;*/
  /*border: 1px solid rgba(255,255,255,.2);*/
  display: flex;
  align-items: center;
  font-weight: bold;
  top: 110%;
}
#mobileMenu .pane .live_casino img{
  width: 17px;
  height: 17px;
  margin-bottom: 4px;
  margin-left: 18px;
}
#mobileMenu .pane .live_casino a{
  color: white;
  font-size: 11px;
  /*width: 70px;*/
}
#mobileMenu .pane .live_casino{
  height: 35px;
  /*padding: 7px 10px;*/
  position: relative;
  /*border-radius: 5px;*/
  /*border: 1px solid rgba(255,255,255,.2);*/
  display: flex;
  align-items: center;
  font-weight: bold;
  top: 110%;
}

#mobileMenu .pane .bet_slip img{
  width: 17px;
  height: 17px;
  margin-bottom: 4px;
  margin-left: 8px;
}
#mobileMenu .pane .bet_slip a{
  color: white;
  font-size: 11px;
  /*width: 40px;*/
}
#mobileMenu .pane .bet_slip{
  height: 35px;
  /*padding: 7px 10px;*/
  position: relative;
  /*border-radius: 5px;*/
  /*border: 1px solid rgba(255,255,255,.2);*/
  display: flex;
  align-items: center;
  font-weight: bold;
  top: auto;
}

#mobileMenu .pane .bet_slip span{
  position: absolute;
  top: -7px;
  right: 10px;
  background: red;
  padding: 2px 5px;
  border-radius: 50%;
  bacground: red;
  font-weight: bold;
  font-size: 8px;
  display: none;
}

#mobileMenu .pane .sports img{
  width: 17px;
  height: 17px;
  margin-bottom: 4px;
  margin-left: 8px;
}
#mobileMenu .pane .sports a{
  color: white;
  font-size: 11px;
  /*width: 40px;*/
}
#mobileMenu .pane .sports{
  height: 35px;
  /*padding: 7px 10px;*/
  position: relative;
  /*border-radius: 5px;*/
  /*border: 1px solid rgba(255,255,255,.2);*/
  display: flex;
  align-items: center;
  font-weight: bold;
  top: auto;
}

#mobileMenu .pane .username{
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -20px;
  background-color: #31013d;
  height: 22px;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px 5px 0 0;
  opacity: 1;
  transition: .5s;
}

#mobileMenu.menu .pane .username{
  opacity: 0;
}

#mobileMenu .burgerIcon{
  width: 34px;
  height: 34px;
  position: fixed;
  bottom: 3px;
  left: 10px;
}

#mobileMenu .burgerIcon span{
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 3px;
  background: #fff;
  transition: .2s;
}
#mobileMenu .burgerIcon:after,
#mobileMenu .burgerIcon:before {
  content: '';
  display: block;
  position: absolute;
  height: 10px;
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
  height: 4px;
  transition: .2s;
}

#mobileMenu .burgerIcon:after {
  bottom: 10px;
}
#mobileMenu .burgerIcon:before {
  top: 10px;
  opacity: 1;
}

#mobileMenu .burgerIcon.active span{
  transform: translateY(10px) rotate(45deg);  
}
#mobileMenu .burgerIcon.active:after {
  transform: translateY(-10px) rotate(-45deg);
}
#mobileMenu .burgerIcon.active:before {
  opacity: 0;
  height: 0;
}

#mobileMenu .menu{
  width: 100%;
  min-height: 100vh;
  background-color: #130A25;
  background: linear-gradient(0deg, rgba(46,3,61,1) 0%, rgba(52,7,68,1) 20%, rgba(19,10,37,1) 100%);
  position: absolute;
  top:50px;
  opacity: .5;
  transition: .5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#mobileMenu.menu .menu{
  top:0;
  opacity: 1;
}

#mobileMenu .menu .section{
  padding: 10px;
  position: relative;
}
#mobileMenu.guest .menu .section{
  padding: 15px 10px;
}
#mobileMenu .menu .section:after{
  display: block;
  content: "";
  position: absolute;
  bottom:-15px;
  left:0;
  width: 100%;
  height: 30px;
  background: url('../media/images/borders.png') no-repeat 45% center;
}
#mobileMenu .menu .section.links{
  margin-bottom: 25px;
}

#mobileMenu .menu .section{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-weight: bold;
  text-transform: uppercase;
}
#mobileMenu .menu .section>a{
  display: block;
  width: 50%;
  color: #fff;
  padding: 15px 15px 15px 45px;
  position: relative;
}

#mobileMenu.guest .menu .section>a{
  padding: 15px 15px 18px 45px;
}

#mobileMenu .menu .section>a:before{
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  height: 25px;
  width: 30px;
  background: no-repeat center / contain;
}
#mobileMenu .menu .section>a.slots:before{
  background-image: url(../media/images/icons/slots.svg);
}
#mobileMenu .menu .section>a.roulette:before{
  background-image: url('../media/images/icons/roulette.svg');
}
#mobileMenu .menu .section>a.bjack:before{
  background-image: url('../media/images/icons/blackjack.svg');
}
#mobileMenu .menu .section>a.baccarat:before{
  background-image: url('../media/images/icons/baccarat-icon-new.svg');
}
#mobileMenu .menu .section>a.live:before{
  background-image: url('../media/images/icons/For_Live_Casino_New.svg');
}
#mobileMenu .menu .section>a.allGames:before{
  background-image: url('../media/images/icons/dice.svg');
}
#mobileMenu .menu .section>a.bonuses:before{
  background-image: url('../media/images/icons/bonuses.svg');
}
#mobileMenu .menu .section>a.getBonus:before{
  background-image: url('../media/images/icons/getbonus.svg');
}
#mobileMenu .menu .section>a.settings:before{
  background-image: url('../media/images/icons/settings.svg');
}
#mobileMenu .menu .section>a.withdraw:before{
  background-image: url('../media/images/icons/withdraw.svg');
}
#mobileMenu .menu .section>a.deposit:before{
  background-image: url('../media/images/icons/deposit.svg');
}
#mobileMenu .menu .section>a.account:before{
  background-image: url('../media/images/icons/user2.svg');
}
#mobileMenu .menu .section>a.sports:before{
  background-image: url('../media/images/icons/sports.svg');
  height: 30px;
}
#mobileMenu .menu .section>a.cashback:before{
  background-image: url('../media/images/icons/cashback.svg');
}
#mobileMenu .menu .section>a.gamesHistory:before{
  background-image: url('../media/images/icons/gamesHistory.svg');
}
#mobileMenu .menu .section>a.news:before{
  background-image: url('../media/images/icons/news.svg');
}
#mobileMenu .menu .section>a.support:before{
  background-image: url('../media/images/icons/support.svg');
}
#mobileMenu .mainActions{
  width: 80%;
  margin-left: 2%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 50px;
}
#mobileMenu .logout-btn{
  background-repeat: no-repeat;
  width: auto;
  height: auto;
  margin-top:0;
}
#mobileMenu .langbox>li:first-child{
  box-shadow:none;
  background: transparent !important;
}
#mobileMenu .langbox > li > a:after{
  transform: rotate(180deg);
}
#mobileMenu .langbox > li > a.is-open:after{
  transform: rotate(0deg);
}
#mobileMenu .langbox-dropdown.is-open{
  top: auto;
  bottom: 100%;
}

@media (max-height: 600px) {
  #mobileMenu .menu {
    padding-bottom: 65px;
  }
  #mobileMenu.menu .menu {
    padding-top: 100px;
  }
}
.toTop.mobile {
  right: 17px;
  bottom: 133px;
}
.block-filter.mobile{
  position: fixed;
  height: 100vh;
  top:0;
  padding-bottom: 75px;
  width: 100%;
  background-color: #130A25;
  background: linear-gradient(0deg, rgba(46,3,61,1) 0%, rgba(52,7,68,1) 20%, rgba(19,10,37,1) 100%);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

body.mobileMenuActive{
  overflow: hidden;
}
body.mobilePanelActive{
  padding-bottom: 50px;
}
body.mobileMenuMode header{
  padding: 10px 15px 5px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.mobileMenuMode header .header-left,
body.mobileMenuMode header .header-right-part{
  position: initial;
}
body.mobileMenuMode header .header-left .logoPc{
  height:50px;
}
body.mobileMenuMode header .header-right-part .usr-block{
  margin: 0;
  padding: 0;
}
body.mobileMenuMode footer{
  padding-bottom: 50px;
}
body.mobileMenuModeActive .toTop{
  display: none;
}

.mobile_mcgSelect{
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
    #gamePage .video-container .playBtn{
     display: none;
  }
  #gamePage .video-container .mobile_playBtn{
    display: inline-block;
    position: relative;
    bottom: 0;
    left: 0;
    top: 0;
    transform: none;
    padding: 7px 36px;
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  #gamePage .video-container {
    text-align: center;
  }
  #gamePage .video-container .bottom-nav .regBtn.exit-btn {
    margin-right: -6px;
    margin-top: 15px;
    width: 100%;
  }
  #gamePage .video-container .bottom-nav .regBtn.deposit-btn{
    width: 100%;
    margin-top: 20px;
  }
  #gamePage .video-container .bottom-nav .mcgSelect {
    margin-left: auto;
    margin-right: auto;
  }
}



#gamePage .video-container .bottom-nav .regBtn.full_screen::after{
  content: none;
}

.full_screen{
  display: none;
}
#gamePage .bottom-nav.noSelect .button-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#gamePage .bottom-nav.noSelect .button-box .mcgSelect.mobile_mcgSelect {
  margin-top: 15px;
  margin-bottom: 0;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #gamePage .bottom-nav.noSelect .button-box .regBtn.exit-btn {
    display: block;
    flex: 1;
  }
  .full_screen{
    display: block;
  }
  .full_screen_parent{
    width: 100%;
    display: none;
  }
}