> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.consentmo.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Cookie categories' descriptions styling

In order to modify the stylings of the cookie categories' descriptions, you will need to navigate to the **Consent banner** > **Design** section. After that depending on what you require, you should apply one of the CSS code snippets we provided below to the **Custom CSS** field.

# Classes for styling all Cookie Categories

```css
.cc-settings-dialog .cc-cookie-category-text, 
.cc-settings-dialog.classic .cookie-settings-section-paragraph {
color: #ff0000;
font-size: 18px;
font-family: Calibri;
}
```

# Classes for styling Individual Cookie Categories

||| **Note**: The individual selectors given below apply only for the Default and Modern layout.

1. **Strictly Required** cookie category styling:
    
```css
#strict-cookie-category-text { color: #ff0000; font-size: 18px; font-family: Calibri; }
```

2. **Reporting and Analytics** cookie category styling:

```css
#analytics-cookie-category-text { color: #ff0000; font-size: 18px; font-family: Calibri; }
```

3. **Marketing And Retargeting** cookie category styling:
    
```css
#marketing-cookie-category-text { color: #ff0000; font-size: 18px; font-family: Calibri; }
```

4. **Functional** cookie category styling:

```css
#functionality-cookie-category-text { color: #ff0000; font-size: 18px; font-family: Calibri; }
```

||| **Note:** You can change the values of the *color*, *font-size* and *font-family* properties so that they fit your requirements.