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

.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;
    border: 1px solid transparent;
    transition: background ease-in-out 0.2s;
}

.cabb-block.pricing-table button.tab.active {
    background: #fff;
    border-radius: 3px;
    border-color: #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: 32px;
    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:not(.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;
    }
}