BODY::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .16);
}

BODY::-webkit-scrollbar-track {
  background: #314033;
}


.home-block {
  border: 1px solid rgba(255, 255, 255, .04);
}

.background {
  position: fixed;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(218deg, #091E0C 0%, #0D250F 8.22%, #041105 29.66%, #031004 33.55%, #0F2811 67.93%, #031104 89.18%, #021404 100%);
}

.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0;
  background: var(--header_bg)!important;
  color: var(--header_color)!important;
  margin-bottom: 0;
  z-index: 100;
  user-select: none;
}


.header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: -1;
}

.header__content{
  height: auto;
  max-width: none;
  padding: 0;
}

.header__content{
  display: block;
}
.header__content--top{
  width: 100%;
  height: 68px;
}

.header__content--top .header__wrapper{
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1900px;
  margin: 0 auto;
  height: 100%;
  padding: 0px 15px;
}

.header__content--top .header__wrapper > div:nth-child(2){
  display: flex;
  justify-content: center;
}

.header__content--top .header__wrapper > div:nth-child(3){
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__content--top,
.header__content--bottom{
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.header__content--bottom{
  display: none;
}

.header__content--bottom .header__wrapper{
  display: flex;
  justify-content: center;
  max-width: 1900px;
  margin: 0 auto;
  padding: 0px 15px;
}

.header__content--bottom .header__wrapper{
  padding: 5px 15px;
}

.header__content--bottom .header__wrapper .header__user{
  height: 40px;
  width: 48px;
  margin-left: 5px;
}

.header__content--bottom .header__wrapper .header__notify{
  height: 40px;
  width: 48px;
}



/* .header__content--bottom .header__wrapper > a{
  display: block;
  text-align: center;
  line-height: 24px;
  min-width: 120px;
  margin: 12px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--header_color);
} */

.header__content .header__content--bottom .header__auth button{
  width: 100%;
}

.header__content .header__balance{
  background: rgba(255, 255, 255, .04);
  height: 48px;
}
.header__content .header__user{
  background: rgba(255, 255, 255, .04);
  height: 48px;
  width: 48px;
}

.header__content .logo{
  width: 100%;
  margin: 0;
  padding: 0;
}

.header__notify{
  background: rgba(255, 255, 255, .04);
  height: 48px;
  width: 48px;
}

.footer_content > div:first-child{
  flex: 4;
}

.footer_content > div:first-child a{
  width: 100%!important;
}

.footer_content > div:nth-child(2){
  display: grid;
  flex: 1;
  justify-content: center;
}

.footer_content > div:nth-child(3){
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.footer_content > div:nth-child(3) img{
  width: 220px;
}


.navigation{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 68px;
  margin-bottom: 20px;
  background: var(--header_bg) !important;
  color: var(--header_color) !important;
}

.navigation .navigation__button{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}

.navigation .navigation__button.active{
  color: #EDC97F;
}

.navigation .navigation__button{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.navigation .navigation__button img{
  margin-bottom: 5px;
}

.navigation .navigation__button span{
  font-weight: 500;
}

.withdraw-container button{
    position: relative;
    width: 100%;
    margin-top: 10px;
    padding: 15px 15px;
    background: var(--main_gradient);
    box-shadow: 0 6px 18px rgb(17 120 223 / 30%);
    text-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    border: 0;
    border-radius: var(--radius_input);
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.withdraw-container button:disabled,
.withdraw-container .withdraw-option.disabled{
    opacity: .7;
    pointer-events: none;
}

.withdraw-container__form .notifications{
    margin-bottom: 10px;
}

.withdraw-separator{
    margin: 10px 0;
    height: 1px;
    background-color: rgb(255 255 255 / 20%);
}

.withdraw__pin{
  margin-top: 10px;
  text-align: center;
}

.withdraw__pin span{
  font-size: 24px;
}

.withdraw__pin button.success{
    opacity: .7;
    pointer-events: none;
}

.deposit-container__form .notifications{
  margin-bottom: 10px;
}

.deposit-pin__title{
  text-align: center;
  margin-bottom: 10px;
}

.deposit-pin__inputs{
  display: flex;
  align-items: center;
  gap: 5px;
}

.deposit-pin__inputs input{
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
.deposit_buttons{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.withdraw_buttons{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.deposit_buttons .deposit-option{
  flex-basis: calc(50% - 5px);
  border: 1px solid #000;
  border-radius: var(--radius_input);
  color: #000;
  padding: 15px 15px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}

.withdraw_buttons .withdraw-option{
  flex-basis: calc(50% - 5px);
  border: 1px solid #000;
  border-radius: var(--radius_input);
  color: #000;
  padding: 15px 15px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}

.withdraw_buttons .withdraw-option:last-child {
    flex: 1;
}

.deposit-container__method,
.withdraw-container__method{
  margin-bottom: 20px;
}
.deposit-container__method--image,
.withdraw-container__method-image {
    width: 100%;
    max-width: 400px;
    height: 120px;
    margin: 0 auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #0d3324;
    border-radius: var(--main_radius);
    margin-bottom: 10px;
}

button.deposit-container__method--back,
button.withdraw-container__method--back{
  display: block;
  margin: 0 auto;
  max-width: 400px;
}

.menu-button{
  display: inline-flex;
  height: 40px;
  line-height: 40px;
  min-width: 130px;
}

.casino-dropdown { 
  position:relative; 
  width: 100%;
  max-width: 400px;
  font-family:sans-serif; 
}
.casino-dropdown__trigger  { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  background: rgba(255, 255, 255, .06);
  padding: 10px;
  border-radius: var(--secondary_radius);
  cursor:pointer; 
}
.casino-dropdown__placeholder{ color:#888; }
.casino-dropdown .arrow-btn{
  color:#888;
}
.casino-dropdown__list { 
    position:absolute; 
    top:100%; 
    left:0; 
    z-index:100; 
    width:100%;
    max-height:260px; 
    overflow-y:auto; 
    background: #172919;
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius:4px;
}

.casino-dropdown__list::-webkit-scrollbar {
    width: 4px;
}
.casino-dropdown__list::-webkit-scrollbar-track {
    background: var(--body_bg);
    border-radius: 0;
}
.casino-dropdown__list::-webkit-scrollbar-thumb {
    border-radius: 50px;
    border: 0 solid rgba(0, 0, 0, 0);
    background: var(--scrollbar_thumb_color);
}
.casino-dropdown__item,
.casino-dropdown__current { 
  display: flex;
  align-items: center;
  cursor:pointer;
}

.casino-dropdown__item{
  padding: 10px; 
}

.casino-dropdown__item--icon,
.casino-dropdown__current--icon{
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.casino-dropdown__current--icon{
  width: 18px;
  height: 18px;
}
.casino-dropdown__item--title,
.casino-dropdown__current--title{
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
  margin-right: 5px;
}

.casino-dropdown__item--count{
  color: #fff;
  opacity: .6;
  font
}

.casino-dropdown__item:hover { 
  background:rgba(255, 255, 255, .06); 
}

.favorites{
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 7px;
  border-radius: var(--secondary_radius);
}

.favorites img{
  width: 100%;
}
.casino_navigation--first{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}
.casino-menu__search{
  width: 100%;
}
.casino-menu__search input{
  width: 100%;
  margin: 0;
  border-radius: var(--secondary_radius);
  height: 36px;
}

.casino-menu__search::after{
  top: 8.5px;
  left: 9px;
}
.casino-menu__search{
  padding: 0;
}

.casino_navigation{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .casino_navigation{
    flex-direction: column;
  }

  .casino-dropdown{
    max-width: none;
  }

  .casino_navigation--first{
    max-width: none;
  }
}

.casino_head{
  display: flex;
  align-items: center;
  gap: 5px;
}

.casino_head img{
  width: 24px;
  height: 24px;
}
.casino-menu__shadow::before{
  display: none;
}

.casino_mobile_nav_btns{
  background: rgba(255, 255, 255, .06)
}

.casino_mobile_nav .casino-menu__search input{
  background: rgba(255, 255, 255, .06)
}

.game_interface{
  border-radius: var(--main_radius);
  background: rgba(255, 255, 255, .04);
  height: 40px;
}

.game_interface > div{
  background: transparent;
}


.casino-menu__search input{
  background: rgba(255, 255, 255, .06);
}

.home_events .event-wrap .odds-list .stake-button{
  background: rgba(255, 255, 255, .06);
}

.page .tab_selector a{
  color: #8fa394;
}

.page .profile__menu{
  background: rgba(255, 255, 255, .04);
}

.page .profile__menu .profile-info{
  background: rgba(255, 255, 255, .06);
}

.page .profile__menu .menu__row.active{
  background: rgba(255, 255, 255, .16);
}

.page .settings div.input-block input,
.page .settings div.input-block select{
  background: rgba(255, 255, 255, .04);
}

.page .button{
  background: #3BA745;
  min-height: 48px;
  min-width: 150px;
}

.page .verification-block{
  background: rgba(255, 255, 255, .04);
}

.page .tab_selector{
  border-bottom: 1px solid #292e29;
}

.banners-swiper img{
  border: 2.5px solid #EDC97F;
}

.home_slider .home_bonus{
  border: 2.5px solid #EDC97F;
}

a{
  color: var(--text_color);
}

.wrap_content{
  padding: 0px 15px;
}

.page .history-row{
  background: rgba(255, 255, 255, .06);
}

.page .profile-bonus {
  background: rgba(255, 255, 255, .06);
}

.page .bets .bet{
  background: rgba(255, 255, 255, .06);
}

.page .profile-bonus__row--title,
.page .bets .bet .bet__row--title,
.page .profile-info__id{
  color: #A7A7A7;
}

.page .pagination button{
  background: rgba(255, 255, 255, 0.32);
}

.foot_menu{
  display: none!important;
}

side[data-side=left] > div {
  margin: 0 23px 0 15px;
  width: 100%;
  height: 100%;
  margin: 0;
}

.side_menu{
  display: none;
}
.side_menu_user{
  padding-top: 20px;
  background: transparent;
}

.side_menu_user a{
  cursor: pointer;
}

side,
#casino_mobile_side{
  background: rgba(14, 33, 22, .95);
}

.side_menu_user .menu_balance{
  background: rgba(255, 255, 255, .06);
}

.drop_lang_btn{
  background: rgba(255, 255, 255, .06);
}

.page{
  min-height: 100vh;
}
.header__content .logo{
  border-radius: 0;
}
.header__content .logo img,
.header__content .logo video{
  display: block;
  margin: 0 auto;
  width: var(--logo_width);
  height: var(--logo_height);
}

.promocode div.promocode__input{
  background: rgba(255, 255, 255, .06);
  height: 48px;
}

.promocode button{
  height: 48px;
}


@media(max-width: 1000px){
  .footer_content{flex-direction: column;}
  .footer_content > div:nth-child(3){
    justify-content: center;
  }
  .footer{
    padding-bottom: 15px;
  }
  .f_btns{
    bottom: 15px;
  }
  .page.game .navigation {
    display: none;
  }
  .header__content--top .header__balance{
    display: none;
  }

  .header__content--bottom{
    display: block;
  }

  .header__content--top .header__notify {
    display: none;
  }

  .navigation{
    margin-top: 118px;
  }

  .header__content--bottom .header__balance{
    flex: 1;
  }

  .header__content--top .header__user{ 
    display: none;
  }

  .header__content .header__content--top div.header__auth{
    display: none;
  }

  .header__content .header__balance{
    height: 40px;
  }
  .header__content .logo img{
    height: 38px; 
  }
  .header__content .logo video{
    height: 38px;
  }
   
  .page.game .casino_game{
    background: transparent;
  }
  
  .casino_iframe_wrap iframe{
    border-radius: 0;
  }
  
  .game_interface{
    border-radius: 0;
  }
}

#balance{
  min-height: 400px;
}
#balance .deposit, #balance .withdraw-method {
  padding: 5px;
  background: #0d3324;
  border: 1px solid transparent;
  border-radius: var(--main_radius);
  cursor: pointer;
  transition: 0.3s;
}

#balance .withdraw-method .withdraw-method__image {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

#balance .deposit-container__methods, #balance .withdraw-container__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 15px;
}

.withdraw_buttons .withdraw-option, 
.deposit_buttons .deposit-option{
  border: none;
  background: #fff;
}


#balance .balance__row--left div:last-child{
  color: #fff;
}

#balance .balance__row .balance__row--left div:first-child{
  color: #8fa394
}



.withdraw-container .balance_available{
  background: rgba(255, 255, 255, .1);
  color: #888;
}


#balance .tab_selector a{
  font-size: 14px;
}

.pageloader img {
  width: 120px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}
.casino-button{
  display: block;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  font-weight: 700;
  padding: 0px 15px;
  border-radius: var(--main_radius);
  background: var(--primary_btn_bg) !important;
  color: var(--primary_btn_color) !important;
  text-align: center;
  min-width: 300px;
  margin: 0 auto;
  margin-top: 20px;
}

.modal .modal_content {
  --sb-track-color: #03140d;
  --sb-thumb-color: #0c2e1d;
  --sb-size: 5px;
}

.modal_footer{
  margin-top: auto;
  text-align: center;
  padding: 10px 15px;

}
.modal_footer a{
  color: #66e39b;
  text-decoration: underline;
}
.modal.is-open, 
.modal.is-open .reg-modal{
  background: #08271b;
  color: #fff;
}

.modal input{
  background: #041b12;
  color: #f3fff7;
}

.modal .tab_selector{
  gap: 10px;
  padding: 2px;
  border: 1px solid rgb(132 255 177 / 12%);
  border-radius: 10px;
  border-bottom: 1px solid rgb(132 255 177 / 12%)!important;
}

.modal .tab_selector a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px!important;
  padding: 4px 8px!important;
  font-weight: 750!important;
  color: #a5cdb6!important;
  background: none!important;
  border-radius: 8px!important;
  border-bottom: none!important;
}
.modal .tab_selector a.act{
  background: #00b24b !important;
  color: #fff !important;
  text-align: center;
}

.modal .tab_selector img {
  width: 22px;
  height: 22px;
}

.modal .auth_offer{
  color: #8fa394;
}

.modal .auth_offer a{
  color: #66e39b;
}

.modal_head a{
  background-color: #0d3324;
}

.modal_content.bonus-modal__content{
  background: #0D1F12;
  color: #fff;
}

.modal_head.bonus-modal__head{
  background: #0b3a27;
}

.modal .bonus-modal__summary-card{
  background: #0d3324;
}

.modal .bonus-modal__summary-note{
  color: #8fa394;
}

.modal .bonus-modal__summary-value{
  color: #fff;
}

.modal .bonus-modal__timer-label{
  color: #8fa394;
}

.modal .bonus-modal__timer-block{
  background: #0d3324;
  color: #fff;
}

.modal .bonus-modal__badge{
  background: #017a37;
}

.modal .bonus-modal__rules-link{
  color: #66e39b;
}

.modal .bonus-modal__footer{
  border-top: 1px solid rgb(132 255 177 / 12%);
  background: #0D1F12;
}

.modal .bonus-modal__title{
  color: #fff;
}

.modal .bonus-modal__accordion-head{
  color: #fff;
}
.modal .bonus-modal__accordion-item.is-open, .modal .bonus-modal__accordion-item.block{
  border-color: rgb(132 255 177 / 12%);
}

.modal .bonus-modal__detail-label{
  color: #8fa394;
}

.modal .bonus-modal__detail-value{
  color: #fff;
}
.modal .bonus-modal__accordion-item{
  background: #0d3324;
}
#balance .balance__row{
  color: #fff;
  background: #0d3324;
}

.modal-bonus__details svg{
  fill: #fff;
}
.modal-bonus__desc{
  color: #8fa394;
}

.reg-bonus{
  background: #08271b;
  color: #fff;
}

.reg-bonus__desc-item{
  color: #8fa394;
}

button.reg-bonus__cancel{
  border: 1px solid #ffffff;
  color: #fff;
}

button.modal-bonus__cancel{
  border: 1px solid #ffffff;
  color: #fff;
}

#payment-frame{
  height: 700px;
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: hidden;
}

