/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pricing-701 {
        padding: var(--sectionPadding);
        background-color: var(--bg);
        
    }
    #pricing-701 .cs-container {
        width: 100%;
        max-width: 80em;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #pricing-701 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #pricing-701 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 16px - 20px */
        gap: clamp(1rem, 1.8vw, 1.25rem);
        perspective: 700px;
        transform-style: preserve-3d;
    }
    #pricing-701 .cs-item {
        list-style: none;
        width: 100%;
        max-width: 31.25rem;
        margin: 0;
        /* 20px - 40px top & bottom */
        /* 16px - 32px left & right */
        padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
        background-color: var(--primary);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
        border-radius: var(--borderRadius);
    }
    #pricing-701 .cs-item.cs-popular {
        background-color: var(--nav2);
    }
    #pricing-701 .cs-item.cs-popular .cs-package {
        color: var(--secondary);
    }
    #pricing-701 .cs-item.cs-popular .cs-price,
    #pricing-701 .cs-item.cs-popular .cs-desc,
    #pricing-701 .cs-item.cs-popular .cs-item-p,
    #pricing-701 .cs-item.cs-popular .cs-li {
        color: var(--bodyTextColorWhite);
    }
    #pricing-701 .cs-item.cs-popular .cs-icon {
        /* if icon is not black, this turns it white */
        filter: grayscale(1) brightness(1000%);
    }
    #pricing-701 .cs-package {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.4vw, 1rem);
        line-height: 1.2em;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        display: block;
        color: var(--secondary);

    }
    #pricing-701 .cs-price {
        /* 31px - 49px */
        font-size: var(--headerFontSize);
        line-height: 1.2em;
        text-align: center;
        font-weight: 900;
        margin: 0;
        color: var(--headerColor);
    }
    #pricing-701 .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.2em;
        text-align: center;
        margin: 0 0 0.5rem 0;
        color: var(--bodyTextColor);
        opacity: 0.8;
    }
    #pricing-701 .cs-item-p {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: center;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #pricing-701 .cs-ul {
        margin: 1.5rem 0;
        padding: 1.5rem 0 0 0;
        border-top: 1px solid #eff1f0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #pricing-701 .cs-li {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        list-style: none;
        line-height: 1.2em;
        width: 100%;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: space-between;
        /* push everything to the top so if the li goes to two lines the icon stays at the top */
        align-items: flex-start;
        gap: 1rem;
    }
    #pricing-701 .cs-li.cs-disabled {
        opacity: 0.7;
    }
    #pricing-701 .cs-icon {
        width: 1.125rem;
        height: auto;
        display: block;
        filter: grayscale(1) brightness(1000%);

    }
    #pricing-701 .cs-price-button {
        /* pushes up against the cs-ul so if there's loess li's in the list, the button always pushes itself to the bottom */
        margin-top: auto;
        width: 100%;
    }

}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #pricing-701 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    #pricing-701 .cs-option2 {
        top: auto;
        bottom: 0;
    }
}

                                