:root {
    --table-heading-primary-bgcolor: #4caf5026;
    --table-section-main-title-color: #00205b;
    --table-sections-main-font-family: poppins;
    --table-thead-primary-color: #000;
    --table-custom-border: 1px solid #000;
    --table-buy-button-bgcolor: #4c83ff;
    --table-buy-button-color: #fff;
    --table-caption-bgcolor: #222;
    --table-caption-color: #fff;
    --mobile-view-card-border: solid 1px #ebebeb;
    --redirect-btn-bgcolor: #3083ff;
    --redirect-btn-color: #fff;
    --span: #36b048
}

.g-new-product-pricing-table-container {
    font-family: var(--table-sections-main-font-family);
    margin-bottom: 50px;
}

.g-new-product-pricing-table {
    border: var(--table-custom-border);
    width: 100%;
}

.g-new-product-pricing-table-thead {
    background-color: var(--table-heading-primary-bgcolor);
    color: var(--table-thead-primary-color);
    border: var(--table-custom-border);
}

.g-new-product-pricing-table-thead-row {
    background-color: #4caf5026;
}

.g-new-product-pricing-table-thead:not(:first-child),
.g-new-product-pricing-table-data:not(:first-child) {
    text-align: center;
    width: 150px;
}

.g-new-product-pricing-table-data {
    border: var(--table-custom-border);
    color: black !important;
}

.g-new-product-pricing-table-data-span {
    font-weight: 400;
}

.g-new-product-pricing-table-data-btn {
    background-color: var(--span);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    font-size: 14px;
    border-radius: 2rem;
    border: 2px solid var(--span);
    transition: all .3s ease;
    width: max-content;
    margin-inline: 10px;
}

.g-new-product-pricing-table-data-btn:hover {
    transform: scale(1.1);
}

.g-new-product-pricing-table-caption {
    background-color: var(--span-dark);
    color: #fff;
    scroll-margin-top: 150px;
    text-align: center;
    margin-top: 10px;
    padding: .5%;
    font-size: 20px;
    font-weight: 500;
}

.g-new-product-pricing-table-wrapper-title {
    text-align: center;
    font-size: 30px;
    font-family: var(--table-sections-main-font-family);
    margin-bottom: 30px;
    padding-top: 30px;
}

.g-new-product-pricing-table-wrapper {
    margin-top: 40px;
}

.g-redirect-table-btns {
    background-color: var(--span);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    width: max-content;
    text-align: center;
    border-radius: 2rem;
}

.g-redirect-table-btns-div {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width:1100px) {
    .g-new-product-pricing-table-thead {
        display: none
    }

    .g-new-product-pricing-table-tbody-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        border: var(--mobile-view-card-border);
        border-radius: 10px;
        padding: 20px;
        box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
        align-items: center
    }

    .g-new-product-pricing-table-data {
        border: none;
        text-align: center
    }

    .g-new-product-pricing-table-thead:not(:first-child),
    .g-new-product-pricing-table-data:not(:first-child) {
        border: none !important
    }

    .g-new-product-pricing-table-tbody {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        justify-items: center;
        gap: 30px;
        margin-top: 30px
    }

    .g-new-product-pricing-table-caption {
        border-radius: 10px
    }

    .g-new-product-pricing-table {
        border: none
    }

    .g-new-product-pricing-table-data:nth-child(1) {
        padding-bottom: 22px;
        font-size: 20px;
        font-weight: 600;
        border: none
    }

    .g-new-product-pricing-table-data-btn {
        width: 100%
    }

    .g-new-product-pricing-table-data-btn {
        transform: scale(.95)
    }
}

@media screen and (max-width:800px) {
    .g-new-product-pricing-table-tbody {
        grid-template-columns: 1fr
    }
}

.pricing-tbl-sub-topic{
    max-width: 1000px;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
    font-size: 17px;
    
}