@media(max-width: 2000px){







    body{
        margin: 0;
        background: white;
        font-family: 'Montserrat', sans-serif;
    
        line-height: 1.6;
        font-size: 15px;
        color: #333;
    }
    
    
    *,
    *::after,
    *::before {
        box-sizing: border-box;
    }
    
    
    
    /*HEADER*/
    
    .inner_header{
        display: flex;
        justify-content: space-between;
        padding: 20px 80px;
    }
    .inner_header img{
        width: 200px;
        height: 45px;
    }
    
    /*WALLET*/
    
    .section_wallet{
        width: 100%;
        display: flex;
        justify-content: center;
        
    }
    
    .nmbr_page{
        width: auto;
        margin-right: 15px;
        margin-top: 220px;
    }
    
    .nmbr_page div{
        display: flex;
        justify-content: right;
        
        margin-top: 25px;
        
    }

    .nmbr_page div img{
        
        width: 24px;
        height: 24px;
        
    }
    
    .nmbr_page div span{
        font-weight: bold;
        margin-right: 6px;
        
    }
    
    .step1{
        opacity: 50%;
    }
    
    .step1.active{
        opacity: 100%;
    }
    .step2{
        opacity: 50%;
    }
    .step2.active{
        opacity: 100%;
    }
    .step3{
        opacity: 50%;
    }
    .step3.active{
        opacity: 100%;
    }
    
    /*inner_wallet*/
    .inner_wallet{
        display: block;
        width: 600px;
        margin-top: 100px;
        padding: 50px 50px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
        height: 400px;
    }
    
    .inner_wallet h1{
        
        
        margin: 0;
        text-align: center;
    }
    
    .inner_wallet p{
        font-size: 16px;
        margin: 0;
        text-align: center;
    }
    
    .inner_wallet div{
        
        width: 100%;
        
        
    }
    .input_wallet_inner{
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .block_wallet{ 
        width: 100%;
        padding: 10px 10px;
        border: 1px solid grey;
        border-radius: 5px;
    }
    
    .block_wallet.active{
        border: 1px solid #b44343;
    }
    
    .input_wallet_inner div input{ 
        width: 95%;
        border: 0;
        outline:none;
        
    }
    
    #non_corect{
        color: #b44343;
        font-size: 12px; 
        display: none;
    }
    
    
    .inner_button{
        display: flex;
        justify-content: space-between;
        background-color: white;
        
    }
    
    .inner_button button{
        width: 220px;
        
        height: 48px;
        background: #f3f3f8;
        border: 0;
        border-radius: 5px;
        font-size: 15px;
        font-weight: bold;
        transition: opacity 0.3s;
    }
    
    
    .back_to_main:hover{
        opacity: 70%;
     cursor: pointer;
    }
    
    .next{
        opacity: 50%;
        
    }
    .next.active{
        opacity: 100%;
        cursor: pointer;
    }
    .next.active:hover{
        opacity: 70%;
    }
    
    /*inner_paid*/
    
    .main_paid{
        display: none;
        margin: 0px 30px;
        
    }
    
    .inner_paid{
        
        width: 600px;
        margin-top: 40px;
        padding: 50px 50px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
        
    }
    .inner_status{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        width: 300px;
        padding: 25px 25px;
        margin-left: 100px;
        border-radius: 15px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
    }
    .inner_status div{
        display: flex;
        justify-content: space-between;
    }
    
    .inner_request{
        margin-top: 50px;
        padding: 25px 50px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
    }
    .inner_request b{
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .next2:hover{
        cursor: pointer;
        opacity: 70%;
        
    }
    
    
    
    /*WAITMENU*/
    
    .main_wait{
        display: none;
    }
    
    .inner_wait{
        text-align: center;
        width: 600px;
        margin-top: 100px;
        padding: 50px 50px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
        
    }
    
    .support_button:hover{
        cursor: pointer;
        opacity: 70%;
    }
    
    
}










































@media(max-width: 480px){
    /*HEADER*/
    
    .inner_header{
        display: flex;
        justify-content: center;
        padding: 20px 80px;
    }
    .inner_header img{
        width: 200px;
        height: 45px;
    }
    .inner_header p{
        display: none;
    }


    /*WALLET*/
    
    .section_wallet{
        padding-bottom: 200px;
        width: 100%;
        display: block;
        justify-content: center;
        
    }
    
    .nmbr_page{
        display: flex;
        justify-content: center;
        width: auto;
        margin-right: 0px;
        margin-top: 50px;
    }
    
    .nmbr_page div{
        display: flex;
        justify-content: right;
        
        margin-top: 25px;
        
    }

    .nmbr_page div:not(:last-child){
        margin-right: 5%;
    }
    .nmbr_page div img{
        
        order: 1;
        
    }
    .nmbr_page div span{
        font-weight: bold;
        margin-right: 6px;
        order: 2;
        
    }
    
    .step1{
        opacity: 50%;
    }
    
    .step1.active{
        opacity: 100%;
    }
    .step2{
        opacity: 50%;
    }
    .step2.active{
        opacity: 100%;
    }
    .step3{
        opacity: 50%;
    }
    .step3.active{
        opacity: 100%;
    }
    
    /*inner_wallet*/
    .inner_wallet{
        display: block;
        max-width: 600px;
        width: 100%;
        margin-top: 25px;
        margin-bottom: 150px;
        padding: 50px 50px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
        max-height: 500px;
        height: 100%;
    }
    
    .inner_wallet h1{
        
        
        margin: 0;
        text-align: center;
    }
    
    .inner_wallet p{
        font-size: 16px;
        margin: 0;
        text-align: center;
    }
    
    .inner_wallet div{
        
        width: 100%;
        
        
    }
    .input_wallet_inner{
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .block_wallet{ 
        width: 100%;
        padding: 10px 10px;
        border: 1px solid grey;
        border-radius: 5px;
    }
    
    .block_wallet.active{
        border: 1px solid #b44343;
    }
    
    .input_wallet_inner div input{ 
        width: 95%;
        border: 0;
        outline:none;
        
    }
    
    #non_corect{
        color: #b44343;
        font-size: 12px; 
        display: none;
    }
    
    
    .inner_button{
        display: flex;
        justify-content: space-between;
        background-color: white;
        
    }

    .inner_button a{
        max-width: 220px;
        width: 100%;
        margin-right: 5%;
    }
    
    .inner_button button{
        max-width: 220px;
        width: 100%;
        height: 48px;
        background: #f3f3f8;
        border: 0;
        border-radius: 5px;
        font-size: 15px;
        font-weight: bold;
        transition: opacity 0.3s;
    }
    
    
    .back_to_main:hover{
        opacity: 70%;
     cursor: pointer;
    }
    
    .next{
        opacity: 50%;
        
    }
    .next.active{
        opacity: 100%;
        cursor: pointer;
    }
    .next.active:hover{
        opacity: 70%;
    }
    
    /*inner_paid*/
    
    .main_paid{
        display: none;
        margin: 0px 30px;
        margin-bottom: 150px;
        
    }
    
    .inner_paid{
        
        max-width: 600px;
        width: 100%;
        margin-top: 40px;
        padding: 50px 50px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
        
    }
    .inner_status{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        max-width: 300px;
        width: 100%;
        padding: 25px 25px;
        margin-left: 0px;
        border-radius: 15px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
    }
    .inner_status div{
        display: flex;
        justify-content: space-between;
    }
    
    .inner_request{
        margin-top: 50px;
        padding: 25px 50px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
    }
    .inner_request b{
        font-size: 2.3vw;
        word-wrap: break-word;
    }
    .next2:hover{
        cursor: pointer;
        opacity: 70%;
        
    }
    
    /*WAITMENU*/
    
    .main_wait{
        display: none;
    }
    
    .inner_wait{
        text-align: center;
        max-width: 600px;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 150px;
        padding: 50px 50px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
        
    }
    
    .support_button:hover{
        cursor: pointer;
        opacity: 70%;
    }
    
}





































@media(max-width: 425px){
    .nmbr_page div span{
        font-size: 14px;
    }
    .nmbr_page div img{
        width: 20px;
        height: 20px;
    }
    .nmbr_page div:not(:last-child){
        margin-right: 2%;
    }

    .inner_request b{
        font-size: 2.1vw;
    }

    .inner_button button{
        font-size: 14px;
    }
    
}








@media(max-width: 380px){

/*inner_wallet*/
.inner_wallet{
    display: block;
    max-width: 600px;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 0px;
    padding: 50px 50px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.05);
    max-height: 500px;
    height: 100%;
}
}







@media(max-width: 370px){
    .nmbr_page div span{
        font-size: 11.5px;
    }
    .nmbr_page div img{
        width: 16px;
        height: 16px;
    }
    .nmbr_page div:not(:last-child){
        margin-right: 2%;
    }
    .inner_request b{
        font-size: 1.8vw;
    }
    .inner_status{
     padding: 10px;
     font-size: 11px;
    }
}









@media(max-width: 320px){
    .inner_button button{
        font-size: 11px;
    }
}