.DigitalProductOverviewPricing {
    &-section {
        width: 100%;
    }

    &-row {
        border-bottom: 1px solid var(--gray-400);
        margin-bottom: 10px;

        & .DigitalProductOverviewItem {
            display: inline-block;
            width: 32%;
            margin-right: 1%;
            vertical-align: top;

            &:last-child {
                margin-right: 0;
            }
        }

        & .DigitalProductOverviewItem-value {
            font-size: 12px;
        }

        &:last-of-type {
            border-bottom: none;
        }
    }

    &-header {
        font-weight: $weight_bold;
        margin-bottom: 10px;
        margin-top: 0;
        width: 100%;
    }

    &-subHeader {
        margin-bottom: 5px;
        margin-top: 0;
    }

    &-interval {
        color: var(--gray-800);
        font-size: 12px;
        margin-top: 5px;
    }

    &-interval-title {
        color: $grey_300;
        font-weight: $weight_bold;
        text-transform: uppercase;
    }

    &-interval,
    &-interval-title {
        display: inline-block;
        height: 100%;
        vertical-align: top;
        width: $quarter_inner_width;

        &:first-of-type {
            width: 300px;
        }
    }

    &-override-items,
    &-instant-grats {
        padding-bottom: 10px;
    }

    &-icon-wrapper {
        cursor: pointer;
    }

    &-timed-release-popover {
        max-width: 600px;
        min-width: 500px;
        padding: 15px;

        .popover-content {
            padding: 0;
        }
    }

    &-timed-release-timezone-guide {
        .right-align {
            text-align: right;
        }

        &-section {
            margin-bottom: 10px;
        }

        &-table {

            thead,
            th,
            tbody,
            tr,
            td {
                border: none !important;
            }

            &-datetime-next-day {
                background-color: $warning-200;
                border-radius: 5px;
                margin-right: 5px;
                padding: 5px 3px;
            }

            &-header tr {
                background-color: var(--gray-200);

                th {
                    color: var(--gray-600);
                    font-weight: $weight_bold;
                    height: 40px;
                    text-transform: capitalize;
                    vertical-align: middle;
                }
            }
        }

        &-title {
            color: var(--gray-900);
            display: flex;
            font-size: 14px;
            font-weight: $weight_bold;
            line-height: 24px;
        }

        &-section-expand-glyph {
            margin-left: auto;

            .Glyph {
                fill: var(--gray-600);
            }

            .Glyph:hover {
                cursor: pointer;
                fill: var(--gray-700);
            }
        }

        &-sub-title {
            color: var(--gray-700);
            font-size: 13px;
            margin-bottom: 10px;
        }

        table tbody tr:nth-child(even) {
            background-color: var(--gray-100);
        }
    }
}

.PricingSection {
    margin-top: 25px;
}