
If you need finer control over the dismissing of callouts, for example you have callouts that are dynamically rendered, then you can also dismiss callouts individualy.

```javascript
//'Element' is the 'Vlt-callout' element
Volta.callout.dismiss(Element);
```

# Reference table

<div class="Vlt-table Vlt-table--data">
|Class |	Behaviour|
|---|---|
|`.Vlt-callout` | Basic wrapper|
|`.Vlt-callout--bottom` | Removes the bottom margin and adds at top margin, useful for bottom placed callouts|
|`.Vlt-callout--tip` | Adds the styles for a "tip" type callout|
|`.Vlt-callout--shoutout` | Adds the styles for a "shoutout" type callout|
|`.Vlt-callout--good` | Adds the styles for a "good" type callout|
|`.Vlt-callout--warning` | Adds the styles for a "warning" type callout|
|`.Vlt-callout--critical` | Adds the styles for a "critical" type callout|
|`.Vlt-callout--dismissable` | Marks a callout as dismissable (usable to trigger Javascript)|
|`.Vlt-callout__dismiss` | Adds the correct icon to the "dismiss" button|
|`.Vlt-callout--dismissed` | Added to dismissable callouts for the exit transition|
|`.Vlt-callout__cta` | Adds the correct styles to the call to action
</div>