#payment-frame .modal_head {
  padding: 20px;
  margin-bottom: 0px;
}

#payment-frame .modal_content{
  height: 100%;
}
#payment-frame iframe{
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px){
  #payment-frame{
    height: calc(100vh - 40px);
  }

}



.kaspi-card {
  padding: 14px 16px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fff2 55%, #e9ffe5 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  color: #111;
  margin-bottom: 12px;
}

.kaspi-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.kaspi-card__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kaspi-card__logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.kaspi-card__logo img{
  width: 100%;
}

.kaspi-card__name {
  font-weight: 600;
  font-size: 15px;
}

.kaspi-card__lock {
  font-size: 18px;
  opacity: 0.7;
}

.kaspi-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kaspi-card__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kaspi-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.6);
}

input.kaspi-card__input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  padding: 4px 0 6px;
  font-size: 14px;
  background: transparent;
  outline: none;
  color: #111;
}

input.kaspi-card__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

input.kaspi-card__input:focus {
  border-bottom-color: #13b01f; /* зелёный как кнопки */
}

.kaspi-card__footer {
  margin-top: 8px;
}

.kaspi-card__hint {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
}

.kaspi-card__title {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.7);
}

.kaspi-card__switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  overflow: hidden;
}

.kaspi-card__switch-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.kaspi-card__switch-btn {
  position: relative;
  z-index: 2;
  user-select: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  border-radius: 12px;

  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.62);

  transition: color 180ms ease, transform 180ms ease;
}

