/*!
 * HEx - v4.0.0
 *
 * The HEx design system is released under the Apache-2.0 license.
 * Copyright 2018 BitRock Inc. (DBA Bitnami). The Bitnami names, logos and all product names
 * are trademarks of BitRock Inc.
 */
/**
 * Mappy breakpoint library
 */
/**
 * Variables contain the values of differents properties for the UI. Some of them
 * are font families, line heights, colors...
 */
/*
---
name: Base sizing units
category: Foundations/Variables
tag: variables
---

These values defines the spacing and font size of all the framework. **Every property or mixin that
involves sizes is affected by these values**. That's the reason why most of the elements of
the foundations uses relative units like `em` and `rem`.

These base sizing units are:

* `base-type-zoom`: represents the base zoom of the page. This value is added on the `html` selector
and it allow us to grow the site proportionally. For most of the browsers, 100% font-size is equal
to 16px. Browsers that have a different value for 100% are not an issue because the site grows
correctly. This framework uses this property to decrease or increase the spacing of the site
based on media queries.
* `base-type-size`: defines the base font size of the body text. The current value refers to
the `base-type-zoom`: 100% (16px) -> 1em -> 16px body text. We use a relative units to be able to
change the base font size using `base-type-zoom`. It also allow browsers to define their own
font size based on user preferences.
* `scale`: this is the ratio of decrease or increase of the spacing unit. Combining the
`base-type-size` and the `scale`, the framework defines proportional sizes for spacing. You
can check the current proportion on [TypeScale](http://type-scale.com/?size=16&scale=1.333&text=Bitnami%20Rocks!&webfont=Source+Sans+Pro&font-family=%27Source%20Sans%20Pro%27,%20sans-serif&font-weight=400&font-family-headers=&font-weight-headers=inherit&background-color=white&font-color=%23333).
* `size-unit`: this is the base size unit for font sizes and spacing. We use this unit for spacing
and font-sizes.

```scss
// Sizing values
$base-type-zoom: 100%;
$base-type-size: 1em; // 16px
// Major Third
$scale: 1.250;

// Basic size unit
$size-unit: $base-type-size * $scale;
$su: $size-unit;
```
*/
/*
---
name: Breakpoints
category: Foundations/Variables
tag: variables
---
For managing breakpoints, we're going to use https://github.com/zellwk/mappy-breakpoints. It's a really useful library to work with Breakpoints. Also, this library uses `em` units internally and based on this [research]( https://zellwk.com/blog/media-query-units/) it's the best solution for breakpoints.

```scss
$breakpoints: (
  xs: 320px,
  sm: 480px,
  md: 768px,
  lg: 900px,
  xl: 1100px,
  uxl: 1300px
);

// If only one value is provided, mappy-bp will produce a min-width query.
// If a two values are provided, mappy-bp will produce a min-width and max-width query.
// If a max-width or max string is provided, mappy-bp will produce a max-width query.

$mappy-queries: (
  phone-portrait: mappy-bp(max-width xs),
  phone: mappy-bp(xs sm),
  phone-land: mappy-bp(sm md),
  tablet: mappy-bp(md lg),
  desktop: mappy-bp(lg xl),
  wide: mappy-bp(xl uxl),
  ultrawide: mappy-bp(uxl)
);
```
*/
/*
---
name: Colors
category: Foundations/Variables
tag: variables
---
Base colors of the Bitnami styleguide.

<div class="container">

  <h5>Base</h5>
  <div class="colorBoxes">
    <div class="colorBox colorBox-reverse" style="background-color: #00437B;">
      <div class="colorBox__title padding-h-normal">
        <h5>Brand</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #00437B
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(0, 67, 123)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(207, 100%, 24%)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-reverse" style="background-color: #1C2B39;">
      <div class="colorBox__title padding-h-normal">
        <h5>Primary</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #1C2B39
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(28, 43, 57)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(209, 34%, 17%)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-reverse" style="background-color: #1598CB;">
      <div class="colorBox__title padding-h-normal">
        <h5>Secondary</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #1598CB
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(21, 152, 203)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(197, 81%, 44%)
        </div>
      </div>
    </div>
  </div>

  <h5>Accent</h5>
  <div class="colorBoxes">
    <div class="colorBox colorBox-reverse" style="background-color: #008145;">
      <div class="colorBox__title padding-h-normal">
        <h5>Accent</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #008145
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(0, 129, 69)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(152, 100%, 25%)
        </div>
      </div>
    </div>
    <div class="colorBox" style="background-color: #82C341;">
      <div class="colorBox__title padding-h-normal">
        <h5>Light accent</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #82C341
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(130, 195, 65)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(90, 52%, 51%)
        </div>
      </div>
    </div>
  </div>

  <h5>Action</h5>
  <div class="colorBoxes">
    <div class="colorBox" style="background-color: #F58220;">
      <div class="colorBox__title padding-h-normal">
        <h5>Action</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #F58220
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(245, 130, 32)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(28, 91%, 54%)
        </div>
      </div>
    </div>
    <div class="colorBox" style="background-color: #FDBA12;">
      <div class="colorBox__title padding-h-normal">
        <h5>Light action</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #FDBA12
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(253, 186, 18)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(43, 98%, 53%)
        </div>
      </div>
    </div>
  </div>

  <h5>Other backgrounds and text colors</h5>
  <div class="colorBoxes">
    <div class="colorBox" style="background-color: #fff;">
      <div class="colorBox__title padding-h-normal">
        <h5>Base</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #ffffff
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(255, 255, 255)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(0, 0%, 100%)
        </div>
      </div>
    </div>
    <div class="colorBox" style="background-color: #ffffff;">
      <div class="colorBox__title padding-h-normal">
        <h5>White</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #ffffff
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(255, 255, 255)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(0, 0%, 100%)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-reverse" style="background-color: #1C2B39;">
      <div class="colorBox__title padding-h-normal">
        <h5>Text</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #1C2B39
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(28, 43, 57)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(209, 34%, 17%)
        </div>
      </div>
    </div>
    <div class="colorBox" style="background-color: #f1f1f1;">
      <div class="colorBox__title padding-h-normal">
        <h5>Light</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #f1f1f1
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(241, 241, 241)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(0, 0%, 95%)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-reverse" style="background-color: #1C2B39;">
      <div class="colorBox__title padding-h-normal">
        <h5>Dark</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #1C2B39
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(28, 43, 57)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(209, 34%, 17%)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-reverse" style="background-color: #5F6369;">
      <div class="colorBox__title padding-h-normal">
        <h5>Gray</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #5F6369
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(95, 99, 105)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(216, 5%, 39%)
        </div>
      </div>
    </div>
    <div class="colorBox" style="background-color: #C7C9C8;">
      <div class="colorBox__title padding-h-normal">
        <h5>Light gray</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #C7C9C8
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(199, 201, 200)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(150, 2%, 78%)
        </div>
      </div>
    </div>
  </div>

  <h5>Additional colors</h5>
  <div class="colorBoxes">
    <div class="colorBox colorBox-reverse" style="background-color: #de0606;">
      <div class="colorBox__title padding-h-normal">
        <h5>Danger</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #de0606
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(222, 6, 6)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(0, 95%, 45%)
        </div>
      </div>
    </div>
    <div class="colorBox" style="background-color: #fff23f;">
      <div class="colorBox__title padding-h-normal">
        <h5>Highlight</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex</span> #fff23
        </div>
        <div class="colorBox__values__value">
          <span>RGB</span> rgb(255, 242, 63)
        </div>
        <div class="colorBox__values__value">
          <span>HSL</span> hsl(56, 100%, 62%)
        </div>
      </div>
    </div>
  </div>
</div>

```scss
$colors: (
  'brand': #00437B,
  'primary': #1C2B39,
  'secondary': #1598CB,
  'accent': #008145,
  'accent-light': #82C341,
  'light': #f1f1f1,
  'white': #ffffff,
  'text': #1C2B39,
  'action': #F58220,
  'action-light': #FDBA12,
  'gray': #5F6369,
  'gray-light': #C7C9C8,
  'base': #fff,
  'highlight': #fff23f,
  'danger': #de0606
);

// Interval to get tints and shades
$color-interval: 10%;
```
*/
/*
---
name: Gradients
category: Foundations/Variables
tag: variables
---
Base gradients of the Bitnami styleguide.

<div class="container margin-b-bigger">
  <h5>Base</h5>
  <div class="colorBoxes">
    <div class="colorBox colorBox-50 colorBox-reverse gradient-45-brand">
      <div class="colorBox__title padding-h-normal">
        <h5>Brand</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div>
          <div class="colorBox__values__value">
            <span>Hex (from)</span> #00437B (Brand)
          </div>
        </div>
        <div class="colorBox__values__value">
          <span>Hex (to)</span> #1598CB (Secondary)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-50 colorBox-reverse gradient-45-accent">
      <div class="colorBox__title padding-h-normal">
        <h5>Accent</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex (from)</span> #008145 (Accent)
        </div>
        <div class="colorBox__values__value">
          <span>Hex (to)</span> #82C341 (Light accent)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-50 gradient-45-action">
      <div class="colorBox__title padding-h-normal">
        <h5>Action</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex (from)</span> #F58220 (Action)
        </div>
        <div class="colorBox__values__value">
          <span>Hex (to)</span> #FDBA12 (Light action)
        </div>
      </div>
    </div>
    <div class="colorBox colorBox-50 gradient-45-light">
      <div class="colorBox__title padding-h-normal">
        <h5>Light</h5>
      </div>
      <div class="colorBox__values padding-h-normal padding-v-small">
        <div class="colorBox__values__value">
          <span>Hex (from)</span> #f1f1f1 (Light)
        </div>
        <div class="colorBox__values__value">
          <span>Hex (to)</span> #f7f7f7 (50 Light)
        </div>
      </div>
    </div>
  </div>
</div>

```scss
$gradients: (
  'brand': #00437B #1598CB,
  'accent': #008145 #82C341,
  'action': #F58220 #FDBA12,
  'light': #f1f1f1 #f7f7f7, // The last color is the result of `color-level('light', 50)`
);
```
*/
/*
---
name: Grid
category: Foundations/Variables
tag: variables
---
Defines the basic values for our Grid system

```scss
// Basic values of our grid system
$grid-width: 100%;
$grid-columns: 12;
$grid-gutter: su();
```
*/
/*
---
name: Names
category: Foundations/Variables
tag: variables
---
Aliases for colors and scales.

```scss
$scale-names: (
  'reset': -3,
  'tiny': -2,
  'small': -1,
  'normal': 0,
  'big': 1,
  'bigger': 2,
  'enormous': 3,
  'giant': 4,
  'huge': 5
);

$color-names: (
  'bitnami': 'brand',
  'light-blue': 'primary',
  'dark-blue': 'secondary',
  'accent': 'accent',
  'accent-light': 'accent-light',
  'iron': 'light',
  'white': 'white',
  'dark': 'text',
  'text': 'text',
  'action': 'action',
  'action-light': 'action-light',
  'gray': 'gray',
  'gray-light': 'gray-light',
  'white': 'base',
  'highlight': 'highlight'
);

```
*/
/*
---
name: Spacing
category: Foundations/Variables
tag: variables
---
Standard spacing values.

```scss
$spacing-sizes: (
  -3: 0,
  -2: $su / 8,
  -1: $su / 4,
  0: $su / 2,
  1: $su,
  2: 1.5 * $su,
  3: 2 * $su,
  4: 3 * $su,
  5: 5 * $su
);
```
*/
/*
---
name: Typography
category: Foundations/Variables
tag: variables
---
Defines all typography related variables for the project. Currently, the new selected font family
is [Interstate](https://store.typenetwork.com/foundry/fontbureau/fonts/interstate/regular).
This typography must be imported before the bitnami-ui require statement.

Interstate is a paid font family, so we need to use it through
[Typekit](https://typekit.com/fonts/interstate). If you don't want to use Interstate due
to this restrictment, you can use the fallback font families:
[Fira Sans](https://fonts.google.com/specimen/Fira+Sans) and
[Hind](https://fonts.google.com/specimen/Hind). This is an free font family and can be lodaded
from Google Fonts:

```
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:300,400,700|Hind:300,400,700" rel="stylesheet">
```

If any of these font families are available, the UI fallbacks to OS typographies.

```scss
// Font families
$type-os-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$type-headings: 'Interstate', 'Fira Sans', $type-os-fallback;
$type-body: 'Interstate', 'Hind', $type-os-fallback;
$type-code: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;

// Fix the line-heights
$line-heights: (
  -1: $size-unit,
  0: $size-unit,
  1: $size-unit * 1.5,
  2: $size-unit * 2,
  3: $size-unit * 3,
);
```
*/
/*
---
name: Z-index
category: Foundations/Variables
tag: variables
---
Instead of specifing custom Z-indexes for the different elements, these variables define five basic z-index values to position the layers of the interface.

```scss
$z-index: (
  'bottom': -1,
  'base': 0,
  'above': 10,
  'above-mean': 20,
  'top': 99
);
```
*/
/**
 * Helper functions to work with the Bitnami UI.
 */
/*
---
name: color(name)
category: Foundations/Mixins
tag: function
---
Get a color from the brand guide

```scss
.test {
  color: color('bitnami');
  background-color: color('iron');
}
```
*/
/*
---
name: color-level(name, level)
category: Foundations/Mixins
tag: function
---
Get a tint or shade of a base color. The `level` variable should be a number between 100 to 1000
in steps of one hundred. The base color is located in 500.

```scss
.test {
  color: color-level('bitnami', 200);
  background-color: color('iron', 700);
}
```
*/
/**
 * Calculate the color level based on the given color and the level.
 *
 * NOTE: This is an internal method.
 */
