{{#markdown}}
```scss
$include-html-pricing-classes: $include-html-classes;
// We use this to control the border color
$price-table-border: solid 1px #ddd;
// We use this to control the bottom margin of the pricing table
$price-table-margin-bottom: rem-calc(20);
// We use these to control the title styles
$price-title-bg: #ddd;
$price-title-padding: rem-calc(15 20);
$price-title-align: center;
$price-title-color: #333;
$price-title-weight: bold;
$price-title-size: rem-calc(16);
// We use these to control the price styles
$price-money-bg: #eee;
$price-money-padding: rem-calc(15 20);
$price-money-align: center;
$price-money-color: #333;
$price-money-weight: normal;
$price-money-size: rem-calc(20);
// We use these to control the description styles
$price-bg: #fff;
$price-desc-color: #777;
$price-desc-padding: rem-calc(15);
$price-desc-align: center;
$price-desc-font-size: rem-calc(12);
$price-desc-weight: normal;
$price-desc-line-height: 1.4;
$price-desc-bottom-border: dotted 1px #ddd;
// We use these to control the list item styles
$price-item-color: #333;
$price-item-padding: rem-calc(15);
$price-item-align: center;
$price-item-font-size: rem-calc(14);
$price-item-weight: normal;
$price-item-bottom-border: dotted 1px #ddd;
// We use these to control the CTA area styles
$price-cta-bg: #f5f5f5;
$price-cta-align: center;
$price-cta-padding: rem-calc(20 20 0);
```
{{/markdown}}