/* =========================================================
   SUBSCRIPTION PRICING
========================================================= */

.pricingSection {
    background-color: #ffffff;
}

.pricingEyebrow {
    margin-bottom: 16px;

    color: #2c4d34;

    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.pricingTitle {
    margin-bottom: 45px;

    color: #000000;

    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

/* Make each Bootstrap pricing column stretch equally. */
.pricingSection .row > [class*="col-"] {
    display: flex;
}

.pricingCardWrapper {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
}

.pricingBannerSpacer {
    height: 52px;
}

.pricingPopularBanner {
    width: 100%;
    height: 52px;

    padding: 12px 0;

    color: #ffffff;
    background-color: #2c4d34;
    border-radius: 12px 12px 0 0;

    font-family: Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.pricingCard {
    display: flex;
    flex: 1;
    flex-direction: column;

    width: 100%;
    padding: 32px;
}

.pricingCardFeatured {
    background-color: #ffffff !important;
    border: 2px solid #2c4d34 !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.pricingCardNormal {
    background-color: #ffffff !important;
    border: 2px solid #d0d0d0 !important;
}

/* The spacer above Basic and Enterprise matches the Pro banner height. */
.pricingCardWrapper:has(.pricingCardNormal) {
    padding-top: 0;
}

.pricingPlanName {
    color: #2c4c34 !important;

    font-size: 30px;
    font-weight: 600;
}

.pricingPlanPrice {
    margin-top: 20px;
    margin-bottom: 16px;

    color: #585959 !important;

    font-size: 26px;
    font-weight: 600;
}

.pricingBilling,
.pricingAccount {
    margin-bottom: 8px;

    color: #585959 !important;

    font-size: 16px;
    font-weight: 600;
}

.pricingFeatureHeading {
    margin-top: 30px;
    margin-bottom: 12px;

    color: #000000;

    font-size: 0.95rem;
    font-weight: 600;
}

.pricingFeatureList {
    flex: 1;

    margin-bottom: 30px;
    padding-left: 0;

    list-style: none;
}

.pricingFeatureList li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 8px;

    color: #000000;

    font-size: 0.95rem;
    line-height: 1.55;
}

.pricingCheck {
    color: #2c4d34;
    font-weight: 700;
}

.pricingButton {
    width: 100%;
    margin-top: auto;
}

.pricingButton:hover {
    color: #ffffff;
    background-color: #146c43;
    border-color: #146c43;
}

.pricingTrialNote {
    margin-top: 15px;

    color: #2c4d34;

    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.trialCalendarIcon {
    margin-right: 2px;

    color: #2c4c34;

    font-size: 14px;
    vertical-align: middle;
}


/* =========================================================
   CREATE ACCOUNT PRICING MODAL
========================================================= */

.planModalContent {
    overflow: hidden;

    border: none;
    border-radius: 16px;
}

#planRequiredModal .modal-body {
    padding: 0;
}

#planRequiredModal .pricingSection {
    padding: 45px 20px 30px;
}

#planRequiredModal .pricingTitle {
    margin-bottom: 35px;
}


/* =========================================================
   RESPONSIVE PRICING
========================================================= */

@media (max-width: 991.98px) {
    .pricingSection .row > [class*="col-"] {
        display: block;
    }

    .pricingBannerSpacer {
        display: none;
    }

    .pricingPopularBanner {
        height: auto;
    }

    .pricingCardWrapper {
        height: auto;
    }

    .pricingCard {
        padding: 28px;
    }
}

@media (max-width: 575.98px) {
    .pricingTitle {
        margin-bottom: 30px;

        font-size: 1.65rem;
    }

    .pricingPlanName {
        font-size: 25px;
    }

    .pricingPlanPrice {
        font-size: 22px;
    }

    .pricingCard {
        padding: 24px 20px;
    }

    #planRequiredModal .pricingSection {
        padding: 30px 10px 20px;
    }
}