/**
 * Get the gradient pair for the given name
 *
 * NOTE: This is an internal method.
 */
/*
---
name: gradient(name, directionOrDegrees, firstPosition, lastPosition)
category: Foundations/Mixins
tag: function
---
Generate a proper gradient.

```scss
.test {
  background: gradient('brand', 45deg);
}
```
*/
/*
---
name: button-gradient(name)
category: Foundations/Mixins
tag: function
---
Return the gradient for a button with the cut corner already added.
Inspired by [this pen](https://codepen.io/aaahollister/pen/wKwxNY). This is the simplest
approach I've found.

```scss
button-gradient('brand');
```
*/
/*
---
name: button-size(name-of-scale)
category: Foundations/Mixins
tag: function
---
Mixin to generate a class for buttons. This class will modify the size of the buttons.

```scss
@include('small');
```
*/
/**
 * Grid mixins
 *
 * NOTE: This is an internal function. It shouldn't be documented
 */
/**
 * Generate a collapse property for a given prefix
 */
/**
 * Generate a collapse property for a given prefix
 */
/**
 * Power operator for SASS!
 *
 * NOTE: This is an internal function. It shouldn't be documented
 */
/**
 * Convert em to px
 */
/*
---
name: spacing(name)
category: Foundations/Mixins
tag: function
---

Get a spacing value based on the `size unity`. This method will throw an exception if the name
of the size is not valid.

```scss
.test {
  margin: spacing('tiny');
}
.test2 {
  padding-bottom: spacing('huge');
}
```
*/
/*
---
name: margin(name)
category: Foundations/Mixins
tag: function
---

**DEPRECATED:** see <a href="/category/Foundations/Mixins/#spacing(name)">spacing(name)</a>

Get a margin value based on the `size unity`. This method will throw an exception if the name
of the size is not valid.

```scss
.test {
  margin: margin('tiny');
}
.test2 {
  margin-bottom: margin('huge');
}
```
*/
/*
---
name: padding(name)
category: Foundations/Mixins
tag: function
---

**DEPRECATED:** see <a href="/category/Foundations/Mixins/#spacing(name)">spacing(name)</a>

Get a padding value based on the `size unity`. This method will throw an exception if the name
of the size is not valid.

```scss
.test {
  padding: padding('tiny');
}
.test2 {
  padding-top: padding('huge');
}
```
*/
/**
 * Using $su allow us to set the correct vertical rhythm of the page
 */
/*
---
name: su(multiplier)
category: Foundations/Mixins
tag: function
---
Return `multiplier * $su`. This method allows us to set the correct vertical rhythm of the page.

```scss
.test {
  height: su(10);
}
```
*/
/**
 * Mixins that generates spacing class helpers.
 *
 * NOTE: These are an internal mixins. They shouldn't be documented
 */
/*
---
name: baseSizing(zoom, size, scale, lineHeight)
category: Foundations/Themes
tag: function
---

Set the values for the base sizing units. These values defines the spacing and font size of all the framework.
Every property or mixin that involves sizes is affected by these values.
You can reuse the [default values](/category/Foundations/Variables/#Base%20sizing%20units).

```scss
@include baseSizing(
  100%,
  1.15em,
  $scale,
  1.45
);
```
*/
/*
---
name: colorTheme(colors, colorInterval)
category: Foundations/Themes
tag: function
---

Update the color theme of HEx. It receives a map that will be merged with the [default one](/category/Foundations/Variables/#Colors).

```scss
@include colorTheme(
  (
    'brand': green,
    'text': #000000
  ),
  8%
);
```
*/
/*
---
name: gradientTheme(gradients)
category: Foundations/Themes
tag: function
---

Update the gradient theme of HEx. It receives a map that will be merged with the [default one](/category/Foundations/Variables/#Gradients).

```scss
@include gradientTheme(
  (
    'accent': #008145 #82C341,
    'action': green blue,
  )
);
```
*/
/*
---
name: fontFamilies(body, headings, code)
category: Foundations/Themes
tag: function
---

Update the font families for HEx. The default ones are [Interstate, Fira Sans and Hind](/category/Foundations/Variables/#Typography).

```scss
$body: Arial, Verdana;

@include fontFamilies(
  $body,
  Arial,
  Consolas
);
```
*/
/*
---
name: gridConfig(width, columns, gutter)
category: Foundations/Themes
tag: function
---

Set the base values to generate the grid classes and helpers. We recommend to use 12 columns always
because the `collapse-*-on-*` helpers collapse the rows in blocks of 3, 2 and 1 elements.
You can reuse the [default values](/category/Foundations/Variables/#Grid).

```scss
@include gridConfig(
  1500px,
  $grid-columns,
  2em
);
```
*/
/*
---
name: borderRadiusConfig(borderRadius)
category: Foundations/Themes
tag: function
---

Set the border radius for some elements like tags and avatars.

```scss
@include borderRadiusConfig(5px);
```
*/
/*
---
name: type-scale(name)
category: Foundations/Mixins
tag: function
---
Get a font-size based on the standard values. You can check
[Type scale](http://type-scale.com/?size=16&scale=1.333&text=Bitnami%20Rocks!&webfont=Source%2BSans%2BPro&font-family=%27Source%20Sans%20Pro%27%2C%20sans-serif&font-weight=400&font-family-headers=&font-weight-headers=inherit&background-color=white&font-color=%23333)
to check the current scale and size.

```scss
.test {
  font-size: type-scale('huge');
}
```
*/
/*
---
name: line-height(name)
category: Foundations/Mixins
tag: function
---
Get a line-height based on the standard values.

**NOTE**: `reset`, `tiny`, `giant` and `huge` are not available.

```scss
.test {
  line-height: line-height('big');
}
```
*/
/**
 * Set the color for anchors in the type-color-reverse
 *
 * NOTE: This is an internal mixin. It shouldn't be documented
 */
/**
 * Remove the unit of a length
 *
 * NOTE: This is an internal function. It shouldn't be documented
 */
/*
---
name: clearfix()
category: Foundations/Mixins
tag: function
---
Add clearfix code to the current selector. Clearfix is useful to prevent bad positioning of
floated elements.

```scss
.test {
  @include clearfix();
}
```
*/
/*
---
name: z-index(name)
category: Foundations/Mixins
tag: function
---
Get the z-index from the available layer positions:

```scss
.base {
  z-index: z-index('base');
}
.above {
  z-index: z-index('above');
}
```
*/
/**
 * First of all, we need to require a reset CSS file. There are several options
 * for resetting. Now, we are going to select normalize.css. However,
 * we can change it updating this line.
 */
/**
 * This file is based on Normalize.css v5.0.0 (github.com/necolas/normalize.css).
 * However, I modified the code to remove unnecesary code.
 *
 * Also, I included our current variables to the project.
 */
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: "SFMono-Regular", Consolas, Liberation Mono, Menlo, Courier, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: "SFMono-Regular", Consolas, Liberation Mono, Menlo, Courier, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 0.8em; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 0.8em;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.15625em; }

