/* ===== Pricing Box ===== */

#bzp-pricing-mode-box{
    margin-bottom:30px;
}

/* ===== Cards Container ===== */

.bzp-pricing-cards{
    display:flex;
    gap:20px;
    justify-content:space-between;
    align-items:stretch;
    margin-top:20px;
    flex-wrap:nowrap;
}

/* ===== Card ===== */

.bzp-card{
    flex:1;
    background:#ffffff;
    border:2px solid #e5e7eb;
    border-radius:12px;
    padding:22px 15px;
    cursor:pointer;
    transition:.25s;
    text-align:center;
}

.bzp-card:hover{
    border-color:#06ce77;
    transform:translateY(-2px);
}

/* ===== Active ===== */

.bzp-card.active{
    border-color:#06ce77;
    background:#f1fff8;
    box-shadow:0 0 0 3px rgba(6,206,119,.12);
}

/* ===== Icon ===== */

.bzp-icon{
    font-size:34px;
    margin-bottom:12px;
}

/* ===== Title ===== */

.bzp-title{
    font-size:16px;
    font-weight:700;
    color:#222;
    line-height:1.5;
}

/* ===== Responsive ===== */

@media(max-width:991px){

    .bzp-pricing-cards{
        flex-direction:column;
    }

}