.bundle-breakdown.page-width {
    @media(max-width: 1023px) {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

.bundle-breakdown--title {
    font-size: 34px;
    font-weight: bold;
    color: #003866;
    margin-top: 0px;

    @media(max-width: 1023px) {
        padding-left: 24px;
        padding-right: 24px;
    }

    @media (min-width: 1024px) {
        text-align: center;
    }
}

.bundle-breakdown--summary {
    padding: 0px 24px;

    @media (min-width: 1024px) {
        display: none;
    }

    & #bundle-breakdown-navigation {
        display: flex;
        flex-direction: column;

        & .bundle-breakdown-navigation--item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 24px;
            cursor: pointer;

            appearance: unset;
            border: unset;
            background-color: transparent;

            & div {
                & p {
                    color: #003866;
                    text-align: left;
                }

                & p:first-of-type {
                    font-size: 21px;
                    line-height: 1;
                    font-weight: bold;
                    margin: 4px 0px 4px 0px;
                }

                & p:last-of-type {
                    font-size: 14px;
                    margin: 0px;
                }
            }

            & small {
                font-size: 10px;
            }
        }
    }
}

.bundle-breakdown--products-grid {
    display: flex;
    flex-direction: column;

    @media (min-width: 1024px) {
        flex-direction: row;
        gap: 24px;
    }

    @media (max-width: 1023px) {
        & .bundle-breakdown-product:nth-child(odd) {
            background: #E4E7EC;
        }
    }

    & .bundle-breakdown-product {
        padding: 36px 24px;
        scroll-margin-top: 90px;

        @media (min-width: 1024px) {
            flex: 1 0 30%;
            padding-top: 0px;
            scroll-margin-top: 130px;
            padding: 0px 0px;
        }

        & .bundle-breakdown-product--container {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            gap: 24px;

            @media (min-width: 1024px) {
                gap: 0px;
            }

            & h3 {
                font-size: 26px;
                font-weight: bold;
                margin-top: 0px;
                margin-bottom: 0px;

                &.bundle-breakdown-product--item-title {
                    font-size: 34px;
                    margin-bottom: 24px;

                    &.mobile-view {
                        display: block;

                        @media (min-width: 1024px) {
                            display: none;
                        }
                    }

                    &.desktop-view {
                        display: none;

                        @media (min-width: 1024px) {
                            display: block;
                            margin-bottom: 12px;
                            margin-top: 12px;
                        }
                    }
                }
            }

            & img {
                display: block;
                width: 100%;
                height: auto;
            }

            & ul {
                padding-left: 30px;
                font-size: 18px;
            }

            & .bundle-breakdown-product--results {
                & p {
                    margin-bottom: 8px;
                }

                & .bundle-breakdown-product--results-percentage {
                    display: flex;
                    gap: 12px;
                    align-items: center;

                    & span:first-of-type {
                        font-size: 42px;
                        font-weight: bold;
                    }

                    & span:last-of-type {
                        font-size: 21px;
                        font-weight: bold;
                        line-height: 1;
                    }
                }
            }

            & .bundle-breakdown-product--supplement-cta {
                appearance: unset;
                background: transparent;
                border: unset;

                & span {
                    color: #fe622d;
                    text-decoration: underline;
                    font-size: 16px;
                }
            }

            & .supplement-facts-block--cta {
                @media(min-width:1024px) {
                    position: absolute;
                    bottom: -15px;
                }
            }
        }
    }
}

.bundle-breakdown--buy-now {
    display: block;
    margin: 60px auto 0 auto;

    @media (max-width: 1023px) {
        display: none;
    }
}