.cabb-block.pricing-table {
    font-family: var(--cabb-font-heading);
    padding: 0;
    width: 100% !important;
    text-align: left;
    color: #102D3A;
    --tab-btn-text: #102D3A;
    --tab-idle-text: var(--tab-btn-text);
}

.site-golfstar .cabb-block.pricing-table {
    --tab-btn-bg-light: #EDF2F2;
    --tab-btn-bg-primary: #1F4054;
}

.cabb-block.pricing-table .block_wrap {
    padding: 60px 20px;
}

.cabb-block.pricing-table .block_inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.cabb-block.pricing-table .block_title {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 24px;
}

.has-white-color .cabb-block.pricing-table .block_title {
    color: #fff;
}

.cabb-block.pricing-table button.tab {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--tab-idle-text);
    background: transparent;
    border: 1px solid transparent;
    -webkit-appearance: none;
    appearance: none;
    transition: background ease-in-out 0.2s;
}

.cabb-block.pricing-table button.tab.active {
    background: var(--tab-btn-color, #fff);
    color: var(--tab-btn-text);
    border-radius: 3px;
    border-color: var(--tab-btn-border, #F2F2F2);
    box-shadow: 1px 2px 3px 0 rgba(45, 45, 50, 0.10);
    pointer-events: none;
}

.cabb-block.pricing-table .groups_tabs {
    position: absolute;
    display: flex;
}

.cabb-block.pricing-table .groups_list .group_item {
    display: none;
}

.cabb-block.pricing-table .groups_list .group_item .group_tabs {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-bottom: 24px;
    min-height: 60px;
}

.cabb-block.pricing-table .groups_list .group_item .group_tabs.hide {
    display: none;
}

.cabb-block.pricing-table .tab_content {
    display: none;
    scroll-margin-top: 200px;
}

.cabb-block.pricing-table .tab_content .tab_products {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.cabb-block.pricing-table .tab_content .tab_products.center {
    justify-content: center;
}

.cabb-block.pricing-table .tab_products .product_card {
    padding: 8px;
    width: 254px;
}

.cabb-block.pricing-table .tab_products .product_card .card_inner {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    transition: all ease-in-out 0.3s;
}

.cabb-block.pricing-table .tab_products .product_card .card_inner:hover {
    box-shadow: 2px 2px 15px 0 rgba(181, 180, 180, 0.3);
}

.cabb-block.pricing-table .tab_products .product_card .card_inner.highlighted {
    background: var(--cabb-color-main);
    border-color: var(--cabb-color-main);
}

.cabb-block.pricing-table .tab_products .product_card .card_inner.highlighted > * {
    color: #fff;
}

.cabb-block.pricing-table .tab_products .product_card .card_title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
}

.cabb-block.pricing-table .tab_products .product_card .product_title {
    font-weight: 600;
    color: #767676;
    padding-right: 15px;
}

.cabb-block.pricing-table .tab_products .product_card .card_inner.highlighted .product_title {
    color: #fff;
}

.cabb-block.pricing-table .tab_products .product_card .card_tag {
    background: #E9BA5A;
    font-size: 14px;
    color: #102D3A;
    line-height: 24px;
    padding: 0 8px;
    border-radius: 20px;
}

.cabb-block.pricing-table .tab_products .product_card .product_price {
    color: #102D3A;
    padding-bottom: 16px;
    font-size: 30px;
    font-weight: 600;
}

.cabb-block.pricing-table .tab_products .product_card .product_price.old {
    color: #B2C7C3;
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
    padding-bottom: 5px;
}

.cabb-block.pricing-table .tab_products .product_card .product_description {
    padding-bottom: 24px;
}

.cabb-block.pricing-table .tab_products .product_card .product_description p:last-child {
    margin-bottom: 0;
}

.cabb-block.pricing-table .tab_products .product_card .card_button a {
    display: block;
    background: #fff;
    width: 100%;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--cabb-color-main);
    border: 2px solid var(--cabb-color-main);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all ease-in-out 0.2s;
}

.cabb-block.pricing-table .tab_products .product_card .card_inner:hover .card_button a,
.cabb-block.pricing-table .tab_products .product_card .card_button a:hover {
    background: var(--cabb-color-main);
    color: #fff;
}

.cabb-block.pricing-table .tab_products .product_card .card_inner:hover .card_button a,
.cabb-block.pricing-table .tab_products .card_inner:hover .card_button a:hover {
    border-color: #fff;
}

.cabb-block.pricing-table .tab_products .product_card .product_features {
    position: relative;
    margin-top: 24px;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .separator {
    position: absolute;
    border-top: 1px solid transparent;
    background: repeating-linear-gradient(
        to right,
        #D2DFDD 0 4px,
        transparent 4px 8px
    );
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: top left;
    top: 0;
    left: 0;
    right: 0;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    cursor: pointer;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_title svg {
    transition: transform ease-in-out 0.2s;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_title.active svg {
    transform: rotate(-180deg);
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_list {
    opacity: 0.8;
    padding-top: 24px;
}

.cabb-block.pricing-table .tab_products .product_card .product_features.closed .features_list {
    display: none;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_list .feature_item {
    display: flex;
    align-items: center;
    padding-bottom: 16px;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_list .feature_item:last-child {
    padding-bottom: 0;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_list .feature_item svg {
    display: block;
    width: 16px;
    padding-right: 8px;
    box-sizing: content-box;
}

.cabb-block.pricing-table .tab_products .product_card .product_features .features_list .feature_item div {
    flex: 1;
    color: #102D3A;
    font-size: 14px;
    line-height: 1.42;
}

.cabb-block.pricing-table .tab_products .card_inner.highlighted .product_features .features_list .feature_item div {
    color: #fff;
}

@media (max-width: 750px) {
    .cabb-block.pricing-table .groups_tabs {
        position: relative;
        padding-bottom: 16px;
    }

    .cabb-block.pricing-table .groups_list .group_item .group_tabs {
        justify-content: flex-start;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .cabb-block.pricing-table .tab_content {
        scroll-margin-top: 180px;
    }

    .cabb-block.pricing-table .tab_products .product_card {
        width: 100%;
    }

    .cabb-block.pricing-table .tab_products .product_card .product_features .features_list {
        display: none;
    }
}

/* Tab color schemes */
.cabb-block.pricing-table .tab_content.has-tab-color .tab_products .product_card .card_inner:not(.highlighted) {
    background: var(--tab-color, #fff);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner:not(.highlighted) {
    border-color: rgba(255, 255, 255, 0.15);
}

.cabb-block.pricing-table .tab_content.is-scheme-light .tab_products .product_card .card_inner:not(.highlighted) {
    border-color: rgba(0, 0, 0, 0.08);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner:not(.highlighted):hover {
    box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.4);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_title {
    color: rgba(255, 255, 255, 0.7);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_price {
    color: #fff;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_price.old {
    color: rgba(255, 255, 255, 0.5);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_description {
    color: rgba(255, 255, 255, 0.85);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_features .separator {
    background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.25) 0 4px, transparent 4px 8px);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: top left;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_features .features_title {
    color: rgba(255, 255, 255, 0.9);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_features .features_list .feature_item,
.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .product_features .features_list .feature_item div {
    color: rgba(255, 255, 255, 0.8);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner:not(.highlighted) .card_button a {
    background: #fff;
    color: var(--tab-color, #102D3A);
    border-color: #fff;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner:not(.highlighted):hover .card_button a,
.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner:not(.highlighted) .card_button a:hover {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_title {
    color: #767676;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_price {
    color: #102D3A;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_price.old {
    color: #B2C7C3;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_description {
    color: #102D3A;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_features .separator {
    background: repeating-linear-gradient(to right, #D2DFDD 0 4px, transparent 4px 8px);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: top left;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_features .features_title {
    color: #102D3A;
}

.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_features .features_list .feature_item,
.cabb-block.pricing-table .tab_content.is-scheme-dark .tab_products .product_card .card_inner.highlighted .product_features .features_list .feature_item div {
    color: #102D3A;
}

.cabb-block.pricing-table .tab-color-white {
    --tab-color: #ffffff;
}

.cabb-block.pricing-table .tab-btn-color-white.active {
    --tab-btn-color: #ffffff;
    --tab-btn-text: #102D3A;
    --tab-btn-border: #F2F2F2;
}

.cabb-block.pricing-table.tab-btn-bg-light button.tab.active {
    --tab-btn-color: var(--tab-btn-bg-light, #F2F2F2);
    --tab-btn-text: #102D3A;
    --tab-btn-border: rgba(0, 0, 0, 0.08);
}

.cabb-block.pricing-table.tab-btn-bg-primary button.tab.active {
    --tab-btn-color: var(--tab-btn-bg-primary, #222);
    --tab-btn-text: #ffffff;
    --tab-btn-border: rgba(255, 255, 255, 0.25);
}
