.elementor-1617 .elementor-element.elementor-element-8ba0199{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b8c2678 */.sk-wallet-box{
    max-width:560px;
    margin:60px auto;
    padding:40px;
    background:#ffffff;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    font-family:'Poppins',sans-serif;
    position:relative;
    overflow:hidden;
}

/* soft top glow */
.sk-wallet-box::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:200px;
    height:200px;
    background:radial-gradient(circle,#00baf2 0%,transparent 70%);
    opacity:0.15;
}

/* Title */
.sk-wallet-box h2{
    font-size:28px;
    font-weight:700;
    text-align:center;
    margin-bottom:30px;
    color:#0f172a;
    letter-spacing:0.5px;
}

/* Amount Grid */
.amount-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-bottom:25px;
}

.amount-grid button{
    padding:14px 0;
    border:none;
    background:#f1f7ff;
    border-radius:14px;
    font-weight:600;
    font-size:15px;
    color:#0070f3;
    cursor:pointer;
    transition:all 0.25s ease;
}

.amount-grid button:hover{
    background:#0070f3;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,112,243,0.25);
}

/* Inputs */
#customAmount,
.withdraw-section input,
.coupon-section input{
    width:100%;
    padding:16px;
    border-radius:14px;
    border:1px solid #e2e8f0;
    background:#f8fafc;
    font-size:15px;
    margin-bottom:20px;
    transition:0.3s;
}

#customAmount:focus,
.withdraw-section input:focus,
.coupon-section input:focus{
    border-color:#0070f3;
    background:#ffffff;
    box-shadow:0 0 0 3px rgba(0,112,243,0.08);
}

/* Coupon Layout */
.coupon-section{
    display:flex;
    gap:12px;
    margin-bottom:25px;
}

.coupon-section button{
    padding:0 22px;
    background:#0f172a;
    color:white;
    border:none;
    border-radius:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.coupon-section button:hover{
    background:#0070f3;
}

/* Add Money Button */
.add-money-btn{
    width:100%;
    padding:18px;
    background:linear-gradient(135deg,#00baf2,#0070f3);
    border:none;
    color:white;
    font-weight:600;
    font-size:17px;
    border-radius:16px;
    cursor:pointer;
    transition:0.3s;
    letter-spacing:0.5px;
}

.add-money-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,112,243,0.35);
}

/* Divider */
.withdraw-section{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid #e2e8f0;
}

/* Withdraw Title */
.withdraw-section h3{
    font-size:20px;
    font-weight:600;
    color:#dc2626;
    margin-bottom:15px;
}

/* Withdraw Button */
.withdraw-btn{
    width:100%;
    padding:16px;
    background:linear-gradient(135deg,#ff4d4d,#cc0000);
    border:none;
    color:white;
    font-weight:600;
    font-size:16px;
    border-radius:14px;
    cursor:pointer;
    transition:0.3s;
}

.withdraw-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,0,0,0.3);
}

/* Mobile */
@media(max-width:600px){
    .amount-grid{
        grid-template-columns:repeat(2,1fr);
    }
}/* End custom CSS */