sup {
  top: -0.3125em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/**
 * This file set the base of Bitnami UI. It will set the font-size, scale,
 * background-color... of the body. All custom reset properties must be placed
 * here.
 */
html {
  font-size: 100%; }
  @media all and (max-width: 47.9375em) {
    html {
      font-size: 95%; } }
  @media all and (max-width: 29.9375em) {
    html {
      font-size: 90%; } }
  @media all and (min-width: 81.25em) {
    html {
      font-size: 105%; } }

body {
  font-family: "Interstate", "Hind", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 1em;
  color: #1C2B39;
  line-height: 1.5;
  font-weight: 400;
  text-rendering: optimizeLegibility; }

/**
 * Match the size of elements to the border box. This property allow us to add padding to elements
 * preventing display the element outside of the container
 */
* {
  box-sizing: border-box; }

/*
---
name: Anchors
category: Foundations/Anchors
tag: text
---
Buttons use the `accent` color.

```html
<p>This is a <a>link</a> inside a paragraph. It's important to highlight them in the <a>text</a>.</p>
```
*/
a {
  color: #0d6cd4;
  cursor: pointer; }
  a:hover, a:active, a:focus {
    color: #dd751d; }
    a:hover:not(.button), a:active:not(.button), a:focus:not(.button) {
      text-decoration: underline; }

p a,
ul a,
a.decoration {
  text-decoration: underline; }

ul a:only-of-type,
ol a:only-of-type,
h1 a:only-of-type,
h2 a:only-of-type,
h3 a:only-of-type,
h4 a:only-of-type,
h5 a:only-of-type,
h6 a:only-of-type {
  text-decoration: none; }

/*
---
name: Code
category: Foundations/Code
tag: text
---
Display an inline code element correctly.

```html
<p>This is a <code>code example</code></p>
<pre><code>More code!</code></pre>
```
*/
pre {
  background-color: #111a22;
  line-height: 1.2;
  margin: 0.625em 0 1.25em;
  overflow: auto;
  padding: 0.625em;
  word-wrap: normal; }

code {
  font-size: 0.8em;
  padding: 0.15625em 0.3125em;
  background-color: #f1f1f1;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  color: #00743e;
  vertical-align: middle; }

pre code {
  background-color: inherit;
  border: none;
  color: #f1f1f1;
  padding: 0; }

/*
---
name: Input
category: Foundations/Forms
tag: text
---
Basic inputs to build forms.

```html
<input name="test" placeholder="This is a test" />
```
*/
input,
select,
textarea {
  border-radius: 0;
  border: 1px solid #C7C9C8;
  font-size: 1em;
  margin: 0.3125em 0 0.625em;
  padding: 0 0.625em;
  width: 100%; }

input,
select,
button {
  height: 2.5em;
  line-height: 2.5em; }

textarea:focus,
input:focus,
select:focus {
  outline: none;
  border-color: #336995;
  box-shadow: inset 0 1px 1px rgba(28, 43, 57, 0.05), 0 0 8px rgba(21, 152, 203, 0.3); }

/*
---
name: Select
category: Foundations/Forms
tag: text
---
Selectors are a bit different in Safari. We can't remove the gloss effect without using the
`-webkit-appareance` hack.

```html
<select name="test">
  <option>Select one element</option>
  <option>Option 1</option>
  <option>Option 2</option>
  <option disabled>Option 3</option>
</select>
```
*/
select {
  background-color: #ffffff; }

/*
---
name: Textarea
category: Foundations/Forms
tag: text
---
```html
<textarea>
This is a test
</textarea>
```
*/
textarea {
  padding: 0.625em;
  font-family: "Interstate", "Hind", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  resize: vertical;
  min-height: 6.25em; }

/*
---
name: Labels
category: Foundations/Forms
tag: text
---
```html
<label for="test">Label for input</label>
<input name="check" id="test" placeholder="test" />
```
*/
label {
  color: #1C2B39;
  font-size: 1em; }
  label + label {
    margin-left: 1.25em; }
  label.checkbox, label.radio {
    cursor: pointer; }
    label.checkbox input:disabled + span, label.radio input:disabled + span {
      opacity: .7; }
  label + input,
  label + select,
  label + textarea {
    margin-top: 0; }

/*
---
name: Checkbox
category: Foundations/Forms
tag: text
---
```html
<label for="check1" class="checkbox">
  <input type="checkbox" name="check1" id="check1" />
  <span>Test</span>
</label>
<label for="check2" class="checkbox">
  <input type="checkbox" name="check2" id="check2" disabled />
  <span>Disabled</span>
</label>
```
*/
/*
---
name: Radio
category: Foundations/Forms
tag: text
---
```html
<label for="test1" class="radio">
  <input type="radio" name="test" id="test1"/>
  <span>Test 1</span>
</label>
<label for="test2" class="radio">
  <input type="radio" name="test" id="test2"/>
  <span>Test 2</span>
</label>
<label for="test3" class="radio">
  <input type="radio" name="test" id="test3"/>
  <span>Test 3</span>
</label>
<label for="test4" class="radio">
  <input type="radio" name="test" id="test4" disabled/>
  <span>Disabled</span>
</label>
```
*/
input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  margin: 0 0.3125em 0 0;
  width: auto;
  height: auto;
  vertical-align: 1px; }
  input[type="checkbox"]:focus,
  input[type="radio"]:focus {
    text-decoration: none; }

/**
 * This is the second part of the hack. Safari display the checkbox well so
 * we need to reset the value for Safari. This only affects to Safari 7+.
 * For Safari < 7, the checkbox and radio buttons will be showed 1px above the
 * center.
 *
 * If we don't use this hack, all checkboxes and radio buttons will be misaligned
 * in all versions of Firefox and Chrome. CSS is beatiful...
 */
_::-webkit-full-page-media,
_:future,
:root input[type="checkbox"],
input[type="radio"] {
  vertical-align: baseline; }

/*
---
name: Buttons
category: Foundations/Forms
tag: text
---
```html
<a class="button" href="#">Link button</a>
<button class="button">Submit</button>
<input type="submit" value="Input Submit" class="button"/>
<button class="button" disabled="disabled">Disabled</button>
<button class="button" disabled>Disabled too</button>
```
*/
.button {
  border-radius: 0;
  border: none;
  box-shadow: 0 12px 10px -7px rgba(0, 0, 0, 0.2);
  color: #16222e;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  line-height: 2.5em;
  vertical-align: middle;
  text-decoration: none;
  max-width: 100%;
  overflow: hidden;
  padding: 0 1.875em;
  text-overflow: ellipsis;
  transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
  white-space: nowrap;
  will-change: transform;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(135deg, transparent 7px, #f1f1f1 7px, #f7f7f7 100%); }
  .button:hover, .button:focus {
    background: linear-gradient(135deg, transparent 7px, #F58220 7px, #FDBA12 100%);
    box-shadow: 0 12px 10px -7px rgba(0, 0, 0, 0.2);
    color: #ffffff; }
  .button:active {
    transform: translateY(2px);
    color: #ffffff;
    box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.2); }
  .button[disabled="disabled"], .button[disabled="true"], .button[disabled] {
    cursor: not-allowed;
    opacity: .5; }
  .button + .button,
  .button + button {
    margin-left: 0.3125em; }

/**
 * Update the color of the placeholder due to the similarity of the normal text color
 * https://github.com/bitnami/ui/issues/143
 */
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #b3b5b4;
  opacity: 1;
  /* Firefox */ }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #b3b5b4; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #b3b5b4; }

/*
---
name: Headers
category: Foundations/Headers
tag: text
---
The foundations provide headers from `h1` to `h6`. Those headers vary in colors, font sizes,
font weights and font families.

```html
<h1>Bitnami rocks!</h1>
<h2>Bitnami rocks!</h2>
<h3>Bitnami rocks!</h3>
<h4>Bitnami rocks!</h4>
<h5>Bitnami rocks!</h5>
<h6>Bitnami rocks!</h6>

<!-- With anchors -->
<h1><a href="#">Bitnami rocks!</a></h1>
<h2><a href="#">Bitnami rocks!</a></h2>
<h3><a href="#">Bitnami rocks!</a></h3>
```
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1C2B39;
  font-weight: normal;
  font-family: "Interstate", "Fira Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  margin: 0.625em 0 0.3125em; }
  h1 a,
  h1 a:hover,
  h1 a:active,
  h2 a,
  h2 a:hover,
  h2 a:active,
  h3 a,
  h3 a:hover,
  h3 a:active,
  h4 a,
  h4 a:hover,
  h4 a:active,
  h5 a,
  h5 a:hover,
  h5 a:active,
  h6 a,
  h6 a:hover,
  h6 a:active {
    color: inherit; }

h1 {
  font-size: 2.44141em; }

h2 {
  font-size: 1.95312em; }

h3 {
  font-size: 1.5625em; }

h4 {
  font-size: 1.25em;
  font-weight: 500;
  text-transform: uppercase; }

h5,
h6 {
  font-size: 1.25em;
  font-weight: bold; }

/*
---
name: Unordered lists
category: Foundations/Lists
tag: blocks
---
List are very similar to the base style. We only improved the margin and padding

```html
<ul>
  <li>Can't find what you're looking for?</li>
  <li>Click here for account questions</li>
  <li>Click here for app questions</li>
</ul>
```
*/
/*
---
name: Ordered lists
category: Foundations/Lists
tag: blocks
---
```html
<ol>
  <li>Can't find what you're looking for?</li>
  <li>Click here for account questions</li>
  <li>Click here for app questions</li>
</ol>
```
*/
ul,
ol {
  padding-left: 2.5em;
  margin: 0.625em 0 1.25em; }

/*
---
name: Paragraphs
category: Foundations/Paragraphs
tag: text
---
The styles of the paragraphs are pretty similar for the base style. We only reset the margins.

```html
<p>
For example, our Rails Development Container includes full Rails environment and
SQL database (MariaDB) to get developers productive immediately - with all the most
common tools ready to go.
<p/>
<p>
And because they're built on top of Stacksmith, they're
kept up-to-date to make sure the latest language features are available and you're
building on a secure foundation.
</p>
```
*/
/*
---
name: Paragraphs with headers
category: Foundations/Paragraphs
tag: text
---
Paragraphs works pretty well with headers. The margin display both elements as a single block
of content.

```html
<h1>Rails Development Container</h1>
<p>
For example, our Rails Development Container includes full Rails environment and
SQL database (MariaDB) to get developers productive immediately - with all the most
common tools ready to go.
<p/>

<h3>Stacksmith</h3>
<p>
The containers are built on top of Stacksmith, they're kept up-to-date to make sure the
latest language features are available and you're building on a secure foundation.
</p>
```
*/
p {
  margin: 0.625em 0 1.25em; }

/*
---
name: Blockquote
category: Foundations/Quotations
tag: blocks
---
Blockquotes can be combined with anchors to display a complete quote. The `rel` property of the
anchor must be equal to "author". You can check the following
[link](https://html.spec.whatwg.org/multipage/semantics.html#link-type-author) for more information.

The quotation will inherit the width from the parent container. We recommend to use it inside a
small container `.container.container-small` for display purposes, but it will work anywhere.

You can add modifiers to change the color of the left border:

* `.action`
* `.accent`
* `.brand`

```html
<div class="container container-small">
  <blockquote cite="https://twitter.com/ericabrescia/status/803775698297036801">
    Great day at my first Linux Foundation board meeting, but looking forward to seeing
    everyone at #awsreinvent. On my way!
    </br>
    See you there!
    <a href="https://twitter.com/ericabrescia/" rel="author">Erica Brescia</a>
  </blockquote>
  <blockquote class="accent" cite="https://twitter.com/ericabrescia/status/803775698297036801">
    Great day at my first Linux Foundation board meeting, but looking forward to seeing
    everyone at #awsreinvent. On my way!
    </br>
    See you there!
    <a href="https://twitter.com/ericabrescia/" rel="author">Erica Brescia</a>
  </blockquote>
  <blockquote class="brand" cite="https://twitter.com/ericabrescia/status/803775698297036801">
    Great day at my first Linux Foundation board meeting, but looking forward to seeing
    everyone at #awsreinvent. On my way!
    </br>
    See you there!
    <a href="https://twitter.com/ericabrescia/" rel="author">Erica Brescia</a>
  </blockquote>
</div>
```
*/
blockquote {
  border-left: 3px solid #f1f1f1;
  margin: 1.25em auto;
  padding: 0.3125em 0.3125em 0.3125em 1.25em; }
  blockquote a[rel="author"] {
    color: #1C2B39;
    display: block;
    font-weight: bold;
    margin-top: 1.25em; }
  blockquote.accent {
    border-left-color: #008145; }
  blockquote.action {
    border-left-color: #F58220; }
  blockquote.brand {
    border-left-color: #00437B; }

.bg-dark:not(.type-color-reverse-anchor-reset) blockquote a[rel=author],
.bg-brand:not(.type-color-reverse-anchor-reset) blockquote a[rel=author],
.bg-accent:not(.type-color-reverse-anchor-reset) blockquote a[rel=author],
.bg-action:not(.type-color-reverse-anchor-reset) blockquote a[rel=author],
.bg-skew:not(.type-color-reverse-anchor-reset) blockquote a[rel=author],
[class*="gradient-"][class*="-brand"]:not(.type-color-reverse-anchor-reset) blockquote a[rel=author],
[class*="gradient-"][class*="-accent"]:not(.type-color-reverse-anchor-reset) blockquote a[rel=author],
[class*="gradient-"][class*="-action"]:not(.type-color-reverse-anchor-reset) blockquote a[rel=author] {
  color: #ffffff; }

/*
---
name: Outstanding blockquote
category: Foundations/Quotations
tag: blocks
---
Add more visibility for the blockquote. This style includes a big quotes on both sides of the quote.
Thsi is convenient to highlight a quote or for marketing sites.

You can combine it with the [carousel component](/category/Components/Display/#Carousel).

```html
<div class="container container-small">
  <blockquote class="outstanding" cite="https://twitter.com/ericabrescia/status/803775698297036801">
    Great day at my first Linux Foundation board meeting, but looking forward to seeing
    everyone at #awsreinvent. On my way!
    </br>
    See you there!
    <a href="https://twitter.com/ericabrescia/" rel="author">Erica Brescia</a>
  </blockquote>
</div>
```
*/
blockquote.outstanding {
  border-left: none;
  font-size: 1.25em;
  padding: 0.3125em;
  position: relative;
  text-align: center; }
  blockquote.outstanding:before, blockquote.outstanding:after {
    background-image: url("data:image/svg+xml;utf8,<svg width='68' height='49' viewBox='0 0 68 49' xmlns='http://www.w3.org/2000/svg'><title>Fill 1</title><path d='M30.769 21.522c0 19.627-11.1 26.936-28.521 27.478L0 39.119c9.413-1.083 14.05-5.415 13.769-12.724H3.372V0h27.397v21.522zm37.231 0C68 41.15 57.041 48.458 39.48 49l-2.108-9.881c9.413-1.083 14.05-5.415 13.628-12.724H40.603V0H68v21.522z' fill='rgb(126, 211, 33)' fill-rule='evenodd'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 1.875em;
    position: absolute;
    top: 0.625em;
    width: 2.5em; }
  blockquote.outstanding:before {
    left: 0.3125em;
    transform: rotateZ(180deg); }
  blockquote.outstanding:after {
    right: 0.3125em; }
  blockquote.outstanding a[rel="author"] {
    font-size: 0.8em; }
    blockquote.outstanding a[rel="author"], blockquote.outstanding a[rel="author"]:hover {
      text-decoration: none; }
  @media all and (min-width: 48em) {
    blockquote.outstanding {
      padding: 0.3125em 3.75em; }
      blockquote.outstanding:before, blockquote.outstanding:after {
        content: ''; } }

/*
---
name: Abbreviation
category: Foundations/Quotations
tag: text
---
`abbr` tags are useful to show more information about an abbreviation.

```html
For example, our Rails Development Container includes full Rails environment and
<abbr title="Structured Query Language">SQL</abbr> database (MariaDB) to get developers
productive immediately - with all the most common tools ready to go.
```
*/
/*
---
name: Cite
category: Foundations/Quotations
tag: text
---
```html
For example, our Rails Development Container includes full Rails environment and
<abbr title="Structured Query Language">SQL</abbr> database (MariaDB) to get developers
productive immediately - with all the most common tools ready to go.
```
*/
abbr,
cite {
  text-decoration: none;
  font-weight: bold; }

/*
---
name: Horizontal
category: Foundations/Separators
tag: blocks
---
Add an horizonal line to split the content of the page.

```html
<hr />
```
*/
hr {
  color: #f1f1f1;
  background-color: #f1f1f1;
  height: 2px;
  border: 0;
  margin: 0.625em auto; }

/*
---
name: Tables
category: Foundations/Tables
tag: blocks
---
Tables should follow the standard format using `thead > th` and `tbody > td` tags.

```html
<table>
  <thead>
    <tr>
      <th>ID</th>
      <th>Name</th>
      <th>Downloads</th>
      <th>Stars</th>
    </tr>
  </thead>
  <body>
    <tr>
      <td>123</td>
      <td>Gitlab</td>
      <td>42343</td>
      <td>5</td>
    </tr>
    <tr>
      <td>321</td>
      <td>Moodle</td>
      <td>54312</td>
      <td>4.5</td>
    </tr>
    <tr>
      <td>753</td>
      <td>Wordpress</td>
      <td>23434</td>
      <td>4.3</td>
    </tr>
  </body>
</table>
```
*/
table {
  width: 100%;
  margin: 0.625em 0 1.25em;
  border-collapse: collapse;
  text-align: left; }
  table th,
  table td {
    padding: 0.625em; }
  table th {
    border-bottom: 1px solid #f1f1f1; }
  table tbody > tr:hover {
    background-color: #f7f7f7; }

/*
---
name: Basic
category: Foundations/Grid
tag: grid
---
A grid system is based in three main values:

![Grid elements illustration](/assets/images/grid-elements.png)

* Width: it determines the total width of every row. People usually set this value to 100% and a
max-width for larger screens
* Columns: max number of columns for the grid. 12 columns is a good number because we can split
the grid in blogs of 2, 3, 4 and 6 elements per row.
* Gutter: it represents the spacing between the columns. We are going to use the site unity of
our project.

Based on this paramenter, we need to define the Container, the Row and the Column elements of our project.

![Container illustration](/assets/images/container.png)
![Row illustration](/assets/images/row.png)
![Column illustration](/assets/images/column.png)

_All the images comes from [this article](http://j4n.co/blog/Creating-your-own-css-grid-system)_

```html
<div class="container">
  <div class="row">
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
  </div>
  <div class="row">
    <div class="col-3"><article>3</article></div>
    <div class="col-3"><article>3</article></div>
    <div class="col-3"><article>3</article></div>
    <div class="col-3"><article>3</article></div>
  </div>
  <div class="row">
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
  </div>
  <div class="row">
    <div class="col-6"><article>6</article></div>
    <div class="col-6"><article>6</article></div>
  </div>
  <div class="row">
    <div class="col-12"><article>12</article></div>
  </div>
  <div class="row">
    <div class="col-5"><article>5</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-5"><article>5</article></div>
  </div>
</div>
```
*/
.container {
  width: auto;
  max-width: 1300px;
  margin: 0 auto;
  /**
   * Row definition
   */ }
  @media all and (max-width: 1340px) {
    .container {
      padding: 0 1.25em; } }
  .container .row {
    display: flex;
    flex-wrap: wrap;
    margin: 1.25em -0.625em;
    /**
     * Column definition
     */ }
    .container .row:first-child {
      margin-top: 0; }
    .container .row:last-child {
      margin-bottom: 0; }
    .container .row > [class^="col"] {
      flex: 1;
      min-height: 1px;
      box-sizing: border-box;
      padding: 0 0.625em; }
    .container .row .col-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .container .row .col-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .container .row .col-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .container .row .col-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .container .row .col-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .container .row .col-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .container .row .col-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .container .row .col-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .container .row .col-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .container .row .col-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .container .row .col-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .container .row .col-12 {
      flex: 0 0 100%;
      max-width: 100%; }

/*
---
name: Content
category: Foundations/Grid
tag: grid
---
The previous examples display boxes with a very similar context. If the content of the columns is different, by default all of them are positionated at the beginning of the row.

Content helpers allows you to change the alignment of an specific column or all the elements in a row.

```html
<div class="container">
  <div class="row align-center">
    <div class="col-3"><article>Align Center</article></div>
    <div class="col-3"><article>A very long long long long long long long long long long long long long long long long long long long long long long long long long long long long content</article></div>
    <div class="col-3"><article>Align Center</article></div>
    <div class="col-3"><article>Align Center</article></div>
  </div>
  <div class="row">
    <div class="col-3 align-start"><article>Align Start</article></div>
    <div class="col-3"><article>A very long long long long long long long long long long long long long long long long long long long long long long long long long long long long content</article></div>
    <div class="col-3 align-center"><article>Align Center</article></div>
    <div class="col-3 align-end"><article>Align End</article></div>
  </div>
  <div class="row align-center">
    <div class="col-3"><article>Align Center</article></div>
    <div class="col-3"><article>A very long long long long long long long long long long long long long long long long long long long long long long long long long long long long content</article></div>
    <div class="col-3 align-start"><article>Align Start</article></div>
    <div class="col-3"><article>Align Center</article></div>
  </div>
</div>
```
*/
.flex,
.row {
  display: flex; }
  .flex.align-center,
  .row.align-center {
    align-items: center; }
  .flex.align-start,
  .row.align-start {
    align-items: flex-start; }
  .flex.align-end,
  .row.align-end {
    align-items: flex-end; }
  .flex .align-center,
  .row .align-center {
    align-self: center; }
  .flex .align-start,
  .row .align-start {
    align-self: flex-start; }
  .flex .align-end,
  .row .align-end {
    align-self: flex-end; }

/*
---
name: Row reverse
category: Foundations/Grid
tag: grid
---

Row reverse is a helper that will allow to exchange the order of the columns

There are layouts with content/text on the left side and images on the right side for
the first row and, for the second, the image is on the left and the content on the right. When
the layout collapses, this helper will keep the correct order.

##### Options

* `.row-reverse`: Helper used on the `.row` that will reverse the order of its columns.

```html
<div class="container container-tiny">
  <div class="row collapse-b-ultrawide">
    <div class="col-7">
      <p>
        Bitnami has spent years perfecting the business of packaging applications. During this time,
        we have built the expertise and internal tooling required to automate the process of
        publishing and maintaining a catalog of applications and development environments
      </p>
    </div>
    <div class="col-5 text-c">
      <img src="https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg"/>
    </div>
  </div>
  <div class="row row-reverse collapse-b-ultrawide">
    <div class="col-7">
      <p>
        Bitnami has spent years perfecting the business of packaging applications. During this time,
        we have built the expertise and internal tooling required to automate the process of
        publishing and maintaining a catalog of applications and development environments
      </p>
    </div>
    <div class="col-5 text-c">
      <img src="https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg"/>
    </div>
  </div>
</div>
```
*/
.row.row-reverse {
  flex-direction: row-reverse; }

/*
---
name: Responsive
category: Foundations/Grid
tag: grid
---

Classic system like bootstrap provides us responsive classes at Column level. For example, we could set the width of a column based on different media queries: `col-md-6 col-sm-3 ...`. This approach is ok, but it favors the fragmentation of the design because every column of every row can have a different behaviour.

Also, it polutes our HTML code with tons of CSS classes and sometimes it's really difficult to check the behaviour of a column.

To avoid this situation, I set the "responsive classes" at Row level. Now, we can set how the columns of the row will change across different sizes. For example, if we want to change the behaviour of the row for mobile screens we can add those classes to the row:

* `collapse-on-phone`
* `collapse-2-on-phone`
* `collapse-3-on-phone`

`collapse-2-on-phone` means that the row will display 2 columns per row on phone screens. We have the same classes for other screen names:

* `phone`
* `phone-land`
* `tablet`
* `desktop`
* `wide`

#### Below and Above

`collapse-on-x` applies the rule to an specific media query. That means the `collapse-on-tablet` class only collapses the columns when the users is between the tablet minimum and maximum.

If you want to collapse a row above or below an specific screen size, you can use the `a` and `b` prefixes:

* `collapse-a-phone`
* `collapse-a-phone-land` `collapse-b-phone-land`
* `collapse-a-tablet` `collapse-b-tablet`
* `collapse-a-desktop` `collapse-b-desktop`
* `collapse-b-wide`

```html
<div class="container">
  <div class="row collapse-3-on-tablet collapse-2-on-phone-land collapse-on-phone">
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
  </div>

  <div class="row collapse-3-on-tablet collapse-2-b-tablet">
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
    <div class="col-2"><article>2</article></div>
  </div>

  <div class="row">
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
  </div>
</div>
```
*/
.container .row {
  /**
   * General behviour
   *
   * NOTE: Now, we're going to disable this functionality to avoid incompatibilities with the
   * current CSS code of our products
   */
  /**
   * Above media queries
   */
  /**
   * Below media queries
   */
  /**
   * Specific media queries
   */ }
  @media all and (min-width: 30em) {
    .container .row.collapse-a-phone > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-a-phone > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-a-phone > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-a-phone.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-a-phone > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-a-phone > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-a-phone > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-a-phone.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-a-phone > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-a-phone > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-a-phone > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-a-phone.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 48em) {
    .container .row.collapse-a-phone-land > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-a-phone-land > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-a-phone-land > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-a-phone-land.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-a-phone-land > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-a-phone-land > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-a-phone-land > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-a-phone-land.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-a-phone-land > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-a-phone-land > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-a-phone-land > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-a-phone-land.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 56.25em) {
    .container .row.collapse-a-tablet > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-a-tablet > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-a-tablet > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-a-tablet.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-a-tablet > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-a-tablet > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-a-tablet > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-a-tablet.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-a-tablet > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-a-tablet > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-a-tablet > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-a-tablet.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 68.75em) {
    .container .row.collapse-a-desktop > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-a-desktop > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-a-desktop > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-a-desktop.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-a-desktop > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-a-desktop > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-a-desktop > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-a-desktop.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-a-desktop > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-a-desktop > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-a-desktop > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-a-desktop.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 81.25em) {
    .container .row.collapse-a-wide > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-a-wide > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-a-wide > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-a-wide.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-a-wide > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-a-wide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-a-wide > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-a-wide.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-a-wide > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-a-wide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-a-wide > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-a-wide.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (max-width: 81.1875em) {
    .container .row.collapse-b-ultrawide > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-b-ultrawide > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-b-ultrawide > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-b-ultrawide.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-b-ultrawide > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-b-ultrawide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-b-ultrawide > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-b-ultrawide.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-b-ultrawide > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-b-ultrawide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-b-ultrawide > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-b-ultrawide.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (max-width: 68.6875em) {
    .container .row.collapse-b-wide > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-b-wide > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-b-wide > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-b-wide.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-b-wide > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-b-wide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-b-wide > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-b-wide.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-b-wide > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-b-wide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-b-wide > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-b-wide.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (max-width: 56.1875em) {
    .container .row.collapse-b-desktop > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-b-desktop > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-b-desktop > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-b-desktop.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-b-desktop > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-b-desktop > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-b-desktop > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-b-desktop.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-b-desktop > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-b-desktop > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-b-desktop > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-b-desktop.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (max-width: 47.9375em) {
    .container .row.collapse-b-tablet > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-b-tablet > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-b-tablet > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-b-tablet.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-b-tablet > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-b-tablet > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-b-tablet > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-b-tablet.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-b-tablet > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-b-tablet > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-b-tablet > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-b-tablet.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (max-width: 29.9375em) {
    .container .row.collapse-b-phone-land > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-b-phone-land > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-b-phone-land > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-b-phone-land.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-b-phone-land > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-b-phone-land > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-b-phone-land > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-b-phone-land.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-b-phone-land > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-b-phone-land > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-b-phone-land > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-b-phone-land.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (max-width: 29.9375em) {
    .container .row.collapse-on-phone > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-on-phone > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-on-phone > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-on-phone.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-on-phone > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-on-phone > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-on-phone > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-on-phone.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-on-phone > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-on-phone > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-on-phone > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-on-phone.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 30em) and (max-width: 47.9375em) {
    .container .row.collapse-on-phone-land > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-on-phone-land > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-on-phone-land > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-on-phone-land.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-on-phone-land > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-on-phone-land > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-on-phone-land > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-on-phone-land.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-on-phone-land > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-on-phone-land > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-on-phone-land > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-on-phone-land.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 48em) and (max-width: 56.1875em) {
    .container .row.collapse-on-tablet > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-on-tablet > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-on-tablet > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-on-tablet.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-on-tablet > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-on-tablet > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-on-tablet > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-on-tablet.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-on-tablet > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-on-tablet > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-on-tablet > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-on-tablet.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 56.25em) and (max-width: 68.6875em) {
    .container .row.collapse-on-desktop > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-on-desktop > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-on-desktop > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-on-desktop.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-on-desktop > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-on-desktop > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-on-desktop > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-on-desktop.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-on-desktop > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-on-desktop > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-on-desktop > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-on-desktop.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }
  @media all and (min-width: 68.75em) and (max-width: 81.1875em) {
    .container .row.collapse-on-wide > [class^="col"] {
      flex: 0 0 100%;
      margin-top: 1.25em;
      max-width: 100%; }
      .container .row.collapse-on-wide > [class^="col"]:first-child {
        margin-top: 0; }
    .container .row.collapse-on-wide > [class^="col"]:nth-child(n+2) {
      margin-top: 1.25em; }
    .container .row.collapse-on-wide.row-vdivide > [class^="col"] {
      border-right: 0; }
    .container .row.collapse-2-on-wide > [class^="col"] {
      flex: 0 0 50%;
      max-width: 50%; }
      .container .row.collapse-2-on-wide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-2-on-wide > [class^="col"]:nth-child(-n+2) {
        margin-top: 0; }
    .container .row.collapse-2-on-wide.row-vdivide > [class^="col"]:nth-child(2n) {
      border-right: 0; }
    .container .row.collapse-3-on-wide > [class^="col"] {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
      .container .row.collapse-3-on-wide > [class^="col"]:nth-child(n) {
        margin-top: 1.25em; }
      .container .row.collapse-3-on-wide > [class^="col"]:nth-child(-n+3) {
        margin-top: 0; }
    .container .row.collapse-3-on-wide.row-vdivide > [class^="col"]:nth-child(3n) {
      border-right: 0; } }

/*
---
name: Sizes
category: Foundations/Grid
tag: helpers
---

The grid is limited by the `max-width` property. By default, the rows can not be wider than `1300px` ([uxl breakpoint](/category/Foundations/Variables/index.html#Breakpoints)). We can disable this behaviour using the `.container-fluid` class:

```html
<div class="container container-fluid">
  <div class="row">
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
  </div>
</div>

<div class="container margin-t-big">
  <div class="row">
    <div class="col-2"><article>2</article></div>
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
    <div class="col-2"><article>2</article></div>
  </div>
</div>

<div class="container container-small margin-t-big">
  <div class="row">
    <div class="col-3"><article>3</article></div>
    <div class="col-3"><article>3</article></div>
    <div class="col-3"><article>3</article></div>
    <div class="col-3"><article>3</article></div>
  </div>
</div>

<div class="container container-tiny margin-t-big">
  <div class="row">
    <div class="col-2"><article>2</article></div>
    <div class="col-4"><article>4</article></div>
    <div class="col-4"><article>4</article></div>
    <div class="col-2"><article>2</article></div>
  </div>
</div>
```
*/
.container.container-fluid {
  max-width: none; }

.container.container-small {
  max-width: calc(8 * (1300px / 12) + 1.25em / 2); }

.container.container-tiny {
  max-width: calc(6 * (1300px / 12) + 1.25em / 2); }

/*
---
name: Anchors
category: Foundations/Helpers
tag: helpers
---
Modify the color and the decoration of the anchor. Available classes:
* `.light`
* `.secondary`
* `.no-decoration`

```html
<div class="preview-inverse">
  <p>This is a <a class="light">link</a></p>
</div>
```
```html
<div class="preview-light-blue">
  <p>This is a <a class="secondary">link</a></p>
</div>
```
```html
<div>
  <p>This is a <a class="no-decoration">link</a></p>
</div>
```
*/
a.light:not(.button) {
  color: #4da77d; }
  a.light:not(.button):hover, a.light:not(.button):active, a.light:not(.button):visited {
    color: #66b38f; }

a.secondary:not(.button) {
  color: #00437B; }
  a.secondary:not(.button):hover, a.secondary:not(.button):active, a.secondary:not(.button):visited {
    color: #003c6f; }

a.no-decoration {
  text-decoration: none; }

/*
---
name: Animations
category: Foundations/Helpers
tag: helpers
---
Different animations for the elements:

* `.slide-in`
* `.fade-in`

```html
<p class="slide-in">
  This is a text with an animation
</p>
<p class="fade-in">
  This is a text with an animation
</p>
```
*/
@keyframes slide-in {
  from {
    transform: translateY(-10%);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }

.slide-in {
  animation: slide-in .150s ease-in; }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fade-in {
  animation: fade-in .150s ease-in; }

/*
---
name: Backgrounds
category: Foundations/Helpers
tag: helpers
---
Modify the background color of the given element.

```html
<div class="container padding-v-bigger bg-bitnami"></div>
<div class="container padding-v-bigger bg-iron"></div>
<div class="container padding-v-bigger bg-dark"></div>
<div class="container padding-v-bigger bg-white"></div>
<div class="container padding-v-bigger bg-accent"></div>
<div class="container padding-v-bigger bg-action"></div>
<!-- Other names -->
<div class="container padding-v-bigger margin-t-bigger bg-brand"></div>
<div class="container padding-v-bigger bg-light"></div>
<div class="container padding-v-bigger bg-dark"></div>
<div class="container padding-v-bigger bg-base"></div>
<div class="container padding-v-bigger bg-accent"></div>
<div class="container padding-v-bigger bg-action"></div>
```
*/
.bg-bitnami,
.bg-brand {
  background-color: #00437B; }

.bg-accent,
.bg-accent {
  background-color: #008145; }

.bg-action,
.bg-action {
  background-color: #F58220; }

.bg-iron,
.bg-light {
  background-color: #f1f1f1; }

.bg-dark,
.bg-text {
  background-color: #1C2B39; }

.bg-white,
.bg-white {
  background-color: #ffffff; }

/*
---
name: Box Shadows
category: Foundations/Helpers
tag: helpers
---
Apply box shadows to the class. The number in the class represents the visual height
of the box. Higher numbers will display the boxes in a higher level.

```html
<div class="container text-c margin-v-big">
  <div class="row">
    <div class="col-2">
      <div class="padding-v-enormous shadow-reset">.shadow-reset</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous shadow-1">.shadow-1</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous shadow-2">.shadow-2</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous shadow-3">.shadow-3</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous shadow-4">.shadow-4</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous shadow-5">.shadow-5</div>
    </div>
  </div>
  <!-- An alias -->
  <div class="row">
    <div class="col-2">
      <div class="padding-v-enormous elevation-reset">.elevation-reset</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous elevation-1">.elevation-1</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous elevation-2">.elevation-2</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous elevation-3">.elevation-3</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous elevation-4">.elevation-4</div>
    </div>
    <div class="col-2">
      <div class="padding-v-enormous elevation-5">.elevation-5</div>
    </div>
  </div>
</div>
```
*/
.shadow-1,
.elevation-1 {
  box-shadow: 0 3px 6px rgba(28, 43, 57, 0.4); }

.shadow-2,
.elevation-2 {
  box-shadow: 0 6px 12px rgba(28, 43, 57, 0.4); }

.shadow-3,
.elevation-3 {
  box-shadow: 0 9px 18px rgba(28, 43, 57, 0.4); }

.shadow-4,
.elevation-4 {
  box-shadow: 0 12px 24px rgba(28, 43, 57, 0.4); }

.shadow-5,
.elevation-5 {
  box-shadow: 0 15px 30px rgba(28, 43, 57, 0.4); }

.shadow-reset,
.elevation-reset {
  box-shadow: none; }

/*
---
name: Flex Align
category: Foundations/Helpers
tag: helper
---

The flex helper will allow to align content vertically. When used in the parent element, the
alignment will apply to all the child elements.

* `.flex.align-start`: Top alignment
* `.flex.align-end`: Bottom alignment
* `.flex.aling-center`: Middle alignment

If a specific child element needs a different alignment, it can be redefined using the
following classes.

* `.align-start`
* `.align-center`
* `.align-end`

```html
<div class="container container-small">
  <div class='flex align-center' style="border: 1px solid #ccc">
    <img class="avatar avatar-big align-start"
      src="https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg" alt="Person name avatar" />
    <img class="avatar avatar-big"
      src="https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg" alt="Person name avatar" />
    <img class="avatar avatar-big align-end"
      src="https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg" alt="Person name avatar" />
    <img class="avatar avatar-big align-start margin-r-big"
      src="https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg" alt="Person name avatar" />
    <div class="margin-r-big" style="width:350px;">
      <article>A very long long long long long long long long long long long long long long long long long long long long long long long long long long long long content</article>
    </div>
    <span>The element is placed in the middle of the parent element</span>
  </div>
  <br/>
  <div class='flex' style="border: 1px solid #ccc">
    <div style="width:350px; margin-right: 2em;">
      <article>A very long long long long long long long long long long long long long long long long long long long long long long long long long long long long content</article>
    </div>
    <div style="width:350px; margin-right: 2em;" class='align-center'>
      The element is placed in the middle of the parent element
    </div>
    <div style="width:350px;">
      This element is not vertical aligned
    </div>
  </div>
</div>
```
*/
/*
---
name: Button Colors
category: Foundations/Helpers
tag: helpers
---
Modify the color of the buttons. Available classes:

* `.button-primary`
* `.button-accent`
* `.button-action`
* `.button-danger`

```html
<button class="button button-primary">Submit</button>
<a class="button button-accent">Link button</a>
<a class="button button-action">Link button</a>
<a class="button button-danger">Link button</a>
<a class="button">Link button</a>
```
*/
.button-primary,
.button-accent,
.button-action,
.button-danger {
  color: white; }

.button-primary {
  background: linear-gradient(135deg, transparent 7px, #00437B 7px, #1598CB 100%); }

.button-accent {
  background: linear-gradient(135deg, transparent 7px, #008145 7px, #82C341 100%); }

.button-action {
  background: linear-gradient(135deg, transparent 7px, #F58220 7px, #FDBA12 100%); }

.button-action:hover {
  background: linear-gradient(135deg, transparent 7px, #dd751d 7px, #e4a710 100%); }

.button-danger {
  background: linear-gradient(135deg, transparent 7px, #de0606 7px, #e85151 100%); }

/*
---
name: Button Sizes
category: Foundations/Helpers
tag: helpers
---
Modify the size of the buttons. Available classes:

* `.button-small`
* `.button-big`
* `.button-bigger`

```html
<button class="button button-primary button-small">Submit</button>
<a class="button button-accent">Link button</a>
<a class="button button-action button-big">Link button</a>
<a class="button button-bigger">Link button</a>
```
*/
.button-small {
  font-size: 0.8em; }

.button-big {
  font-size: 1.25em; }

.button-bigger {
  font-size: 1.5625em; }

/*
---
name: Button Dropdown
category: Foundations/Helpers
tag: helpers
---
Add a caret icon to the right of the button.

* `.button-dropdown`
* `.button-dropdown-open`

See https://css-tricks.com/snippets/css/css-triangle/.

```html
<button class="button button-dropdown">Submit</button>
<a class="button button-accent button-dropdown button-dropdown-open">Link button</a>
<a class="button button-action button-big button-dropdown">Link button</a>
<a class="button button-bigger button-dropdown button-dropdown-open">Link button</a>
```
*/
.button-dropdown:after {
  border: 5px solid transparent;
  border-top-color: #1C2B39;
  display: inline-block;
  content: '';
  height: 0;
  margin-left: 0.3125em;
  position: relative;
  top: 0.07812em;
  vertical-align: middle;
  width: 0; }

.button-dropdown.button-action:after, .button-dropdown.button-accent:after {
  border-top-color: #ffffff; }

.button-dropdown-open:after {
  border-top-color: transparent;
  border-bottom-color: #1C2B39;
  top: -.2em; }

.button-dropdown-open.button-action:after, .button-dropdown-open.button-accent:after {
  border-top-color: transparent;
  border-bottom-color: #ffffff; }

/*
---
name: Form reverse
category: Foundations/Helpers
tag: helpers
---
The `form-reverse` modifier changes the form field styles inside the current container.
This is really useful for forms that are placed inside a container with a dark background.

For known dark backgrounds, the `form-reverse` modifier is added automatically.
The list of known dark backgrounds is:

* [Backgrounds](/category/Foundations/Helpers/#Backgrounds)
* [Linear Gradients](/category/Foundations/Helpers/#Linear%20Gradients)

**NOTE:** This behaviour is very opinionated and it may cause issues in some situations.
So, you can disable it using the `form-reverse-reset` class.

```html
<form>
  <div>
    <label for="username">Username</label>
    <input name="username" id="username" placeholder="Your username" />
  </div>
  <div>
    <label for="password">Password</label>
    <input name="password" id="password" placeholder="A secure password" />
  </div>
</form>

<section class="gradient-brand margin-t-big padding-normal">
  <form>
    <div>
      <label for="username">Username</label>
      <input name="username" id="username" placeholder="Your username" />
    </div>
    <div>
      <label for="password">Password</label>
      <input name="password" id="password" placeholder="A secure password" />
    </div>
  </form>
</section>
```
*/
/**
 * Enable form-reverse by default with known dark backgrounds.
 * @see https://github.com/bitnami/ui/pull/45#issuecomment-353398961
 * @see https://github.com/bitnami/ui/pull/45#issuecomment-353556092
 */
.bg-dark *:not(.form-reverse-reset) label,
.bg-brand *:not(.form-reverse-reset) label,
.bg-accent *:not(.form-reverse-reset) label,
.bg-action *:not(.form-reverse-reset) label,
.bg-skew *:not(.form-reverse-reset) label,
[class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) label,
[class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) label,
[class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) label,
.form-reverse *:not(.form-reverse-reset) label {
  color: #C7C9C8; }
  .bg-dark *:not(.form-reverse-reset) label.radio, .bg-dark *:not(.form-reverse-reset) label.checkbox,
  .bg-brand *:not(.form-reverse-reset) label.radio,
  .bg-brand *:not(.form-reverse-reset) label.checkbox,
  .bg-accent *:not(.form-reverse-reset) label.radio,
  .bg-accent *:not(.form-reverse-reset) label.checkbox,
  .bg-action *:not(.form-reverse-reset) label.radio,
  .bg-action *:not(.form-reverse-reset) label.checkbox,
  .bg-skew *:not(.form-reverse-reset) label.radio,
  .bg-skew *:not(.form-reverse-reset) label.checkbox,
  [class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) label.radio,
  [class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) label.checkbox,
  [class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) label.radio,
  [class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) label.checkbox,
  [class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) label.radio,
  [class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) label.checkbox,
  .form-reverse *:not(.form-reverse-reset) label.radio,
  .form-reverse *:not(.form-reverse-reset) label.checkbox {
    color: #ffffff; }

.bg-dark *:not(.form-reverse-reset) input, .bg-dark *:not(.form-reverse-reset) input:focus,
.bg-dark *:not(.form-reverse-reset) select,
.bg-dark *:not(.form-reverse-reset) select:focus,
.bg-dark *:not(.form-reverse-reset) textarea,
.bg-dark *:not(.form-reverse-reset) textarea:focus,
.bg-brand *:not(.form-reverse-reset) input,
.bg-brand *:not(.form-reverse-reset) input:focus,
.bg-brand *:not(.form-reverse-reset) select,
.bg-brand *:not(.form-reverse-reset) select:focus,
.bg-brand *:not(.form-reverse-reset) textarea,
.bg-brand *:not(.form-reverse-reset) textarea:focus,
.bg-accent *:not(.form-reverse-reset) input,
.bg-accent *:not(.form-reverse-reset) input:focus,
.bg-accent *:not(.form-reverse-reset) select,
.bg-accent *:not(.form-reverse-reset) select:focus,
.bg-accent *:not(.form-reverse-reset) textarea,
.bg-accent *:not(.form-reverse-reset) textarea:focus,
.bg-action *:not(.form-reverse-reset) input,
.bg-action *:not(.form-reverse-reset) input:focus,
.bg-action *:not(.form-reverse-reset) select,
.bg-action *:not(.form-reverse-reset) select:focus,
.bg-action *:not(.form-reverse-reset) textarea,
.bg-action *:not(.form-reverse-reset) textarea:focus,
.bg-skew *:not(.form-reverse-reset) input,
.bg-skew *:not(.form-reverse-reset) input:focus,
.bg-skew *:not(.form-reverse-reset) select,
.bg-skew *:not(.form-reverse-reset) select:focus,
.bg-skew *:not(.form-reverse-reset) textarea,
.bg-skew *:not(.form-reverse-reset) textarea:focus,
[class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) input,
[class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) input:focus,
[class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) select,
[class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) select:focus,
[class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) textarea,
[class*="gradient-"][class*="-brand"] *:not(.form-reverse-reset) textarea:focus,
[class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) input,
[class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) input:focus,
[class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) select,
[class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) select:focus,
[class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) textarea,
[class*="gradient-"][class*="-accent"] *:not(.form-reverse-reset) textarea:focus,
[class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) input,
[class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) input:focus,
[class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) select,
[class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) select:focus,
[class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) textarea,
[class*="gradient-"][class*="-action"] *:not(.form-reverse-reset) textarea:focus,
.form-reverse *:not(.form-reverse-reset) input,
.form-reverse *:not(.form-reverse-reset) input:focus,
.form-reverse *:not(.form-reverse-reset) select,
.form-reverse *:not(.form-reverse-reset) select:focus,
.form-reverse *:not(.form-reverse-reset) textarea,
.form-reverse *:not(.form-reverse-reset) textarea:focus {
  border-color: transparent; }

/*
---
name: Linear Gradients
category: Foundations/Helpers
tag: helpers
---
Add a gradient for the background of an element.

```html
<div class="gradient-brand" style="height: 100px"></div>
<div class="gradient-accent" style="height: 100px"></div>
<div class="gradient-action" style="height: 100px"></div>

<h3>Other angles</h3>

<div class="gradient-45-brand" style="height: 100px"></div>
<div class="gradient-90-accent" style="height: 100px"></div>
<div class="gradient-135-action" style="height: 100px"></div>
<div class="gradient-180-brand" style="height: 100px"></div>
<div class="gradient-225-accent" style="height: 100px"></div>
<div class="gradient-270-action" style="height: 100px"></div>
```
*/
.gradient-brand,
.gradient-0-brand {
  background-image: linear-gradient(0deg, #00437B 0%, #1598CB 100%); }

.gradient-accent,
.gradient-0-accent {
  background-image: linear-gradient(0deg, #008145 0%, #82C341 100%); }

.gradient-action,
.gradient-0-action {
  background-image: linear-gradient(0deg, #F58220 0%, #FDBA12 100%); }

.gradient-light,
.gradient-0-light {
  background-image: linear-gradient(0deg, #f1f1f1 0%, #f7f7f7 100%); }

.gradient-danger,
.gradient-0-danger {
  background-image: linear-gradient(0deg, #de0606 0%, #e85151 100%); }

.gradient-45-brand {
  background-image: linear-gradient(45deg, #00437B 0%, #1598CB 100%); }

.gradient-45-accent {
  background-image: linear-gradient(45deg, #008145 0%, #82C341 100%); }

.gradient-45-action {
  background-image: linear-gradient(45deg, #F58220 0%, #FDBA12 100%); }

.gradient-45-light {
  background-image: linear-gradient(45deg, #f1f1f1 0%, #f7f7f7 100%); }

.gradient-45-danger {
  background-image: linear-gradient(45deg, #de0606 0%, #e85151 100%); }

.gradient-90-brand {
  background-image: linear-gradient(90deg, #00437B 0%, #1598CB 100%); }

.gradient-90-accent {
  background-image: linear-gradient(90deg, #008145 0%, #82C341 100%); }

.gradient-90-action {
  background-image: linear-gradient(90deg, #F58220 0%, #FDBA12 100%); }

.gradient-90-light {
  background-image: linear-gradient(90deg, #f1f1f1 0%, #f7f7f7 100%); }

.gradient-90-danger {
  background-image: linear-gradient(90deg, #de0606 0%, #e85151 100%); }

.gradient-135-brand {
  background-image: linear-gradient(135deg, #00437B 0%, #1598CB 100%); }

.gradient-135-accent {
  background-image: linear-gradient(135deg, #008145 0%, #82C341 100%); }

.gradient-135-action {
  background-image: linear-gradient(135deg, #F58220 0%, #FDBA12 100%); }

.gradient-135-light {
  background-image: linear-gradient(135deg, #f1f1f1 0%, #f7f7f7 100%); }

.gradient-135-danger {
  background-image: linear-gradient(135deg, #de0606 0%, #e85151 100%); }

.gradient-180-brand {
  background-image: linear-gradient(180deg, #00437B 0%, #1598CB 100%); }

.gradient-180-accent {
  background-image: linear-gradient(180deg, #008145 0%, #82C341 100%); }

.gradient-180-action {
  background-image: linear-gradient(180deg, #F58220 0%, #FDBA12 100%); }

.gradient-180-light {
  background-image: linear-gradient(180deg, #f1f1f1 0%, #f7f7f7 100%); }

.gradient-180-danger {
  background-image: linear-gradient(180deg, #de0606 0%, #e85151 100%); }

.gradient-225-brand {
  background-image: linear-gradient(225deg, #00437B 0%, #1598CB 100%); }

.gradient-225-accent {
  background-image: linear-gradient(225deg, #008145 0%, #82C341 100%); }

.gradient-225-action {
  background-image: linear-gradient(225deg, #F58220 0%, #FDBA12 100%); }

.gradient-225-light {
  background-image: linear-gradient(225deg, #f1f1f1 0%, #f7f7f7 100%); }

.gradient-225-danger {
  background-image: linear-gradient(225deg, #de0606 0%, #e85151 100%); }

.gradient-270-brand {
  background-image: linear-gradient(270deg, #00437B 0%, #1598CB 100%); }

.gradient-270-accent {
  background-image: linear-gradient(270deg, #008145 0%, #82C341 100%); }

.gradient-270-action {
  background-image: linear-gradient(270deg, #F58220 0%, #FDBA12 100%); }

.gradient-270-light {
  background-image: linear-gradient(270deg, #f1f1f1 0%, #f7f7f7 100%); }

.gradient-270-danger {
  background-image: linear-gradient(270deg, #de0606 0%, #e85151 100%); }

/*
---
name: Subtitle
category: Foundations/Helpers
tag: helpers
---
Modify the color and the margin-top of a header. It should be combined with a normal header.

```html
<h1>The best of both worlds</h1>
<h5 class="subtitle">The ease of Bitnami backed by the compute power of Google</h5>
```
*/
.subtitle {
  font-weight: normal;
  color: #44add5;
  margin-top: -0.625em; }

/*
---
name: Inverse
category: Foundations/Helpers
tag: helpers
---
Use this style with dark background colors

```html
<h1 class="inverse">The best of both worlds</h1>
```
*/
.inverse {
  color: #f7f7f7; }

/*
---
name: Responsive Images
category: Foundations/Helpers
tag: helpers
---
Responsive images are made using `.img-fluid`. It scales with the parent element because we apply
`max-width: 100%;` and `height: auto;`

SVG files will grow up to the size of the parent element and no SVG files will grow up its own size
to avoid blurry images.

```html
<div class="container container-tiny">
  <img src="/assets/images/logo.svg" class="img-fluid"/>
  <svg class="img-fluid" width="420" height="141" viewBox="0 0 420 141" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Bitnami-Logo-Full-Color</title><defs><path d="M7.187 75.559C2.698 72.968.301 70.402.301 65.32V7.476c0-2.643.705-5.022 1.845-7.034l24.345 13.99v72.273L7.187 75.56z" id="a"/><linearGradient x1="18.01%" y1="80.098%" x2="77.804%" y2="28.779%" id="c"><stop stop-color="#00437C" offset="0%"/><stop stop-color="#093266" offset="100%"/></linearGradient><path d="M8.673 47.68L.45 42.932V12.691l15.23 8.792L51.908.566V.432L76.35 14.478c-1.178 2.14-2.937 3.913-5.25 5.248L22.7 47.671a14.004 14.004 0 0 1-7.02 1.902 14 14 0 0 1-7.006-1.893" id="d"/><linearGradient x1="0%" y1="50%" y2="50%" id="f"><stop stop-color="#00437C" offset="0%"/><stop stop-color="#3984B5" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path fill="#15211F" fill-rule="nonzero" d="M197.844 51.214h10.357v-9.976h-10.357zM197.844 105.334h10.357v-49h-10.357zM180.768 80.81c0 4.995-.669 8.93-1.989 11.695-1.303 2.744-3.825 4.078-7.71 4.078-2.673 0-4.75-.682-6.171-2.025-1.438-1.378-2.407-3.201-2.88-5.419-.492-2.293-.74-5.096-.74-8.328 0-3.23.248-6.02.74-8.297.473-2.218 1.441-4.024 2.877-5.368 1.427-1.335 3.504-2.012 6.174-2.012 2.676 0 4.67.647 6.096 1.98 1.422 1.333 2.385 3.14 2.861 5.368.493 2.298.742 5.1.742 8.329m8.366-15.012c-.82-2.218-2.011-4.12-3.54-5.646-1.323-1.356-3.063-2.445-5.171-3.24-2.08-.784-4.365-1.181-6.794-1.181-2.733 0-5.165.425-7.228 1.263-1.857.756-3.577 1.995-5.124 3.688V36.564l-10.374 5.472v63.298h10.183v-4.63c1.664 1.851 3.377 3.133 5.217 3.906 2.025.85 4.459 1.281 7.231 1.281 2.463 0 4.774-.398 6.871-1.182 2.152-.804 3.849-1.854 5.186-3.204 1.532-1.516 2.724-3.418 3.541-5.65a28.402 28.402 0 0 0 1.64-6.933c.243-2.388.367-5.123.367-8.127 0-3.005-.124-5.74-.367-8.13a27.85 27.85 0 0 0-1.638-6.866M226.114 42.29l-10.373 5.47v43.785c0 2.478.513 4.779 1.525 6.835 1.01 2.08 2.56 3.778 4.604 5.046 2.046 1.266 4.558 1.908 7.467 1.908h6.144v-8.94h-4.328c-3.39 0-5.039-1.737-5.039-5.311V65.276h9.367v-8.098h-9.367V42.29zM265.383 55.732c-2.474 0-4.879.479-7.152 1.422a16.501 16.501 0 0 0-5.394 3.586v-4.406h-10.18v49h10.372v-29.77c0-3.435.914-6.06 2.713-7.801 1.825-1.745 4.174-2.63 6.983-2.63 1.832 0 3.417.363 4.849 1.11 1.4.717 2.52 1.869 3.332 3.427.828 1.559 1.249 3.542 1.249 5.893v29.77h10.371V74.086c0-5.986-1.681-10.643-4.994-13.842-3.058-2.993-7.146-4.511-12.15-4.511M408.725 105.334h10.359v-49h-10.359zM408.726 51.214h10.358v-9.976h-10.358zM385.12 55.732c-6.173 0-11.27 2.323-15.159 6.907-3.128-4.584-7.763-6.907-13.785-6.907-2.551 0-4.99.49-7.248 1.455a16.684 16.684 0 0 0-5.293 3.551v-4.404h-10.183v49h10.373v-29.77c0-3.435.913-6.06 2.715-7.801 1.824-1.745 4.173-2.63 6.983-2.63 1.833 0 3.418.363 4.845 1.11 1.399.715 2.519 1.866 3.332 3.427.83 1.554 1.25 3.537 1.25 5.893v29.77h10.373V75.102c0-3.15.944-5.624 2.806-7.35 1.904-1.761 4.152-2.617 6.875-2.617 2.774 0 5.06.862 6.79 2.564 1.73 1.699 2.607 4.346 2.607 7.865v29.77h10.371V74.086c0-5.855-1.755-10.512-5.218-13.843-3.105-2.993-7.288-4.51-12.434-4.51M317.063 84.499v3.108c0 6.586-5.54 9.534-11.033 9.534-5.838 0-8.673-1.966-8.673-6.01 0-2.13.81-4.055 2.115-5.021 1.437-1.07 3.578-1.611 6.364-1.611h11.227zm-9.888-28.768c-4.13 0-7.566.527-10.215 1.565-2.67 1.046-5.158 2.922-7.396 5.577l-.196.232 6.855 6.444.217-.275c1.332-1.69 2.742-2.878 4.188-3.533 1.45-.656 3.53-.989 6.183-.989 3.587 0 6.227.707 7.85 2.1 1.594 1.396 2.402 3.61 2.402 6.58v2.47h-12.478c-3.598 0-6.71.597-9.25 1.778-2.545 1.182-4.497 2.872-5.8 5.022-1.222 2.003-1.953 5.03-1.953 8.095 0 4.36 1.315 7.933 3.912 10.628 1.506 1.488 3.366 2.615 5.528 3.351 2.169.74 4.755 1.115 7.689 1.115 2.977 0 5.478-.393 7.432-1.168 1.765-.7 3.483-1.824 5.113-3.343v3.954h10.181v-32.65c0-11.249-6.817-16.953-20.262-16.953z"/><path d="M78.432 61.949l-15.206-8.78-15.206 8.78 15.205 8.865z" fill="#00577B"/><path d="M63.226 88.292l15.206-8.782V61.948L63.226 70.73z" fill="#1E384B"/><path d="M63.225 88.292L48.02 79.51V61.948l15.205 8.782z" fill="#15211F"/><path d="M99.455 50.024v41.704l-36.23 20.917-36.233-20.917v-.063l-24.345 13.99c1.276 2.251 3.097 4.043 5.113 5.207 16.067 9.276 32.132 18.553 48.2 27.828 4.715 2.724 9.79 2.737 14.48.03 16.104-9.3 32.212-18.599 48.316-27.897 4.51-2.604 6.889-6.736 6.889-11.99V43.242c0-2.736-.597-5.175-1.748-7.264L99.455 50.024z" fill="#00437C" fill-rule="nonzero"/><g><g transform="matrix(1 0 0 -1 .502 106.097)"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)" fill="url(#c)" fill-rule="nonzero"><path d="M7.187 75.559C2.698 72.968.301 70.402.301 65.32V7.476c0-2.643.705-5.022 1.845-7.034l24.345 13.99v72.273L7.187 75.56z"/></g></g></g><g><g transform="matrix(1 0 0 -1 47.547 50.457)"><mask id="e" fill="#fff"><use xlink:href="#d"/></mask><g mask="url(#e)" fill="url(#f)" fill-rule="nonzero"><path d="M8.673 47.68L.45 42.932V12.691l15.23 8.792L51.908.566V.432L76.35 14.478c-1.178 2.14-2.937 3.913-5.25 5.248L22.7 47.671a14.004 14.004 0 0 1-7.02 1.902 14 14 0 0 1-7.006-1.893"/></g></g></g></g></svg>
</div>

```
*/
.img-fluid {
  max-width: 100%;
  height: auto; }

svg.img-fluid {
  width: 100%; }

/*
---
name: Lists without styles
category: Foundations/Helpers
tag: helpers
---
Remove the decoration (bullets) of the list.

```html
<ul class="remove-style">
  <li>Can't find what you're looking for?</li>
  <li>Click here for account questions</li>
  <li>Click here for app questions</li>
</ul>
```
*/
.remove-style {
  list-style: none; }

/*
---
name: Text alignment
category: Foundations/Helpers
tag: helpers
---
These classes help us to modify the default aligntment of the text in our views.

If the parent is displayed using flex, it will also work because
`justify-content: left | center | right` is applied.

```html
<p class="text-l">Left alignment</p>
<p class="text-r">Right alignment</p>
<p class="text-c">Center alignment</p>
```
*/
.text-l {
  text-align: left;
  justify-content: left; }

.text-r {
  text-align: right;
  justify-content: right; }

.text-c {
  text-align: center;
  justify-content: center; }

/*
---
name: Floating
category: Foundations/Helpers
tag: helpers
---
Also, we can update the float property of our blocks

```html
<div class="float-l">Float left</div>
<div class="float-r">Float right</div>
```

```html
<div class="float-n">Remove floating</div>
```
*/
.float-l {
  float: left; }

.float-r {
  float: right; }

.float-n {
  float: none; }

/*
---
name: Clearfix
category: Foundations/Helpers
tag: helpers
---
Clear floating elements in the current container

```html
<div class="clearfix">
  <div class="float-l">Float left</div>
  <div class="float-r">Float right</div>
</div>
```

```html
<div class="float-n">Remove floating</div>
```
*/
.clearfix:after {
  content: '';
  display: table;
  clear: both; }

/*
---
name: Separator height
category: Foundations/Helpers
tag: helpers
---
Modify the height and the width of the separator.

```html
<hr class="separator-small"/>
<hr />
<hr class="separator-big"/>
<hr class="separator-bigger"/>
<hr class="separator-enormous"/>
<hr />
<hr class="separator-70"/>
<hr class="separator-50"/>
<hr class="separator-30"/>
<hr class="separator-15"/>
```
*/
hr.separator-small {
  height: 1px; }

hr.separator-big {
  height: 0.15625em; }

hr.separator-bigger {
  height: 0.3125em; }

hr.separator-enormous {
  height: 0.625em; }

hr.separator-15 {
  width: 15%; }

hr.separator-30 {
  width: 30%; }

hr.separator-50 {
  width: 50%; }

hr.separator-70 {
  width: 70%; }

/*
---
name: Padding
category: Foundations/Helpers
tag: helpers
---
Reduce or increase the default padding based on the base size unity.

```html
<p class="padding-reset">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-tiny">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-small">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-big">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-bigger">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-enormous">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-giant">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-giant">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
.padding-reset {
  padding: 0; }

.padding-tiny {
  padding: 0.15625em; }

.padding-small {
  padding: 0.3125em; }

.padding-normal {
  padding: 0.625em; }

.padding-big {
  padding: 1.25em; }

.padding-bigger {
  padding: 1.875em; }

.padding-enormous {
  padding: 2.5em; }

.padding-giant {
  padding: 3.75em; }

.padding-huge {
  padding: 6.25em; }

/*
---
name: Padding - specific
category: Foundations/Helpers
tag: helpers
---
Reduce or increase a padding property based on the base size unity.

```html
<p class="padding-t-reset">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-r-tiny">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-b-small">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-l-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
.padding-t-reset {
  padding-top: 0; }

.padding-t-tiny {
  padding-top: 0.15625em; }

.padding-t-small {
  padding-top: 0.3125em; }

.padding-t-normal {
  padding-top: 0.625em; }

.padding-t-big {
  padding-top: 1.25em; }

.padding-t-bigger {
  padding-top: 1.875em; }

.padding-t-enormous {
  padding-top: 2.5em; }

.padding-t-giant {
  padding-top: 3.75em; }

.padding-t-huge {
  padding-top: 6.25em; }

.padding-b-reset {
  padding-bottom: 0; }

.padding-b-tiny {
  padding-bottom: 0.15625em; }

.padding-b-small {
  padding-bottom: 0.3125em; }

.padding-b-normal {
  padding-bottom: 0.625em; }

.padding-b-big {
  padding-bottom: 1.25em; }

.padding-b-bigger {
  padding-bottom: 1.875em; }

.padding-b-enormous {
  padding-bottom: 2.5em; }

.padding-b-giant {
  padding-bottom: 3.75em; }

.padding-b-huge {
  padding-bottom: 6.25em; }

.padding-l-reset {
  padding-left: 0; }

.padding-l-tiny {
  padding-left: 0.15625em; }

.padding-l-small {
  padding-left: 0.3125em; }

.padding-l-normal {
  padding-left: 0.625em; }

.padding-l-big {
  padding-left: 1.25em; }

.padding-l-bigger {
  padding-left: 1.875em; }

.padding-l-enormous {
  padding-left: 2.5em; }

.padding-l-giant {
  padding-left: 3.75em; }

.padding-l-huge {
  padding-left: 6.25em; }

.padding-r-reset {
  padding-right: 0; }

.padding-r-tiny {
  padding-right: 0.15625em; }

.padding-r-small {
  padding-right: 0.3125em; }

.padding-r-normal {
  padding-right: 0.625em; }

.padding-r-big {
  padding-right: 1.25em; }

.padding-r-bigger {
  padding-right: 1.875em; }

.padding-r-enormous {
  padding-right: 2.5em; }

.padding-r-giant {
  padding-right: 3.75em; }

.padding-r-huge {
  padding-right: 6.25em; }

/*
---
name: Padding - horizontal and vertical
category: Foundations/Helpers
tag: helpers
---
Reduce or increase the vertical or horizontal padding based on the base size unity.

```html
<p class="padding-v-big">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-h-bigger">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
.padding-v-reset {
  padding-top: 0;
  padding-bottom: 0; }

.padding-v-tiny {
  padding-top: 0.15625em;
  padding-bottom: 0.15625em; }

.padding-v-small {
  padding-top: 0.3125em;
  padding-bottom: 0.3125em; }

.padding-v-normal {
  padding-top: 0.625em;
  padding-bottom: 0.625em; }

.padding-v-big {
  padding-top: 1.25em;
  padding-bottom: 1.25em; }

.padding-v-bigger {
  padding-top: 1.875em;
  padding-bottom: 1.875em; }

.padding-v-enormous {
  padding-top: 2.5em;
  padding-bottom: 2.5em; }

.padding-v-giant {
  padding-top: 3.75em;
  padding-bottom: 3.75em; }

.padding-v-huge {
  padding-top: 6.25em;
  padding-bottom: 6.25em; }

.padding-h-reset {
  padding-left: 0;
  padding-right: 0; }

.padding-h-tiny {
  padding-left: 0.15625em;
  padding-right: 0.15625em; }

.padding-h-small {
  padding-left: 0.3125em;
  padding-right: 0.3125em; }

.padding-h-normal {
  padding-left: 0.625em;
  padding-right: 0.625em; }

.padding-h-big {
  padding-left: 1.25em;
  padding-right: 1.25em; }

.padding-h-bigger {
  padding-left: 1.875em;
  padding-right: 1.875em; }

.padding-h-enormous {
  padding-left: 2.5em;
  padding-right: 2.5em; }

.padding-h-giant {
  padding-left: 3.75em;
  padding-right: 3.75em; }

.padding-h-huge {
  padding-left: 6.25em;
  padding-right: 6.25em; }

/*
---
name: Padding - responsive
category: Foundations/Helpers
tag: helpers
---
Reset the padding property for a specific media query.
You can see here working in the [Divider Component](/category/Components/Display/#Divider)

```html
<p class="padding-bigger padding-reset-b-tablet">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-bigger padding-reset-on-tablet">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="padding-bigger padding-reset-a-tablet">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
@media all and (max-width: 29.9375em) {
  .padding-reset-on-phone {
    padding: 0; } }

@media all and (min-width: 30em) and (max-width: 47.9375em) {
  .padding-reset-on-phone-land {
    padding: 0; } }

@media all and (min-width: 48em) and (max-width: 56.1875em) {
  .padding-reset-on-tablet {
    padding: 0; } }

@media all and (min-width: 56.25em) and (max-width: 68.6875em) {
  .padding-reset-on-desktop {
    padding: 0; } }

@media all and (min-width: 68.75em) and (max-width: 81.1875em) {
  .padding-reset-on-wide {
    padding: 0; } }

@media all and (min-width: 30em) {
  .padding-reset-a-phone {
    padding: 0; } }

@media all and (min-width: 48em) {
  .padding-reset-a-phone-land {
    padding: 0; } }

@media all and (min-width: 56.25em) {
  .padding-reset-a-tablet {
    padding: 0; } }

@media all and (min-width: 68.75em) {
  .padding-reset-a-desktop {
    padding: 0; } }

@media all and (min-width: 81.25em) {
  .padding-reset-a-wide {
    padding: 0; } }

@media all and (max-width: 81.1875em) {
  .padding-reset-b-ultrawide {
    padding: 0; } }

@media all and (max-width: 68.6875em) {
  .padding-reset-b-wide {
    padding: 0; } }

@media all and (max-width: 56.1875em) {
  .padding-reset-b-desktop {
    padding: 0; } }

@media all and (max-width: 47.9375em) {
  .padding-reset-b-tablet {
    padding: 0; } }

@media all and (max-width: 29.9375em) {
  .padding-reset-b-phone-land {
    padding: 0; } }

/*
---
name: Margin
category: Foundations/Helpers
tag: helpers
---
Reduce or increase the default margin based on the base size unity.

```html
<p class="margin-reset">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-tiny">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-small">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-big">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-bigger">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-enormous">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-giant">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-giant">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
.margin-reset {
  margin: 0; }

.margin-tiny {
  margin: 0.15625em; }

.margin-small {
  margin: 0.3125em; }

.margin-normal {
  margin: 0.625em; }

.margin-big {
  margin: 1.25em; }

.margin-bigger {
  margin: 1.875em; }

.margin-enormous {
  margin: 2.5em; }

.margin-giant {
  margin: 3.75em; }

.margin-huge {
  margin: 6.25em; }

/*
---
name: Margin - specific
category: Foundations/Helpers
tag: helpers
---
Reduce or increase a margin property based on the base size unity.

```html
<p class="margin-t-reset">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-r-tiny">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-b-small">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-l-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
.margin-t-reset {
  margin-top: 0; }

.margin-t-tiny {
  margin-top: 0.15625em; }

.margin-t-small {
  margin-top: 0.3125em; }

.margin-t-normal {
  margin-top: 0.625em; }

.margin-t-big {
  margin-top: 1.25em; }

.margin-t-bigger {
  margin-top: 1.875em; }

.margin-t-enormous {
  margin-top: 2.5em; }

.margin-t-giant {
  margin-top: 3.75em; }

.margin-t-huge {
  margin-top: 6.25em; }

.margin-b-reset {
  margin-bottom: 0; }

.margin-b-tiny {
  margin-bottom: 0.15625em; }

.margin-b-small {
  margin-bottom: 0.3125em; }

.margin-b-normal {
  margin-bottom: 0.625em; }

.margin-b-big {
  margin-bottom: 1.25em; }

.margin-b-bigger {
  margin-bottom: 1.875em; }

.margin-b-enormous {
  margin-bottom: 2.5em; }

.margin-b-giant {
  margin-bottom: 3.75em; }

.margin-b-huge {
  margin-bottom: 6.25em; }

.margin-l-reset {
  margin-left: 0; }

.margin-l-tiny {
  margin-left: 0.15625em; }

.margin-l-small {
  margin-left: 0.3125em; }

.margin-l-normal {
  margin-left: 0.625em; }

.margin-l-big {
  margin-left: 1.25em; }

.margin-l-bigger {
  margin-left: 1.875em; }

.margin-l-enormous {
  margin-left: 2.5em; }

.margin-l-giant {
  margin-left: 3.75em; }

.margin-l-huge {
  margin-left: 6.25em; }

.margin-r-reset {
  margin-right: 0; }

.margin-r-tiny {
  margin-right: 0.15625em; }

.margin-r-small {
  margin-right: 0.3125em; }

.margin-r-normal {
  margin-right: 0.625em; }

.margin-r-big {
  margin-right: 1.25em; }

.margin-r-bigger {
  margin-right: 1.875em; }

.margin-r-enormous {
  margin-right: 2.5em; }

.margin-r-giant {
  margin-right: 3.75em; }

.margin-r-huge {
  margin-right: 6.25em; }

/*
---
name: Margin - horizontal and vertical
category: Foundations/Helpers
tag: helpers
---
Reduce or increase the vertical or horizontal margin based on the base size unity.

```html
<p class="margin-v-big">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-h-bigger">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
.margin-v-reset {
  margin-top: 0;
  margin-bottom: 0; }

.margin-v-tiny {
  margin-top: 0.15625em;
  margin-bottom: 0.15625em; }

.margin-v-small {
  margin-top: 0.3125em;
  margin-bottom: 0.3125em; }

.margin-v-normal {
  margin-top: 0.625em;
  margin-bottom: 0.625em; }

.margin-v-big {
  margin-top: 1.25em;
  margin-bottom: 1.25em; }

.margin-v-bigger {
  margin-top: 1.875em;
  margin-bottom: 1.875em; }

.margin-v-enormous {
  margin-top: 2.5em;
  margin-bottom: 2.5em; }

.margin-v-giant {
  margin-top: 3.75em;
  margin-bottom: 3.75em; }

.margin-v-huge {
  margin-top: 6.25em;
  margin-bottom: 6.25em; }

.margin-h-reset {
  margin-left: 0;
  margin-right: 0; }

.margin-h-tiny {
  margin-left: 0.15625em;
  margin-right: 0.15625em; }

.margin-h-small {
  margin-left: 0.3125em;
  margin-right: 0.3125em; }

.margin-h-normal {
  margin-left: 0.625em;
  margin-right: 0.625em; }

.margin-h-big {
  margin-left: 1.25em;
  margin-right: 1.25em; }

.margin-h-bigger {
  margin-left: 1.875em;
  margin-right: 1.875em; }

.margin-h-enormous {
  margin-left: 2.5em;
  margin-right: 2.5em; }

.margin-h-giant {
  margin-left: 3.75em;
  margin-right: 3.75em; }

.margin-h-huge {
  margin-left: 6.25em;
  margin-right: 6.25em; }

/*
---
name: Margin - responsive
category: Foundations/Helpers
tag: helpers
---
Reset the margin property for a specific media query.

```html
<p class="margin-reset-b-tablet">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-reset-on-tablet">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-reset-a-tablet">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
@media all and (max-width: 29.9375em) {
  .margin-reset-on-phone {
    margin: 0; } }

@media all and (min-width: 30em) and (max-width: 47.9375em) {
  .margin-reset-on-phone-land {
    margin: 0; } }

@media all and (min-width: 48em) and (max-width: 56.1875em) {
  .margin-reset-on-tablet {
    margin: 0; } }

@media all and (min-width: 56.25em) and (max-width: 68.6875em) {
  .margin-reset-on-desktop {
    margin: 0; } }

@media all and (min-width: 68.75em) and (max-width: 81.1875em) {
  .margin-reset-on-wide {
    margin: 0; } }

@media all and (min-width: 30em) {
  .margin-reset-a-phone {
    margin: 0; } }

@media all and (min-width: 48em) {
  .margin-reset-a-phone-land {
    margin: 0; } }

@media all and (min-width: 56.25em) {
  .margin-reset-a-tablet {
    margin: 0; } }

@media all and (min-width: 68.75em) {
  .margin-reset-a-desktop {
    margin: 0; } }

@media all and (min-width: 81.25em) {
  .margin-reset-a-wide {
    margin: 0; } }

@media all and (max-width: 81.1875em) {
  .margin-reset-b-ultrawide {
    margin: 0; } }

@media all and (max-width: 68.6875em) {
  .margin-reset-b-wide {
    margin: 0; } }

@media all and (max-width: 56.1875em) {
  .margin-reset-b-desktop {
    margin: 0; } }

@media all and (max-width: 47.9375em) {
  .margin-reset-b-tablet {
    margin: 0; } }

@media all and (max-width: 29.9375em) {
  .margin-reset-b-phone-land {
    margin: 0; } }

/*
---
name: Margin - center
category: Foundations/Helpers
tag: helpers
---
Apply a margin `auto` to center elements.

```html
<p class="margin-c" style="max-width: 500px;">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
<p class="margin-vc-bigger" style="max-width: 500px;">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB) to get developers productive immediately - with all the most
  common tools ready to go.
</p>
```
*/
.margin-c {
  margin-left: auto;
  margin-right: auto; }

.margin-vc-reset {
  margin: 0 auto; }

.margin-vc-tiny {
  margin: 0.15625em auto; }

.margin-vc-small {
  margin: 0.3125em auto; }

.margin-vc-normal {
  margin: 0.625em auto; }

.margin-vc-big {
  margin: 1.25em auto; }

.margin-vc-bigger {
  margin: 1.875em auto; }

.margin-vc-enormous {
  margin: 2.5em auto; }

.margin-vc-giant {
  margin: 3.75em auto; }

.margin-vc-huge {
  margin: 6.25em auto; }

.margin-vc-massive {
  margin: auto; }

.margin-vc-colossal {
  margin: auto; }

/*
---
name: Striped
category: Foundations/Helpers
tag: blocks
---
Show a light gray background in even rows.

```html
<table class="striped">
  <thead>
    <tr>
      <th>ID</th>
      <th>Name</th>
      <th>Downloads</th>
      <th>Stars</th>
    </tr>
  </thead>
  <body>
    <tr>
      <td>123</td>
      <td>Gitlab</td>
      <td>42343</td>
      <td>5</td>
    </tr>
    <tr>
      <td>321</td>
      <td>Moodle</td>
      <td>54312</td>
      <td>4.5</td>
    </tr>
    <tr>
      <td>753</td>
      <td>Wordpress</td>
      <td>23434</td>
      <td>4.3</td>
    </tr>
  </body>
</table>
```
*/
table.striped tr:nth-child(even) td {
  background-color: #f7f7f7; }

table.striped tr:hover {
  background-color: initial; }

/*
---
name: Typography size
category: Foundations/Helpers
tag: helpers
---
Reduce or increase the default `font-size` of an element.

```html
<p class="type-tiny">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-small">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-big">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-bigger">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-enormous">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-giant">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-huge">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
```
*/
.type-tiny {
  font-size: 0.64em; }

.type-small {
  font-size: 0.8em; }

.type-normal {
  font-size: 1em; }

.type-big {
  font-size: 1.25em; }

.type-bigger {
  font-size: 1.5625em; }

.type-enormous {
  font-size: 1.95312em; }

.type-giant {
  font-size: 2.44141em; }

.type-huge {
  font-size: 3.05176em; }

.type-massive {
  font-size: 3.8147em; }

.type-colossal {
  font-size: 4.76837em; }

/*
---
name: Typography color
category: Foundations/Helpers
tag: helpers
---
Change the default `color` of an element. If you want to use the `type-color-iron` helper,
the [reverse helper](#Typography%20color%20reverse) may interest you.

```html
<p class="type-color-bitnami">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-color-accent">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-color-iron padding-normal bg-dark">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-color-action">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-color-white padding-normal bg-dark">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
<p class="type-color-light-blue">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (MariaDB).
</p>
```
*/
.type-color-bitnami,
.type-color-brand {
  color: #00437B; }

.type-color-accent,
.type-color-accent {
  color: #008145; }

.type-color-accent-light,
.type-color-accent-light {
  color: #82C341; }

.type-color-iron,
.type-color-light {
  color: #f1f1f1; }

.type-color-action,
.type-color-action {
  color: #F58220; }

.type-color-white,
.type-color-white {
  color: #ffffff; }

.type-color-light-blue,
.type-color-secondary {
  color: #1598CB; }

/*
---
name: Typography color reverse
category: Foundations/Helpers
tag: helpers
---
The `type-color-reverse` modifier changes the color for headers, links and other text elements
inside the current container. This is really useful for text elements that are placed inside a
container with a dark background.

For known dark backgrounds, the `type-color-reverse` modifier is added automatically.
The list of known dark backgrounds is:

* [Backgrounds](/category/Foundations/Helpers/#Backgrounds)
* [Linear Gradients](/category/Foundations/Helpers/#Linear%20Gradients)

**NOTE:** This behaviour is very opinionated and it may cause issues with anchors in some situations like
headers. So, you can disable it using the `type-color-reverse-anchor-reset` class.

```html
<h2>Unknown dark background (with type-color-reverse)</h2>
<div class="padding-normal type-color-reverse" style="background-color: black;">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>

<h2>Known flat backgrounds (no modifier required)</h2>
<div class="bg-brand padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>
<div class="bg-dark padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>
<div class="bg-accent padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>
<div class="bg-action padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>

<h2>Known gradient backgrounds (no modifier required)</h2>
<div class="gradient-brand padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>
<div class="gradient-accent padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>
<div class="gradient-135-action padding-normal">
  For example, our Rails Development Container includes full Rails environment and
  SQL database (<a href="#">MariaDB</a>).
</div>
```
*/
/**
 * Enable type-color-reverse by default with known dark backgrounds.
 * @see https://github.com/bitnami/ui/pull/45#issuecomment-353398961
 * @see https://github.com/bitnami/ui/pull/45#issuecomment-353556092
 */
.bg-dark,
.bg-brand,
.bg-accent,
.bg-action,
[class*="gradient-"][class*="-brand"],
[class*="gradient-"][class*="-accent"],
[class*="gradient-"][class*="-action"],
.type-color-reverse {
  color: #ffffff; }
  .bg-dark h1,
  .bg-dark h2,
  .bg-dark h3,
  .bg-dark h4,
  .bg-dark h5,
  .bg-dark h6,
  .bg-brand h1,
  .bg-brand h2,
  .bg-brand h3,
  .bg-brand h4,
  .bg-brand h5,
  .bg-brand h6,
  .bg-accent h1,
  .bg-accent h2,
  .bg-accent h3,
  .bg-accent h4,
  .bg-accent h5,
  .bg-accent h6,
  .bg-action h1,
  .bg-action h2,
  .bg-action h3,
  .bg-action h4,
  .bg-action h5,
  .bg-action h6,
  [class*="gradient-"][class*="-brand"] h1,
  [class*="gradient-"][class*="-brand"] h2,
  [class*="gradient-"][class*="-brand"] h3,
  [class*="gradient-"][class*="-brand"] h4,
  [class*="gradient-"][class*="-brand"] h5,
  [class*="gradient-"][class*="-brand"] h6,
  [class*="gradient-"][class*="-accent"] h1,
  [class*="gradient-"][class*="-accent"] h2,
  [class*="gradient-"][class*="-accent"] h3,
  [class*="gradient-"][class*="-accent"] h4,
  [class*="gradient-"][class*="-accent"] h5,
  [class*="gradient-"][class*="-accent"] h6,
  [class*="gradient-"][class*="-action"] h1,
  [class*="gradient-"][class*="-action"] h2,
  [class*="gradient-"][class*="-action"] h3,
  [class*="gradient-"][class*="-action"] h4,
  [class*="gradient-"][class*="-action"] h5,
  [class*="gradient-"][class*="-action"] h6,
  .type-color-reverse h1,
  .type-color-reverse h2,
  .type-color-reverse h3,
  .type-color-reverse h4,
  .type-color-reverse h5,
  .type-color-reverse h6 {
    color: #ffffff; }

a.type-color-reverse:not(.button),
.type-color-reverse:not(.type-color-reverse-anchor-reset) a:not(.button) {
  color: #ffffff; }
  a.type-color-reverse:not(.button):hover, a.type-color-reverse:not(.button):active, a.type-color-reverse:not(.button):focus,
  .type-color-reverse:not(.type-color-reverse-anchor-reset) a:not(.button):hover,
  .type-color-reverse:not(.type-color-reverse-anchor-reset) a:not(.button):active,
  .type-color-reverse:not(.type-color-reverse-anchor-reset) a:not(.button):focus {
    color: #7aaee7; }

.bg-brand:not(.type-color-reverse-anchor-reset) a:not(.button),
.bg-dark:not(.type-color-reverse-anchor-reset) a:not(.button),
.bg-skew:not(.type-color-reverse-anchor-reset) a:not(.button),
.bg-accent:not(.type-color-reverse-anchor-reset) a:not(.button),
.bg-action:not(.type-color-reverse-anchor-reset) a:not(.button),
[class*="gradient-"][class*="-brand"]:not(.type-color-reverse-anchor-reset) a:not(.button),
[class*="gradient-"][class*="-accent"]:not(.type-color-reverse-anchor-reset) a:not(.button),
[class*="gradient-"][class*="-action"]:not(.type-color-reverse-anchor-reset) a:not(.button) {
  color: #ffffff; }

.bg-brand:not(.type-color-reverse-anchor-reset) a:not(.button):hover,
.bg-dark:not(.type-color-reverse-anchor-reset) a:not(.button):hover,
.bg-skew:not(.type-color-reverse-anchor-reset) a:not(.button):hover,
[class*="gradient-"][class*="-brand"]:not(.type-color-reverse-anchor-reset) a:not(.button):hover {
  color: #8fc954; }

.bg-accent:not(.type-color-reverse-anchor-reset) a:not(.button):hover,
[class*="gradient-"][class*="-accent"]:not(.type-color-reverse-anchor-reset) a:not(.button):hover {
  color: #fdc841; }

.bg-action:not(.type-color-reverse-anchor-reset) a:not(.button):hover,
[class*="gradient-"][class*="-action"]:not(.type-color-reverse-anchor-reset) a:not(.button):hover {
  color: #1C2B39; }

/*
---
name: Typography uppercase
category: Foundations/Helpers
tag: helpers
---
Set the text to Uppercase

```html
<h1 class="type-uppercase">
  Bitnami rocks!
</h1>
```
*/
.type-uppercase {
  text-transform: uppercase; }

/*
---
name: Typography capitalize
category: Foundations/Helpers
tag: helpers
---
Set the text to Capitalize

```html
<h1 class="type-capitalize">
  Bitnami rocks!
</h1>
```
*/
.type-capitalize {
  text-transform: capitalize; }

/*
---
name: Typography weight
category: Foundations/Helpers
tag: helpers
---
By default, the weight of the text is regular (400). For certain situations, we may need to increase the
weight of the typography.

**NOTE**: Interstate is a bit special font-family. Light is represented by 400 and regular by 500.
That's the reason of the values on these helpers.

```html
<p>
  You may need to change the typo weight to
  <span class="type-light">light</span>,
  <span class="type-regular">regular</span>
  or <span class="type-bold">bold</span>
</p>
```
*/
.type-light {
  font-weight: 400; }

.type-regular {
  font-weight: 500; }

.type-bold {
  font-weight: bold; }
