/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.ai_plan_list_credit_points {
    padding: 60px 0;
}
.ai_plan_credit_points_section {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.ai_plan_title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1;
}
.ai_plan_credit_points_grid {
    width: 25%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 11px 5px #dddddd7a;
    padding: 30px 30px;
}
.ai_plan_short_description {
    font-size: 15px;
    color: #a3a3a3;
    letter-spacing: 0.2px;
}
span.plan_price_desc {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #A3A3A3;
}
.ai_plan_price {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 44px;
}

span.quantity_label {
    font-weight: 400;
    margin-bottom: 0px;
    display: block;
    font-size: 17px;
    color: #565656;
}
.quantity_box button:hover {
    background: var(--e-global-color-a0e5249);
    border-color: var(--e-global-color-a0e5249);
    color: #000;
}
.quantity_box input {
    width: 65px!important;
    padding: 0 10px!important;
    height: 40px;
    border-radius: 8px!important;
    line-height: 1;
    border: 1px solid #ddd!important;
    text-align: center;
}
.quantity_box button {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 1;
    padding: 0;
    border-radius: 50px;
    background: #f7f7f7;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
    border: 1px solid #ddd;
    font-weight: 700;
}
.quantity_box {
    display: flex;
    gap: 10px;
}

button.ai_buy_now {
    background-color: var(--e-global-color-a0e5249);
    color: var(--e-global-color-bad4473);
    border-radius: 100px 100px 100px 100px;
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-weight: var(--e-global-typography-accent-font-weight);
    border: 0;
    width: 100%;
    margin-top: 20px;
}
.ai_plan_quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    align-content: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
.ai_plan_credit_points_section {
    flex-wrap: wrap;
}
.ai_plan_credit_points_grid {
    width: 100%;
}
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
.ai_plan_credit_points_grid {
    width: calc(50% - 25px);
}
}

@media only screen and (min-width: 1001px) and (max-width: 1200px) {
.ai_plan_credit_points_grid {
    width: calc(33.33% - 25px);
}
}