/* BEGIN PRICING BREAKDOWN TABLE*/
.check-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    fill: currentColor;
    vertical-align: middle;
}

.check-explore {
    color: var(--spotzi-website-green);
}

.check-activate {
    color: var(--spotzi-website-purple);
}

.check-optimize {
    color: var(--spotzi-website-blue);
}

.pricing-breakdown {
    margin-top: 80px;
}

.pricing-breakdown h2 {
    color: var(--color-text-000);
}

.pricing-breakdown-table {
    width: 100%;
    border-collapse: collapse;
    height: 48px;
    line-height: 48px;
}

.pricing-breakdown-table th,
.pricing-breakdown-table td {
    /*padding: 14px 0;*/
    border-bottom: 1px solid rgba(255,255,255,.15);
    height: 48px;
    vertical-align: middle;
}

 .pricing-breakdown-table .plan-col:empty::before {
    content: "\00a0";
  }

.pricing-breakdown-table th {
    text-align: center;
    color: var(--color-text-900);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: 'Inter Bold', sans-serif;
}

.pricing-breakdown-table th:first-child,
.pricing-breakdown-table td:first-child {
    text-align: left;
}

.pricing-section-feature {
    color: var(--color-text-100);
    font-family: 'Inter Light', sans-serif;
    font-size: 0.9rem;
}

.pricing-section-row td {
    padding-top: 42px;
    padding-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: 'Inter Bold', sans-serif;
    color: var(--color-text-900);
    height:auto;
    line-height: 1.2;
}

.check-explore {
    text-align: center;
    color: var(--spotzi-website-green);
}

.check-activate {
    text-align: center;
    color: var(--spotzi-website-purple);
}

.check-optimize {
    text-align: center;
    color: var(--spotzi-website-blue);
}

.pricing-breakdown-addon {
    text-align: center;
    color: var(--color-text-000);
    font-size:0.8rem;
    font-family: 'Inter Light', sans-serif;
}

.pricing-breakdown-note {
    margin-top: 24px;
    font-size: 0.8rem;
    color: #d0d0d0;
}

.pricing-breakdown-note a {
    color: #23a980;
    font-size: 0.8rem;
}

.pricing-plan-toggle {
    display: none;
}

.header-no-mobile {
    text-align: center;
}

@media (max-width: 480px) {

    .panel-dark,
    .panel-wrap,
    .selector-wrap,
    .pricing-breakdown {
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }

    .panel-dark {
        padding-left: 12px;
        padding-right: 12px;
    }

    .panel-wrap {
        padding: 1.5rem 0;
        margin: 0;
    }

    .selector-wrap {
        padding: 0 !important;
    }
    
    .pricing-plan-toggle {
        display: flex;
        gap: 8px;
        position: relative;
        top: auto;
        z-index: 1;
        background: #111000;
        padding: 12px 0;
        margin-bottom: 16px;
    }

    .pricing-plan-toggle button {
        flex: 1;
        border: 1px solid rgba(255,255,255,.15);
        background: transparent;
        color: var(--color-text-000);
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-family: 'Inter Bold', sans-serif;
        cursor: pointer;
        transition: all .2s ease;
    }

    .pricing-plan-toggle button[data-plan="explore"] {
        background: var(--spotzi-website-green-secondary);
        color: var(--spotzi-website-green);
    }

    .pricing-plan-toggle button[data-plan="explore"].active {
        background: var(--spotzi-website-green);
        border-color: var(--spotzi-website-green);
        color: var(--color-text-000);
    }

    .pricing-plan-toggle button[data-plan="activate"] {
        background: var(--spotzi-website-purple-secondary);
        color: var(--spotzi-website-purple);
    }

    .pricing-plan-toggle button[data-plan="activate"].active {
        background: var(--spotzi-website-purple);
        border-color: var(--spotzi-website-purple);
        color: var(--color-text-000);
    }

    .pricing-plan-toggle button[data-plan="optimize"] {
        background: var(--spotzi-website-blue-secondary);
        color: var(--spotzi-website-blue);
    }

    .pricing-plan-toggle button[data-plan="optimize"].active {
        background: var(--spotzi-website-blue);
        border-color: var(--spotzi-website-blue);
        color: var(--color-text-000);
    }

    .pricing-breakdown-table {
        width: 100%;
        min-width: 0;
    }

    .pricing-breakdown-table .plan-col {
        display: none;
    }

    .pricing-breakdown-table.show-explore .plan-explore,
    .pricing-breakdown-table.show-activate .plan-activate,
    .pricing-breakdown-table.show-optimize .plan-optimize {
        display: table-cell;
    }

    .feature-col {
        width: 75%;
    }

    .header-no-mobile {
        display: none;
    }

   .plan-col {
        width: 25%;
        text-align: center;
    }

    .pricing-breakdown-table th {
        font-size: 0.75rem;
    }

    .pricing-section-feature {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .pricing-section-row td {
        display: table-cell !important;
        font-size: 0.75rem;
        padding-top: 32px;
        padding-bottom: 10px;
    }

    .check-explore,
    .check-activate,
    .check-optimize {
        font-size: 1rem;
    }

    .pricing-breakdown-addon {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}
/* END PRICING BREAKDOWN TABLE*/