        .crm_pricing_feature_table td{

            border-top: 1px solid rgba(17,24,39,.12);
        }

        .bg-success{

            background: #31c07e !important;
        }

        .text-success{

            color: #31c07e !important;
        }
        
        .text-333{

            color: #333 !important;
        }

        .card {
          background: rgba(255, 255, 255, 0.8);
          border-radius: 20px;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
          backdrop-filter: blur(15px);
          max-width: 100%;
          width: 100%;
          text-align: center;
          padding: 40px 30px;
          animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
          from {
            transform: translateY(20px);
            opacity: 0;
          }
          to {
            transform: translateY(0);
            opacity: 1;
          }
        }

        .success-icon {
          width: 70px;
          height: 70px;
          background-color: #d4edda;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 25px;
        }

        .success-icon svg {
          width: 32px;
          height: 32px;
          stroke: #28a745;
        }

        h1 {
          font-size: 24px;
          color: #1a1a1a;
          margin-bottom: 10px;
        }

        p {
          color: #555;
          font-size: 15px;
          margin-bottom: 25px;
        }

        .order-summary {
          background: #f1f5fa;
          border-radius: 12px;
          padding: 15px 20px;
          text-align: left;
          font-size: 14px;
          color: #333;
          margin-bottom: 30px;
        }

        .order-summary div {
          margin-bottom: 8px;
        }

        #confetti-canvas {
          position: fixed;
          top: 0;
          left: 0;
          z-index: 1;
          width: 100%;
          height: 100%;
          pointer-events: none;
        }

        .qpeck-pricing {
        background: #f8f9fa;
    }


    /* LEFT PRODUCT PANEL */

    .pricing-products {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        overflow: hidden;
    }

    .pricing-products-header {
        padding: 22px 22px 18px;
        border-bottom: 1px solid #e5e7eb;
    }

    .pricing-nav {
        padding: 8px;
    }

    .pricing-nav-item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;

        padding: 14px 12px;

        background: transparent;
        border: 0;
        border-radius: 8px;

        text-align: left;
        color: #343a40;

        transition: all .2s ease;
    }

    .pricing-nav-item:hover {
        background: #f5f6f7;
    }

    .pricing-nav-item.active {
        background: #f1f3f5;
        color: #111827;
    }

    .pricing-nav-icon {
        width: 38px;
        height: 38px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid #e5e7eb;
        border-radius: 8px;

        background: #ffffff;
        flex-shrink: 0;
    }

    .pricing-nav-item.active .pricing-nav-icon {
        border-color: #ced4da;
    }

    .pricing-nav-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .pricing-nav-content strong {
        font-size: 14px;
        font-weight: 600;
    }

    .pricing-nav-content small {
        font-size: 12px;
        color: #6c757d;
        margin-top: 2px;
    }

    .pricing-arrow {
        font-size: 13px;
        color: #adb5bd;
    }


    /* RIGHT SIDE */

    .pricing-content-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 20px;
    }

    .pricing-content-header .btn {
        white-space: nowrap;
    }


    /* PRICE CARD */

    .price-card {
        position: relative;

        height: 100%;

        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;

        padding: 22px;

        display: flex;
        flex-direction: column;

        transition: border-color .2s ease,
                    box-shadow .2s ease;
    }

    .price-card:hover {
        border-color: #ced4da;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
    }

    .price-card.featured {
        border-color: #212529;
    }


    .popular-badge {
        position: absolute;
        top: 16px;
        right: 16px;

        font-size: 11px;
        font-weight: 600;

        padding: 4px 8px;

        border-radius: 20px;

        background: #212529;
        color: #ffffff;
    }


    /* PRICE */

    .price {
        font-size: 25px;
        font-weight: 700;

        margin: 18px 0;
        color: #111827;
    }

    .price span {
        font-size: 13px;
        font-weight: 400;
        color: #6c757d;
    }


    /* FEATURES */

    .price-features {
        list-style: none;
        padding: 0;
        margin: 0 0 22px;

        flex: 1;
    }

    .price-features li {
        position: relative;

        font-size: 13px;
        color: #495057;

        padding: 7px 0 7px 20px;

        border-bottom: 1px solid #f1f3f5;
    }

    .price-features li::before {
        content: "✓";

        position: absolute;
        left: 0;

        font-weight: 600;
        color: #495057;
    }


    /* RESPONSIVE */

    @media (max-width: 991.98px) {

        .pricing-products {
            height: auto !important;
        }

        .pricing-nav {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 5px;
        }

        .pricing-content-header {
            flex-direction: column;
        }

    }

    @media (max-width: 575.98px) {

        .pricing-nav {
            grid-template-columns: 1fr;
        }

        .pricing-content-header .btn {
            width: 100%;
        }

        .price {
            font-size: 23px;
        }

    }

    /* =================================
           PRODUCT NAVIGATION
        ================================= */

        .pricing-nav {
            padding: 8px;
        }


        /* Main product item */

        .pricing-nav-item {
            width: 100%;
            min-height: 62px;

            display: flex;
            align-items: center;
            gap: 12px;

            padding: 7px 12px;
            margin: 0 0 3px 0;

            box-sizing: border-box;

            background: transparent;
            border: 0;
            border-radius: 10px;

            text-align: left;
            color: #292929;

            transition: background .2s ease;
        }

        .pricing-nav-item:hover {
            background: #f5f6f7;
        }

        .pricing-nav-item.active {
            background: #f1f3f5;
        }


        /* Icon */

        .pricing-nav-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            min-height: 48px;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid #dee2e6;
            border-radius: 10px;

            background: #fff;

            font-size: 18px;

            box-sizing: border-box;
        }


        /* Text */

        .pricing-nav-content {
            min-width: 0;
            flex: 1;

            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pricing-nav-content strong {
            font-weight: 600;
            line-height: 1.2;
        }

        .pricing-nav-content small {
            font-size: 14px;
            line-height: 1.3;

            color: #6c757d;
            margin-top: 3px;
        }


        /* Arrow */

        .pricing-arrow {
            flex-shrink: 0;

            font-size: 13px;
            color: #adb5bd;

            transition: transform .2s ease;
        }


        /* Rotate dropdown arrow */

        .pricing-nav-item[aria-expanded="true"] .submenu-arrow {
            transform: rotate(180deg);
        }


        /* =================================
           SUB MENU
        ================================= */

        .pricing-submenu {
            margin: 0 0 5px 60px;
            padding: 0;
        }


        /* Sub item */

        .pricing-sub-item {
            width: 100%;

            min-height: 48px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            padding: 8px 12px;

            background: transparent;
            border: 0;
            border-radius: 7px;

            color: #5f6368;

            font-size: 15px;
            line-height: 1.3;

            text-align: left;

            transition: background .2s ease,
                        color .2s ease;
        }

        .pricing-sub-item:hover {
            background: #f5f6f7;
            color: #212529;
        }

        .pricing-sub-item.active {
            background: #f1f3f5;
            color: #212529;
            font-weight: 600;
        }

        .pricing-sub-item i {
            font-size: 11px;
            color: #adb5bd;
        }
        .pricing-products.h-100 {
            height: 620px !important;
            position: sticky;
            top: 30px;
        }

        .pricing-sub-item.active {
            background-color: #f1f3f5;
            border-radius: 10px;
            color: #212529;
            font-weight: 600;
        }

        .pricing-section::after {
          content: "";
          position: absolute;
          top: 25%;
          bottom: 15%;
          left: 0;
          right: 0;
          background-image: url('');
          background-size: contain;
          background-position: center;

          background-repeat: no-repeat;
          z-index: -1;
        }

        .pricing-table td{
            padding: 10px 16px;
        }

        .pricing-tabs-wrap {
            border-bottom: 1px solid #e5e7eb;
        }

        .pricing-tabs {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        
        .pricing-tab:hover {
            color: #212529;
        }

        
        .pricing-tab {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            position: relative;
            border: 0;
            background: transparent;
            padding: 0 0 14px;
            color: #737b87;
            font-size: 14px;
            font-weight: 500;
        }

        .pricing-tab i {
            font-size: 15px;
        }

        .pricing-tab.active {
            color: #16191d;
            /*font-weight: 600;*/
        }

        .pricing-tab.active i {
            color: #16191d;
        }

        .pricing-tab.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 2px;
            background: #16191d;
            border-radius: 2px;
        }