.mines_wrapper {
    display: flex;
    justify-content: space-between;
    margin: initial !important;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo img{
max-width: 75% !important;
}

.minesgame_content {
    border-radius: 15px;
    padding: 15px 0;
    box-sizing: border-box;
    position: relative;
    width: calc(100% - 400px);
    height: calc(100vh - 52px);
    background: radial-gradient(50% 50% at 50% 50%, #151b2e 0, rgba(21, 27, 46, 0) 100%);
}

.minesright_sidebar {
    background: #101224;
    border-radius: 8px;
    height: calc(100vh - 52px);
    
    min-width: 400px;
    position: relative;
}

.minesgame_content_header{
    width: 100%;
    align-items: center;
    background: transparent;
    display: flex;
    justify-content: space-between;
    line-height: 0;
    padding: 15px;
}


.minesgame_content_header_button {
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.mines_btn {
    background: #151b2e;
    border-radius: 8px;
    color: #fafafa;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    mix-blend-mode: normal;
    padding: 5px;
}

.mines_btn_flex svg {
    fill: #858cab;
}

.mines_btn_flex{
   display: flex; 
   align-items: center;
   justify-content: center;
   gap: .25rem!important;
   padding: 0 10px ;
   box-sizing: border-box;
}

.minesgame_content_game{
display: flex; 
justify-content: center;
vertical-align: middle !important;
margin-top: 25px;
}


.cells_board_wrapper {
    margin-bottom: 40px;
    margin-top: 29px;
    position: relative;
}


.cells_board_wrapper:before {
    background-image: url(../images/mines/crack2.5c66fca7c0e6b8b3f37a.svg);
    background-size: 68px 201px;
    content: "";
    height: 201px;
    left: -125px;
    position: absolute;
    top: 140px;
    width: 68px;
}

.cells_board_wrapper:after {
    background-image: url(../images/mines/crack1.e5b5a512a5195e45d54f.svg);
    background-size: 82px 128px;
    content: "";
    height: 128px;
    position: absolute;
    right: -140px;
    top: 25px;
    width: 82px;
}

.cells_board {
    background-color: #0a0f1d;
    background-image: url(../images/mines/cellsFrame.40eb57f7e28f2ca52ad4.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 25px;
    box-shadow: 0 -2px 20px rgba(42, 49, 69, .4), 0 4px 54px rgba(42, 49, 69, .2);
    display: grid;
    grid-template-columns: repeat(5, 66px);
    grid-template-rows: repeat(5, 66px);
    overflow: hidden;
    padding: 10px;
}

.cells_board .cell {
    align-items: center;
    display: flex;
    justify-content: center;
    z-index: 1;
    background: none;
    border: none;
    font-size: 100%;
    margin: 0;
    outline: none;
    cursor: pointer;
}

.cells_board .cell img{
   width: 56px; 
   height: 56px;
}
.cells_board .cell_hovered img:hover{
height: 62px;
    transition: all .3s;
    width: 62px;    
}

.cells_board_mask {
    height: 320px;
    left: 15px;
    -webkit-mask-clip: border-box;
    mask-clip: initial;
    -webkit-mask-image: url(../images/mines/mines_mask.svg);
    mask-image: url(../images/mines/mines_mask.svg);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    position: absolute;
    top: 15px;
    width: 320px;
    z-index: 2;
}

.cells_board_mask .animated_highlight {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .4) 98.37%, hsla(0, 0%, 100%, 0));
    height: 74px;
    position: absolute;
    right: 170px;
    top: 50px;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
    width: 610px;
    z-index: 3;
}


.minesgame_content_control{
 margin-left: .375rem !important;
margin-right: .375rem !important;
display: flex;   
flex-direction: column !important;
align-items: center !important;
row-gap: .75rem !important;
}

.mines_status_bar {
    background: #151b2e;
    border-radius: 1rem;
    display: flex;
    height: 60px;
    justify-content: space-between;
    min-width: 510px;
    padding: .5rem 1rem;
    position: relative;
    z-index: 4;
}


.mines_bet_panel {
    background: #151b2e;
    border-radius: 16px;
    min-width: 510px;
    padding: 15px;
    width: auto;
}

.mines_status_bar_left {
    align-items: center;
    -webkit-column-gap: .5rem;
    column-gap: .5rem;
    display: flex;
}

.mines_status_bar_left_icon {
    display: flex;
    place-items: center;
}


.mines_status_bar_left_content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mines_status_bar_left_status_content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mines_status_bar_left_status_content_title {
    color: #13f36c;
    font-family: FS Elliot Pro, serif;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1rem;
    margin-right: .25rem;
    white-space: nowrap;
}


.mines_status_bar_left_status_content_text {
    line-height: 10px;
}


.mines_status_bar_left_status_content_ammount {
    font-family: FS Elliot Pro, serif;
    font-size: .875rem;
    line-height: 1rem;
        color: #f3f3f3;
    font-weight: 700;
}

.mines_status_bar_left_status_content_currency {
    color: #858cab;
    font-weight: 500;
        font-family: FS Elliot Pro, serif;
    font-size: .875rem;
    line-height: 1rem;
}


.mines_status_bar_right{
 align-items: center;
    display: flex;
    justify-content: space-between;
        background-color: rgb(10 15 30 / 1);
    border-radius: .5rem;
    flex: 0 1 auto;
    flex-basis: 66.666667%;
    height: 2.75rem;
    max-width: 225px;
    padding: .75rem 1rem;   
}


.leading-4 {
line-height: 1rem !important;
font-size: .875rem !important;
  
}

.mines_status_bar_right svg{
fill: #97a3cb;
height: 1.25rem;
width: .75rem;   
}

.mines_status_bar_left_icon img{
   width: 32px; 
   height: 32px;
}

.select_traps_content {
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    width: 5rem;
}

.select_traps_content_amount {
    color: #f3f3f3;
    font-family: Halvar Breit Md, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
}

.select_traps_content_title {
    color: #97a3cb;
    font-family: FS Elliot Pro, serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}

.select_traps_arrow_icon_prev {

transform: rotate(180deg);

}

.mines_status_bar_right button{
 background: none;
    border: none;
    font-size: 100%;
    margin: 0;
    outline: none;   
}

.mines_status_bar_right button:disabled{
opacity: .5 !important;  
}


.bet_panel_actions{
display: flex !important; 
flex-direction: row !important;
flex-wrap: wrap !important;
}


.basis_left {
flex-basis: 66.666667% !important;
}

.basis_right{
 flex-basis: 33.333333% !important;
 padding-left: .5rem !important;   
}


.bet_panel_actions .input_state_panel {
    color: #f3f3f3;
    display: flex;
    font-family: Halvar Breit Rg, sans-serif;
    font-size: 18px;
    font-weight: 500;
    height: 44px;
    line-height: 24px;
    background: #0a0d2c;
    border-radius: 8px;
}

.input_state_panel button:disabled{
   opacity: .3; 
}


.wfull {
width: 100% !important;
display: flex !important;
position: relative;
}

.bet_panel_control {
    align-items: center;
    display: flex;
    height: 44px;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: relative;
    width: 44px;
    background: none;
    border: none;
    font-size: 100%;
    margin: 0;
    outline: none;
}

.bet_panel_control button:disabled{
   opacity: .3; 
}


.bet_panel_control_border {
    --tw-bg-opacity: 1;
    background-color: rgb(151 163 203 / var(--tw-bg-opacity));
    border-radius: .75rem;
    height: 60%;
    opacity: .2;
    position: absolute;
    width: 1px;
}

.bet_panel_control_border.right {
    right: 0;
}

.bet_panel_control_border.left {
    left: 0;
}

.bet_panel_control_icon{
    color: #97a3cb;
}

.bet_panel_app_input{
padding: .7rem 0;
display: flex !important;
flex: 1 1 !important;
justify-content: center !important;   
}


.bet_panel_app_input input {
    -moz-appearance: textfield;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-right: 2%;
    text-align: right;
    width: 100%;
    width: 110px;
    background: none;
    border: none;
    font-size: 100%;
    margin: 0;
    outline: none;
    color: inherit;
    font-family: inherit;
}

.bet_panel_app_input input:disabled {
opacity: .3;
}

.amount_field_auto{
 margin-left: .25rem !important;
margin-bottom: auto !important;
margin-top: auto !important;   
}


.bet_panel_control_currency {
    color: hsla(0, 0%, 100%, .251);
    font-weight: 500;
    text-align: left;
}

.mines_games_btn{
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    padding: 5px;
    text-align: center;
    font-family: FS Elliot Pro;
    cursor: pointer !important;
    width: 100% !important;
    height: 100% !important;
    display: block;
    border: none;
    margin: 0;
    outline: none;   
    color: #fff !important; 
}

.mines_games_btn:hover {
    opacity: .8;
}

.mines_games_btn:disabled {
    opacity: .3;
}

.mines_games_blue_bg {
    background: linear-gradient(93.73deg, #108de7, #0855c4);
}

.mines_games_orange_bg {
    background: linear-gradient(272.98deg, #fdbb4e 2.23%, #f56719 95.05%);
}


.mines_footer_wrapper {
    align-items: flex-end;
    bottom: 220px;
    display: flex;
    height: 11rem;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.mines_footer_wrapper:before {
    background-image: url(../images/mines/particles.e53a48ca4d5fff68142d.svg);
    background-size: 89px 69px;
    content: "";
    height: 69px;
    left: -.67%;
    position: absolute;
    width: 89px;
    z-index: -1;
    top: 10px;
}

.mines_footer_wrapper:after {
    background-image: url(../images/mines/particles.e53a48ca4d5fff68142d.svg);
    background-size: 89px 69px;
    content: "";
    height: 69px;
    position: absolute;
    right: 3%;
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
    width: 89px;
    z-index: -1;
    top: 10px;
}

.mines_footer {
    height: 155px;
    width: 100%;
}

.multiplier_list {
   align-items: center;
   border-left: 2px solid #2a3145;
  column-gap: .5rem;
    display: flex;
    flex: 0 1 auto;
    overflow: hidden;
    padding-left: .5rem;
    position: relative;
    width: 18rem;
}

.multiplier_list:before {
    background: linear-gradient(270deg, #151b2e 11.77%, rgba(10, 15, 29, 0) 50%);
    content: "";
    height: calc(100% + 4px);
    position: absolute;
    right: 0;
    width: 1.25rem;
    z-index: 3;
}

.multiplier_list_inner {
    align-items: center;
    -webkit-column-gap: .5rem;
    column-gap: .5rem;
    display: flex;
    overflow: visible;
}

.multiplier_list_item {
  background-color: rgb(29 36 57 / 1);
    border-radius: .5rem;
    height: 32px;
    min-width: 55px;
    padding: .25rem .5rem;
    text-align: center;
}



.multiplier_list_item_text {
   color: #fff;
    font-family: FS Elliot Pro, serif;
    font-size: .875rem;
    font-weight: 900;
    line-height: 1rem;
    opacity: .3;
    text-align: center;
}

.multiplier_list_item_text_active {
    opacity: 1;
}

.mines_history_panel {
    background-color: #151b2e;
    border-radius: 16px;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
}


.mines_history_panel_header {
align-items: center;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 15px;
    padding-top: 15px;
}

.mines_history_panel_header_buttons {
    align-items: center;
    display: flex;
    justify-content: space-around;
}

.mines_history_panel_header_buttons_btn{
    background: #151b2e;
    background-clip: padding-box;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #fafafa;
    font-family: FS Elliot Pro;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    padding: 9px 15px;
    position: relative;
    text-align: center;
    transition: all .15s ease-out;
}

.mines_history_panel_header_buttons_btn_active {
    background: linear-gradient(#151b2e 0 0) padding-box, linear-gradient(90deg, #0095ff, #0855c4) border-box;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #fafafa;
    display: inline-block;
}


.mines_history_panel_separator {
    background: rgba(133, 140, 171, .2);
    height: 1px;
    transition: all .15s ease-in-out;
        margin-bottom: 12px !important;
}

.mines_history_panel_content_wrapper {
    height: calc(100% - 80px);
    overflow: auto;
}

.mines_history_panel_content_wrapper > div{
    display: none;
}

.mines_history_panel_live_cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    margin-bottom: .7rem;
    padding: 0 .5rem;
}

.mines_history_panel_list_wrapper {
    -ms-overflow-style: none;
    height: calc(100% - 60px);
    overflow: auto;
    scrollbar-width: none;
}


.mines_history_panel_list_wrapperses {
    -ms-overflow-style: none;
    height: calc(100% - 60px);
    overflow: auto;
    scrollbar-width: none;
}

.mines_history_panel_list_wrapper_my{
 -ms-overflow-style: none;
    height: calc(100% - 60px);
    overflow: auto;
    scrollbar-width: none;   
}

.mines_history_panel_live_cols h3 {
    color: #fff;
    font-family: FS Elliot Pro;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
}

.mines_history_panel_live_cols h3.header_col_win {
    text-align: right;
}


.mines_history_element_container {
    border-radius: 8px;
    font-family: SF Pro Display, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 16px;
    margin-bottom: 8px;
    margin-top: 8px;
    transition: all .15s ease-in-out;
    background-color: #1b233c;
}


.mines_history_live {
    align-items: center;
    display: flex;
    justify-content: space-between;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 7px 9px;
}

.mines_history_user {
    align-items: center;
    color: #545c78;
    display: flex;
    flex-direction: row;
    line-height: 14px;
    width: 35%;
}

.mines_history_user img{
   max-width: 28px; 
}

.mines_history_username{
 overflow: hidden;
    text-overflow: ellipsis;   
 margin-left: 8px !important; 
 text-transform: uppercase;  
}
   
.mines_history_start_sum {
    align-self: center;
    color: #97a3cb;
    font-size: 12px;
    text-align: center;
        width: 20%;
}    
.mines_history_start_sum span{
 color: rgba(151, 163, 203, .15);
    font-size: 10px;   
}
    

.mines_history_coef {
    align-self: center;
    color: #97a3cb;
    text-align: center;
    width: 20%;
}

.mines_history_game_amount {
    display: flex;
    justify-content: flex-end;
        width: 25%;
}

.mines_history_win_amount {
    align-self: center;
    color: #13f36c;
    text-align: right;
}

.mines_history_my_cols {
    display: grid;
    grid-template-columns: .5fr 1.5fr 1.5fr 1.5fr .2fr;
        margin-bottom: .7rem;
    padding: 0 .5rem;
}

.mines_history_my_cols h3 {
    color: #fff;
    font-family: FS Elliot Pro;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
}

.mines_history_my_cols h3.header_col_win {
    text-align: right;
}


.mines_history_date div{
    color: #97a3cb;
    display: grid;
    place-items: start;    
}

.mines_history_date div:last-child {
    font-size: 10px;
    line-height: 13px;
    opacity: .5;
}

.mines_history_lose_amount {
    align-self: center;
    color: #fff;
    min-width: 40px;
    text-align: right;
}


.mines_modal {
    align-items: center;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: rgba(9, 15, 30, .7);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: .5s;
    width: 100vw;
    z-index: 9997;
}

.mines_modal.active {
    opacity: 1;
    padding: 8px;
    pointer-events: all;
}


.mines_modal_content {
    background: #181b2c;
    border-radius: 12px;
}


.mines_modal_header {
    background: #21293f;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: flex-end;
    padding: 15px;
}

.mines_modal_body {
    background: #192137;
    border-radius: 0 0 12px 12px;
    padding: 10px 15px 15px;
}


.mines_modal_close {
    align-items: center;
    background: rgba(151, 163, 203, .1);
    border-radius: 8px;
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px;
    line-height: normal;
    border: none;
    font-size: 100%;
    margin: 0;
    outline: none;
    color: #fff;
}

.mines_modal_body_wrapper {
    align-items: center;
    background: #181b2c;
    border-radius: 12px;
    justify-content: center;
    position: relative;
}


.mines_modal_body_wrapper_item {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}


.mines_carousel, .mines_carousel_body {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.mines_carousel_slides {
    background: #0a0f1d;
    border-radius: 8px;
    display: flex;
    min-height: 384px;
    overflow: hidden;
}

.mines_carousel_body{
    bottom: 0;
    padding: 30px;
    position: absolute;
    width: 100%;
}

.mines_carousel_slides_current {
    position: relative;
    top: -40px;
}

.mines_carousel_slides_current img {
    max-width: 460px;
}

.mines_carousel_slides_next, .mines_carousel_slides_prev {
    width: 0;
}

.mines_carousel_text {
    font-family: SF Pro Display, sans-serif;
    font-style: normal;
    width: 100%;
}

.mines_carousel_controls {
    align-items: center;
    color: #fff;
    display: flex;
}

.mines_carousel_text_header {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.mines_carousel_text_body {
    color: #97a3cb;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    max-width: 400px;
    text-align: center;
}

.mines_carousel_controls_prev.disabled {
    -webkit-filter: opacity(.3);
    filter: opacity(.3);
    pointer-events: none;
}

.mines_carousel_controls_prev{
 background-image: url(../images/mines/carusel_control_prew.png);
    background-repeat: no-repeat;
    height: 15px;
    margin-right: 35px;
    transition: all .15s ease-out;
    width: 19px;   
}


.mines_carousel_controls_slides {
    align-items: center;
    display: flex;
}

.mines_carousel_controls_slides div.activated {
    background-image: url(../images/mines/slides_btn.png) !important;
    background-position: 50%;
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
}

.mines_carousel_controls_slides div {
    background-image: url(../images/mines/slides_btn_act.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.mines_carousel_controls_next {
    background-image: url(../images/mines/carusel_control_next.png);
    background-repeat: no-repeat;
    height: 15px;
    margin-left: 35px;
    transition: all .15s ease-out;
    width: 19px;
}

.mines_carousel_controls_next.disabled {
    -webkit-filter: opacity(.3);
    filter: opacity(.3);
    pointer-events: none;
}


@keyframes fadeOutAndShrink {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes fadeInAndGrow {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

img.old-image {
    animation: fadeOutAndShrink 0.5s forwards;
}

img.new-image {
    animation: fadeInAndGrow 0.5s forwards;
}


.clicked {
/* Сохраните стили для кнопок, чтобы они не перепрыгивали */
display: inline-block; /* или используйте flex/grid, в зависимости от вашей разметки */
vertical-align: top; /* или middle, если нужно */
width: auto; /* или фиксированную ширину, чтобы избежать перепрыгивания */
}


.input_lose_shape{
    width: 100%;
    background: #0a0d2c;
    position: absolute;
    height: 44px;
    z-index: 102;
    border-radius: 8px;
    text-align: center;
    font-family: FS Elliot Pro;
    color: #97a3cb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    display: none;
}

.input_win_shape{
    width: 100%;
    background: #0a0d2c;
    position: absolute;
    height: 44px;
    z-index: 102;
    border-radius: 8px;
    text-align: center;
    font-family: FS Elliot Pro;
    color: #13f36c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
display: none;
}

#multiplier_list_item{
   display: none; 
}


.floating_messages_header_text{
 color: rgba(223, 229, 242, 0.7);
    padding: 15px;
    box-sizing: border-box;    
}
   
.mines_win_modal_color{
 color: #13f36c;   
 font-weight: 900;
}   


.floating_messages_mines {
    width: 280px;
    height: 68px;
    border-radius: 12px;
    font-size: 14px;
    font-family: Manrope;
    display: flex;
    gap: 10px;
    background: #231D47;
    z-index: 9998;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 2px 0px #000;
    margin-bottom: 10px;
    padding: 0px 10px;
    box-sizing: border-box;
}

.floating_messages_mines_content{
    color: #fff;
    background: #151b2e;
    min-height: 60px;
    max-height: 60px;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: Manrope;
    font-weight: bold;   
    position: relative;
}


.floating_messages_mines_content::before{
  content: "";
    position: absolute;
    background: #13f36c;
    width: 10px;
    height: 40px;
    right: -5px;
    border-radius: 5px 0px 0px 5px;
}

.win_container{
   position: absolute; 
}


@media (min-width: 1920px) {}


@media (min-width: 1441px) {}

@media (min-width: 1025px) and (max-width: 1440px) {}


@media (min-width: 769px) and (max-width: 1024px) {

.mines_wrapper {
    display: flex;
    justify-content: space-between;
    margin: initial !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    flex-direction: column;
}

.minesgame_content{
   width: 100%; 
}

}

@media (min-width: 426px) and (max-width: 768px) {

.mines_wrapper {
    display: flex;
    justify-content: space-between;
    margin: initial !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    flex-direction: column;
     
}

.minesgame_content{
   width: 100%; 
   height: auto;
}

.mines_status_bar{
   min-width: 400px; 
}

.mines_bet_panel{
   min-width: 400px; 
}

.mines_footer_wrapper{
   position: inherit; 
}



}

@media (min-width: 376px) and (max-width: 425px) {

.mines_wrapper {
    display: flex;
    justify-content: space-between;
    margin: initial !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    flex-direction: column;
      gap: 60px;
}

.bet_panel_app_input input{
width: 88px;
}

.minesgame_content{
   width: 100%; 
}

.mines_status_bar{
   min-width: 350px; 
}

.mines_bet_panel{
   min-width: 350px; 
}

.mines_footer_wrapper{
   position: inherit; 
}

.mines_history_panel_header {
justify-content: flex-start;
}

.mines_history_panel_live_cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 0.7rem;
    padding: 0 .5rem;
    justify-content: center;
    justify-items: start;
}

.mines_history_user{
   width: auto; 
}

.mines_history_game_amount{
justify-content: flex-start;
}


.mines_history_my_cols {
    display: grid;
    grid-template-columns: .5fr 1fr 1fr 1fr .2fr;
    margin-bottom: .7rem;
    padding: 0 .5rem;
    justify-items: center;
}

}



@media (min-width: 350px) and (max-width: 375px) {

.mines_wrapper {
    display: flex;
    justify-content: space-between;
    margin: initial !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    flex-direction: column;
    gap: 60px;
}

.bet_panel_app_input input{
width: 88px;
}


.minesgame_content{
   width: 100%; 
}

.mines_status_bar{
   min-width: 320px; 
}

.mines_bet_panel{
   min-width: 320px; 
}

.mines_footer_wrapper{
   position: inherit; 
}

.mines_history_panel_header {
justify-content: flex-start;
}

.mines_history_panel_live_cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 0.7rem;
    padding: 0 .5rem;
    justify-content: center;
    justify-items: start;
}

.mines_history_user{
   width: auto; 
}

.mines_history_game_amount{
justify-content: flex-start;
}


.mines_history_my_cols {
    display: grid;
    grid-template-columns: .5fr 1fr 1fr 1fr .2fr;
    margin-bottom: .7rem;
    padding: 0 .5rem;
    justify-items: center;
}



}


@media (min-width: 320px) and (max-width: 349px) {


.mines_wrapper {
    display: flex;
    justify-content: space-between;
    margin: initial !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    flex-direction: column;
   
}

.minesgame_content{
   height: auto; 
}

.bet_panel_app_input input{
width: 55px;
}

.minesgame_content{
   width: 100%; 
}

.mines_status_bar{
   min-width: 280px; 
}

.mines_bet_panel{
   min-width: 280px; 
}

.mines_footer_wrapper{
   position: inherit; 
}

.mines_history_panel_header {
justify-content: flex-start;
}

.mines_history_panel_live_cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 0.7rem;
    padding: 0 .5rem;
    justify-content: center;
    justify-items: start;
}

.mines_history_user{
   width: auto; 
}

.mines_history_game_amount{
justify-content: flex-start;
}


.mines_history_my_cols {
    display: grid;
    grid-template-columns: .5fr 1fr 1fr 1fr .2fr;
    margin-bottom: .7rem;
    padding: 0 .5rem;
    justify-items: center;
}