.kaspi-card__switch-btn:active {
  transform: translateY(1px);
}

.kaspi-card__switch-indicator {
  position: absolute;
  inset: 2px;
  width: calc(50% - 1px);
  border-radius: 12px;

  background: #ffffff;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.10),
    inset 0 0 0 1px rgba(19, 176, 31, 0.18);

  transform: translateX(0);
  transition: transform 220ms cubic-bezier(.2,.9,.2,1);
}

#kaspi_sw_card:checked ~ .kaspi-card__switch-indicator {
  transform: translateX(calc(100% - 2px));
}

#kaspi_sw_card:checked + .kaspi-card__switch-btn {
  color: rgba(0, 0, 0, 0.88);
}

#kaspi_sw_phone:checked + .kaspi-card__switch-btn {
  color: rgba(0, 0, 0, 0.88);
}

.kaspi-card__switch-input:focus-visible + .kaspi-card__switch-btn {
  outline: 2px solid rgba(19, 176, 31, 0.55);
  outline-offset: 2px;
  border-radius: 12px;
}

.modal.promotion-modal .promotion-modal__text, 
.modal.promotion-modal .promotion-modal__text h1, 
.modal.promotion-modal .promotion-modal__text h2, 
.modal.promotion-modal .promotion-modal__text h3, 
.modal.promotion-modal .promotion-modal__text p, 
.modal.promotion-modal .promotion-modal__text a, 
.modal.promotion-modal .promotion-modal__text li, 
.modal.promotion-modal .promotion-modal__text span, 
.modal.promotion-modal .promotion-modal__text div, 
.modal.promotion-modal .promotion-modal__text strong, 
.modal.promotion-modal .promotion-modal__text em, 
.modal.promotion-modal .promotion-modal__text b, 
.modal.promotion-modal .promotion-modal__text i, 
.modal.promotion-modal .promotion-modal__text u{
  color: #fff!important;
}


a.casino-search__provider-card{
  background: rgba(255, 255, 255, .04);
}
a.casino-tabs__item--active{
  background: rgb(255 255 255 / 15%);
}
@media (max-width: 1000px) {
    .casino-game-frame__balance .menu-button {
        min-width: auto;
    }
}