@charset "UTF-8";
/**
 * Override settings and variables here
 */
/**
 * Superfine
 */
/*------------------------------------*   #UBER.BASE (SOON TO BE SUPERBASE)
\*------------------------------------*/
/*doc
# Base CSS

Our base CSS includes normalization, helper classes, and abstractions that should
form the underlying structure of all web projects. It's been built with [OOCSS](http://oocss.org/)
principles in mind and uses the [BEM](http://bem.info/method/) naming convention.
Some work is pulled directly form [Inuit.css]( https://github.com/csswizardry/inuit.css)
or has been highly influenced by it and similar frameworks, like [Suit](http://suitcss.github.io/).
The following outlines all of the pieces included as part of this base.
*/
/**
 * Base
 */
/**
 * Helpers
 */
/*------------------------------------*    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/*------------------------------------*    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
/*!
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/*doc
## SASS Mixins and Functions
----------------------------

Defined below are a set of mixins and functions that you can use within your
SASS code to ease development:
*/
/*------------------------------------*    $ARROWS
\*------------------------------------*/
/**
 * It is a common design treatment to give an element a triangular points-out
 * arrow, we typically build these with CSS. These following classes allow us to
 * generate these arbitrarily with a mixin, `@arrow()`.
 */
/**
 * Forms the basis for any/all CSS arrows.
 */
.tooltip--bottom, .tooltip--bottom-left, .tooltip--bottom-right, .tooltip--left, .tooltip--right, .tooltip--top, .tooltip--top-left, .tooltip--top-right {
  position: relative; }
  .tooltip--bottom:before, .tooltip--bottom-left:before, .tooltip--bottom-right:before, .tooltip--left:before, .tooltip--right:before, .tooltip--top:before, .tooltip--top-left:before, .tooltip--top-right:before, .tooltip--bottom:after, .tooltip--bottom-left:after, .tooltip--bottom-right:after, .tooltip--left:after, .tooltip--right:after, .tooltip--top:after, .tooltip--top-left:after, .tooltip--top-right:after {
    content: "";
    position: absolute;
    border-collapse: separate; }
  .tooltip--bottom:before, .tooltip--bottom-left:before, .tooltip--bottom-right:before, .tooltip--left:before, .tooltip--right:before, .tooltip--top:before, .tooltip--top-left:before, .tooltip--top-right:before {
    border: 24px solid transparent; }
  .tooltip--bottom:after, .tooltip--bottom-left:after, .tooltip--bottom-right:after, .tooltip--left:after, .tooltip--right:after, .tooltip--top:after, .tooltip--top-left:after, .tooltip--top-right:after {
    border: 23px solid transparent; }

/**
 * Define individual edges so we can combine what we need, when we need.
 */
.tooltip--bottom:before, .tooltip--bottom-left:before, .tooltip--bottom-right:before, .tooltip--bottom:after, .tooltip--bottom-left:after, .tooltip--bottom-right:after {
  bottom: 100%; }

.tooltip--left:before, .tooltip--right:before, .tooltip--left:after, .tooltip--right:after {
  top: 50%;
  margin-top: -24px; }

.tooltip--left:after, .tooltip--right:after {
  margin-top: -23px; }

.tooltip--top:before, .tooltip--top-left:before, .tooltip--top-right:before, .tooltip--top:after, .tooltip--top-left:after, .tooltip--top-right:after {
  top: 100%; }

.tooltip--right:before, .tooltip--right:after {
  right: 100%; }

.tooltip--top-left:before, .tooltip--bottom-left:before {
  left: 23px; }

.tooltip--top-left:after, .tooltip--bottom-left:after {
  left: 24px; }

.tooltip--top:before, .tooltip--bottom:before, .tooltip--top:after, .tooltip--bottom:after {
  left: 50%;
  margin-left: -24px; }

.tooltip--top:after, .tooltip--bottom:after {
  margin-left: -23px; }

.tooltip--top-right:before, .tooltip--bottom-right:before {
  right: 23px; }

.tooltip--top-right:after, .tooltip--bottom-right:after {
  right: 24px; }

.tooltip--left:before, .tooltip--left:after {
  left: 100%; }

/*------------------------------------*    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida, @rowanmanning and ultimately
 * @thierrylemoulec for refining and improving my initial mixin.
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(border-radius, 4px);`
 *
 */
/**
 * Create CSS keyframe animations for all vendors in one go, e.g.:
 *
   .foo{
       @include vendor(animation, shrink 3s);
   }

   @include keyframe(shrink){
       from{
           font-size:5em;
       }
   }
 *
 * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * CSS arrows!!! But... before you read on, you might want to grab a coffee...
 *
 * This mixin creates a CSS arrow on a given element. We can have the arrow
 * appear in one of 12 locations, thus:
 *
 *       01    02    03
 *    +------------------+
 * 12 |                  | 04
 *    |                  |
 * 11 |                  | 05
 *    |                  |
 * 10 |                  | 06
 *    +------------------+
 *       09    08    07
 *
 * You pass this position in along with a desired arrow color and optional
 * border color, for example:
 *
 * `@include arrow(top, left, red)`
 *
 * for just a single, red arrow, or:
 *
 * `@include arrow(bottom, center, red, black)`
 *
 * which will create a red triangle with a black border which sits at the bottom
 * center of the element. Call the mixin thus:
 *
   .foo{
       background-color:#BADA55;
       border:1px solid #ACE;
       @include arrow(top, left, #BADA55, #ACE);
   }
 *
 */
/**
 * Media query mixin.
 *
 * It’s not great practice to define solid breakpoints up-front, preferring to
 * modify your design when it needs it, rather than assuming you’ll want a
 * change at ‘mobile’. However, as inuit.css is required to take a hands off
 * approach to design decisions, this is the closest we can get to baked-in
 * responsiveness. It’s flexible enough to allow you to set your own breakpoints
 * but solid enough to be frameworkified.
 *
 * We define some broad breakpoints in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * palm
 * lap
 * lap-and-up
 * portable
 * desk
 * desk-wide
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(palm){ [styles here] }`
 *
 * We work out your end points for you:
 */
/*doc
#### `@include font-size($font-size, $line-height: true)`

Creates a fully formed type style (sizing and vertical rhythm). `$font-size` is
the size of the font you'd like to set. When `$line-height` is `true`, a line
height will be set based on the `$font-size` and the `$base-line-height` of
the project. When `$line-height` is set to a value, like `24px`, a unitless
line height will be created. When set to `false`, no line height is included.
*/
/*doc
#### `@include vendor($property, $value)`

A mixin to create vendor-prefixed CSS. [More information](https://github.com/csswizardry/inuit.css/blob/v5.0.1/generic/_mixins.scss#L49-L61)

#### `@include keyframe($animation-name)`

Create CSS keyframe animations for all vendors by passing the animation content
to this mixin with the specified animation name. [More information](https://github.com/csswizardry/inuit.css/blob/v5.0.1/generic/_mixins.scss#L64-L99)

#### `@include arrow($edge, $location, $color, $border-color: $color)`

Create a CSS arrow on a given element. [More information](https://github.com/csswizardry/inuit.css/blob/v5.0.1/generic/_mixins.scss#L117-L258)

```scss
@include arrow(top, left, #000);
```

#### `@include quarter($number)`

Quarters the `$number` and rounds to the nearest integer.

#### `@include halve($number)`

Halves the `$number` and rounds to the nearest integer.

#### `@include double($number)`

Doubles the `$number` and rounds to the nearest integer.

#### `@include quadruple($number)`

Quadruple's the `$number` and rounds to the nearest integer.
*/
/*doc
#### `@include media-query($type)`

A helper to only show the passed-in content for the specified media query type
(specified by the [`$media-breakpoints`](#media-breakpoints) variable mapping).

```scss
h1 {
  @include font-size(30px);

  @include media-query(palm) {
    @include font-size(20px);
  }
}
```
*/
/*doc
#### `negative(10px 5px);`

A helper to convert positive integer values into negative ones.

```scss
.list__link {
  margin: negative(10px 5px);
  // will output: margin: -10px -5px;
}
```
*/
/*doc
## Generic Styles
-----------------

We use Nicolas Gallagher's [Normalize.css](https://github.com/necolas/normalize.css/)
in addition to Inuit.css' [generic reset](https://github.com/inuitcss/generic.reset)
to form the base of our styling.

We set `box-sizing: border-box` for all elements on the page in order to [reduce
confusion](http://www.paulirish.com/2012/box-sizing-border-box-ftw/) when dealing
with element width and padding.

We achieve a consistent [vertical rhythm](http://csswizardry.com/2012/06/single-direction-margin-declarations)
and generic element styling using Inuit.css' [shared module](https://github.com/inuitcss/generic.shared).
*/
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *  user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *  (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*------------------------------------*    #RESET
\*------------------------------------*/
/**
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title],
dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */
u,
ins {
  text-decoration: none; }

/**
 * Apply faux underlines to inserted text via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/*------------------------------------*    #BOX-SIZING
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 */
*, *:before, *:after {
  box-sizing: border-box; }

/*doc
### Page

The default font size and line height are set using the `$base-font-size`
and `$base-line-height` variables, respectively.

The background color and font color are similarly specified with the
`$base-background-color` and `$base-text-color` variables.
*/
/*------------------------------------*    #PAGE
\*------------------------------------*/
/**
 * High-, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  font-size: 0.875em;
  /* [1] */
  line-height: 1.71429;
  /* [1] */
  background-color: #fff;
  color: #494949;
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */ }

html {
  height: 100%;
  overflow-y: visible; }

/*------------------------------------*    #SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned,this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre {
  margin-bottom: 32px;
  margin-bottom: 2.28571rem; }

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once,here.
 */
ul, ol, dd {
  margin-left: 64px;
  margin-left: 4.57143rem; }

/*------------------------------------*    #LISTS
\*------------------------------------*/
/**
 * Remove extra vertical spacing when nesting lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/*doc
### Images

By default, images have a fluid width (`max-width: 100%`) unless a `width` or `height`
is explicitly defined as an attribute on the tag.
*/
/*------------------------------------*    #IMAGES
\*------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */ }

/**
 * If a `width` and/or `height` attribute have been explicitly defined, let’s
 * not make the image fluid.
 */
img[width],
img[height] {
  max-width: none; }

/*doc
### Media Breakpoints

The following breakpoints are specified by default. They are set with the
`$media-breakpoints` variable.

Media Type    | Minimum Width | Maximum Width
------------- | ------------- | -------------
`palm`        |               | 575px
`lap`         | 576px         | 768px
`portable`    |               | 768px
`desk`        | 769px         | 1280px
`desk-and-up` | 769px         |
`desk-wide`   | 1281px        |
*/
/**
 * Headings and Smallprint
 */
.giga {
  font-size: 88px;
  font-size: 6.28571rem;
  line-height: 1.13636; }

.mega {
  font-size: 76px;
  font-size: 5.42857rem;
  line-height: 1.15789; }

.kilo {
  font-size: 64px;
  font-size: 4.57143rem;
  line-height: 1.1875; }

h1, .alpha {
  font-size: 52px;
  font-size: 3.71429rem;
  line-height: 1.23077; }

h2, .beta {
  font-size: 44px;
  font-size: 3.14286rem;
  line-height: 1.18182; }

h3, .gamma {
  font-size: 36px;
  font-size: 2.57143rem;
  line-height: 1.22222; }

h4, .delta {
  font-size: 24px;
  font-size: 1.71429rem;
  line-height: 1.33333; }

h5, .epsilon {
  font-size: 20px;
  font-size: 1.42857rem;
  line-height: 1.4; }

h6, .zeta {
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.25; }

.lead {
  font-size: 18px;
  font-size: 1.28571rem;
  line-height: 1.55556; }

small, .small {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.66667; }

.milli, .legal {
  font-size: 10px;
  font-size: 0.71429rem;
  line-height: 1.6; }

.micro {
  font-size: 8px;
  font-size: 0.57143rem;
  line-height: 1.5; }

@media only screen and (max-width: 575px) {
  .giga {
    font-size: 40px;
    font-size: 2.85714rem;
    line-height: 1.1; }
  .mega {
    font-size: 36px;
    font-size: 2.57143rem;
    line-height: 1.16667; }
  .kilo {
    font-size: 32px;
    font-size: 2.28571rem;
    line-height: 1.25; }
  h1, .alpha {
    font-size: 28px;
    font-size: 2rem;
    line-height: 1.28571; }
  h2, .beta {
    font-size: 24px;
    font-size: 1.71429rem;
    line-height: 1.33333; }
  h3, .gamma {
    font-size: 20px;
    font-size: 1.42857rem;
    line-height: 1.4; }
  h4, .delta {
    font-size: 18px;
    font-size: 1.28571rem;
    line-height: 1.33333; }
  h5, .epsilon {
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.25; }
  h6, .zeta {
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.28571; }
  .lead {
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.75; }
  small, .small {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.66667; }
  .milli, .legal {
    font-size: 10px;
    font-size: 0.71429rem;
    line-height: 1.6; }
  .micro {
    font-size: 8px;
    font-size: 0.57143rem;
    line-height: 1.5; } }

@media only screen and (min-width: 576px) and (max-width: 768px) {
  .giga {
    font-size: 60px;
    font-size: 4.28571rem;
    line-height: 1.13333; }
  .mega {
    font-size: 48px;
    font-size: 3.42857rem;
    line-height: 1.25; }
  .kilo {
    font-size: 40px;
    font-size: 2.85714rem;
    line-height: 1.3; }
  h1, .alpha {
    font-size: 36px;
    font-size: 2.57143rem;
    line-height: 1.33333; }
  h2, .beta {
    font-size: 28px;
    font-size: 2rem;
    line-height: 1.28571; }
  h3, .gamma {
    font-size: 24px;
    font-size: 1.71429rem;
    line-height: 1.33333; }
  h4, .delta {
    font-size: 20px;
    font-size: 1.42857rem;
    line-height: 1.4; }
  h5, .epsilon {
    font-size: 18px;
    font-size: 1.28571rem;
    line-height: 1.33333; }
  h6, .zeta {
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.28571; }
  .lead {
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.75; }
  small, .small {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.66667; }
  .milli, .legal {
    font-size: 10px;
    font-size: 0.71429rem;
    line-height: 1.6; }
  .micro {
    font-size: 8px;
    font-size: 0.57143rem;
    line-height: 1.5; } }

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .giga {
    font-size: 60px;
    font-size: 4.28571rem;
    line-height: 1.13333; }
  .mega {
    font-size: 48px;
    font-size: 3.42857rem;
    line-height: 1.25; }
  .kilo {
    font-size: 40px;
    font-size: 2.85714rem;
    line-height: 1.3; }
  h1, .alpha {
    font-size: 36px;
    font-size: 2.57143rem;
    line-height: 1.33333; }
  h2, .beta {
    font-size: 28px;
    font-size: 2rem;
    line-height: 1.28571; }
  h3, .gamma {
    font-size: 24px;
    font-size: 1.71429rem;
    line-height: 1.33333; }
  h4, .delta {
    font-size: 20px;
    font-size: 1.42857rem;
    line-height: 1.4; }
  h5, .epsilon {
    font-size: 18px;
    font-size: 1.28571rem;
    line-height: 1.33333; }
  h6, .zeta {
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.28571; }
  .lead {
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.75; }
  small, .small {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.66667; }
  .milli, .legal {
    font-size: 10px;
    font-size: 0.71429rem;
    line-height: 1.6; }
  .micro {
    font-size: 8px;
    font-size: 0.57143rem;
    line-height: 1.5; } }

/*doc
## Helper Classes
-----------------
*/
/*doc
### Widths

A series of width helper classes that you can use to size things like the layout
system. Each width can be specific to a media query breakpoint by prefixing
the width class with the media type. For example, a `.one-half` class specified
for a `palm` device type would be `.palm-one-half`.

```html
<div class="one-twelfth push-tiny--bottom doc-box">.one-twelfth</div>
<div class="one-sixth push-tiny--bottom doc-box">.one-sixth</div>
<div class="one-quarter push-tiny--bottom doc-box">.one-quarter</div>
<div class="one-third push-tiny--bottom doc-box">.one-third</div>
<div class="five-twelfths push-tiny--bottom doc-box">.five-twelfths</div>
<div class="one-half push-tiny--bottom doc-box">.one-half</div>
<div class="seven-twelfths push-tiny--bottom doc-box">.seven-twelfths</div>
<div class="two-thirds push-tiny--bottom doc-box">.two-thirds</div>
<div class="three-quarters push-tiny--bottom doc-box">.three-quarters</div>
<div class="five-sixths push-tiny--bottom doc-box">.five-sixths</div>
<div class="eleven-twelfths push-tiny--bottom doc-box">.eleven-twelfths</div>
<div class="one-whole push-tiny--bottom doc-box">.one-whole</div>
```
*/
/**
  * Whole
  */
.one-whole {
  width: 100% !important; }

/**
  * Halves
  */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50% !important; }

/**
  * Thirds
  */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333% !important; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666% !important; }

/**
  * Quarters
  */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25% !important; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75% !important; }

/**
  * Fifths
  */
.one-fifth, .two-tenths {
  width: 20% !important; }

.two-fifths, .four-tenths {
  width: 40% !important; }

.three-fifths, .six-tenths {
  width: 60% !important; }

.four-fifths, .eight-tenths {
  width: 80% !important; }

/**
  * Sixths
  */
.one-sixth, .two-twelfths {
  width: 16.666% !important; }

.five-sixths, .ten-twelfths {
  width: 83.333% !important; }

/**
  * Eighths
  */
.one-eighth {
  width: 12.5% !important; }

.three-eighths {
  width: 37.5% !important; }

.five-eighths {
  width: 62.5% !important; }

.seven-eighths {
  width: 87.5% !important; }

/**
  * Tenths
  */
.one-tenth {
  width: 10% !important; }

.three-tenths {
  width: 30% !important; }

.seven-tenths {
  width: 70% !important; }

.nine-tenths {
  width: 90% !important; }

/**
  * Twelfths
  */
.one-twelfth {
  width: 8.333% !important; }

.five-twelfths {
  width: 41.666% !important; }

.seven-twelfths {
  width: 58.333% !important; }

.eleven-twelfths {
  width: 91.666% !important; }

@media only screen and (max-width: 575px) {
  /**
  * Whole
  */
  .palm-one-whole {
    width: 100% !important; }
  /**
  * Halves
  */
  .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths {
    width: 50% !important; }
  /**
  * Thirds
  */
  .palm-one-third, .palm-two-sixths, .palm-four-twelfths {
    width: 33.333% !important; }
  .palm-two-thirds, .palm-four-sixths, .palm-eight-twelfths {
    width: 66.666% !important; }
  /**
  * Quarters
  */
  .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths {
    width: 25% !important; }
  .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths {
    width: 75% !important; }
  /**
  * Fifths
  */
  .palm-one-fifth, .palm-two-tenths {
    width: 20% !important; }
  .palm-two-fifths, .palm-four-tenths {
    width: 40% !important; }
  .palm-three-fifths, .palm-six-tenths {
    width: 60% !important; }
  .palm-four-fifths, .palm-eight-tenths {
    width: 80% !important; }
  /**
  * Sixths
  */
  .palm-one-sixth, .palm-two-twelfths {
    width: 16.666% !important; }
  .palm-five-sixths, .palm-ten-twelfths {
    width: 83.333% !important; }
  /**
  * Eighths
  */
  .palm-one-eighth {
    width: 12.5% !important; }
  .palm-three-eighths {
    width: 37.5% !important; }
  .palm-five-eighths {
    width: 62.5% !important; }
  .palm-seven-eighths {
    width: 87.5% !important; }
  /**
  * Tenths
  */
  .palm-one-tenth {
    width: 10% !important; }
  .palm-three-tenths {
    width: 30% !important; }
  .palm-seven-tenths {
    width: 70% !important; }
  .palm-nine-tenths {
    width: 90% !important; }
  /**
  * Twelfths
  */
  .palm-one-twelfth {
    width: 8.333% !important; }
  .palm-five-twelfths {
    width: 41.666% !important; }
  .palm-seven-twelfths {
    width: 58.333% !important; }
  .palm-eleven-twelfths {
    width: 91.666% !important; } }

@media only screen and (min-width: 576px) and (max-width: 768px) {
  /**
  * Whole
  */
  .lap-one-whole {
    width: 100% !important; }
  /**
  * Halves
  */
  .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths {
    width: 50% !important; }
  /**
  * Thirds
  */
  .lap-one-third, .lap-two-sixths, .lap-four-twelfths {
    width: 33.333% !important; }
  .lap-two-thirds, .lap-four-sixths, .lap-eight-twelfths {
    width: 66.666% !important; }
  /**
  * Quarters
  */
  .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths {
    width: 25% !important; }
  .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths {
    width: 75% !important; }
  /**
  * Fifths
  */
  .lap-one-fifth, .lap-two-tenths {
    width: 20% !important; }
  .lap-two-fifths, .lap-four-tenths {
    width: 40% !important; }
  .lap-three-fifths, .lap-six-tenths {
    width: 60% !important; }
  .lap-four-fifths, .lap-eight-tenths {
    width: 80% !important; }
  /**
  * Sixths
  */
  .lap-one-sixth, .lap-two-twelfths {
    width: 16.666% !important; }
  .lap-five-sixths, .lap-ten-twelfths {
    width: 83.333% !important; }
  /**
  * Eighths
  */
  .lap-one-eighth {
    width: 12.5% !important; }
  .lap-three-eighths {
    width: 37.5% !important; }
  .lap-five-eighths {
    width: 62.5% !important; }
  .lap-seven-eighths {
    width: 87.5% !important; }
  /**
  * Tenths
  */
  .lap-one-tenth {
    width: 10% !important; }
  .lap-three-tenths {
    width: 30% !important; }
  .lap-seven-tenths {
    width: 70% !important; }
  .lap-nine-tenths {
    width: 90% !important; }
  /**
  * Twelfths
  */
  .lap-one-twelfth {
    width: 8.333% !important; }
  .lap-five-twelfths {
    width: 41.666% !important; }
  .lap-seven-twelfths {
    width: 58.333% !important; }
  .lap-eleven-twelfths {
    width: 91.666% !important; } }

@media only screen and (max-width: 768px) {
  /**
  * Whole
  */
  .portable-one-whole {
    width: 100% !important; }
  /**
  * Halves
  */
  .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths {
    width: 50% !important; }
  /**
  * Thirds
  */
  .portable-one-third, .portable-two-sixths, .portable-four-twelfths {
    width: 33.333% !important; }
  .portable-two-thirds, .portable-four-sixths, .portable-eight-twelfths {
    width: 66.666% !important; }
  /**
  * Quarters
  */
  .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths {
    width: 25% !important; }
  .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths {
    width: 75% !important; }
  /**
  * Fifths
  */
  .portable-one-fifth, .portable-two-tenths {
    width: 20% !important; }
  .portable-two-fifths, .portable-four-tenths {
    width: 40% !important; }
  .portable-three-fifths, .portable-six-tenths {
    width: 60% !important; }
  .portable-four-fifths, .portable-eight-tenths {
    width: 80% !important; }
  /**
  * Sixths
  */
  .portable-one-sixth, .portable-two-twelfths {
    width: 16.666% !important; }
  .portable-five-sixths, .portable-ten-twelfths {
    width: 83.333% !important; }
  /**
  * Eighths
  */
  .portable-one-eighth {
    width: 12.5% !important; }
  .portable-three-eighths {
    width: 37.5% !important; }
  .portable-five-eighths {
    width: 62.5% !important; }
  .portable-seven-eighths {
    width: 87.5% !important; }
  /**
  * Tenths
  */
  .portable-one-tenth {
    width: 10% !important; }
  .portable-three-tenths {
    width: 30% !important; }
  .portable-seven-tenths {
    width: 70% !important; }
  .portable-nine-tenths {
    width: 90% !important; }
  /**
  * Twelfths
  */
  .portable-one-twelfth {
    width: 8.333% !important; }
  .portable-five-twelfths {
    width: 41.666% !important; }
  .portable-seven-twelfths {
    width: 58.333% !important; }
  .portable-eleven-twelfths {
    width: 91.666% !important; } }

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  /**
  * Whole
  */
  .desk-one-whole {
    width: 100% !important; }
  /**
  * Halves
  */
  .desk-one-half, .desk-two-quarters, .desk-three-sixths, .desk-four-eighths, .desk-five-tenths, .desk-six-twelfths {
    width: 50% !important; }
  /**
  * Thirds
  */
  .desk-one-third, .desk-two-sixths, .desk-four-twelfths {
    width: 33.333% !important; }
  .desk-two-thirds, .desk-four-sixths, .desk-eight-twelfths {
    width: 66.666% !important; }
  /**
  * Quarters
  */
  .desk-one-quarter, .desk-two-eighths, .desk-three-twelfths {
    width: 25% !important; }
  .desk-three-quarters, .desk-six-eighths, .desk-nine-twelfths {
    width: 75% !important; }
  /**
  * Fifths
  */
  .desk-one-fifth, .desk-two-tenths {
    width: 20% !important; }
  .desk-two-fifths, .desk-four-tenths {
    width: 40% !important; }
  .desk-three-fifths, .desk-six-tenths {
    width: 60% !important; }
  .desk-four-fifths, .desk-eight-tenths {
    width: 80% !important; }
  /**
  * Sixths
  */
  .desk-one-sixth, .desk-two-twelfths {
    width: 16.666% !important; }
  .desk-five-sixths, .desk-ten-twelfths {
    width: 83.333% !important; }
  /**
  * Eighths
  */
  .desk-one-eighth {
    width: 12.5% !important; }
  .desk-three-eighths {
    width: 37.5% !important; }
  .desk-five-eighths {
    width: 62.5% !important; }
  .desk-seven-eighths {
    width: 87.5% !important; }
  /**
  * Tenths
  */
  .desk-one-tenth {
    width: 10% !important; }
  .desk-three-tenths {
    width: 30% !important; }
  .desk-seven-tenths {
    width: 70% !important; }
  .desk-nine-tenths {
    width: 90% !important; }
  /**
  * Twelfths
  */
  .desk-one-twelfth {
    width: 8.333% !important; }
  .desk-five-twelfths {
    width: 41.666% !important; }
  .desk-seven-twelfths {
    width: 58.333% !important; }
  .desk-eleven-twelfths {
    width: 91.666% !important; } }

@media only screen and (min-width: 769px) {
  /**
  * Whole
  */
  .desk-and-up-one-whole {
    width: 100% !important; }
  /**
  * Halves
  */
  .desk-and-up-one-half, .desk-and-up-two-quarters, .desk-and-up-three-sixths, .desk-and-up-four-eighths, .desk-and-up-five-tenths, .desk-and-up-six-twelfths {
    width: 50% !important; }
  /**
  * Thirds
  */
  .desk-and-up-one-third, .desk-and-up-two-sixths, .desk-and-up-four-twelfths {
    width: 33.333% !important; }
  .desk-and-up-two-thirds, .desk-and-up-four-sixths, .desk-and-up-eight-twelfths {
    width: 66.666% !important; }
  /**
  * Quarters
  */
  .desk-and-up-one-quarter, .desk-and-up-two-eighths, .desk-and-up-three-twelfths {
    width: 25% !important; }
  .desk-and-up-three-quarters, .desk-and-up-six-eighths, .desk-and-up-nine-twelfths {
    width: 75% !important; }
  /**
  * Fifths
  */
  .desk-and-up-one-fifth, .desk-and-up-two-tenths {
    width: 20% !important; }
  .desk-and-up-two-fifths, .desk-and-up-four-tenths {
    width: 40% !important; }
  .desk-and-up-three-fifths, .desk-and-up-six-tenths {
    width: 60% !important; }
  .desk-and-up-four-fifths, .desk-and-up-eight-tenths {
    width: 80% !important; }
  /**
  * Sixths
  */
  .desk-and-up-one-sixth, .desk-and-up-two-twelfths {
    width: 16.666% !important; }
  .desk-and-up-five-sixths, .desk-and-up-ten-twelfths {
    width: 83.333% !important; }
  /**
  * Eighths
  */
  .desk-and-up-one-eighth {
    width: 12.5% !important; }
  .desk-and-up-three-eighths {
    width: 37.5% !important; }
  .desk-and-up-five-eighths {
    width: 62.5% !important; }
  .desk-and-up-seven-eighths {
    width: 87.5% !important; }
  /**
  * Tenths
  */
  .desk-and-up-one-tenth {
    width: 10% !important; }
  .desk-and-up-three-tenths {
    width: 30% !important; }
  .desk-and-up-seven-tenths {
    width: 70% !important; }
  .desk-and-up-nine-tenths {
    width: 90% !important; }
  /**
  * Twelfths
  */
  .desk-and-up-one-twelfth {
    width: 8.333% !important; }
  .desk-and-up-five-twelfths {
    width: 41.666% !important; }
  .desk-and-up-seven-twelfths {
    width: 58.333% !important; }
  .desk-and-up-eleven-twelfths {
    width: 91.666% !important; } }

@media only screen and (min-width: 1281px) {
  /**
  * Whole
  */
  .desk-wide-one-whole {
    width: 100% !important; }
  /**
  * Halves
  */
  .desk-wide-one-half, .desk-wide-two-quarters, .desk-wide-three-sixths, .desk-wide-four-eighths, .desk-wide-five-tenths, .desk-wide-six-twelfths {
    width: 50% !important; }
  /**
  * Thirds
  */
  .desk-wide-one-third, .desk-wide-two-sixths, .desk-wide-four-twelfths {
    width: 33.333% !important; }
  .desk-wide-two-thirds, .desk-wide-four-sixths, .desk-wide-eight-twelfths {
    width: 66.666% !important; }
  /**
  * Quarters
  */
  .desk-wide-one-quarter, .desk-wide-two-eighths, .desk-wide-three-twelfths {
    width: 25% !important; }
  .desk-wide-three-quarters, .desk-wide-six-eighths, .desk-wide-nine-twelfths {
    width: 75% !important; }
  /**
  * Fifths
  */
  .desk-wide-one-fifth, .desk-wide-two-tenths {
    width: 20% !important; }
  .desk-wide-two-fifths, .desk-wide-four-tenths {
    width: 40% !important; }
  .desk-wide-three-fifths, .desk-wide-six-tenths {
    width: 60% !important; }
  .desk-wide-four-fifths, .desk-wide-eight-tenths {
    width: 80% !important; }
  /**
  * Sixths
  */
  .desk-wide-one-sixth, .desk-wide-two-twelfths {
    width: 16.666% !important; }
  .desk-wide-five-sixths, .desk-wide-ten-twelfths {
    width: 83.333% !important; }
  /**
  * Eighths
  */
  .desk-wide-one-eighth {
    width: 12.5% !important; }
  .desk-wide-three-eighths {
    width: 37.5% !important; }
  .desk-wide-five-eighths {
    width: 62.5% !important; }
  .desk-wide-seven-eighths {
    width: 87.5% !important; }
  /**
  * Tenths
  */
  .desk-wide-one-tenth {
    width: 10% !important; }
  .desk-wide-three-tenths {
    width: 30% !important; }
  .desk-wide-seven-tenths {
    width: 70% !important; }
  .desk-wide-nine-tenths {
    width: 90% !important; }
  /**
  * Twelfths
  */
  .desk-wide-one-twelfth {
    width: 8.333% !important; }
  .desk-wide-five-twelfths {
    width: 41.666% !important; }
  .desk-wide-seven-twelfths {
    width: 58.333% !important; }
  .desk-wide-eleven-twelfths {
    width: 91.666% !important; } }

/*doc
### Element Layout
*/
/*doc
#### `.clearfix`

Makes an element contain floated children.

```html
<div class="clearfix doc-box">
  <div class="float--left doc-box doc-box--highlight">Floated Left</div>
  <div class="float--right doc-box doc-box--highlight">Floated Right</div>
</div>
```
*/
/*------------------------------------*    #CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
 * over and over in your markup.
 */
.clearfix:after, .cf:after, .nav:after, .list--horizontal:after, .top-bar:after, .secondary-nav:after, .breadcrumb:after, .tabs:after {
  content: "";
  display: table;
  clear: both; }

/*doc
#### `.float--left` and `.float--right`

Pulls elements left or right within a container.

```html
<div class="doc-box">
  <div class="float--left doc-box doc-box--highlight">Floated Left</div>
  <div class="float--right doc-box doc-box--highlight">Floated Right</div>
  <p>Some text outside the floats that will wrap under them.</p>
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras ut tincidunt nulla. Suspendisse semper, nisl vitae ultricies vulputate, metus tortor tincidunt neque, sed feugiat lacus ipsum eu neque.</p>
</div>
```
*/
.float--left {
  float: left !important; }

.float--right {
  float: right !important; }

@media only screen and (max-width: 575px) {
  .palm-float--left {
    float: left !important; }
  .palm-float--right {
    float: right !important; } }

@media only screen and (max-width: 768px) {
  .portable-float--left {
    float: left !important; }
  .portable-float--right {
    float: right !important; } }

/*doc
#### `.block-context`

Creates a [new block formatting context](https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Block_formatting_context).
It will contain floated children and it will not wrap under floats. If you don't
want to hide overflow, use `.block-context-overflow`.

```html
<div class="doc-box">
  <div class="float--left doc-box doc-box--highlight">Floated Left</div>
  <div class="block-context">
    <p>This text will not wrap under the float.</p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras ut tincidunt nulla. Suspendisse semper, nisl vitae ultricies vulputate, metus tortor tincidunt neque, sed feugiat lacus ipsum eu neque.</p>
  </div>
</div>
```
*/
/**
 * Pulled from SUIT
 * https://github.com/suitcss/utils-layout/blob/0.3.0/layout.css#L25-L37
 */
.block-context {
  overflow: hidden !important; }

/*doc
#### `.block-context-overflow`

Similar to `.block-context` but allows for overflow content.

*This breaks down in some browsers when elements within this element exceed its width.*

```html
<div class="doc-box">
  <div class="float--left doc-box doc-box--highlight">Floated Left</div>
  <div class="block-context-overflow">
    <p>This text will not wrap under the float.</p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras ut tincidunt nulla. Suspendisse semper, nisl vitae ultricies vulputate, metus tortor tincidunt neque, sed feugiat lacus ipsum eu neque.</p>
  </div>
</div>
```
*/
/**
 * Pulled from SUIT
 * https://github.com/suitcss/utils-layout/blob/0.3.0/layout.css#L39-L54
 */
.block-context-overflow {
  display: table-cell !important;
  width: 10000px !important; }

/*doc
#### `.center-block`

Position a block-level element in the center of its parent. This should be used
sparingly. You'll likely want to use the [layout system](#layout-system-a-k-a-grids-)
instead.

```html
<div class="doc-box">
  <div class="center-block one-half doc-box doc-box--highlight"></div>
</div>
```
*/
.center-block {
  display: block;
  margin: 0 auto; }

/*doc
### Display

- `.display--block`
- `.display--inline`
- `.display--inline-block`
- `.display--table`
- `.display--table-row`
- `.display--table-cell`

```html
<div class="display--block doc-box doc-box--highlight">Block display</div>
<div class="doc-box"><div class="display--inline doc-box doc-box--highlight">Inline display</div></div>
<div class="doc-box"><div class="display--inline-block doc-box doc-box--highlight">Inline-Block display</div></div>
<div class="doc-box">
  <div class="display--table">
    <div class="display--table-row">
      <div class="display--table-cell doc-box doc-box--highlight">Table cell</div>
      <div class="display--table-cell doc-box doc-box--highlight">Table cell</div>
    </div>
  </div>
</div>
```
*/
.display--block {
  display: block !important; }

.display--inline {
  display: inline !important; }

.display--inline-block {
  display: inline-block !important; }

.display--table {
  display: table !important; }

.display--table-row {
  display: table-row !important; }

.display--table-cell {
  display: table-cell !important; }

@media only screen and (max-width: 575px) {
  .palm-display--block {
    display: block !important; }
  .palm-display--block {
    display: block !important; } }

@media only screen and (max-width: 768px) {
  .portable-display--block {
    display: block !important; }
  .portable-display--block {
    display: block !important; } }

/*doc
#### Visibility

Show/hide elements on the page either globally or by a specific media query breakpoint.

- `.visible`
- `.hidden`
- `.visible--{media-query}`
- `.hidden--{media-query}`

```html
<div class="doc-box visible--palm">This will only be visible on palm devices</div>
<div class="doc-box hidden--palm">This will not be visible on palm devices</div>
```
*/
.visible {
  display: block !important; }

.hidden {
  display: none !important; }

.visible--palm {
  display: none !important; }

@media only screen and (max-width: 575px) {
  .hidden--palm {
    display: none !important; }
  .visible--palm {
    display: block !important; } }

.visible--lap {
  display: none !important; }

@media only screen and (min-width: 576px) and (max-width: 768px) {
  .hidden--lap {
    display: none !important; }
  .visible--lap {
    display: block !important; } }

.visible--portable {
  display: none !important; }

@media only screen and (max-width: 768px) {
  .hidden--portable {
    display: none !important; }
  .visible--portable {
    display: block !important; } }

.visible--desk {
  display: none !important; }

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .hidden--desk {
    display: none !important; }
  .visible--desk {
    display: block !important; } }

.visible--desk-and-up {
  display: none !important; }

@media only screen and (min-width: 769px) {
  .hidden--desk-and-up {
    display: none !important; }
  .visible--desk-and-up {
    display: block !important; } }

.visible--desk-wide {
  display: none !important; }

@media only screen and (min-width: 1281px) {
  .hidden--desk-wide {
    display: none !important; }
  .visible--desk-wide {
    display: block !important; } }

/*doc
### Positioning and Stack Order

- `.position--fixed`
- `.position--relative`
- `.position--absolute`
- `.position--static`
- `.z-10`
- `.z-20`
- `.z-30`
- `.z-40`
- `.z-50`
- `.z-60`
- `.z-70`
- `.z-80`

Helper classes to apply position properties or manipulate the stack order on an element. Elements need to be positioned for z-index to work.

*/
.position--fixed {
  position: fixed !important; }

.position--relative {
  position: relative !important; }

.position--absolute {
  position: absolute !important; }

.position--static {
  position: static !important; }

.z-10 {
  z-index: 10; }

.z-20 {
  z-index: 20; }

.z-30 {
  z-index: 30; }

.z-40 {
  z-index: 40; }

.z-50 {
  z-index: 50; }

.z-60 {
  z-index: 60; }

.z-70 {
  z-index: 70; }

.z-80 {
  z-index: 80; }

/*doc
### Spacing

A set of spacing helper classes used to add/remove both margin and padding.

Margin is added with `.push` and padding is added with `.soft`. Variants of these
also exist and can be specified with a prefix of one of the following: `-tiny`,
`-small`, `-large`, and `-huge` (e.g. `.push-small` or `.soft-huge`).

Margin and padding can be removed using the classes `.flush` and `.hard`, respectively.

All of these classes can target a specific side (or sides) of the element using
the following modifiers: `--top`, `--right`, `--bottom`, `--left`, `--ends`, and
`--sides`. For example: `.push--top` or `.soft-huge--ends`.

You can also prepend `.palm-`, `.portable-`, or `.desk-wide-` for optimized spacing helpers on smaller or wide devices. For example, 
`.push-small.palm-push-small` will put small margins on palm and up devices, but even smaller margins on palm-sized devices.


```html
<div class="doc-box">
  <div class="soft push--bottom doc-box doc-box--highlight">`.soft` with `.push--bottom`</div>
  <div class="soft--top soft-small--sides doc-box doc-box--highlight">`.soft--top` with `.soft-small--sides`</div>
</div>
```
*/
/**
 * Margin
 */
.push-micro {
  margin: 4px !important; }

.push-micro--top, .push-micro--ends {
  margin-top: 4px !important; }

.push-micro--right, .push-micro--sides {
  margin-right: 4px !important; }

.push-micro--bottom, .push-micro--ends {
  margin-bottom: 4px !important; }

.push-micro--left, .push-micro--sides {
  margin-left: 4px !important; }

.push-tiny {
  margin: 12px !important; }

.push-tiny--top, .push-tiny--ends {
  margin-top: 12px !important; }

.push-tiny--right, .push-tiny--sides {
  margin-right: 12px !important; }

.push-tiny--bottom, .push-tiny--ends {
  margin-bottom: 12px !important; }

.push-tiny--left, .push-tiny--sides {
  margin-left: 12px !important; }

.push-small {
  margin: 24px !important; }

.push-small--top, .push-small--ends {
  margin-top: 24px !important; }

.push-small--right, .push-small--sides {
  margin-right: 24px !important; }

.push-small--bottom, .push-small--ends {
  margin-bottom: 24px !important; }

.push-small--left, .push-small--sides {
  margin-left: 24px !important; }

.push {
  margin: 32px !important; }

.push--top, .push--ends {
  margin-top: 32px !important; }

.push--right, .push--sides {
  margin-right: 32px !important; }

.push--bottom, .push--ends {
  margin-bottom: 32px !important; }

.push--left, .push--sides {
  margin-left: 32px !important; }

.push-large {
  margin: 40px !important; }

.push-large--top, .push-large--ends {
  margin-top: 40px !important; }

.push-large--right, .push-large--sides {
  margin-right: 40px !important; }

.push-large--bottom, .push-large--ends {
  margin-bottom: 40px !important; }

.push-large--left, .push-large--sides {
  margin-left: 40px !important; }

.push-huge {
  margin: 52px !important; }

.push-huge--top, .push-huge--ends {
  margin-top: 52px !important; }

.push-huge--right, .push-huge--sides {
  margin-right: 52px !important; }

.push-huge--bottom, .push-huge--ends {
  margin-bottom: 52px !important; }

.push-huge--left, .push-huge--sides {
  margin-left: 52px !important; }

.flush {
  margin: 0 !important; }

.flush--top, .flush--ends {
  margin-top: 0 !important; }

.flush--right, .flush--sides {
  margin-right: 0 !important; }

.flush--bottom, .flush--ends {
  margin-bottom: 0 !important; }

.flush--left, .flush--sides {
  margin-left: 0 !important; }

@media only screen and (max-width: 575px) {
  .palm-push-tiny {
    margin: 3px !important; }
  .palm-push-tiny--top, .palm-push-tiny--ends {
    margin-top: 3px !important; }
  .palm-push-tiny--right, .palm-push-tiny--sides {
    margin-right: 3px !important; }
  .palm-push-tiny--bottom, .palm-push-tiny--ends {
    margin-bottom: 3px !important; }
  .palm-push-tiny--left, .palm-push-tiny--sides {
    margin-left: 3px !important; }
  .palm-push-small {
    margin: 6px !important; }
  .palm-push-small--top, .palm-push-small--ends {
    margin-top: 6px !important; }
  .palm-push-small--right, .palm-push-small--sides {
    margin-right: 6px !important; }
  .palm-push-small--bottom, .palm-push-small--ends {
    margin-bottom: 6px !important; }
  .palm-push-small--left, .palm-push-small--sides {
    margin-left: 6px !important; }
  .palm-push {
    margin: 8px !important; }
  .palm-push--top, .palm-push--ends {
    margin-top: 8px !important; }
  .palm-push--right, .palm-push--sides {
    margin-right: 8px !important; }
  .palm-push--bottom, .palm-push--ends {
    margin-bottom: 8px !important; }
  .palm-push--left, .palm-push--sides {
    margin-left: 8px !important; }
  .palm-push-large {
    margin: 10px !important; }
  .palm-push-large--top, .palm-push-large--ends {
    margin-top: 10px !important; }
  .palm-push-large--right, .palm-push-large--sides {
    margin-right: 10px !important; }
  .palm-push-large--bottom, .palm-push-large--ends {
    margin-bottom: 10px !important; }
  .palm-push-large--left, .palm-push-large--sides {
    margin-left: 10px !important; }
  .palm-push-huge {
    margin: 13px !important; }
  .palm-push-huge--top, .palm-push-huge--ends {
    margin-top: 13px !important; }
  .palm-push-huge--right, .palm-push-huge--sides {
    margin-right: 13px !important; }
  .palm-push-huge--bottom, .palm-push-huge--ends {
    margin-bottom: 13px !important; }
  .palm-push-huge--left, .palm-push-huge--sides {
    margin-left: 13px !important; }
  .palm-flush {
    margin: 0 !important; }
  .palm-flush--top, .palm-flush--ends {
    margin-top: 0 !important; }
  .palm-flush--right, .palm-flush--sides {
    margin-right: 0 !important; }
  .palm-flush--bottom, .palm-flush--ends {
    margin-bottom: 0 !important; }
  .palm-flush--left, .palm-flush--sides {
    margin-left: 0 !important; } }

@media only screen and (max-width: 768px) {
  .portable-push-tiny {
    margin: 6px !important; }
  .portable-push-tiny--top, .portable-push-tiny--ends {
    margin-top: 6px !important; }
  .portable-push-tiny--right, .portable-push-tiny--sides {
    margin-right: 6px !important; }
  .portable-push-tiny--bottom, .portable-push-tiny--ends {
    margin-bottom: 6px !important; }
  .portable-push-tiny--left, .portable-push-tiny--sides {
    margin-left: 6px !important; }
  .portable-push-small {
    margin: 12px !important; }
  .portable-push-small--top, .portable-push-small--ends {
    margin-top: 12px !important; }
  .portable-push-small--right, .portable-push-small--sides {
    margin-right: 12px !important; }
  .portable-push-small--bottom, .portable-push-small--ends {
    margin-bottom: 12px !important; }
  .portable-push-small--left, .portable-push-small--sides {
    margin-left: 12px !important; }
  .portable-push {
    margin: 16px !important; }
  .portable-push--top, .portable-push--ends {
    margin-top: 16px !important; }
  .portable-push--right, .portable-push--sides {
    margin-right: 16px !important; }
  .portable-push--bottom, .portable-push--ends {
    margin-bottom: 16px !important; }
  .portable-push--left, .portable-push--sides {
    margin-left: 16px !important; }
  .portable-push-large {
    margin: 20px !important; }
  .portable-push-large--top, .portable-push-large--ends {
    margin-top: 20px !important; }
  .portable-push-large--right, .portable-push-large--sides {
    margin-right: 20px !important; }
  .portable-push-large--bottom, .portable-push-large--ends {
    margin-bottom: 20px !important; }
  .portable-push-large--left, .portable-push-large--sides {
    margin-left: 20px !important; }
  .portable-push-huge {
    margin: 26px !important; }
  .portable-push-huge--top, .portable-push-huge--ends {
    margin-top: 26px !important; }
  .portable-push-huge--right, .portable-push-huge--sides {
    margin-right: 26px !important; }
  .portable-push-huge--bottom, .portable-push-huge--ends {
    margin-bottom: 26px !important; }
  .portable-push-huge--left, .portable-push-huge--sides {
    margin-left: 26px !important; }
  .portable-flush {
    margin: 0 !important; }
  .portable-flush--top, .portable-flush--ends {
    margin-top: 0 !important; }
  .portable-flush--right, .portable-flush--sides {
    margin-right: 0 !important; }
  .portable-flush--bottom, .portable-flush--ends {
    margin-bottom: 0 !important; }
  .portable-flush--left, .portable-flush--sides {
    margin-left: 0 !important; } }

@media only screen and (min-width: 1281px) {
  .desk-wide-push-tiny {
    margin: 24px !important; }
  .desk-wide-push-tiny--top, .desk-wide-push-tiny--ends {
    margin-top: 24px !important; }
  .desk-wide-push-tiny--right, .desk-wide-push-tiny--sides {
    margin-right: 24px !important; }
  .desk-wide-push-tiny--bottom, .desk-wide-push-tiny--ends {
    margin-bottom: 24px !important; }
  .desk-wide-push-tiny--left, .desk-wide-push-tiny--sides {
    margin-left: 24px !important; }
  .desk-wide-push-small {
    margin: 48px !important; }
  .desk-wide-push-small--top, .desk-wide-push-small--ends {
    margin-top: 48px !important; }
  .desk-wide-push-small--right, .desk-wide-push-small--sides {
    margin-right: 48px !important; }
  .desk-wide-push-small--bottom, .desk-wide-push-small--ends {
    margin-bottom: 48px !important; }
  .desk-wide-push-small--left, .desk-wide-push-small--sides {
    margin-left: 48px !important; }
  .desk-wide-push {
    margin: 64px !important; }
  .desk-wide-push--top, .desk-wide-push--ends {
    margin-top: 64px !important; }
  .desk-wide-push--right, .desk-wide-push--sides {
    margin-right: 64px !important; }
  .desk-wide-push--bottom, .desk-wide-push--ends {
    margin-bottom: 64px !important; }
  .desk-wide-push--left, .desk-wide-push--sides {
    margin-left: 64px !important; }
  .desk-wide-push-large {
    margin: 80px !important; }
  .desk-wide-push-large--top, .desk-wide-push-large--ends {
    margin-top: 80px !important; }
  .desk-wide-push-large--right, .desk-wide-push-large--sides {
    margin-right: 80px !important; }
  .desk-wide-push-large--bottom, .desk-wide-push-large--ends {
    margin-bottom: 80px !important; }
  .desk-wide-push-large--left, .desk-wide-push-large--sides {
    margin-left: 80px !important; }
  .desk-wide-push-huge {
    margin: 104px !important; }
  .desk-wide-push-huge--top, .desk-wide-push-huge--ends {
    margin-top: 104px !important; }
  .desk-wide-push-huge--right, .desk-wide-push-huge--sides {
    margin-right: 104px !important; }
  .desk-wide-push-huge--bottom, .desk-wide-push-huge--ends {
    margin-bottom: 104px !important; }
  .desk-wide-push-huge--left, .desk-wide-push-huge--sides {
    margin-left: 104px !important; }
  .desk-wide-flush {
    margin: 0 !important; }
  .desk-wide-flush--top, .desk-wide-flush--ends {
    margin-top: 0 !important; }
  .desk-wide-flush--right, .desk-wide-flush--sides {
    margin-right: 0 !important; }
  .desk-wide-flush--bottom, .desk-wide-flush--ends {
    margin-bottom: 0 !important; }
  .desk-wide-flush--left, .desk-wide-flush--sides {
    margin-left: 0 !important; } }

/**
 * Padding
 */
.soft-micro {
  padding: 4px !important; }

.soft-micro--top, .soft-micro--ends {
  padding-top: 4px !important; }

.soft-micro--right, .soft-micro--sides {
  padding-right: 4px !important; }

.soft-micro--bottom, .soft-micro--ends {
  padding-bottom: 4px !important; }

.soft-micro--left, .soft-micro--sides {
  padding-left: 4px !important; }

.soft-tiny {
  padding: 12px !important; }

.soft-tiny--top, .soft-tiny--ends {
  padding-top: 12px !important; }

.soft-tiny--right, .soft-tiny--sides {
  padding-right: 12px !important; }

.soft-tiny--bottom, .soft-tiny--ends {
  padding-bottom: 12px !important; }

.soft-tiny--left, .soft-tiny--sides {
  padding-left: 12px !important; }

.soft-small {
  padding: 24px !important; }

.soft-small--top, .soft-small--ends {
  padding-top: 24px !important; }

.soft-small--right, .soft-small--sides {
  padding-right: 24px !important; }

.soft-small--bottom, .soft-small--ends {
  padding-bottom: 24px !important; }

.soft-small--left, .soft-small--sides {
  padding-left: 24px !important; }

.soft {
  padding: 32px !important; }

.soft--top, .soft--ends {
  padding-top: 32px !important; }

.soft--right, .soft--sides {
  padding-right: 32px !important; }

.soft--bottom, .soft--ends {
  padding-bottom: 32px !important; }

.soft--left, .soft--sides {
  padding-left: 32px !important; }

.soft-large {
  padding: 40px !important; }

.soft-large--top, .soft-large--ends {
  padding-top: 40px !important; }

.soft-large--right, .soft-large--sides {
  padding-right: 40px !important; }

.soft-large--bottom, .soft-large--ends {
  padding-bottom: 40px !important; }

.soft-large--left, .soft-large--sides {
  padding-left: 40px !important; }

.soft-huge {
  padding: 52px !important; }

.soft-huge--top, .soft-huge--ends {
  padding-top: 52px !important; }

.soft-huge--right, .soft-huge--sides {
  padding-right: 52px !important; }

.soft-huge--bottom, .soft-huge--ends {
  padding-bottom: 52px !important; }

.soft-huge--left, .soft-huge--sides {
  padding-left: 52px !important; }

.hard {
  padding: 0 !important; }

.hard--top, .hard--ends {
  padding-top: 0 !important; }

.hard--right, .hard--sides {
  padding-right: 0 !important; }

.hard--bottom, .hard--ends {
  padding-bottom: 0 !important; }

.hard--left, .hard--sides {
  padding-left: 0 !important; }

@media only screen and (max-width: 575px) {
  .palm-soft-tiny {
    padding: 3px !important; }
  .palm-soft-tiny--top, .palm-soft-tiny--ends {
    padding-top: 3px !important; }
  .palm-soft-tiny--right, .palm-soft-tiny--sides {
    padding-right: 3px !important; }
  .palm-soft-tiny--bottom, .palm-soft-tiny--ends {
    padding-bottom: 3px !important; }
  .palm-soft-tiny--left, .palm-soft-tiny--sides {
    padding-left: 3px !important; }
  .palm-soft-small {
    padding: 6px !important; }
  .palm-soft-small--top, .palm-soft-small--ends {
    padding-top: 6px !important; }
  .palm-soft-small--right, .palm-soft-small--sides {
    padding-right: 6px !important; }
  .palm-soft-small--bottom, .palm-soft-small--ends {
    padding-bottom: 6px !important; }
  .palm-soft-small--left, .palm-soft-small--sides {
    padding-left: 6px !important; }
  .palm-soft {
    padding: 8px !important; }
  .palm-soft--top, .palm-soft--ends {
    padding-top: 8px !important; }
  .palm-soft--right, .palm-soft--sides {
    padding-right: 8px !important; }
  .palm-soft--bottom, .palm-soft--ends {
    padding-bottom: 8px !important; }
  .palm-soft--left, .palm-soft--sides {
    padding-left: 8px !important; }
  .palm-soft-large {
    padding: 10px !important; }
  .palm-soft-large--top, .palm-soft-large--ends {
    padding-top: 10px !important; }
  .palm-soft-large--right, .palm-soft-large--sides {
    padding-right: 10px !important; }
  .palm-soft-large--bottom, .palm-soft-large--ends {
    padding-bottom: 10px !important; }
  .palm-soft-large--left, .palm-soft-large--sides {
    padding-left: 10px !important; }
  .palm-soft-huge {
    padding: 13px !important; }
  .palm-soft-huge--top, .palm-soft-huge--ends {
    padding-top: 13px !important; }
  .palm-soft-huge--right, .palm-soft-huge--sides {
    padding-right: 13px !important; }
  .palm-soft-huge--bottom, .palm-soft-huge--ends {
    padding-bottom: 13px !important; }
  .palm-soft-huge--left, .palm-soft-huge--sides {
    padding-left: 13px !important; }
  .palm-hard {
    padding: 0 !important; }
  .palm-hard--top, .palm-hard--ends {
    padding-top: 0 !important; }
  .palm-hard--right, .palm-hard--sides {
    padding-right: 0 !important; }
  .palm-hard--bottom, .palm-hard--ends {
    padding-bottom: 0 !important; }
  .palm-hard--left, .palm-hard--sides {
    padding-left: 0 !important; } }

@media only screen and (max-width: 768px) {
  .portable-soft-tiny {
    padding: 6px !important; }
  .portable-soft-tiny--top, .portable-soft-tiny--ends {
    padding-top: 6px !important; }
  .portable-soft-tiny--right, .portable-soft-tiny--sides {
    padding-right: 6px !important; }
  .portable-soft-tiny--bottom, .portable-soft-tiny--ends {
    padding-bottom: 6px !important; }
  .portable-soft-tiny--left, .portable-soft-tiny--sides {
    padding-left: 6px !important; }
  .portable-soft-small {
    padding: 12px !important; }
  .portable-soft-small--top, .portable-soft-small--ends {
    padding-top: 12px !important; }
  .portable-soft-small--right, .portable-soft-small--sides {
    padding-right: 12px !important; }
  .portable-soft-small--bottom, .portable-soft-small--ends {
    padding-bottom: 12px !important; }
  .portable-soft-small--left, .portable-soft-small--sides {
    padding-left: 12px !important; }
  .portable-soft {
    padding: 16px !important; }
  .portable-soft--top, .portable-soft--ends {
    padding-top: 16px !important; }
  .portable-soft--right, .portable-soft--sides {
    padding-right: 16px !important; }
  .portable-soft--bottom, .portable-soft--ends {
    padding-bottom: 16px !important; }
  .portable-soft--left, .portable-soft--sides {
    padding-left: 16px !important; }
  .portable-soft-large {
    padding: 20px !important; }
  .portable-soft-large--top, .portable-soft-large--ends {
    padding-top: 20px !important; }
  .portable-soft-large--right, .portable-soft-large--sides {
    padding-right: 20px !important; }
  .portable-soft-large--bottom, .portable-soft-large--ends {
    padding-bottom: 20px !important; }
  .portable-soft-large--left, .portable-soft-large--sides {
    padding-left: 20px !important; }
  .portable-soft-huge {
    padding: 26px !important; }
  .portable-soft-huge--top, .portable-soft-huge--ends {
    padding-top: 26px !important; }
  .portable-soft-huge--right, .portable-soft-huge--sides {
    padding-right: 26px !important; }
  .portable-soft-huge--bottom, .portable-soft-huge--ends {
    padding-bottom: 26px !important; }
  .portable-soft-huge--left, .portable-soft-huge--sides {
    padding-left: 26px !important; }
  .portable-hard {
    padding: 0 !important; }
  .portable-hard--top, .portable-hard--ends {
    padding-top: 0 !important; }
  .portable-hard--right, .portable-hard--sides {
    padding-right: 0 !important; }
  .portable-hard--bottom, .portable-hard--ends {
    padding-bottom: 0 !important; }
  .portable-hard--left, .portable-hard--sides {
    padding-left: 0 !important; } }

@media only screen and (min-width: 1281px) {
  .desk-wide-soft-micro {
    padding: 8px !important; }
  .desk-wide-soft-micro--top, .desk-wide-soft-micro--ends {
    padding-top: 8px !important; }
  .desk-wide-soft-micro--right, .desk-wide-soft-micro--sides {
    padding-right: 8px !important; }
  .desk-wide-soft-micro--bottom, .desk-wide-soft-micro--ends {
    padding-bottom: 8px !important; }
  .desk-wide-soft-micro--left, .desk-wide-soft-micro--sides {
    padding-left: 8px !important; }
  .desk-wide-soft-tiny {
    padding: 24px !important; }
  .desk-wide-soft-tiny--top, .desk-wide-soft-tiny--ends {
    padding-top: 24px !important; }
  .desk-wide-soft-tiny--right, .desk-wide-soft-tiny--sides {
    padding-right: 24px !important; }
  .desk-wide-soft-tiny--bottom, .desk-wide-soft-tiny--ends {
    padding-bottom: 24px !important; }
  .desk-wide-soft-tiny--left, .desk-wide-soft-tiny--sides {
    padding-left: 24px !important; }
  .desk-wide-soft-small {
    padding: 48px !important; }
  .desk-wide-soft-small--top, .desk-wide-soft-small--ends {
    padding-top: 48px !important; }
  .desk-wide-soft-small--right, .desk-wide-soft-small--sides {
    padding-right: 48px !important; }
  .desk-wide-soft-small--bottom, .desk-wide-soft-small--ends {
    padding-bottom: 48px !important; }
  .desk-wide-soft-small--left, .desk-wide-soft-small--sides {
    padding-left: 48px !important; }
  .desk-wide-soft {
    padding: 64px !important; }
  .desk-wide-soft--top, .desk-wide-soft--ends {
    padding-top: 64px !important; }
  .desk-wide-soft--right, .desk-wide-soft--sides {
    padding-right: 64px !important; }
  .desk-wide-soft--bottom, .desk-wide-soft--ends {
    padding-bottom: 64px !important; }
  .desk-wide-soft--left, .desk-wide-soft--sides {
    padding-left: 64px !important; }
  .desk-wide-soft-large {
    padding: 80px !important; }
  .desk-wide-soft-large--top, .desk-wide-soft-large--ends {
    padding-top: 80px !important; }
  .desk-wide-soft-large--right, .desk-wide-soft-large--sides {
    padding-right: 80px !important; }
  .desk-wide-soft-large--bottom, .desk-wide-soft-large--ends {
    padding-bottom: 80px !important; }
  .desk-wide-soft-large--left, .desk-wide-soft-large--sides {
    padding-left: 80px !important; }
  .desk-wide-soft-huge {
    padding: 104px !important; }
  .desk-wide-soft-huge--top, .desk-wide-soft-huge--ends {
    padding-top: 104px !important; }
  .desk-wide-soft-huge--right, .desk-wide-soft-huge--sides {
    padding-right: 104px !important; }
  .desk-wide-soft-huge--bottom, .desk-wide-soft-huge--ends {
    padding-bottom: 104px !important; }
  .desk-wide-soft-huge--left, .desk-wide-soft-huge--sides {
    padding-left: 104px !important; }
  .desk-wide-hard {
    padding: 0 !important; }
  .desk-wide-hard--top, .desk-wide-hard--ends {
    padding-top: 0 !important; }
  .desk-wide-hard--right, .desk-wide-hard--sides {
    padding-right: 0 !important; }
  .desk-wide-hard--bottom, .desk-wide-hard--ends {
    padding-bottom: 0 !important; }
  .desk-wide-hard--left, .desk-wide-hard--sides {
    padding-left: 0 !important; } }

/*doc
### Gutter

The gutter helpers are very similar to the [spacing classes](#spacing) - with modifiers
like `.soft-gutter--top` and `.push-gutter--sides` - except that the spacing automatically
changes based on the current browser size. The spacing sizes are exactly the same
as those used for gutters in the [layout system](#layout-system-a-k-a-grids-).

```html
<div class="doc-box">
  <div class="soft-gutter push-gutter--bottom doc-box doc-box--highlight">`.soft-gutter` with `.push-gutter--bottom`</div>
  <div class="soft-gutter--top soft-gutter--sides doc-box doc-box--highlight">`.soft-gutter--top` with `.soft-gutter--sides`</div>
</div>
```
*/
.soft-gutter {
  padding: 32px !important; }

.soft-gutter--top {
  padding-top: 32px !important; }

.soft-gutter--right {
  padding-right: 32px !important; }

.soft-gutter--bottom {
  padding-bottom: 32px !important; }

.soft-gutter--left {
  padding-left: 32px !important; }

.soft-gutter--ends {
  padding-top: 32px !important;
  padding-bottom: 32px !important; }

.soft-gutter--sides {
  padding-right: 32px !important;
  padding-left: 32px !important; }

.push-gutter {
  margin: 32px !important; }

.push-gutter--top {
  margin-top: 32px !important; }

.push-gutter--right {
  margin-right: 32px !important; }

.push-gutter--bottom {
  margin-bottom: 32px !important; }

.push-gutter--left {
  margin-left: 32px !important; }

.push-gutter--ends {
  margin-top: 32px !important;
  margin-bottom: 32px !important; }

.push-gutter--sides {
  margin-right: 32px !important;
  margin-left: 32px !important; }

@media only screen and (max-width: 575px) {
  .soft-gutter {
    padding: 24px !important; }
  .soft-gutter--top {
    padding-top: 24px !important; }
  .soft-gutter--right {
    padding-right: 24px !important; }
  .soft-gutter--bottom {
    padding-bottom: 24px !important; }
  .soft-gutter--left {
    padding-left: 24px !important; }
  .soft-gutter--ends {
    padding-top: 24px !important;
    padding-bottom: 24px !important; }
  .soft-gutter--sides {
    padding-right: 24px !important;
    padding-left: 24px !important; }
  .push-gutter {
    margin: 24px !important; }
  .push-gutter--top {
    margin-top: 24px !important; }
  .push-gutter--right {
    margin-right: 24px !important; }
  .push-gutter--bottom {
    margin-bottom: 24px !important; }
  .push-gutter--left {
    margin-left: 24px !important; }
  .push-gutter--ends {
    margin-top: 24px !important;
    margin-bottom: 24px !important; }
  .push-gutter--sides {
    margin-right: 24px !important;
    margin-left: 24px !important; } }

@media only screen and (min-width: 576px) and (max-width: 768px) {
  .soft-gutter {
    padding: 24px !important; }
  .soft-gutter--top {
    padding-top: 24px !important; }
  .soft-gutter--right {
    padding-right: 24px !important; }
  .soft-gutter--bottom {
    padding-bottom: 24px !important; }
  .soft-gutter--left {
    padding-left: 24px !important; }
  .soft-gutter--ends {
    padding-top: 24px !important;
    padding-bottom: 24px !important; }
  .soft-gutter--sides {
    padding-right: 24px !important;
    padding-left: 24px !important; }
  .push-gutter {
    margin: 24px !important; }
  .push-gutter--top {
    margin-top: 24px !important; }
  .push-gutter--right {
    margin-right: 24px !important; }
  .push-gutter--bottom {
    margin-bottom: 24px !important; }
  .push-gutter--left {
    margin-left: 24px !important; }
  .push-gutter--ends {
    margin-top: 24px !important;
    margin-bottom: 24px !important; }
  .push-gutter--sides {
    margin-right: 24px !important;
    margin-left: 24px !important; } }

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .soft-gutter {
    padding: 32px !important; }
  .soft-gutter--top {
    padding-top: 32px !important; }
  .soft-gutter--right {
    padding-right: 32px !important; }
  .soft-gutter--bottom {
    padding-bottom: 32px !important; }
  .soft-gutter--left {
    padding-left: 32px !important; }
  .soft-gutter--ends {
    padding-top: 32px !important;
    padding-bottom: 32px !important; }
  .soft-gutter--sides {
    padding-right: 32px !important;
    padding-left: 32px !important; }
  .push-gutter {
    margin: 32px !important; }
  .push-gutter--top {
    margin-top: 32px !important; }
  .push-gutter--right {
    margin-right: 32px !important; }
  .push-gutter--bottom {
    margin-bottom: 32px !important; }
  .push-gutter--left {
    margin-left: 32px !important; }
  .push-gutter--ends {
    margin-top: 32px !important;
    margin-bottom: 32px !important; }
  .push-gutter--sides {
    margin-right: 32px !important;
    margin-left: 32px !important; } }

@media only screen and (min-width: 1281px) {
  .soft-gutter {
    padding: 40px !important; }
  .soft-gutter--top {
    padding-top: 40px !important; }
  .soft-gutter--right {
    padding-right: 40px !important; }
  .soft-gutter--bottom {
    padding-bottom: 40px !important; }
  .soft-gutter--left {
    padding-left: 40px !important; }
  .soft-gutter--ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important; }
  .soft-gutter--sides {
    padding-right: 40px !important;
    padding-left: 40px !important; }
  .push-gutter {
    margin: 40px !important; }
  .push-gutter--top {
    margin-top: 40px !important; }
  .push-gutter--right {
    margin-right: 40px !important; }
  .push-gutter--bottom {
    margin-bottom: 40px !important; }
  .push-gutter--left {
    margin-left: 40px !important; }
  .push-gutter--ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important; }
  .push-gutter--sides {
    margin-right: 40px !important;
    margin-left: 40px !important; } }

/*doc
### Text

- `.text--center`
- `.text--left`
- `.text--right`

```html
<div class="text--left doc-box push-tiny--bottom">Some left-aligned text</div>
<div class="text--center doc-box push-tiny--bottom">Some center-aligned text</div>
<div class="text--right doc-box push-tiny--bottom">Some right-aligned text</div>
```
*/
.text--left {
  text-align: left !important; }

.text--right {
  text-align: right !important; }

.text--center {
  text-align: center !important; }

@media only screen and (max-width: 575px) {
  .palm-text--center {
    text-align: center !important; }
  .palm-text--left {
    text-align: left !important; }
  .palm-text--right {
    text-align: right !important; } }

@media only screen and (max-width: 768px) {
  .portable-text--center {
    text-align: center !important; }
  .portable-text--left {
    text-align: left !important; }
  .portable-text--right {
    text-align: right !important; } }

@media only screen and (min-width: 1281px) {
  .desk-wide-text--center {
    text-align: center !important; }
  .desk-wide-text--left {
    text-align: left !important; }
  .desk-wide-text--right {
    text-align: right !important; } }

/*doc
- `.text--uppercase`
- `.text--lowercase`
- `.text--capitalize`
- `.text--none`

```html
<div class="doc-box">
  <span class="text--uppercase">Uppercase Text</span>
  <span class="text--lowercase">Lowercase Text</span>
  <span class="text--capitalize">capitalize text</span>
</div>
```
*/
.text--uppercase, .breadcrumb {
  text-transform: uppercase !important; }

.text--lowercase {
  text-transform: lowercase !important; }

.text--capitalize {
  text-transform: capitalize !important; }

.text--none {
  text-transform: none !important; }

/*doc
- `.text--break`
- `.text--nowrap`
- `.text--truncate`

```html
<div class="layout">
   <div class="layout__item one-third">
     <div class="doc-box text--nowrap">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vitae placerat enim. Ut sed porttitor mi, a consectetur massa.</div>
   </div>
   <div class="layout__item one-third">
     <div class="doc-box text--break">Loremipsumdolorsitamet,consecteturadipiscingelit.Nuncvitaeplaceratenim.Utsedporttitormi,aconsecteturmassa.</div>
   </div>
   <div class="layout__item one-third">
     <div class="doc-box text--truncate">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vitae placerat enim. Ut sed porttitor mi, a consectetur massa.</div>
   </div>
</div>
```
*/
.text--break {
  word-wrap: break-word !important; }

.text--nowrap {
  white-space: nowrap !important; }

.text--truncate, .address-picker input {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important; }

/*doc
- `.text--unstyled`

```html
<div class="layout">
   <div class="layout__item one-whole">
     <a href="/" class="doc-box text--unstyled">This link has no underline.</a>
   </div>
</div>
```
*/
.text--unstyled {
  text-decoration: none !important; }

/*doc
- `.flush--line-height`

```html
<div class="layout">
   <div class="layout__item one-whole">
     <h2 class="flush--line-height">This heading has a line height of 1.</h2>
   </div>
</div>
```
*/
.flush--line-height {
  line-height: 1 !important; }

/*doc
### Vertical Alignment

- `.align--baseline`
- `.align--bottom`
- `.align--middle`
- `.align--top`

```html
<div class="doc-box gamma">Text <span class="milli align--baseline">aligned to baseline</span></div>
<div class="doc-box gamma">Text <span class="milli align--bottom">aligned to bottom</span></div>
<div class="doc-box gamma">Text <span class="milli align--middle">aligned to middle</span></div>
<div class="doc-box gamma">Text <span class="milli align--top">aligned to top</span></div>
```
*/
.align--baseline {
  vertical-align: baseline !important; }

.align--bottom {
  vertical-align: bottom !important; }

.align--middle {
  vertical-align: middle !important; }

.align--top {
  vertical-align: top !important; }

/*doc
### Transitions

Helper classes for providing transitions to your elements in a generic way.

#### `.transition`

Sets a CSS3 transition on **all** properties of the element with a duration set
with the `$transition-duration` variable and easing set by the `$transition-func`
variable.

#### `.transition--slow`

A slower version of the transition helper, set with `$transition-duration--slow`.

#### `.transition--fast`

A faster version of the transition helper, set with `$transition-duration--fast`.
*/
.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless::-webkit-input-placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }
.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless::-moz-placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }
.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless:-ms-input-placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }
.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless::placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }

.transition--slow {
  -webkit-transition: all 600ms ease !important;
  transition: all 600ms ease !important; }

.transition--fast, .switch:before, .switch:after {
  -webkit-transition: all 150ms ease !important;
  transition: all 150ms ease !important; }

/*doc
### Border Radius

#### `.square`

A helper class to remove border-radius from an element. You can append directional modifiers (`--top`, `--left`, `--right`, `--bottom`, `--top-left`, `--top-right`, `--bottom-left`, `--bottom-right`) to only square off sides or corners as well.

#### `.borderless`

A helper class to remove borders from an element. Helpful when combined with the `.square` classes to create modular flush card layouts or elements such as button groups and form groups.

#### `.round`

A helper class to easily make circles. Don't abuse this! Be sure to declare a width and height if you're making a circle to ensure it's perfect.


*/
.square {
  border-radius: 0 !important; }

.square--left {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important; }

.square--right {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important; }

.square--top {
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.square--bottom {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important; }

.square--top-right {
  border-top-right-radius: 0 !important; }

.square--top-left {
  border-top-left-radius: 0 !important; }

.square--bottom-right {
  border-bottom-right-radius: 0 !important; }

.square--bottom-left {
  border-bottom-left-radius: 0 !important; }

.round {
  border-radius: 50% !important; }

.borderless {
  border-color: transparent !important;
  border-width: 0px !important; }

.borderless--top {
  border-top-color: transparent !important;
  border-top-width: 0px !important; }

.borderless--bottom {
  border-bottom-color: transparent !important;
  border-bottom-width: 0px !important; }

.borderless--left {
  border-left-color: transparent !important;
  border-left-width: 0px !important; }

.borderless--right {
  border-right-color: transparent !important;
  border-right-width: 0px !important; }

.borderless--sides {
  border-right-color: transparent !important;
  border-right-width: 0px !important;
  border-left-color: transparent !important;
  border-left-width: 0px !important; }

.borderless--ends {
  border-top-color: transparent !important;
  border-top-width: 0px !important;
  border-bottom-color: transparent !important;
  border-bottom-width: 0px !important; }

/*doc
### Generic

- `.cursor--pointer`
- `.cursor--default`


*/
.cursor--pointer {
  cursor: pointer !important; }

.cursor--default {
  cursor: default !important; }

/*doc
## Base Objects
---------------
*/
/*doc
### Layout System (a.k.a. Grids)

Our layout system uses `box-sizing: border-box` and `display: inline-block` to
create an extremely powerful, flexible alternative to the traditional grid
system. Combine the layout items with the [width classes](#widths).

**Note: Because our layout system uses `inline-block`, any whitespace between
`.layout__item` elements will break the layout. The correct way to solve this
would be to use a build tool like [htmlmin](http://htmlmin.readthedocs.org/en/latest/)
or a templating engine like [Jade]() that strips whitespace automatically. If
you don't want to use these (not recommended), set `$enable-layout-hack: true;`
in your settings before importing uber.base.**

#### `.layout`

All layout systems should be wrapped in the `.layout` class and each child
wrapped in the `.layout__item` class. Below is a basic implementation:

```html
<div class="layout">
   <div class="layout__item one-half"><div class="doc-box"></div></div>
   <div class="layout__item one-half"><div class="doc-box"></div></div>
   <div class="layout__item one-third"><div class="doc-box"></div></div>
   <div class="layout__item one-third"><div class="doc-box doc-box--large"></div></div>
   <div class="layout__item one-third"><div class="doc-box"></div></div>
</div>
```

#### `.layout--flush`

A modifier to remove the layout gutters.

```html
<div class="layout layout--flush">
   <div class="layout__item one-third"><div class="doc-box"></div></div>
   <div class="layout__item one-third"><div class="doc-box doc-box--highlight"></div></div>
   <div class="layout__item one-third"><div class="doc-box"></div></div>
</div>
```

#### `.layout--middle`

A modifier to vertically align the layout items in the middle of the row.

```html
<div class="layout layout--middle">
   <div class="layout__item one-third"><div class="doc-box"></div></div>
   <div class="layout__item one-third"><div class="doc-box doc-box--large"></div></div>
   <div class="layout__item one-third"><div class="doc-box"></div></div>
</div>
```

#### `.layout--bottom`

A modifier to vertically align the layout items to the bottom of the row.

```html
<div class="layout layout--bottom">
   <div class="layout__item one-third"><div class="doc-box"></div></div>
   <div class="layout__item one-third"><div class="doc-box doc-box--large"></div></div>
   <div class="layout__item one-third"><div class="doc-box"></div></div>
</div>
```

#### `.layout--right`

A modifier to make the layout items fill up from the right side of the row.

```html
<div class="layout layout--right">
   <div class="layout__item one-quarter"><div class="doc-box"></div></div>
   <div class="layout__item one-quarter"><div class="doc-box"></div></div>
</div>
```

#### `.layout--center`

A modifier to make the layout items fill up from the center of the row.

```html
<div class="layout layout--center">
   <div class="layout__item one-quarter"><div class="doc-box"></div></div>
   <div class="layout__item one-quarter"><div class="doc-box"></div></div>
</div>
```

#### '.layout--rev'

A modifier to reverse the layout items. Usefull for rearanging the stacking
order of a responsive design.

<div class="layout layout--flush layout--rev">
  <div class="layout__item one-third"><div class="doc-box">First Item</div></div>
  <div class="layout__item one-third"><div class="doc-box doc-box--highlight">Second Item</div></div>
  <div class="layout__item one-third"><div class="doc-box">Third Item</div></div>
</div>

#### Responsive Layout Example

You can build a reponsive layout easily using the layout grid system with media queries.
Apply a size to an element on a specific media query by using the class `{media-query}-{size}`.
For example, `palm-one-whole` says that the element should have a width of one-whole on phone
screen sizes.

Combining this concept with layouts, we can easily construct a responsive grid.

```html
<div class="layout layout--flush">
  <div class="layout__item palm-one-whole lap-two-thirds desk-and-up-one-third"><div class="doc-box">First Item</div></div>
  <div class="layout__item palm-one-whole lap-one-third desk-and-up-one-third"><div class="doc-box doc-box--highlight">Second Item</div></div>
  <div class="layout__item portable-one-whole desk-and-up-one-third"><div class="doc-box">Third Item</div></div>
</div>
```

We can reverse how the items will stack by using the layout--rev class.

```html
<div class="layout layout--flush layout--rev">
  <div class="layout__item portable-one-whole desk-and-up-one-third"><div class="doc-box">Third Item</div></div>
  <div class="layout__item palm-one-whole lap-one-third desk-and-up-one-third"><div class="doc-box doc-box--highlight">Second Item</div></div>
  <div class="layout__item palm-one-whole lap-two-thirds desk-and-up-one-third"><div class="doc-box">First Item</div></div>
</div>
```

*/
/*------------------------------------*    #LAYOUT
\*------------------------------------*/
/**
 * The inuitcss layout system uses `box-sizing: border-box;` and
 * `display: inline-block;` to create an extremely powerful, flexible
 * alternative to the traditional grid system. Combine the layout items with
 * the widths found in `trumps.widths`.
 */
/**
     * Begin a layout group.
     */
.layout {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -24px; }

/**
         * 1. Cause columns to stack side-by-side.
         * 2. Space columns apart.
         * 3. Align columns to the tops of each other.
         * 4. Full-width unless told to behave otherwise.
         * 5. Required to combine fluid widths and fixed gutters.
         */
.layout__item {
  display: inline-block;
  /* [1] */
  padding-left: 24px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */ }

@media only screen and (max-width: 575px) {
  .layout {
    margin-left: -24px; }
    .layout > .layout__item {
      padding-left: 24px; } }

@media only screen and (min-width: 576px) and (max-width: 768px) {
  .layout {
    margin-left: -24px; }
    .layout > .layout__item {
      padding-left: 24px; } }

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .layout {
    margin-left: -32px; }
    .layout > .layout__item {
      padding-left: 32px; } }

@media only screen and (min-width: 1281px) {
  .layout {
    margin-left: -40px; }
    .layout > .layout__item {
      padding-left: 40px; } }

/*------------------------------------*    #LAYOUT
\*------------------------------------*/
/**
 * The inuitcss layout system uses `box-sizing: border-box;` and
 * `display: inline-block;` to create an extremely powerful, flexible
 * alternative to the traditional grid system. Combine the layout items with
 * the widths found in `trumps.widths`.
 */
/**
     * Layouts with no gutters.
     */
.layout--flush {
  margin-left: 0; }
  .layout--flush > .layout__item {
    padding-left: 0; }

/**
     * Reversed rendered order of layout items, e.g. items 1, 2, 3, 4 in your
     * markup will display in order 4, 3, 2, 1 on your page.
     */
.layout--rev {
  direction: rtl;
  text-align: left; }
  .layout--rev > .layout__item {
    direction: ltr;
    text-align: left; }

/**
     * Align layout items to the vertical centers of each other.
     */
.layout--middle > .layout__item {
  vertical-align: middle; }

/**
     * Align layout items to the vertical bottoms of each other.
     */
.layout--bottom > .layout__item {
  vertical-align: bottom; }

/**
     * Make the layout items fill up from the right hand side.
     */
.layout--right {
  text-align: right; }
  .layout--right > .layout__item {
    text-align: left; }

/**
     * Make the layout items fill up from the center outward.
     */
.layout--center {
  text-align: center; }
  .layout--center > .layout__item {
    text-align: left; }

/*doc
### Flexbox

A way to lay out a row of cells in various ways. This mimicks (in a hacky way)
the native flexbox implementation but works cross-browser.

#### `.flexbox` and `.flexbox__item`

Flexboxes should be wrapped in the `.flexbox` class with each child wrapped in
the `.flexbox__item` class. Below is a basic implementation:

```html
<div class="flexbox">
  <div class="flexbox__item"><div class="doc-box">One cell</div></div>
  <div class="flexbox__item"><div class="doc-box doc-box--large">Two cell</div></div>
</div>
```

#### `.flexbox__item--collapse`

A modifier on a flexbox cell to make it collapse to fit its inner content instead
of expanded to fill the rest of the available space.

```html
<div class="flexbox">
  <div class="flexbox__item"><div class="doc-box">One cell</div></div>
  <div class="flexbox__item flexbox__item--collapse"><div class="doc-box doc-box--large">Two cell</div></div>
</div>
```

#### `.flexbox--vertical`

A modified flexbox that allows for vertical flexing.

```html
<div class="flexbox flexbox--vertical" style="height: 200px;">
  <div class="flexbox__item doc-box--highlight"><div class="doc-box">One cell</div></div>
  <div class="flexbox__item flexbox__item--collapse doc-box--highlight"><div class="doc-box">Two cell</div></div>
</div>
```
*/
/*------------------------------------*    $FLEXBOX
\*------------------------------------*/
/**
 * Until we can utilise flexbox natively we can kinda, sorta, attempt to emulate
 * it, in a way... e.g.:
 *
   <header class=flexbox>

       <div class=flexbox__item>
           <b>Welcome to</b>
       </div>

       <div class=flexbox__item>
           <img src="//csswizardry.com/inuitcss/img/logo.jpg" alt="inuit.css">
       </div>

   </header>
 *
 * We can also combine our grid system classes with `.flexbox__item` classes,
 * e.g.:
 *
   <div class=flexbox>
       <div class="flexbox__item  one-quarter">
       </div>
       <div class="flexbox__item  three-quarters">
       </div>
   </div>
 *
 * It’s pretty poorly named I’m afraid, but it works...
 *
 * Demo: jsfiddle.net/inuitcss/ufUh2
 *
 */
.flexbox {
  display: table;
  width: 100%; }

/**
 * Nasty hack to circumvent Modernizr conflicts.
 */
html.flexbox {
  display: block;
  width: auto; }

.flexbox__item {
  display: table-cell;
  vertical-align: middle; }

/**
 * Additions
 */
.flexbox__item--collapse {
  width: 1px; }

.flexbox--vertical {
  height: 100%; }
  .flexbox--vertical > .flexbox__item {
    display: table-row;
    vertical-align: top;
    height: 100%; }
  .flexbox--vertical > .flexbox__item--collapse {
    width: auto;
    height: 1px; }

/*doc
### Fixed Ratio

A way to create fixed aspect ratio elements. This is useful when you want
an element to have a responsive width and a set height but only know the
element's aspect ratio (e.g., responsive images and video).

#### `.fixed-ratio` and `.fixed-ratio__content`

The base wrapper class is `.fixed-ratio` which will set up a psuedo element that
provides the aspect ratio. Use the descendent class `.fixed-ratio__content` on
the content you'd like to fill the fixed ratio container.

#### `.fixed-ratio--{ratio}`

Modifier classes to change the aspect ratio. By default, we include `1-1`, `2-1`,
`4-3` and `16-9`. Alter this by changing the `$fixed-ratios` variable with a
mapping of label (`16-9`) to aspect ratio percentage (`56.25%`).

```html
<div class="fixed-ratio fixed-ratio--2-1 one-half">
  <div class="fixed-ratio__content doc-box"></div>
</div>
```
*/
.fixed-ratio, .avatar, .bit {
  display: block;
  position: relative; }
  .fixed-ratio:after, .avatar:after, .bit:after {
    display: block;
    width: 100%;
    padding-top: 100%;
    content: ""; }

.fixed-ratio__content, .avatar__image, .avatar > img, .bit__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fixed-ratio--1-1:after, .bit:after {
  padding-top: 100%; }

.fixed-ratio--2-1:after {
  padding-top: 50%; }

.fixed-ratio--3-2:after {
  padding-top: 66.67%; }

.fixed-ratio--4-3:after {
  padding-top: 75%; }

.fixed-ratio--16-9:after {
  padding-top: 56.25%; }

/*------------------------------------*    #BUTTONS
\*------------------------------------*/
/**
 * A simple button object.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 * 6. Fixes odd inner spacing in IE7.
 * 7. Subtract the border size from the padding value so that buttons do not
 *    grow larger as we add borders.
 */
.btn, .input-group__addon-btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  text-align: center;
  /* [4] */
  border: none;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  overflow: visible;
  /* [6] */
  padding: 15px 31px;
  /* [7] */
  background-color: #2473bd;
  border: 1px solid #2473bd; }
  .btn, .input-group__addon-btn, .btn:hover, .input-group__addon-btn:hover, .btn:active, .input-group__addon-btn:active, .btn:focus, .input-group__addon-btn:focus {
    text-decoration: none;
    /* [4] */
    color: #FFFFFF; }

/**
 * Fix a Firefox bug whereby `input type="submit"` gains 2px extra padding.
 */
.btn::-moz-focus-inner, .input-group__addon-btn::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*------------------------------------*    #TABLES
\*------------------------------------*/
.table {
  width: 100%; }

/**
 * Include v5 Objects
 *
 * - Grids replaced with the v6's Layout object
 * - Flexbox included in the helpers by default
 * - Arrows are included by default as part of the inuit mixins
 * - Beatons replaced with v6's Buttons object
 */
/*------------------------------------*    $BLOCK-LIST
\*------------------------------------*/
/**
 * Create big blocky lists of content, e.g.:
 *
   <ul class=block-list>
      <li>Foo</li>
      <li>Bar</li>
      <li>Baz</li>
      <li><a href=# class=block-list__link>Foo Bar Baz</a></li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 *
 */
.block-list,
.block-list > li {
  border: 0 solid #C6C6C6; }

.block-list {
  list-style: none;
  margin-left: 0;
  border-top-width: 1px; }
  .block-list > li {
    border-bottom-width: 1px;
    padding: 24px; }

.block-list__link {
  display: block;
  padding: 24px;
  margin: -24px; }

/*------------------------------------*   #UBER.BASE DEPENDENCIES
\*------------------------------------*/
/*
 * the assumes your retina image files are named with
 * @2x between the filename and the extension
 *
 * example: @include background-image-retina(logo, png, 200px, 100px);
 * where logo.png and logo@2x.png are the files you are targeting
 */
.clearfix:after, .cf:after, .nav:after, .list--horizontal:after, .top-bar:after, .secondary-nav:after, .breadcrumb:after, .tabs:after {
  content: "";
  display: table;
  clear: both; }

.fixed-ratio, .avatar, .bit {
  display: block;
  position: relative; }
  .fixed-ratio:after, .avatar:after, .bit:after {
    display: block;
    width: 100%;
    padding-top: 100%;
    content: ""; }

.fixed-ratio__content, .avatar__image, .avatar > img, .bit__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fixed-ratio--1-1:after, .bit:after {
  padding-top: 100%; }

.fixed-ratio--2-1:after {
  padding-top: 50%; }

.fixed-ratio--3-2:after {
  padding-top: 66.67%; }

.fixed-ratio--4-3:after {
  padding-top: 75%; }

.fixed-ratio--16-9:after {
  padding-top: 56.25%; }

.layout {
  font-size: 0; }
  .layout > .layout__item {
    font-size: 14px; }

/*------------------------------------*    $NAV
\*------------------------------------*/
/**
 * Nav abstraction as per: csswizardry.com/2011/09/the-nav-abstraction
 * When used on an `ol` or `ul`, this class throws the list into horizontal mode
 * e.g.:
 *
   <ul class=nav>
     <li><a href=#>Home</a></li>
     <li><a href=#>About</a></li>
     <li><a href=#>Portfolio</a></li>
     <li><a href=#>Contact</a></li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Vnph4
 *
 */
.nav, .list--horizontal, .top-bar, .secondary-nav, .breadcrumb, .tabs {
  list-style: none;
  margin-left: 0; }
  .nav > li, .list--horizontal > li, .top-bar > li, .secondary-nav > li, .breadcrumb > li, .tabs > li,
  .nav > li > a, .list--horizontal > li > a, .top-bar > li > a, .secondary-nav > li > a, .breadcrumb > li > a, .tabs > li > a {
    display: inline-block;
    *display: inline;
    zoom: 1; }

/**
 * `.nav--stacked` extends `.nav` and throws the list into vertical mode, e.g.:
 *
   <ul class="nav  nav--stacked">
     <li><a href=#>Home</a></li>
     <li><a href=#>About</a></li>
     <li><a href=#>Portfolio</a></li>
     <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--stacked > li, .side-nav > li {
  display: list-item; }
  .nav--stacked > li > a, .side-nav > li > a {
    display: block; }

/*doc
### Text

- `.text--center`
- `.text--left`
- `.text--right`

```html
<div class="text--left doc-box push-tiny--bottom">Some left-aligned text</div>
<div class="text--center doc-box push-tiny--bottom">Some center-aligned text</div>
<div class="text--right doc-box push-tiny--bottom">Some right-aligned text</div>
```
*/
.text--left {
  text-align: left !important; }

.text--right {
  text-align: right !important; }

.text--center {
  text-align: center !important; }

@media only screen and (max-width: 575px) {
  .palm-text--center {
    text-align: center !important; }
  .palm-text--left {
    text-align: left !important; }
  .palm-text--right {
    text-align: right !important; } }

@media only screen and (max-width: 768px) {
  .portable-text--center {
    text-align: center !important; }
  .portable-text--left {
    text-align: left !important; }
  .portable-text--right {
    text-align: right !important; } }

/*doc
- `.text--uppercase`
- `.text--lowercase`
- `.text--capitalize`
- `.text--none`

```html
<div class="doc-box">
  <span class="text--uppercase">Uppercase Text</span>
  <span class="text--lowercase">Lowercase Text</span>
  <span class="text--capitalize">capitalize text</span>
</div>
```
*/
.text--uppercase, .breadcrumb {
  text-transform: uppercase !important; }

.text--lowercase {
  text-transform: lowercase !important; }

.text--capitalize {
  text-transform: capitalize !important; }

.text--none {
  text-transform: none !important; }

/*doc
- `.text--break`
- `.text--nowrap`
- `.text--truncate`

```html
<div class="layout">
   <div class="layout__item one-third">
     <div class="doc-box text--nowrap">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vitae placerat enim. Ut sed porttitor mi, a consectetur massa.</div>
   </div>
   <div class="layout__item one-third">
     <div class="doc-box text--break">Loremipsumdolorsitamet,consecteturadipiscingelit.Nuncvitaeplaceratenim.Utsedporttitormi,aconsecteturmassa.</div>
   </div>
   <div class="layout__item one-third">
     <div class="doc-box text--truncate">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vitae placerat enim. Ut sed porttitor mi, a consectetur massa.</div>
   </div>
</div>
```
*/
.text--break {
  word-wrap: break-word !important; }

.text--nowrap {
  white-space: nowrap !important; }

.text--truncate, .address-picker input {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important; }

/*doc
- `.text--unstyled`

```html
<div class="layout">
   <div class="layout__item one-whole">
     <a href="/" class="doc-box text--unstyled">This link has no underline.</a>
   </div>
</div>
```
*/
.text--unstyled {
  text-decoration: none !important; }

/*doc
- `.flush--line-height`

```html
<div class="layout">
   <div class="layout__item one-whole">
     <h2 class="flush--line-height">This heading has a line height of 1.</h2>
   </div>
</div>
```
*/
.flush--line-height {
  line-height: 1 !important; }

.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless::-webkit-input-placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }

.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless::-moz-placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }

.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless:-ms-input-placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }

.transition, .bit--cta, .bit--cta__link__icon:before, .btn, .input-group__addon-btn, .btn--gradient, .btn-group__item, .btn-group__button--primary, .handle, .handle:before, .footer__item .footer__item__link, .text-input, .icon-input input, .select select, .text-input--borderless::placeholder, .select:after, .checkbox:before, .radio:before, .checkbox:after, .radio:after, .top-bar__item a, .secondary-nav__item a, .header__item, .side-nav__item, .side-nav__subitem, .side-nav__link, .accordion__item__link, .accordion__submenu__item__link, .breadcrumb__item a, .pagination__item, .panel--hoverable, .preloader, .dashboard-nav__item, .dashboard-nav__link, .dashboard-nav__icon, .dashboard-nav__submenu__link, .dashboard-subnav__item, .dashboard-subnav__link, .tabs__link, .tabs__item a, .modal, .modal.animate, .modal.animate .modal__content, .modal.animate .modal__content--container, .modal__content, .modal__content--container, .modal__close {
  -webkit-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }

.transition--slow {
  -webkit-transition: all 600ms ease !important;
  transition: all 600ms ease !important; }

.transition--fast, .switch:before, .switch:after {
  -webkit-transition: all 150ms ease !important;
  transition: all 150ms ease !important; }

/*------------------------------------*    #SUPERFINE UI TOOLKIT
\*------------------------------------*/
.alert, .toast {
  background-color: #2473bd;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  padding: 16px 30px 16px 24px;
  position: relative; }
  .alert .icon, .toast .icon {
    color: #FFFFFF; }

.alert--positive, .toast--positive {
  background-color: #629A41; }

.alert--negative, .toast--negative {
  background-color: #CA3B27; }

.alert--warning, .toast--warning {
  background-color: #ECAB20; }

.alert__link, .toast .text-link {
  color: #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
  font-weight: 500; }
  .alert__link:hover, .toast .text-link:hover {
    text-decoration: none; }

.close {
  float: right;
  position: absolute;
  top: 16px;
  right: 16px; }

.alert-inline {
  background-color: #dff7f8;
  color: #494949;
  font-size: 12px;
  padding: 16px 30px 16px 24px;
  border-radius: 0px;
  border-left: solid 4px #2473bd;
  position: relative; }
  .alert-inline .strong, .alert-inline .icon, .alert-inline .text-link {
    color: #2473bd; }
  .alert-inline .text-link {
    font-weight: 500; }
  .alert-inline .strong {
    font-weight: 600; }

.alert-inline--positive {
  background-color: #F3F9ED;
  border-left: solid 4px #629A41; }
  .alert-inline--positive .strong, .alert-inline--positive .icon, .alert-inline--positive .text-link {
    color: #629A41; }
  .alert-inline--positive .text-link:hover {
    border-color: #629A41; }

.alert-inline--negative {
  background-color: #FEEFEB;
  border-left: solid 4px #CA3B27; }
  .alert-inline--negative .strong, .alert-inline--negative .icon, .alert-inline--negative .text-link {
    color: #CA3B27; }
  .alert-inline--negative .text-link:hover {
    border-color: #CA3B27; }

.alert-inline--warning {
  background-color: #FEFAE7;
  border-left: solid 4px #ECAB20; }
  .alert-inline--warning .strong, .alert-inline--warning .icon, .alert-inline--warning .text-link {
    color: #ECAB20; }
  .alert-inline--warning .text-link:hover {
    border-color: #ECAB20; }

.strong {
  font-weight: 600; }

.toast {
  padding: 18px 24px;
  position: fixed;
  width: 350px; }
  @media only screen and (max-width: 575px) {
    .toast {
      width: 100%; } }
  .toast .close {
    top: 8px;
    right: 12px; }
  .toast .text-link:hover {
    border-color: #FFFFFF; }

.toast--top-left {
  top: 40px;
  left: 40px; }

.toast--top-right {
  top: 40px;
  right: 40px; }

.toast--bottom-right {
  bottom: 40px;
  right: 40px; }

.toast--bottom-left {
  bottom: 40px;
  left: 40px; }

.avatar--small {
  width: 32px;
  height: 32px; }
  .avatar--small .icon_profile {
    font-size: 32px;
    margin-top: 4px; }

.avatar--medium {
  width: 60px;
  height: 60px; }
  .avatar--medium .icon_profile {
    font-size: 60px;
    margin-top: 8px; }

.avatar--large {
  width: 100px;
  height: 100px; }
  .avatar--large .icon_profile {
    font-size: 100px;
    margin-top: 13px; }

.avatar__image, .avatar > img {
  border-radius: 50%; }

.avatar--blank, .avatar--initials {
  background: #C6C6C6;
  border-radius: 50%;
  overflow: hidden; }
  .avatar--blank .icon_profile, .avatar--initials .icon_profile {
    color: #F1F1F1; }

.avatar--initials {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .avatar--initials:after {
    width: 0; }

.avatar--initials__item {
  color: #F8F8F9; }

.bit {
  width: 18vw;
  background-color: #000000;
  color: #939393;
  line-height: 2vw;
  font-size: 1.6vw;
  font-weight: 500; }
  @media only screen and (max-width: 575px) {
    .bit {
      width: 160px;
      height: 160px;
      font-size: 14px;
      line-height: 20px;
      font-weight: 600; } }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .bit {
      width: 24vw;
      font-size: 2.5vw;
      line-height: 3.2vw; } }
  @media only screen and (min-width: 1281px) {
    .bit {
      width: 256px;
      font-size: 24px;
      line-height: 32px; } }

.bit__content {
  padding: 12.5%; }
  @media only screen and (min-width: 1281px) {
    .bit__content {
      padding: 32px; } }

.bit__logo {
  position: absolute;
  font-size: 1.4vw;
  bottom: 12.5%;
  right: 12.5%;
  color: #FFFFFF; }
  @media only screen and (max-width: 575px) {
    .bit__logo {
      font-size: 12px; } }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .bit__logo {
      font-size: 2vw; } }
  @media only screen and (min-width: 1281px) {
    .bit__logo {
      font-size: 20px; } }

.bit--logo, .bit--lockup {
  width: 12vw; }
  @media only screen and (max-width: 575px) {
    .bit--logo, .bit--lockup {
      width: 96px;
      height: 96px; } }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .bit--logo, .bit--lockup {
      width: 17vw; } }
  @media only screen and (min-width: 1281px) {
    .bit--logo, .bit--lockup {
      width: 160px;
      height: 160px;
      padding: 20px; } }

.bit--logo .bit__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.bit--logo__logo {
  color: #FFFFFF; }
  @media only screen and (min-width: 1281px) {
    .bit--logo__logo {
      font-size: 20px; } }

.bit--lockup__right, .bit--lockup__left {
  position: absolute;
  bottom: 10%;
  width: 75%; }
  @media only screen and (min-width: 1281px) {
    .bit--lockup__right, .bit--lockup__left {
      line-height: 24px;
      font-size: 20px; } }
  @media only screen and (max-width: 575px) {
    .bit--lockup__right, .bit--lockup__left {
      line-height: 16px; } }

.bit--lockup__right {
  right: 12.5%;
  text-align: right; }

.bit--lockup__left {
  left: 12.5%;
  text-align: left; }

.bit--lockup__logo {
  position: absolute;
  top: 12.5%;
  left: 12.5%;
  font-size: 1.3vw;
  color: #FFFFFF; }
  @media only screen and (max-width: 575px) {
    .bit--lockup__logo {
      font-size: 12px; } }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .bit--lockup__logo {
      font-size: 2vw; } }
  @media only screen and (min-width: 1281px) {
    .bit--lockup__logo {
      font-size: 18px; } }

.bit--white {
  background-color: #FFFFFF;
  color: #000000; }
  .bit--white .icon_uber {
    color: #000000; }

.bit--cta {
  background-color: #2473bd;
  color: #FFFFFF; }
  .bit--cta:hover {
    background-color: #2066a8; }
    .bit--cta:hover .bit--cta__link__icon:before {
      margin-right: -4px;
      margin-left: 4px; }

.bit--cta__link {
  position: absolute;
  right: 12.5%;
  bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 575px) {
    .bit--cta__link {
      left: 12.5%;
      right: 0;
      padding-right: 12.5%; } }
  @media only screen and (min-width: 1281px) {
    .bit--cta__link {
      right: 32px; } }

.bit--cta__link__text {
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 1.4vw; }
  @media only screen and (max-width: 575px) {
    .bit--cta__link__text {
      font-size: 14px; } }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .bit--cta__link__text {
      font-size: 2.5vw; } }
  @media only screen and (min-width: 1281px) {
    .bit--cta__link__text {
      font-size: 20px; } }

.bit--cta__link__text + .bit--cta__link__icon {
  font-size: 2vw; }
  @media only screen and (max-width: 575px) {
    .bit--cta__link__text + .bit--cta__link__icon {
      font-size: 20px;
      position: static; } }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .bit--cta__link__text + .bit--cta__link__icon {
      font-size: 3.2vw; } }
  @media only screen and (min-width: 1281px) {
    .bit--cta__link__text + .bit--cta__link__icon {
      font-size: 36px; } }

.bit--cta__link__icon {
  font-size: 3vw; }
  @media only screen and (max-width: 575px) {
    .bit--cta__link__icon {
      font-size: 32px;
      position: absolute;
      right: 12.5%;
      bottom: 10%; } }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .bit--cta__link__icon {
      font-size: 5vw; } }
  @media only screen and (min-width: 1281px) {
    .bit--cta__link__icon {
      font-size: 52px; } }

@media only screen and (max-width: 575px) {
  .palm-bit--full {
    width: 100%; } }

.palm-bit--full .bit__content {
  padding: 24px; }

.palm-bit--full .bit--cta__link {
  bottom: 24px; }

.btn, .input-group__addon-btn {
  font-family: ff-clan-web-pro, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 0px;
  border: 2px solid #2473bd;
  text-transform: uppercase;
  outline: none;
  line-height: 18px;
  position: relative; }
  .btn:hover, .input-group__addon-btn:hover, .btn:focus, .input-group__addon-btn:focus, .btn:active, .input-group__addon-btn:active {
    background-color: #1d5c96;
    border-color: #1d5c96; }
  .btn .preloader, .input-group__addon-btn .preloader {
    width: 18px;
    height: 18px; }
  .btn.btn--inactive:hover, .btn--inactive.input-group__addon-btn:hover, .btn.btn--inactive:focus, .btn--inactive.input-group__addon-btn:focus, .btn.btn--inactive:active, .btn--inactive.input-group__addon-btn:active, .btn.btn[disabled]:hover, [disabled].input-group__addon-btn:hover, .btn.btn[disabled]:focus, [disabled].input-group__addon-btn:focus, .btn.btn[disabled]:active, [disabled].input-group__addon-btn:active {
    background-color: #2473bd;
    border-color: #2473bd;
    color: #FFFFFF; }

.btn__icon {
  margin-right: 24px;
  line-height: 0;
  margin-top: -1px; }

.btn--secondary, .btn--outline {
  background-color: transparent;
  border-color: #2473bd;
  color: #2473bd;
  border-width: 2px; }
  .btn--secondary:hover, .btn--secondary:focus, .btn--secondary:active, .btn--outline:hover, .btn--outline:focus, .btn--outline:active {
    background-color: #2473bd;
    color: #FFFFFF;
    border-color: #2473bd; }
  .btn--secondary.btn--inactive:hover, .btn--secondary.btn--inactive:focus, .btn--secondary.btn--inactive:active, .btn--secondary.btn[disabled]:hover, .btn--secondary[disabled].input-group__addon-btn:hover, .btn--secondary.btn[disabled]:focus, .btn--secondary[disabled].input-group__addon-btn:focus, .btn--secondary.btn[disabled]:active, .btn--secondary[disabled].input-group__addon-btn:active, .btn--outline.btn--inactive:hover, .btn--outline.btn--inactive:focus, .btn--outline.btn--inactive:active, .btn--outline.btn[disabled]:hover, .btn--outline[disabled].input-group__addon-btn:hover, .btn--outline.btn[disabled]:focus, .btn--outline[disabled].input-group__addon-btn:focus, .btn--outline.btn[disabled]:active, .btn--outline[disabled].input-group__addon-btn:active {
    background-color: transparent;
    border-color: #2473bd;
    color: #2473bd; }
  .btn--secondary.btn--positive, .btn--outline.btn--positive {
    color: #629A41;
    background-color: transparent; }
    .btn--secondary.btn--positive:hover, .btn--outline.btn--positive:hover {
      background-color: #629A41;
      color: #FFFFFF; }
  .btn--secondary.btn--negative, .btn--outline.btn--negative {
    color: #CA3B27;
    background-color: transparent; }
    .btn--secondary.btn--negative:hover, .btn--outline.btn--negative:hover {
      background-color: #CA3B27;
      color: #FFFFFF; }

.btn--tertiary {
  background-color: #E5E5E4;
  border-color: #E5E5E4;
  color: #939393; }
  .btn--tertiary:hover, .btn--tertiary:focus, .btn--tertiary:active {
    background-color: #cececd;
    border-color: #cececd;
    color: #939393; }
  .btn--tertiary.btn--inactive:hover, .btn--tertiary.btn--inactive:focus, .btn--tertiary.btn--inactive:active, .btn--tertiary.btn[disabled]:hover, .btn--tertiary[disabled].input-group__addon-btn:hover, .btn--tertiary.btn[disabled]:focus, .btn--tertiary[disabled].input-group__addon-btn:focus, .btn--tertiary.btn[disabled]:active, .btn--tertiary[disabled].input-group__addon-btn:active {
    background-color: #E5E5E4;
    border-color: #E5E5E4;
    color: #939393; }

.btn--reverse {
  background-color: #FFFFFF;
  color: #2473bd;
  border-color: #FFFFFF; }
  .btn--reverse:hover, .btn--reverse:focus, .btn--reverse:active {
    opacity: 0.9;
    background-color: #FFFFFF;
    color: #2473bd;
    border-color: #FFFFFF; }
  .btn--reverse.btn--inactive:hover, .btn--reverse.btn--inactive:focus, .btn--reverse.btn--inactive:active, .btn--reverse.btn[disabled]:hover, .btn--reverse[disabled].input-group__addon-btn:hover, .btn--reverse.btn[disabled]:focus, .btn--reverse[disabled].input-group__addon-btn:focus, .btn--reverse.btn[disabled]:active, .btn--reverse[disabled].input-group__addon-btn:active {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #2473bd; }

.btn--reverse-outline {
  background-color: transparent;
  border-color: #2473bd;
  color: #2473bd;
  border-width: 2px; }
  .btn--reverse-outline:hover, .btn--reverse-outline:focus, .btn--reverse-outline:active {
    background-color: #2473bd;
    color: #FFFFFF;
    border-color: #2473bd; }
  .btn--reverse-outline.btn--inactive:hover, .btn--reverse-outline.btn--inactive:focus, .btn--reverse-outline.btn--inactive:active, .btn--reverse-outline.btn[disabled]:hover, .btn--reverse-outline[disabled].input-group__addon-btn:hover, .btn--reverse-outline.btn[disabled]:focus, .btn--reverse-outline[disabled].input-group__addon-btn:focus, .btn--reverse-outline.btn[disabled]:active, .btn--reverse-outline[disabled].input-group__addon-btn:active {
    background-color: transparent;
    border-color: #2473bd;
    color: #2473bd; }

.btn--positive {
  background-color: #629A41;
  border-color: #629A41; }
  .btn--positive:hover, .btn--positive:focus, .btn--positive:active {
    background-color: #4d7a33;
    border-color: #4d7a33; }
  .btn--positive.btn--inactive:hover, .btn--positive.btn--inactive:focus, .btn--positive.btn--inactive:active, .btn--positive.btn[disabled]:hover, .btn--positive[disabled].input-group__addon-btn:hover, .btn--positive.btn[disabled]:focus, .btn--positive[disabled].input-group__addon-btn:focus, .btn--positive.btn[disabled]:active, .btn--positive[disabled].input-group__addon-btn:active {
    background-color: #629A41;
    border-color: #629A41;
    color: #FFFFFF; }

.btn--negative {
  background-color: #CA3B27;
  border-color: #CA3B27; }
  .btn--negative:hover, .btn--negative:focus, .btn--negative:active {
    background-color: #a43020;
    border-color: #a43020; }
  .btn--negative.btn--inactive:hover, .btn--negative.btn--inactive:focus, .btn--negative.btn--inactive:active, .btn--negative.btn[disabled]:hover, .btn--negative[disabled].input-group__addon-btn:hover, .btn--negative.btn[disabled]:focus, .btn--negative[disabled].input-group__addon-btn:focus, .btn--negative.btn[disabled]:active, .btn--negative[disabled].input-group__addon-btn:active {
    background-color: #CA3B27;
    border-color: #CA3B27;
    color: #FFFFFF; }

.btn--arrow {
  text-align: left;
  padding: 11px 40px 11px 20px; }
  .btn--arrow .icon_right-arrow-thin {
    font-size: 1.4em;
    -webkit-transition: margin 400ms ease;
    transition: margin 400ms ease;
    position: absolute;
    right: 20px;
    top: calc(50% - 10px); }
  .btn--arrow.btn--small .icon_right-arrow-thin {
    font-size: 1.6em; }
  .btn--arrow.btn--tiny .icon_right-arrow-thin {
    font-size: 1.5em; }
  .btn--arrow:hover .icon_right-arrow-thin {
    margin-right: -4px;
    margin-left: 4px; }

.btn--split {
  margin-right: 1px;
  float: left; }
  .btn--split.btn--outline {
    margin-right: -2px; }

.btn--inactive, .btn[disabled], [disabled].input-group__addon-btn {
  opacity: 0.6;
  cursor: default; }

.btn--link {
  background-color: transparent;
  font-family: ff-clan-web-pro, "Helvetica Neue", Helvetica, sans-serif;
  color: #2473bd;
  border: 2px solid transparent;
  text-transform: uppercase; }
  .btn--link:hover, .btn--link:focus, .btn--link:active {
    background-color: transparent;
    text-decoration: underline;
    color: #2473bd;
    border: 2px solid transparent; }
  .btn--link.btn--inactive:hover, .btn--link.btn--inactive:focus, .btn--link.btn--inactive:active, .btn--link.btn[disabled]:hover, .btn--link[disabled].input-group__addon-btn:hover, .btn--link.btn[disabled]:focus, .btn--link[disabled].input-group__addon-btn:focus, .btn--link.btn[disabled]:active, .btn--link[disabled].input-group__addon-btn:active {
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    color: #2473bd; }

.btn--cta {
  padding: 0;
  background-color: transparent;
  border: transparent;
  color: #2473bd;
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .btn--cta:hover, .btn--cta:focus, .btn--cta:active {
    color: #1d5c96;
    background-color: transparent;
    border: transparent; }
  .btn--cta.btn--inactive:hover, .btn--cta.btn--inactive:focus, .btn--cta.btn--inactive:active, .btn--cta.btn[disabled]:hover, .btn--cta[disabled].input-group__addon-btn:hover, .btn--cta.btn[disabled]:focus, .btn--cta[disabled].input-group__addon-btn:focus, .btn--cta.btn[disabled]:active, .btn--cta[disabled].input-group__addon-btn:active {
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    color: #2473bd; }
  .btn--cta .icon_right-arrow {
    -webkit-transition: left 400ms ease;
    transition: left 400ms ease;
    position: relative;
    left: 0px; }
  .btn--cta:hover .icon_right-arrow {
    left: 4px; }

.btn--bit {
  padding: 13px;
  font-size: 28px; }
  @media only screen and (max-width: 768px) {
    .btn--bit {
      padding: 10px;
      font-size: 24px; } }

.btn--tiny {
  font-family: ff-clan-web-pro, "Helvetica Neue", Helvetica, sans-serif;
  padding: 3px 10px 2px;
  font-size: 12px;
  line-height: 1.6; }
  .btn--tiny .preloader {
    width: 19px;
    height: 19px;
    border-width: 1px; }

.btn--small {
  font-family: ff-clan-web-pro, "Helvetica Neue", Helvetica, sans-serif;
  padding: 7px 14px;
  font-size: 12px; }
  .btn--small .preloader {
    width: 18px;
    height: 18px; }

.btn--large {
  padding: 15px 26px;
  font-size: 16px; }
  .btn--large .preloader {
    width: 18px;
    height: 18px; }

.btn--huge {
  padding: 1.25em 3em;
  font-size: 18px; }

.btn--full {
  width: 100%; }

@media only screen and (max-width: 575px) {
  .palm-btn--full {
    width: 100%; } }

@media only screen and (max-width: 768px) {
  .portable-btn--full {
    width: 100%; } }

.btn--gradient {
  box-shadow: 0 2px 0 #D6D6D5;
  background: #2473bd;
  background: linear-gradient(to bottom, #17b8be 0%, #226db5 100%);
  background: -webkit-linear-gradient(top, #17b8be 0%, #226db5 100%);
  background: -ms-linear-gradient(top, #17b8be 0%, #226db5 100%); }
  .btn--gradient:hover {
    background: linear-gradient(to bottom, #47d3d9 0%, #2473bd 100%);
    background: -webkit-linear-gradient(top, #47d3d9 0%, #2473bd 100%);
    background: -ms-linear-gradient(top, #47d3d9 0%, #2473bd 100%); }

.btn--social {
  background: transparent;
  border: transparent; }
  .btn--social .icon {
    line-height: 2;
    color: #2473bd; }
  .btn--social:hover {
    background: transparent;
    border: transparent; }
    .btn--social:hover .icon {
      color: #2473bd; }

.btn-group {
  clear: both;
  display: inline-block;
  border: 1px solid #E5E5E4;
  border-radius: 0px;
  font-size: 0;
  /* [1] */ }

.btn-group--small {
  margin-bottom: 24px; }

.btn-group__item {
  border-right: 1px solid #E5E5E4;
  font-size: 14px;
  /* [1] */
  float: left;
  line-height: 1.38;
  font-weight: 500;
  margin-bottom: 0;
  padding: 11px 18px 12px; }
  .btn-group__item:hover {
    background-color: #F8F8F9; }
  .btn-group__item:focus, .btn-group__item:active, .btn-group__item.active, .btn-group__item.active:hover button {
    background-color: #F1F1F1; }
  .btn-group__item:last-child {
    border-right: 0; }
  .btn-group__item.active button:focus {
    background-color: transparent;
    border: 0;
    color: inherit; }

.btn-group__item--small {
  font-size: 12px;
  padding: 5px 11px; }

.btn-group__item--large {
  font-size: 16px;
  padding: 14px 24px; }

.btn-group__item--disabled {
  color: #A6A5A5;
  cursor: default; }
  .btn-group__item--disabled:hover, .btn-group__item--disabled:focus {
    background-color: #FFFFFF; }

.btn-group__button {
  color: #717171;
  padding: 8px 18px;
  margin:  -9px -18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  outline: none; }
  .btn-group__button:hover, .btn-group__button:active, .btn-group__button.active {
    color: #717171;
    border: 0; }

.btn-group__button--disabled {
  color: #A6A5A5;
  cursor: default; }
  .btn-group__button--disabled:hover, .btn-group__button--disabled:active, .btn-group__button--disabled.active {
    color: #A6A5A5;
    background: #FFFFFF; }

.btn-group--primary {
  border-color: #226db5; }

.btn-group__button--primary {
  background: #2473bd;
  color: #FFFFFF; }
  .btn-group__button--primary:active {
    color: #FFFFFF; }

.btn-group__item--primary {
  border-color: #226db5; }
  .btn-group__item--primary:hover button:hover {
    color: #FFFFFF;
    background-color: #17b8be; }

.bg-black {
  background-color: #000000 !important;
  color: #FFFFFF !important; }

.bg-uber-black {
  background-color: #000000 !important;
  color: #FFFFFF !important; }

.bg-uber-black-95 {
  background-color: #1C1B1B !important;
  color: #FFFFFF !important; }

.bg-uber-black-90 {
  background-color: #282727 !important;
  color: #FFFFFF !important; }

.bg-uber-black-80 {
  background-color: #494949 !important;
  color: #FFFFFF !important; }

.bg-uber-black-60 {
  background-color: #717171 !important;
  color: #FFFFFF !important; }

.bg-uber-black-40 {
  background-color: #939393 !important;
  color: #FFFFFF !important; }

.bg-uber-white-120 {
  background-color: #A6A5A5 !important;
  color: #FFFFFF !important; }

.bg-uber-white {
  background-color: #C0C0C0 !important; }

.bg-uber-white-80 {
  background-color: #C6C6C6 !important; }

.bg-uber-white-60 {
  background-color: #D6D6D5 !important; }

.bg-uber-white-40 {
  background-color: #E5E5E4 !important; }

.bg-uber-white-20 {
  background-color: #F1F1F1 !important; }

.bg-uber-white-10 {
  background-color: #F8F8F9 !important; }

.bg-white {
  background-color: #FFFFFF !important; }

.bg-uber-blue-120 {
  background-color: #226db5 !important;
  color: #FFFFFF !important; }

.bg-uber-blue {
  background-color: #2473bd !important;
  color: #FFFFFF !important; }

.bg-uber-blue-80 {
  background-color: #17b8be !important;
  color: #FFFFFF !important; }

.bg-uber-blue-60 {
  background-color: #47d3d9 !important; }

.bg-uber-blue-40 {
  background-color: #a3e9ec !important; }

.bg-uber-blue-20 {
  background-color: #caf2f4 !important; }

.bg-uber-blue-10 {
  background-color: #e8fafa !important; }

.bg-green {
  background-color: #629A41 !important;
  color: #FFFFFF !important; }

.bg-orange {
  background-color: #CA3B27 !important;
  color: #FFFFFF !important; }

.bg-yellow {
  background-color: #ECAB20 !important;
  color: #FFFFFF !important; }

.bg-green-20 {
  background-color: #F3F9ED !important; }

.bg-orange-20 {
  background-color: #FEEFEB !important; }

.bg-yellow-20 {
  background-color: #FEFAE7 !important; }

.bg-transparent {
  background-color: transparent !important; }

.text-black {
  color: #000000 !important; }

.text-uber-black {
  color: #000000 !important; }

.text-uber-black-95 {
  color: #1C1B1B !important; }

.text-uber-black-90 {
  color: #282727 !important; }

.text-uber-black-80 {
  color: #494949 !important; }

.text-uber-black-60 {
  color: #717171 !important; }

.text-uber-black-40 {
  color: #939393 !important; }

.text-uber-white-120 {
  color: #A6A5A5 !important; }

.text-uber-white {
  color: #C0C0C0 !important; }

.text-uber-white-80 {
  color: #C6C6C6 !important; }

.text-uber-white-60 {
  color: #D6D6D5 !important; }

.text-uber-white-40 {
  color: #E5E5E4 !important; }

.text-uber-white-20 {
  color: #F1F1F1 !important; }

.text-uber-white-10 {
  color: #F8F8F9 !important; }

.text-white {
  color: #FFFFFF !important; }

.text-uber-blue-120 {
  color: #226db5 !important; }

.text-uber-blue {
  color: #2473bd !important; }

.text-uber-blue-80 {
  color: #17b8be !important; }

.text-uber-blue-60 {
  color: #47d3d9 !important; }

.text-uber-blue-40 {
  color: #a3e9ec !important; }

.text-uber-blue-20 {
  color: #caf2f4 !important; }

.text-uber-blue-10 {
  color: #e8fafa !important; }

.text-green {
  color: #629A41 !important; }

.text-orange {
  color: #CA3B27 !important; }

.text-yellow {
  color: #ECAB20 !important; }

.datepicker__cal__label:hover, .datepicker__cal__label.active, .datepicker__cal__label.datepicker__cal__label--range-start, .datepicker__cal__label.datepicker__cal__label--range-end {
  background-color: #2473bd;
  color: #FFFFFF; }

.datepicker__arrow-icon.disabled, .datepicker__cal__label.disabled, .datepicker__cal__label.disabled:hover {
  cursor: default; }

.datepicker {
  width: 300px; }

.datepicker__header {
  height: 40px;
  background-color: #F1F1F1;
  width: 298px; }

.datapicker__title {
  height: 40px;
  line-height: 40px; }

.datepicker__arrow-icon {
  color: #A6A5A5;
  width: 40px;
  height: 40px;
  line-height: 40px; }

.datepicker__arrow-icon--prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.datepicker__arrow-icon--next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg); }

.datepicker__cal {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  width: 298px; }

.datepicker__cal__body {
  border-top: 15px solid transparent;
  border-bottom: 10px solid transparent; }

.datepicker__cal__row {
  border-top: none;
  border-bottom: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent; }
  .datepicker__cal__row:hover .datepicker__cal__cell {
    background-color: transparent; }

.datepicker__cal__cell {
  padding: 5px 0; }
  .datepicker__cal__cell:first-child {
    margin-right: 5px; }
    .datepicker__cal__cell:first-child.active .datepicker__cal__label {
      border-top-left-radius: 22px;
      border-bottom-left-radius: 22px; }
  .datepicker__cal__cell:last-child {
    margin-left: 5px; }
    .datepicker__cal__cell:last-child.active .datepicker__cal__label {
      border-top-right-radius: 22px;
      border-bottom-right-radius: 22px; }

.datepicker__cal__header {
  background-color: #F1F1F1;
  display: table-header-group; }

.datepicker__cal__header__row {
  border-bottom: none; }

.datepicker__cal__label {
  display: inline-block;
  font-size: 12px;
  height: 22px;
  width: 22px;
  border-radius: 22px;
  padding: 2px; }
  .datepicker__cal__label.active {
    width: 100%;
    border-radius: 0; }
  .datepicker__cal__label.disabled:hover {
    background-color: #FFFFFF; }
  .datepicker__cal__label.datepicker__cal__label--range-start {
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px; }
    .datepicker__cal__label.datepicker__cal__label--range-start:hover {
      border-top-left-radius: 22px;
      border-bottom-left-radius: 22px; }
    .datepicker__cal__label.datepicker__cal__label--range-start.range {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .datepicker__cal__label.datepicker__cal__label--range-start.datepicker__cal__label--range-end {
      width: 22px; }
  .datepicker__cal__label.datepicker__cal__label--range-end {
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px; }
    .datepicker__cal__label.datepicker__cal__label--range-end:hover {
      border-top-right-radius: 22px;
      border-bottom-right-radius: 22px; }
    .datepicker__cal__label.datepicker__cal__label--range-end.range {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

.datepicker__cal__label--today {
  background-color: #F1F1F1;
  border-radius: 22px; }

@media only screen and (max-width: 575px) {
  table tbody td, .table tbody td {
    display: table-cell; } }

.handle {
  border: 1px solid #D6D6D5;
  border-radius: 20px;
  margin: 0 auto; }
  .handle:before {
    content: "...";
    font-size: 26px;
    text-align: center;
    position: absolute;
    color: #D6D6D5; }
  .handle:hover {
    border: 1px solid #A6A5A5; }
    .handle:hover:before {
      color: #A6A5A5; }
  .handle:active {
    border: 1px solid #939393; }
    .handle:active:before {
      color: #939393; }

.handle--horizontal {
  height: 9px;
  width: 70px;
  cursor: row-resize;
  top: -4px; }
  .handle--horizontal:before {
    top: -5px;
    width: 70px;
    line-height: 0px; }

.handle--vertical {
  height: 70px;
  width: 9px;
  cursor: col-resize;
  left: -4px; }
  .handle--vertical:before {
    left: -10px;
    height: 70px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

.extended-footer {
  background: #000000;
  color: #FFFFFF; }

.extended-footer__link {
  color: #FFFFFF; }
  .extended-footer__link:hover {
    color: #C6C6C6; }

.extended-footer__hr {
  opacity: 0.3; }

.extended-footer__btn-width {
  max-width: 190px; }

.extended-footer__logo {
  font-size: 20px; }

.language-selector-icon {
  width: 28px; }
  .language-selector-icon i {
    font-size: 20px; }

.language-selector {
  width: 210px; }

.select.language-selector__select select {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px; }

.select.language-selector__select:after {
  color: #FFFFFF; }

.extended-footer__list li {
  margin: 0px;
  padding: 6px 0px; }

.extended-footer__social {
  position: relative;
  top: -34px;
  height: 0px; }
  @media only screen and (max-width: 575px) {
    .extended-footer__social {
      top: 0px;
      height: 40px;
      margin-top: 16px; } }

.footer {
  background: #000000;
  height: 76px;
  width: 100%;
  position: relative; }

.footer__list {
  margin-top: 26px;
  margin-bottom: 0; }
  .footer__list.float--left {
    margin-left: 32px; }
    .footer__list.float--left .footer__item {
      margin-right: 24px; }
  .footer__list.float--right {
    margin-right: 32px; }
    .footer__list.float--right .footer__item {
      margin-left: 24px; }
  .footer__list.footer__list--social .footer__item {
    margin-left: 12px; }

.footer__list--social {
  margin-top: 26px; }
  .footer__list--social .footer__item:before {
    content: "";
    margin-right: 0; }

.footer__item {
  float: left;
  font-size: 14px; }
  .footer__item .footer__item__link {
    color: #C0C0C0; }
    .footer__item .footer__item__link:hover {
      color: #FFFFFF; }
  .footer__item:first-child::before {
    content: "";
    margin-right: 0; }
  .footer__item:before {
    content: "\2022";
    margin-right: 24px;
    font-size: 10px;
    color: #717171;
    position: relative;
    bottom: 2px; }
  @media only screen and (max-width: 768px) {
    .footer__item {
      display: inline; } }

.form {
  max-width: 100%; }

.form--full {
  max-width: none; }

.form-group {
  margin-bottom: 24px; }

input[type=search] {
  -webkit-appearance: none;
  box-sizing: border-box; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

.text-input, .icon-input input, .select select {
  width: 100%;
  padding: 8px 18px;
  font-size: 14px;
  margin-bottom: 24px;
  background: #FFFFFF;
  border: 1px solid #E5E5E4;
  border-radius: 0px;
  outline: none;
  color: #000000; }
  .text-input:hover, .icon-input input:hover, .select select:hover {
    border-color: #D6D6D5; }
  .text-input:focus, .icon-input input:focus, .select select:focus, .focus.text-input, .icon-input input.focus, .select select.focus {
    border-color: #2473bd; }
  .text-input:disabled, .icon-input input:disabled, .select select:disabled, .disabled.text-input, .icon-input input.disabled, .select select.disabled {
    background: #F8F8F9;
    color: #C6C6C6;
    cursor: default; }
    .text-input:disabled:hover, .icon-input input:disabled:hover, .select select:disabled:hover, .disabled.text-input:hover, .icon-input input.disabled:hover, .select select.disabled:hover {
      border-color: #E5E5E4; }

input::-webkit-input-placeholder {
  color: #A6A5A5; }

input::-moz-placeholder {
  color: #A6A5A5; }

input:-ms-input-placeholder {
  color: #A6A5A5; }

input::placeholder {
  color: #A6A5A5; }

.error, .error select {
  border-color: #CA3B27; }
  .error:focus, .error.focus, .error:hover, .error select:focus, .error select.focus, .error select:hover {
    box-shadow: none;
    border-color: #CA3B27; }

.error.select:after {
  color: #CA3B27; }

.error.select:hover:after {
  color: #CA3B27; }

.label.error {
  color: #CA3B27; }

.text-input, .icon-input input, .select select {
  height: 44px;
  background-clip: padding-box; }

.text-input--small, .select--small select {
  height: 28px;
  font-size: 12px;
  padding: 6px 10px;
  margin-bottom: 0; }

.text-input--large, .select--large select {
  height: 52px;
  font-size: 16px; }

.text-input--textarea {
  height: auto;
  padding: 8px 18px;
  resize: none; }

.text-input--textarea--small {
  height: auto;
  padding: 8px 10px;
  resize: none; }

.text-input--borderless {
  border: 0;
  padding: 0;
  background: transparent; }
  .text-input--borderless:hover::-webkit-input-placeholder {
    color: #717171; }
  .text-input--borderless:hover::-moz-placeholder {
    color: #717171; }
  .text-input--borderless:hover:-ms-input-placeholder {
    color: #717171; }
  .text-input--borderless:hover::placeholder {
    color: #717171; }
  .text-input--borderless:disabled {
    background: transparent; }

.input-group {
  position: relative; }

.input-group--addon {
  position: relative;
  display: table;
  margin-bottom: 24px;
  width: 100%; }
  .input-group--addon input {
    margin-bottom: 0px;
    display: table-cell; }

.input-group__addon, .input-group__addon-btn {
  top: 0;
  font-size: 14px;
  display: table-cell;
  border-radius: 0px 0 0 0px;
  margin-bottom: 0px;
  vertical-align: middle; }

.input-group__addon {
  background: #C6C6C6;
  border: 1px solid #C6C6C6;
  color: #494949;
  min-width: 52px;
  text-align: center;
  padding: 0 12px; }

.input-group__addon-btn {
  padding: 8px 18px;
  background: #2473bd;
  color: #FFFFFF;
  border-color: #2473bd; }
  @media only screen and (max-width: 575px) {
    .input-group__addon-btn {
      width: auto; } }

.input-group__addon-select {
  position: absolute;
  padding: 0; }
  .input-group__addon-select.right {
    right: 0; }
    .input-group__addon-select.right select {
      border-radius: 0 0px 0px 0; }
  .input-group__addon-select.left {
    left: 0; }
    .input-group__addon-select.left select {
      border-radius: 0px 0 0 0px; }

.input-group--small {
  height: 28px;
  font-size: 12px; }
  .input-group--small.left ~ input {
    padding-left: 52px; }
  .input-group--small.right ~ input {
    padding-left: 52px; }

.input-group__addon--small {
  font-size: 12px;
  min-width: 32px;
  padding: 0 4px; }

.input-group--large {
  height: 52px;
  font-size: 14px; }

.input-group__addon--large {
  min-width: 32px;
  padding: 0 24px; }

.input-group--stacked {
  margin-left: 0;
  list-style: none; }

.input-group--stacked__item {
  margin-bottom: 0; }
  .input-group--stacked__item:first-child input {
    border-radius: 0px 0px 0 0; }
  .input-group--stacked__item:last-child input {
    border-radius: 0 0 0px 0px;
    border-bottom: 1px solid #E5E5E4; }

.text-input--joined, .text-input--joined--bottom, .text-input--joined--right {
  position: relative;
  z-index: 9; }
  .text-input--joined:focus, .text-input--joined--bottom:focus, .text-input--joined--right:focus, .text-input--joined:active, .text-input--joined--bottom:active, .text-input--joined--right:active {
    z-index: 10;
    border-top-color: #2473bd; }
  .text-input--joined.error, .error.text-input--joined--bottom, .error.text-input--joined--right {
    z-index: 10;
    border-top-color: #CA3B27; }
  .text-input--joined ~ .icon, .text-input--joined--bottom ~ .icon, .text-input--joined--right ~ .icon {
    z-index: 10; }

.text-input--joined--bottom {
  position: relative;
  border-top-color: transparent;
  vertical-align: top; }

.text-input--joined--right {
  left: -1px;
  width: calc( 100% + 1px); }

select.text-input--joined--right, input.text-input--joined--right {
  width: calc( 100% + 1px); }

.text-input--stacked {
  margin-bottom: 0;
  border-bottom: 0;
  border-radius: 0; }

.icon-input input.error {
  border-color: #CA3B27; }
  .icon-input input.error + .icon {
    color: #CA3B27; }

.icon-input input.text-input--inline {
  border: 0;
  border-bottom: 1px solid #E5E5E4;
  background-color: transparent; }
  .icon-input input.text-input--inline:hover {
    border-bottom: 1px dashed #E5E5E4; }
  .icon-input input.text-input--inline:focus, .icon-input input.text-input--inline.focus {
    box-shadow: 0 0 0 0;
    border-bottom: dashed 1px #717171; }
  .icon-input input.text-input--inline.error {
    background: #FFFFFF;
    border-bottom: solid 1px #CA3B27; }
    .icon-input input.text-input--inline.error + .icon {
      color: #CA3B27; }
  .icon-input input.text-input--inline.disabled {
    cursor: default;
    opacity: 0.5;
    background: transparent; }
    .icon-input input.text-input--inline.disabled + .icon {
      color: #C6C6C6; }

.icon-input .icon-input__icon {
  position: absolute;
  top: 14px;
  color: #2473bd; }

.icon-input.right input {
  padding-right: 45px; }

.icon-input.right .icon-input__icon {
  right: 14px; }

.icon-input.left input {
  padding-left: 45px; }

.icon-input.left .icon-input__icon {
  margin-left: 14px; }

select {
  -webkit-appearance: none;
  -moz-appearance: none; }
  select::-ms-expand {
    display: none; }

.select {
  margin-bottom: 24px;
  position: relative; }
  .select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 8px 30px 8px 18px;
    text-indent: 0.01px;
    text-overflow: '';
    margin-bottom: 0; }
    .select select:hover {
      cursor: pointer; }
    .select select:disabled {
      cursor: auto; }
  .select:after {
    content: "▾";
    position: absolute;
    color: #2473bd;
    top: -1px;
    right: 15px;
    line-height: 44px;
    pointer-events: none;
    z-index: 1000; }
  .select.disabled:after {
    color: #C6C6C6; }

.select--small select {
  padding: 4px 10px; }

.select--small:after {
  line-height: 28px; }

.select--large:after {
  line-height: 52px; }

.select--primary select {
  background-color: #2473bd;
  color: #FFFFFF;
  border-color: #2473bd; }
  .select--primary select:hover, .select--primary select:focus, .select--primary select:active {
    /* TODO: we need $primary--80, etc */
    background-color: #17b8be;
    border-color: #17b8be; }

.select--primary:after {
  color: #FFFFFF; }

.select--secondary select {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000; }
  .select--secondary select:hover, .select--secondary select:focus, .select--secondary select:active {
    background-color: #494949;
    border-color: #494949; }

.select--secondary:after {
  color: #FFFFFF; }

.select--tertiary select {
  background-color: #E5E5E4;
  color: #717171;
  border-color: #C6C6C6; }
  .select--tertiary select:hover, .select--tertiary select:focus, .select--tertiary select:active {
    background-color: #F1F1F1;
    border-color: #D6D6D5;
    color: #717171; }

.select--tertiary:after {
  color: #717171; }

.select--borderless select {
  border: 0;
  padding: 0;
  background-color: transparent; }
  .select--borderless select:focus, .select--borderless select.focus {
    box-shadow: none;
    border-color: transparent; }

.select--borderless.error:hover:after {
  color: #CA3B27; }

.select--borderless.disabled select {
  background-color: transparent; }

.select--borderless.disabled:after {
  color: #C6C6C6; }

.select--borderless.disabled:hover:after {
  color: #C6C6C6; }

/**
 * [1]: Vertically align the checkbox and label text
 */
.checkbox-input, .radio-input {
  position: absolute;
  left: -500000px; }
  .checkbox-input:focus + label:before, .radio-input:focus + label:before {
    outline-color: #2473bd;
    outline-style: auto;
    outline-width: 5px; }

label.disabled, .label.disabled {
  color: #C6C6C6;
  cursor: default; }

.label--small {
  font-size: 10px; }

.label--inline, .checkbox, .radio {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  margin-bottom: 24px;
  line-height: 20px;
  vertical-align: middle;
  cursor: pointer; }
  @media only screen and (max-width: 768px) {
    .label--inline, .checkbox, .radio {
      padding-left: 49px;
      line-height: 25px; } }

.checkbox.error, .radio.error {
  color: #CA3B27; }
  .checkbox.error:hover:before, .radio.error:hover:before {
    border-color: #CA3B27; }

.checkbox:before, .radio:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border: 1px solid #E5E5E4;
  content: ""; }
  @media only screen and (max-width: 768px) {
    .checkbox:before, .radio:before {
      width: 25px;
      height: 25px; } }

.checkbox.error:before, .radio.error:before {
  border-color: #CA3B27; }

.checkbox:after, .radio:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: block;
  position: absolute;
  opacity: 0;
  content: ""; }

.checkbox:after {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #2473bd;
  border-left: 2px solid #2473bd;
  top: 5px;
  left: 5px; }
  @media only screen and (max-width: 768px) {
    .checkbox:after {
      top: 8px;
      left: 7px; } }

.radio:before {
  border-radius: 100%; }

.radio:after {
  width: 12px;
  height: 12px;
  background: #2473bd;
  border-radius: 100%;
  top: 4px;
  left: 4px; }
  @media only screen and (max-width: 768px) {
    .radio:after {
      width: 13px;
      height: 13px;
      top: 6px;
      left: 6px; } }

.checkbox:hover:before,
.radio:hover:before {
  border-color: #D6D6D5; }

.checkbox:hover:after,
.radio:hover:after {
  opacity: 0.3; }
  @media only screen and (max-width: 768px) {
    .checkbox:hover:after,
    .radio:hover:after {
      opacity: 0; } }

input[type="checkbox"]:checked + .checkbox:after,
input[type="radio"]:checked + .radio:after {
  opacity: 1; }

input[type="checkbox"]:checked + .half-checked:after, .half-checked:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 10px;
  height: 6px;
  border-left: 0px solid #2473bd;
  border-bottom: 2px solid #2473bd; }

input[type="checkbox"]:disabled + .checkbox,
input[type="radio"]:disabled + .radio {
  cursor: default; }
  input[type="checkbox"]:disabled + .checkbox:before, input[type="checkbox"]:disabled + .checkbox:hover:before,
  input[type="radio"]:disabled + .radio:before,
  input[type="radio"]:disabled + .radio:hover:before {
    background: #F8F8F9;
    border-color: #E5E5E4; }
  input[type="checkbox"]:disabled + .checkbox:hover:after,
  input[type="radio"]:disabled + .radio:hover:after {
    opacity: 0; }

input[type="checkbox"]:disabled + .checkbox:after {
  border-color: #C6C6C6; }

input[type="radio"]:disabled + .radio:after {
  background: #C6C6C6;
  border-color: #C6C6C6; }

input[type="checkbox"]:disabled:checked + .checkbox:hover:after,
input[type="radio"]:disabled:checked + .radio:hover:after {
  opacity: 1; }

.switch {
  display: inline-block;
  position: relative;
  padding: 0 0 0 50px;
  line-height: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .switch:before {
    background: #FFFFFF;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 40px;
    height: 20px;
    border: #E5E5E4 solid 1px; }
    @media only screen and (max-width: 768px) {
      .switch:before {
        width: 50px;
        height: 25px; } }
  .switch:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    content: "";
    width: 16px;
    height: 16px;
    margin: 1px;
    background: #939393; }
    @media only screen and (max-width: 768px) {
      .switch:after {
        width: 23px;
        height: 23px; } }
  @media only screen and (max-width: 768px) {
    .switch {
      padding: 0 0 0 60px;
      line-height: 25px; } }

input[type="checkbox"]:checked + .switch:after {
  background: #2473bd;
  left: 21px; }
  @media only screen and (max-width: 768px) {
    input[type="checkbox"]:checked + .switch:after {
      left: 25px; } }

input[type="checkbox"]:disabled + .switch:before {
  background: #F1F1F1; }

input[type="checkbox"]:disabled + .switch:after {
  background: #C6C6C6; }

.switch--small {
  padding: 0 0 0 40px;
  line-height: 18px; }
  .switch--small:before {
    width: 30px;
    height: 15px;
    top: 1px; }
  .switch--small:after {
    width: 11px;
    height: 11px;
    top: 2px; }

input[type="checkbox"]:checked + .switch--small:after {
  left: 16px; }

.form-caption {
  font-size: 12px;
  color: #939393;
  margin: -8px 0 24px 0; }

.form-caption--error {
  color: #CA3B27; }

.form-caption--small {
  font-size: 10px;
  margin: 0px 0 6px 0; }

.btn-form {
  line-height: 16px;
  height: 44px; }

.btn-form--small {
  font-size: 12px;
  line-height: 12px;
  height: 28px; }

.btn-form--large {
  font-size: 24px;
  line-height: 20px;
  height: 52px; }

.payment-icon {
  height: 16px; }

ul, ol {
  margin-bottom: 32px;
  margin-left: 24px; }

li {
  margin-bottom: 12px; }

.list--unstyled, .btn-group, .extended-footer__list, .footer__list, .side-nav, .accordion, .accordion__submenu, .accordion__submenu__submenu, .pagination, .dashboard-nav, .dashboard-nav__submenu__item, .dashboard-subnav, .tabs {
  margin-left: 0;
  list-style: none; }

.list--horizontal li, .top-bar li, .secondary-nav li, .breadcrumb li {
  display: inline-block; }
  @media only screen and (max-width: 575px) {
    .list--horizontal li, .top-bar li, .secondary-nav li, .breadcrumb li {
      display: block;
      margin: 0; } }

.block-list {
  border-color: #E5E5E4; }
  .block-list li {
    margin-bottom: 0;
    padding: 12px;
    border-color: #E5E5E4; }

.menu-icon {
  position: relative;
  background: #000000;
  width: 28px;
  height: 3px; }
  .menu-icon:after, .menu-icon:before {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    right: 0;
    background: #000000; }
  .menu-icon:before {
    bottom: 7px; }
  .menu-icon:after {
    top: 7px; }

.top-bar {
  background: #FFFFFF;
  height: 80px;
  width: 100%;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .top-bar {
      height: auto; } }

.top-bar--dark {
  background: #000000; }
  .top-bar--dark .top-bar__logo {
    color: #FFFFFF; }
    .top-bar--dark .top-bar__logo .icon_uber {
      color: #FFFFFF; }
  .top-bar--dark .top-bar__title {
    color: #E5E5E4; }

.top-bar__logo {
  color: #000000;
  text-transform: none;
  margin-top: 20px; }
  .top-bar__logo .icon_uber {
    color: #000000;
    font-size: 21px;
    vertical-align: middle; }
    @media only screen and (max-width: 768px) {
      .top-bar__logo .icon_uber {
        font-size: 12px; } }
  .top-bar__logo .icon_menu, .top-bar__logo .icon_delete {
    margin-top: 5px;
    font-size: 24px; }
    @media only screen and (max-width: 768px) {
      .top-bar__logo .icon_menu, .top-bar__logo .icon_delete {
        font-size: 14px;
        margin-top: 6px; } }
  @media only screen and (max-width: 768px) {
    .top-bar__logo {
      padding: 18px 24px 16px 0px;
      font-size: 14px;
      margin-top: 0; } }

.top-bar__title {
  font-size: 24px;
  vertical-align: middle;
  position: relative;
  top: 1px;
  color: #717171; }
  @media only screen and (max-width: 768px) {
    .top-bar__title {
      font-size: 14px; } }

.top-bar__nav {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
  margin-left: 0; }
  @media only screen and (max-width: 768px) {
    .top-bar__nav {
      font-size: 10px; } }
  @media only screen and (max-width: 575px) {
    .top-bar__nav .top-bar__item {
      display: inline-block; } }

.top-bar__nav--left {
  float: left;
  margin-left: 40px; }
  .top-bar__nav--left .top-bar__item {
    margin-right: 12px; }
  @media only screen and (max-width: 768px) {
    .top-bar__nav--left {
      margin-left: 4px; }
      .top-bar__nav--left .top-bar__item {
        margin-right: 24px; } }

.top-bar__nav--right {
  float: right;
  text-transform: uppercase; }
  .top-bar__nav--right .top-bar__item {
    margin-left: 12px; }
  @media only screen and (max-width: 768px) {
    .top-bar__nav--right .top-bar__item {
      margin-left: 24px; } }

.separator {
  display: none; }

.top-bar__item {
  border-top: 4px solid transparent;
  padding: 27px 12px 0 12px;
  margin-bottom: 0; }
  .top-bar__item.active {
    border-top: 4px solid #2473bd; }
    .top-bar__item.active a {
      color: #2473bd; }
      .top-bar__item.active a:hover {
        color: #226db5; }
  .top-bar__item a {
    color: #939393; }
    .top-bar__item a:hover {
      color: #2473bd; }
  @media only screen and (max-width: 768px) {
    .top-bar__item {
      padding-top: 21px; } }

@media only screen and (max-width: 768px) {
  .portable-top-bar__nav--stacked {
    width: 100%;
    padding: 0; }
    .portable-top-bar__nav--stacked.top-bar--dark .top-bar__item {
      border-bottom: solid 1px #494949; }
    .portable-top-bar__nav--stacked .top-bar__item {
      display: block;
      margin-right: 0;
      margin-bottom: 0;
      width: 100%;
      padding-top: 0;
      border-left: 4px solid transparent;
      border-top: 0;
      border-bottom: 1px solid #E5E5E4; }
      .portable-top-bar__nav--stacked .top-bar__item a {
        display: block;
        padding: 9px 18px;
        width: 100%; }
      .portable-top-bar__nav--stacked .top-bar__item.active {
        border-left: 4px solid #2473bd;
        border-top: 0; }
    .portable-top-bar__nav--stacked.top-bar__nav--left {
      margin-left: 0; }
      .portable-top-bar__nav--stacked.top-bar__nav--left .top-bar__item {
        margin-right: 0; }
    .portable-top-bar__nav--stacked.top-bar__nav--right .top-bar__item {
      margin-left: 0; }
      .portable-top-bar__nav--stacked.top-bar__nav--right .top-bar__item:last-child {
        margin-right: 0; } }

@media only screen and (max-width: 575px) {
  .palm-top-bar__nav--stacked {
    width: 100%;
    padding: 0; }
    .palm-top-bar__nav--stacked.top-bar--dark .top-bar__item {
      border-bottom: solid 1px #494949; }
    .palm-top-bar__nav--stacked .top-bar__item {
      display: block;
      margin-right: 0;
      margin-bottom: 0;
      width: 100%;
      padding-top: 0;
      border-left: 4px solid transparent;
      border-top: 0;
      border-bottom: 1px solid #E5E5E4; }
      .palm-top-bar__nav--stacked .top-bar__item a {
        display: block;
        padding: 9px 18px;
        width: 100%; }
      .palm-top-bar__nav--stacked .top-bar__item.active {
        border-left: 4px solid #2473bd;
        border-top: 0; }
    .palm-top-bar__nav--stacked.top-bar__nav--left {
      margin-left: 0; }
      .palm-top-bar__nav--stacked.top-bar__nav--left .top-bar__item {
        margin-right: 0; }
    .palm-top-bar__nav--stacked.top-bar__nav--right .top-bar__item {
      margin-left: 0; }
      .palm-top-bar__nav--stacked.top-bar__nav--right .top-bar__item:last-child {
        margin-right: 0; } }

.secondary-nav {
  border-bottom: 2px solid #F1F1F1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500; }

.secondary-nav__item {
  float: left;
  margin-right: 40px;
  margin-bottom: 0;
  position: relative;
  top: 2px;
  padding: 12px 0;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase; }
  @media only screen and (max-width: 768px) {
    .secondary-nav__item {
      padding-left: 32px;
      width: 100%;
      border-top: solid 1px #E5E5E4; } }
  .secondary-nav__item a {
    color: #000000; }
    .secondary-nav__item a:hover {
      color: #2473bd; }
  .secondary-nav__item.active {
    border-bottom: 2px solid #2473bd; }
    @media only screen and (max-width: 768px) {
      .secondary-nav__item.active {
        border-bottom: 0;
        border-left: solid 2px #2473bd; } }
    .secondary-nav__item.active a {
      color: #2473bd; }
  @media only screen and (max-width: 768px) {
    .secondary-nav__item:first-child {
      margin-left: 0; } }

.secondary-nav--dark {
  background: #000000;
  border-top: solid 1px #494949; }
  .secondary-nav--dark.secondary-nav {
    border-bottom: 2px solid #717171; }
  .secondary-nav--dark .secondary-nav__item a {
    color: #C0C0C0; }
  .secondary-nav--dark .secondary-nav__item a:hover {
    color: #2473bd; }
  @media only screen and (max-width: 768px) {
    .secondary-nav--dark .secondary-nav__item {
      border-top: solid 1px #494949; } }
  .secondary-nav--dark .active a {
    color: #2473bd; }

.doc-bg-marketing {
  background: url("//d1a3f4spazzrp4.cloudfront.net/superfine/assets/fst-bg-img-07.jpg");
  background-size: cover;
  height: 150px; }

.header {
  padding-left: 40px;
  padding-right: 40px; }
  @media only screen and (max-width: 575px) {
    .header {
      background: #000000;
      padding-left: 24px;
      padding-right: 24px;
      height: 60px; } }

.header__item {
  color: #FFFFFF; }
  .header__item:hover {
    color: #F8F8F9; }
  .header__item .icon {
    margin-bottom: 2px; }
  .header__item .icon_profile {
    margin-right: 12px; }
    @media only screen and (max-width: 575px) {
      .header__item .icon_profile {
        margin-right: 0; } }

.header__logo {
  display: block;
  width: 150px;
  margin: 0 auto; }
  .header__logo .icon_uber {
    font-size: 20px;
    margin-top: -22px; }
    @media only screen and (max-width: 575px) {
      .header__logo .icon_uber {
        font-size: 50px;
        margin-top: -14px; } }

.side-nav {
  margin-bottom: 0px; }
  .side-nav h6 {
    font-size: 12px;
    color: #A6A5A5; }

.side-nav--borderless .side-nav__item, .side-nav--borderless .side-nav__subitem {
  border-left: 2px solid transparent; }
  .side-nav--borderless .side-nav__item.active, .side-nav--borderless .active.side-nav__subitem {
    border-left: 2px solid #2473bd; }

.side-nav__item, .side-nav__subitem {
  position: relative;
  border-left: 2px solid #F1F1F1;
  margin-bottom: 0px;
  padding: 1px 0px; }
  .side-nav__item.active, .active.side-nav__subitem {
    border-left: 2px solid #2473bd; }

.side-nav__subitem {
  padding-left: 24px; }

.side-nav__link {
  text-decoration: none;
  color: #A6A5A5;
  margin: 12px;
  padding-left: 11px;
  line-height: 1.2;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500; }
  .side-nav__link:hover, .active .side-nav__link {
    color: #2473bd; }

.side-nav--progress {
  margin-left: 12px; }
  .side-nav--progress .side-nav__item, .side-nav--progress .side-nav__subitem {
    position: relative;
    border-left: 0px; }

.side-nav__item--complete:before, .side-nav__item--incomplete:before {
  content: " ";
  position: absolute;
  top: 14px;
  left: -9px;
  border: 1px solid #2473bd;
  height: 9px;
  width: 9px;
  border-radius: 4.5px; }

.side-nav__item--complete:after, .side-nav__item--incomplete:after {
  content: "";
  width: 1px;
  height: 32px;
  position: absolute;
  top: -17px;
  left: -5px; }

.side-nav__item--complete:before {
  background-color: #2473bd; }

.side-nav__item--complete:after {
  background: #2473bd; }

.side-nav__item--complete.first:after {
  background: transparent; }

.side-nav__item--active:before {
  background-color: transparent; }

.side-nav__item--active .side-nav__link {
  color: #2473bd;
  font-weight: 500; }

.side-nav__item--incomplete:before {
  color: #A6A5A5;
  border-color: #C6C6C6; }

.side-nav__item--incomplete:after {
  background: #C6C6C6; }

.side-nav__item--incomplete.first:after {
  background: transparent; }

.side-nav__item--incomplete .side-nav__link {
  color: #A6A5A5; }

.accordion__item {
  cursor: pointer;
  color: #2473bd;
  margin-bottom: 0;
  border-top: solid 1px #E5E5E4;
  border-bottom: 1px transparent;
  position: relative; }
  .accordion__item.active .accordion__item__link {
    border-left: solid 2px #2473bd;
    background-color: #F8F8F9; }
  .accordion__item .icon_up-arrow, .accordion__item .icon_down-arrow, .accordion__item .icon_right-arrow {
    position: absolute;
    top: 23px;
    right: 20px; }

.accordion__item:first-child {
  border-top: transparent; }

.accordion__item:last-child {
  border-bottom: solid 1px #E5E5E4; }

.accordion__item__link {
  cursor: pointer;
  color: #000000;
  padding: 16px 20px;
  width: 100%;
  display: block;
  position: relative;
  border-left: solid 2px transparent; }
  .accordion__item__link:hover {
    background-color: #F8F8F9; }

.accordion__submenu, .accordion__submenu__submenu {
  cursor: pointer;
  margin-bottom: 0;
  position: relative; }

.accordion__submenu__submenu .accordion__submenu__item__link {
  padding: 16px 20px 16px 64px; }

.accordion__submenu__item {
  cursor: pointer;
  color: #2473bd;
  margin-bottom: 0;
  border-top: solid 1px #E5E5E4;
  border-bottom: 1px transparent;
  position: relative; }
  .accordion__submenu__item.active > .accordion__submenu__item__link {
    color: #000000; }

.accordion__submenu__item__link {
  cursor: pointer;
  width: 100%;
  display: block;
  padding: 16px 20px 16px 40px;
  color: #000000; }
  .accordion__submenu__item__link:hover {
    background-color: #F8F8F9;
    color: #000000; }

.breadcrumb {
  font-size: 12px;
  color: #2473bd;
  margin-bottom: 32px; }

.breadcrumb__item {
  margin-bottom: 0px; }
  .breadcrumb__item a:hover {
    color: #226db5; }
  .breadcrumb__item:after {
    font-family: 'uber-icons';
    content: "\ea5b";
    margin: 0 12px;
    font-size: 13px;
    font-weight: 200; }
  .breadcrumb__item:last-child {
    color: #939393; }
    .breadcrumb__item:last-child:after {
      content: ""; }

.progress-nav {
  margin-left: 0;
  list-style: none; }

.progress-nav__item:after, .progress-nav__item--complete:after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  top: 3px;
  left: 8px; }

.progress-nav__item {
  float: left;
  color: #C6C6C6;
  position: relative;
  border: 1px solid;
  height: 9px;
  width: 9px;
  border-radius: 4.5px;
  margin-right: 25px; }
  .progress-nav__item:after {
    background: #C6C6C6; }
  .progress-nav__item:last-child:after {
    background: transparent; }

.progress-nav__item--complete {
  color: #2473bd;
  background-color: #2473bd; }
  .progress-nav__item--complete:after {
    background: #2473bd; }

.progress-nav__item--active {
  background-color: transparent; }
  .progress-nav__item--active:after {
    background: #C6C6C6; }

hr, .rule {
  border: none;
  border-top: 1px solid #E5E5E4;
  margin-bottom: 32px; }

.wrapper {
  background: #E5E5E4; }

.wrapper__container {
  max-width: 1580px;
  margin: 0 auto;
  overflow: hidden;
  background: #FFFFFF; }

.wrapper--nav-push {
  margin-left: 80px; }

.wrapper__container--nav-push {
  padding-left: 80px; }
  @media only screen and (max-width: 768px) {
    .wrapper__container--nav-push {
      padding-left: 40px; } }

.wrapper--duotone {
  background: -webkit-linear-gradient(left, black 0%, black 50%, #E5E5E4 50%, #E5E5E4 100%);
  background: linear-gradient(to right, black 0%, black 50%, #E5E5E4 50%, #E5E5E4 100%); }

.gutter {
  padding: 0 145px; }

.gutter-overflow--right, .gutter-overflow--sides {
  margin-right: -145px; }

.gutter-overflow--left, .gutter-overflow--sides {
  margin-left: -145px; }

@media only screen and (max-width: 768px) {
  .gutter {
    padding: 0; }
  .gutter-overflow--right, .gutter-overflow--sides {
    margin-right: 0px; }
  .gutter-overflow--left, .gutter-overflow--sides {
    margin-left: 0px; } }

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .gutter {
    padding: 0 80px; }
  .gutter-overflow--right, .gutter-overflow--sides {
    margin-right: -80px; }
  .gutter-overflow--left, .gutter-overflow--sides {
    margin-left: -80px; } }

.offset-top {
  margin-top: -140px; }

@media only screen and (max-width: 768px) {
  .offset-top {
    margin-top: -80px; } }

.pagination {
  clear: both;
  display: inline-block;
  border-radius: 0px;
  font-size: 0;
  /* [1] */ }

.pagination__item {
  border-top: 2px solid #F1F1F1;
  font-size: 13px;
  /* [1] */
  float: left;
  line-height: 1.38;
  font-weight: 500;
  margin-bottom: 0;
  padding: 8px 18px;
  /* [2] */ }
  .pagination__item.active button {
    color: #2473bd; }
  .pagination__item.active {
    border-top: 2px solid #2473bd;
    color: #2473bd; }

.pagination__item--disabled {
  color: #D6D6D5;
  cursor: default; }
  .pagination__item--disabled:hover, .pagination__item--disabled:focus {
    background-color: #FFFFFF; }

.pagination__button {
  color: #939393;
  padding: 8px 18px;
  /* [2] */
  margin:  -9px -18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  outline: none; }
  .pagination__button:hover, .pagination__button:active {
    color: #2473bd; }

.pagination__button--disabled {
  color: #A6A5A5;
  cursor: default; }
  .pagination__button--disabled:hover, .pagination__button--disabled:active, .pagination__button--disabled.active {
    color: #A6A5A5; }

.panel {
  background-color: #FFFFFF;
  border: solid 1px #C6C6C6;
  border-radius: 0px; }

.panel__heading {
  background-color: #F1F1F1; }

.panel--secondary {
  background-color: #F8F8F9; }
  .panel--secondary .panel__heading {
    background-color: #E5E5E4; }

.panel--shadow {
  box-shadow: 0 2px 0 #E5E5E4; }

.panel--dark {
  background-color: #000000;
  color: #F1F1F1;
  border: solid 1px #C0C0C0; }

.panel--hoverable {
  cursor: pointer;
  bottom: 0px; }
  .panel--hoverable:hover {
    box-shadow: 0 2px 0 #E5E5E4;
    bottom: 2px;
    position: relative; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.preloader {
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  border: 2px solid transparent;
  border-top: 2px solid #2473bd;
  border-left: 2px solid #2473bd;
  border-radius: 50px;
  opacity: 1;
  width: 32px;
  height: 32px;
  cursor: wait;
  display: block; }

.preloader--large {
  border-width: 3px;
  width: 40px;
  height: 40px; }

.preloader--gray {
  border-top-color: #C6C6C6;
  border-left-color: #C6C6C6; }

.preloader--negative {
  border-top-color: #FFFFFF;
  border-left-color: #FFFFFF; }

.preloader-container {
  padding: 32px;
  display: inline-block; }

.progress-bar {
  position: relative;
  background: #E5E5E4;
  border-radius: 0px;
  overflow: hidden; }
  .progress-bar > .progress-bar__bar {
    background-color: #2473bd;
    border-radius: 0px;
    height: 12px;
    display: block; }

.progress-bar--negative > .progress-bar__bar {
  background-color: #CA3B27; }

.progress-bar--positive > .progress-bar__bar {
  background-color: #629A41; }

.progress-bar--small > .progress-bar__bar {
  height: 4px; }

.progress-bar--large > .progress-bar__bar {
  height: 20px; }

.range-slider {
  background-color: #E5E5E4;
  height: 8px; }

.range-slider__bar {
  background-color: #2473bd;
  height: 8px; }
  .range-slider__bar--active {
    background-color: #47d3d9; }

.range-slider__handle {
  border: 1px solid #A6A5A5;
  background-color: #FFFFFF;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  top: -7px; }

.range-slider__handle--active {
  border: 1px solid #939393; }

.range-slider__handle__dot {
  width: 40%;
  height: 40%;
  background-color: #2473bd;
  left: 30%;
  top: 30%;
  border-radius: 100%; }
  .range-slider__handle__dot--active {
    background-color: #47d3d9; }

.range-slider__input::-webkit-outer-spin-button, .range-slider__input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */ }

.range-slider__input:focus {
  box-shadow: 0 0 0; }

table, .table {
  width: 100%; }
  table th, table td, .table th, .table td {
    text-align: left;
    padding: 12px;
    border-color: #E5E5E4;
    color: #666; }
    table th ul, table td ul, .table th ul, .table td ul {
      margin-bottom: 0; }
    table th li:last-child, table td li:last-child, .table th li:last-child, .table td li:last-child {
      margin-bottom: 0; }
    table th a, table td a, .table th a, .table td a {
      text-decoration: none; }
  table thead th, .table thead th {
    color: #000000; }
  table thead tr, .table thead tr {
    border-bottom: solid 2px #D6D6D5; }
  @media only screen and (max-width: 575px) {
    table thead, .table thead {
      display: none; } }
  table tbody, .table tbody {
    border-top: solid 1px #E5E5E4;
    border-bottom: solid 1px #E5E5E4; }
    table tbody th, .table tbody th {
      border-right: solid 1px #E5E5E4;
      border-bottom: solid 1px #E5E5E4; }
    table tbody tr:hover td, .table tbody tr:hover td {
      background-color: rgba(36, 115, 189, 0.1); }
    @media only screen and (max-width: 575px) {
      table tbody tr, .table tbody tr {
        border-top: solid 1px #E5E5E4;
        border-bottom: solid 1px #E5E5E4;
        border-right: solid 1px #E5E5E4; } }
    @media only screen and (max-width: 575px) {
      table tbody td, .table tbody td {
        display: block;
        padding-bottom: 6px;
        padding-top: 0; }
        table tbody td:first-of-type, .table tbody td:first-of-type {
          padding-top: 16px; }
        table tbody td:last-child, .table tbody td:last-child {
          padding-bottom: 16px; } }
  table .checkbox, .table .checkbox {
    margin-bottom: 0; }

.table--bordered tbody td {
  border: solid 1px #E5E5E4;
  border-right: 0px; }
  .table--bordered tbody td:first-of-type {
    border-left: 0px; }
  @media only screen and (max-width: 575px) {
    .table--bordered tbody td {
      border-top: 0;
      border-bottom: 0; }
      .table--bordered tbody td:first-of-type {
        border-left: solid 1px #E5E5E4; } }

.table--bordered-horizontal tbody th, .table--bordered-horizontal tbody td, .table--bordered-horizontal thead th, .table--bordered-horizontal thead td {
  border-left: 0;
  border-right: 0; }

@media only screen and (max-width: 575px) {
  .table--bordered-horizontal tbody td, .table--bordered-horizontal thead td {
    border-left: solid 1px #E5E5E4; } }

.table--bordered-vertical tbody th {
  border-left: 0px; }

.table--bordered-vertical tbody td {
  border-left: solid 1px #E5E5E4; }

.table--striped tbody {
  border-top: solid 1px #E5E5E4;
  border-bottom: solid 1px #E5E5E4; }
  .table--striped tbody td {
    border-bottom: 0px;
    border-top: 0px; }
  .table--striped tbody th ~ td {
    border-top: solid 1px #E5E5E4; }
  .table--striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9; }

.table--data {
  font-size: 14px; }

.table--small {
  font-size: 12px; }
  .table--small th, .table--small td {
    padding: 6px 8px; }

.table--no-hover tr:hover td {
  background-color: transparent; }

.numerical {
  text-align: right; }

.tag {
  font-size: 10px;
  font-weight: 500;
  background-color: #2473bd;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 3px 5px;
  border: 1px solid transparent; }

.tag--positive {
  background-color: #629A41; }

.tag--negative {
  background-color: #CA3B27; }

.tag--warning {
  background-color: #ECAB20; }

.tag--outline {
  background-color: #dff7f8;
  border: solid 1px #2473bd;
  color: #2473bd; }

.tag--positive-outline {
  background-color: #F3F9ED;
  border: solid 1px #629A41;
  color: #629A41; }

.tag--negative-outline {
  background-color: #FEEFEB;
  border: solid 1px #CA3B27;
  color: #CA3B27; }

.tag--warning-outline {
  background-color: #FEFAE7;
  border: solid 1px #ECAB20;
  color: #ECAB20; }

.tag--inactive {
  background-color: #F1F1F1;
  border: solid 1px #C6C6C6;
  color: #939393; }

.tag--profile {
  bottom: 14px; }

.tooltip-container {
  position: relative;
  display: inline;
  cursor: pointer; }
  .tooltip-container.hover:hover .tooltip,
  .tooltip-container.hovered .tooltip {
    display: block;
    opacity: 0.8;
    z-index: 999; }
    .tooltip-container.hover:hover .tooltip.tooltip--top,
    .tooltip-container.hovered .tooltip.tooltip--top {
      bottom: 36px;
      margin-left: -70px;
      left: 50%; }
      .tooltip-container.hover:hover .tooltip.tooltip--top.tooltip--small,
      .tooltip-container.hovered .tooltip.tooltip--top.tooltip--small {
        margin-left:  -50px; }
      .tooltip-container.hover:hover .tooltip.tooltip--top.tooltip--large,
      .tooltip-container.hovered .tooltip.tooltip--top.tooltip--large {
        margin-left:  -150px; }
    .tooltip-container.hover:hover .tooltip.tooltip--bottom,
    .tooltip-container.hovered .tooltip.tooltip--bottom {
      top: 36px;
      margin-left: -70px;
      left: 50%; }
      .tooltip-container.hover:hover .tooltip.tooltip--bottom.tooltip--small,
      .tooltip-container.hovered .tooltip.tooltip--bottom.tooltip--small {
        margin-left:  -50px; }
      .tooltip-container.hover:hover .tooltip.tooltip--bottom.tooltip--large,
      .tooltip-container.hovered .tooltip.tooltip--bottom.tooltip--large {
        margin-left:  -150px; }
    .tooltip-container.hover:hover .tooltip.tooltip--left,
    .tooltip-container.hovered .tooltip.tooltip--left {
      right: 100%;
      top: 50%;
      margin-top:  -18px;
      margin-right: 18px; }
    .tooltip-container.hover:hover .tooltip.tooltip--right,
    .tooltip-container.hovered .tooltip.tooltip--right {
      left: 100%;
      top: 50%;
      margin-top:  -18px;
      margin-left: 18px; }
    .tooltip-container.hover:hover .tooltip.tooltip--top-left,
    .tooltip-container.hovered .tooltip.tooltip--top-left {
      bottom: 36px;
      left: 0; }
    .tooltip-container.hover:hover .tooltip.tooltip--bottom-left,
    .tooltip-container.hovered .tooltip.tooltip--bottom-left {
      top: 36px;
      left: 0; }
    .tooltip-container.hover:hover .tooltip.tooltip--top-right,
    .tooltip-container.hovered .tooltip.tooltip--top-right {
      bottom: 36px;
      right: 0; }
    .tooltip-container.hover:hover .tooltip.tooltip--bottom-right,
    .tooltip-container.hovered .tooltip.tooltip--bottom-right {
      top: 36px;
      right: 0; }

.tooltip {
  position: absolute;
  width: 140px;
  color: #F1F1F1;
  background: #000000;
  height: auto;
  line-height: 16px;
  font-size: 10px;
  text-align: center;
  display: none;
  border-radius: 0px;
  padding: 8px; }
  .tooltip:before, .tooltip:after {
    border: 6px solid transparent; }
  .tooltip.tooltip--left:before, .tooltip.tooltip--left:after, .tooltip.tooltip--right:before, .tooltip.tooltip--right:after {
    margin-top: -6px; }
  .tooltip.tooltip--top:before, .tooltip.tooltip--top:after, .tooltip.tooltip--bottom:before, .tooltip.tooltip--bottom:after {
    margin-left: -10px; }
  @media only screen and (max-width: 575px) {
    .tooltip {
      display: none; } }

.tooltip--small {
  width: 100px; }

.tooltip--large {
  width: 300px; }

.tooltip--top:before {
  border-top-color: #000000 !important; }

.tooltip--top:after {
  border-top-color: #000000 !important; }

.tooltip--bottom:before {
  border-bottom-color: #000000 !important; }

.tooltip--bottom:after {
  border-bottom-color: #000000 !important; }

.tooltip--left:before {
  border-left-color: #000000 !important; }

.tooltip--left:after {
  border-left-color: #000000 !important; }

.tooltip--right:before {
  border-right-color: #000000 !important; }

.tooltip--right:after {
  border-right-color: #000000 !important; }

.tooltip--top-left:before {
  border-top-color: #000000 !important; }

.tooltip--top-left:after {
  border-top-color: #000000 !important; }

.tooltip--bottom-left:before {
  border-bottom-color: #000000 !important; }

.tooltip--bottom-left:after {
  border-bottom-color: #000000 !important; }

.tooltip--top-right:before {
  border-top-color: #000000 !important; }

.tooltip--top-right:after {
  border-top-color: #000000 !important; }

.tooltip--bottom-right:before {
  border-bottom-color: #000000 !important; }

.tooltip--bottom-right:after {
  border-bottom-color: #000000 !important; }

.primary-font, .text-input, .icon-input input, .select select, .top-bar__title, .breadcrumb, table thead th, .table thead th, h3, h4, h5, h6, html, .dashboard-nav, .dashboard-subnav, .tabs__link, .tabs__item a {
  font-family: ff-clan-web-pro, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400; }

.primary-font--semibold, .text-input, .icon-input input, .select select, .input-group__addon, .form-caption, table thead th, .table thead th, h6, .tabs__link, .tabs__item a {
  font-weight: 500; }

.primary-font--bold, .breadcrumb__item {
  font-weight: 600; }

.secondary-font, .top-bar__logo, h1, h2, .text-overline:before {
  font-family: ff-clan-web-pro, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 200; }

.secondary-font--semibold {
  font-weight: 500; }

.tertiary-font, .table--data {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300; }

.monospace-font, code, .code {
  font-family: "Menlo", "Consolas", Monaco, monospace, serif;
  font-weight: normal; }

.secondary-font--narrow {
  font-family: ff-clan-web-pro-narrow, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500; }

html {
  color: #000000; }

::-moz-selection {
  background: #47d3d9;
  color: #FFFFFF; }

::selection {
  background: #47d3d9;
  color: #FFFFFF; }

h1, h2, h3, h4, h5, h6, p {
  text-align: none; }

.giga, .mega, .kilo {
  letter-spacing: -0.02em; }

h1 {
  margin-bottom: 48px;
  letter-spacing: -0.02em; }

h2 {
  margin-bottom: 40px;
  letter-spacing: -0.02em; }

h3 {
  margin-bottom: 24px;
  letter-spacing: -0.02em; }

h4 {
  margin-bottom: 20px; }

h5 {
  margin-bottom: 16px; }

h6 {
  margin-bottom: 12px;
  letter-spacing: 0.005em; }

p {
  letter-spacing: 0.005em; }

.lead {
  font-size: 18px;
  font-size: 1.28571rem; }

.small {
  font-size: 12px;
  font-size: 0.85714rem; }

.legal {
  font-size: 10px;
  font-size: 0.71429rem;
  letter-spacing: 0.02em; }

.label, label {
  letter-spacing: 0.02em;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 12px;
  font-weight: 500; }

a, .link {
  color: #2473bd;
  text-decoration: none;
  cursor: pointer; }

.text-link:hover {
  border-bottom: solid 1px #2473bd; }

@media only screen and (max-width: 575px) {
  h1, h2, .secondary-font, .top-bar__logo, h1, h2, .text-overline:before {
    font-weight: 400; } }

.overline {
  position: relative;
  padding-top: 24px; }
  .overline:before {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 2px;
    background-color: #C6C6C6; }

/* TOOLS SETTINGS */
.dashboard-drawer {
  position: fixed;
  z-index: 100;
  width: 252px;
  height: 100%;
  background-color: #000000;
  overflow: hidden; }

.dashboard-drawer--collapsed {
  width: 80px; }
  .dashboard-drawer--collapsed .dashboard-nav__text,
  .dashboard-drawer--collapsed .dashboard-subnav {
    display: none; }
  .dashboard-drawer--collapsed:hover {
    width: 252px; }
    .dashboard-drawer--collapsed:hover .dashboard-nav__text,
    .dashboard-drawer--collapsed:hover .dashboard-subnav {
      display: inline-block; }

@media only screen and (max-width: 768px) {
  .dashboard-drawer--collapsed--portable, .dashboard-drawer--collapsed {
    width: 40px; }
    .dashboard-drawer--collapsed--portable .dashboard-nav__text, .dashboard-drawer--collapsed .dashboard-nav__text,
    .dashboard-drawer--collapsed--portable .dashboard-subnav, .dashboard-drawer--collapsed .dashboard-subnav {
      display: none; }
    .dashboard-drawer--collapsed--portable .dashboard-nav__icon, .dashboard-drawer--collapsed .dashboard-nav__icon {
      width: 40px; }
    .dashboard-drawer--collapsed--portable .dashboard-nav__link, .dashboard-drawer--collapsed .dashboard-nav__link {
      padding: 10px 12px; }
    .dashboard-drawer--collapsed--portable:hover, .dashboard-drawer--collapsed:hover {
      width: 252px; }
      .dashboard-drawer--collapsed--portable:hover .dashboard-nav__text, .dashboard-drawer--collapsed:hover .dashboard-nav__text,
      .dashboard-drawer--collapsed--portable:hover .dashboard-subnav, .dashboard-drawer--collapsed:hover .dashboard-subnav {
        display: inline-block; } }

@media only screen and (max-width: 575px) {
  .dashboard-drawer--collapsed--portable:hover, .dashboard-drawer--collapsed:hover {
    width: 40px; }
    .dashboard-drawer--collapsed--portable:hover .dashboard-nav__text, .dashboard-drawer--collapsed:hover .dashboard-nav__text,
    .dashboard-drawer--collapsed--portable:hover .dashboard-subnav, .dashboard-drawer--collapsed:hover .dashboard-subnav {
      display: none; } }

.dashboard-logo {
  padding: 0 32px; }
  .dashboard-logo .icon_uber {
    color: #FFFFFF;
    font-size: 16px; }

.dashboard-nav {
  width: 252px;
  background: #000000; }
  .dashboard-nav .icon_up-arrow, .dashboard-nav .icon_down-arrow {
    margin-top: 6px;
    float: right; }

.dashboard-nav__close {
  position: relative;
  top: 16px;
  left: 32px;
  margin-bottom: 24px; }
  .dashboard-nav__close .icon_delete {
    color: #939393; }
    .dashboard-nav__close .icon_delete:hover {
      color: #C0C0C0; }

.dashboard-nav__item {
  position: relative;
  font-size: 16px;
  margin-bottom: 0; }

.dashboard-nav__link {
  display: inline-block;
  text-transform: none;
  text-decoration: none;
  width: 100%;
  padding: 10px 15px 10px 32px;
  color: #FFFFFF; }
  .dashboard-nav__link:hover {
    color: #FFFFFF; }

.dashboard-nav__item:hover, .dashboard-nav__item:hover .icon {
  color: #FFFFFF; }

.dashboard-nav__item.active > a {
  color: #2473bd; }
  @media only screen and (max-width: 768px) {
    .dashboard-nav__item.active > a {
      border-left: none; } }

.dashboard-nav__item.active .dashboard-nav__icon {
  color: #2473bd; }
  @media only screen and (max-width: 768px) {
    .dashboard-nav__item.active .dashboard-nav__icon {
      margin-left: 0; } }

@media only screen and (max-width: 768px) {
  .dashboard-nav__item.active:hover {
    border-left: none; } }

.dashboard-nav__icon {
  padding: 0 8px 0 0;
  font-size: 16px;
  color: #FFFFFF; }
  @media only screen and (max-width: 768px) {
    .dashboard-nav__icon {
      padding: 0; } }

.dashboard-nav__text {
  text-transform: none; }

.dashboard-nav__submenu {
  background: #000000; }

.dashboard-nav__submenu__item {
  color: #FFFFFF;
  border-bottom: solid 1px #282727;
  border-left: solid transparent 3px;
  font-size: 14px; }
  .dashboard-nav__submenu__item.active {
    background-color: #000000;
    border-left: solid 3px #2473bd;
    border-top: none; }
    .dashboard-nav__submenu__item.active .dashboard-nav__submenu__link {
      color: #FFFFFF; }
  .dashboard-nav__submenu__item:hover .dashboard-nav__submenu__link {
    color: #FFFFFF; }

.dashboard-nav__submenu__link {
  padding: 10px 15px 10px 32px;
  display: block;
  color: #FFFFFF; }

.dashboard-subnav {
  background: #000000; }

.dashboard-subnav__item {
  margin-bottom: 6px; }
  .dashboard-subnav__item .dashboard-subnav__label {
    color: #717171;
    font-size: 12px;
    padding: 0 32px;
    font-weight: 500; }

.dashboard-subnav__link {
  width: 100%;
  display: inline-block;
  color: #A6A5A5;
  padding: 0 32px;
  text-decoration: none;
  font-size: 15px; }
  .dashboard-subnav__link:hover {
    color: #F8F8F9; }

.dashboard-subnav__icon {
  font-size: 16px;
  float: right; }

.example-dashboard-drawer {
  position: static;
  width: 100%; }
  @media only screen and (min-width: 576px) and (max-width: 768px) {
    .example-dashboard-drawer {
      width: 80px; } }

.dashboard-drawer__overlay {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.85; }

.tabs {
  border-bottom: 2px solid #F1F1F1; }

.tabs--dark {
  background-color: #000000;
  border-bottom: 2px solid #717171; }
  .tabs--dark .tabs__link, .tabs--dark .tabs__item a, .tabs__item .tabs--dark a {
    color: #FFFFFF; }
  .tabs--dark .tabs__link.active, .tabs--dark .tabs__item a.active, .tabs__item .tabs--dark a.active, .tabs--dark .tabs__item a.active {
    color: #2473bd; }
    .tabs--dark .tabs__link.active:hover, .tabs--dark .tabs__item a.active:hover, .tabs__item .tabs--dark a.active:hover, .tabs--dark .tabs__item a.active:hover {
      color: #2473bd; }
  .tabs--dark .tabs__link:hover, .tabs--dark .tabs__item a:hover, .tabs__item .tabs--dark a:hover, .tabs--dark .tabs__item a:hover {
    color: #2473bd; }

.tabs--buttons {
  border-bottom: 0;
  font-weight: 500; }

.tabs__item {
  margin: 0 32px 0 0;
  position: relative;
  top: 3px;
  display: inline-block; }
  .tabs__item a {
    font-size: 14px; }
  @media only screen and (max-width: 575px) {
    .tabs__item {
      margin: 0 16px 0 0; } }

.tabs--buttons__item {
  margin-bottom: 0; }

.tabs--buttons__link {
  color: #717171;
  padding: 10px 20px; }
  .tabs--buttons__link.active, .tabs--buttons__link:hover {
    background: #F1F1F1; }

.tabs--buttons__link--small {
  font-size: 12px;
  padding: 4px 12px; }

.tabs--buttons__link--large {
  font-size: 16px;
  padding: 12px 22px 13px; }

.tabs__link, .tabs__item a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 0 10px 0;
  border-bottom: solid 3px transparent;
  color: #939393; }
  .tabs__link:hover, .tabs__item a:hover {
    color: #2473bd; }
  .tabs__link.active, .tabs__item a.active {
    color: #2473bd;
    border-bottom: solid 2px #2473bd; }

@media only screen and (max-width: 575px) {
  .tabs.text--center .tabs__link, .tabs.text--center .tabs__item a, .tabs__item .tabs.text--center a {
    padding: 12px 0 10px 0; }
    .tabs.text--center .tabs__link.active, .tabs.text--center .tabs__item a.active, .tabs__item .tabs.text--center a.active {
      border-left: none;
      border-bottom: solid 2px #2473bd; } }

.tabs--vertical {
  border-bottom: none; }
  .tabs--vertical .tabs__link, .tabs--vertical .tabs__item a, .tabs__item .tabs--vertical a {
    padding: 12px 0 10px 24px;
    border-bottom: none;
    border-left: solid 3px transparent; }
    .tabs--vertical .tabs__link.active, .tabs--vertical .tabs__item a.active, .tabs__item .tabs--vertical a.active {
      border-bottom: none;
      border-left: solid 2px #2473bd; }
  .tabs--vertical .tabs__item {
    width: 100%;
    border-bottom: 2px solid #F1F1F1;
    top: 0; }
  .tabs--vertical.tabs--dark .tabs__item {
    border-bottom: solid 1px #494949; }
  .tabs--vertical .tabs--buttons__item {
    width: 100%;
    margin-bottom: 4px; }
  .tabs--vertical .tabs--buttons__link {
    width: 100%; }

@media only screen and (max-width: 575px) {
  .palm-tabs--vertical {
    border-bottom: none; }
    .palm-tabs--vertical .tabs__link, .palm-tabs--vertical .tabs__item a, .tabs__item .palm-tabs--vertical a {
      padding: 12px 0 10px 24px;
      border-bottom: none;
      border-left: solid 3px transparent; }
      .palm-tabs--vertical .tabs__link.active, .palm-tabs--vertical .tabs__item a.active, .tabs__item .palm-tabs--vertical a.active {
        border-bottom: none;
        border-left: solid 2px #2473bd; }
    .palm-tabs--vertical .tabs__item {
      width: 100%;
      border-bottom: 2px solid #F1F1F1;
      top: 0; }
    .palm-tabs--vertical.tabs--dark .tabs__item {
      border-bottom: solid 1px #494949; }
    .palm-tabs--vertical .tabs--buttons__item {
      width: 100%;
      margin-bottom: 4px; }
    .palm-tabs--vertical .tabs--buttons__link {
      width: 100%; } }

.tabs-panel {
  display: none; }
  .tabs-panel.active {
    display: block; }

.modal-open {
  overflow: hidden;
  position: relative;
  height: 100%; }

.modal {
  overflow: auto;
  overflow-y: scroll;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10000; }
  .modal.show {
    display: block; }
    .modal.show .modal__content, .modal.show .modal__content--container {
      display: block; }
  .modal.animate {
    background: rgba(0, 0, 0, 0.5); }
    .modal.animate .modal__content, .modal.animate .modal__content--container {
      top: 92px; }
      @media only screen and (max-width: 768px) {
        .modal.animate .modal__content, .modal.animate .modal__content--container {
          top: 0; } }

.modal__content, .modal__content--container {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  background: #FFFFFF;
  border-radius: 0px;
  width: 500px;
  margin-left: -250px;
  padding: 32px; }

.modal__content--container {
  padding: 0; }

.modal__content--container__body {
  padding: 32px; }

.modal__content--container__footer {
  padding: 20px 32px;
  background-color: #F8F8F9;
  border-top: 1px solid #D6D6D5; }

.modal__content--small {
  width: 320px;
  margin-left: -160px; }

.modal__content--large {
  width: 800px;
  margin-left: -400px; }

@media only screen and (max-width: 768px) {
  .modal__content, .modal__content--container, .modal__content--small, .modal__content--large {
    left: 0;
    margin: 0;
    width: 100%; } }

.modal__close {
  cursor: pointer;
  color: #939393;
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 20px; }
  .modal__close:hover {
    color: #717171; }

.fade-enter {
  opacity: 0.01;
  -webkit-transition: opacity .3s ease-in;
  transition: opacity .3s ease-in; }

.fade-enter.fade-enter-active {
  opacity: 1; }

.fade-leave {
  opacity: 1;
  -webkit-transition: opacity .3s ease-in;
  transition: opacity .3s ease-in; }

.fade-leave.fade-leave-active {
  opacity: 0.01; }

.r-popover {
  position: absolute;
  z-index: 100;
  border-radius: 0px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  border: 1px solid #E5E5E4;
  width: 300px;
  background: #FFFFFF; }
  .r-popover:before {
    border: 1px solid #E5E5E4; }
  .r-popover > * {
    position: relative;
    z-index: 101; }

.r-popover__header {
  padding: 24px;
  background-color: #F1F1F1;
  margin-bottom: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px; }

.r-popover__footer {
  padding: 12px 24px;
  border-top: 1px solid #E5E5E4;
  background-color: #F1F1F1; }

.r-popover--small {
  width: 200px; }

.r-popover--large {
  width: 450px; }

.r-popover__arrow-bottom:before,
.r-popover__arrow-top:before, .r-popover__arrow-top-left:before,
.r-popover__arrow-top-right:before,
.r-popover__arrow-left:before,
.r-popover__arrow-right:before, .r-popover__arrow-bottom-left:before,
.r-popover__arrow-bottom-right:before, .r-popover__arrow-left-top:before,
.r-popover__arrow-left-bottom:before,
.r-popover__arrow-right-top:before,
.r-popover__arrow-right-bottom:before, .r-popover__arrow-bottom:after,
.r-popover__arrow-top:after, .r-popover__arrow-top-left:after,
.r-popover__arrow-top-right:after,
.r-popover__arrow-left:after,
.r-popover__arrow-right:after, .r-popover__arrow-bottom-left:after,
.r-popover__arrow-bottom-right:after, .r-popover__arrow-left-top:after,
.r-popover__arrow-left-bottom:after,
.r-popover__arrow-right-top:after,
.r-popover__arrow-right-bottom:after {
  content: '';
  position: absolute;
  background-color: #FFFFFF; }

.r-popover__arrow-bottom:before,
.r-popover__arrow-top:before, .r-popover__arrow-top-left:before,
.r-popover__arrow-top-right:before,
.r-popover__arrow-left:before,
.r-popover__arrow-right:before, .r-popover__arrow-bottom-left:before,
.r-popover__arrow-bottom-right:before, .r-popover__arrow-left-top:before,
.r-popover__arrow-left-bottom:before,
.r-popover__arrow-right-top:before,
.r-popover__arrow-right-bottom:before {
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.r-popover__arrow-bottom:after,
.r-popover__arrow-top:after, .r-popover__arrow-top-left:after,
.r-popover__arrow-top-right:after,
.r-popover__arrow-left:after,
.r-popover__arrow-right:after, .r-popover__arrow-bottom-left:after,
.r-popover__arrow-bottom-right:after, .r-popover__arrow-left-top:after,
.r-popover__arrow-left-bottom:after,
.r-popover__arrow-right-top:after,
.r-popover__arrow-right-bottom:after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%; }

.r-popover__arrow-top:before, .r-popover__arrow-top-left:before,
.r-popover__arrow-top-right:before {
  top: -8px;
  bottom: initial; }

.r-popover__arrow-top:after, .r-popover__arrow-top-left:after,
.r-popover__arrow-top-right:after {
  top: 0;
  bottom: initial; }

.r-popover__arrow-top-left:before,
.r-popover__arrow-bottom-left:before {
  left: 32px; }

.r-popover__arrow-top-right:before,
.r-popover__arrow-bottom-right:before {
  right: 32px;
  left: initial; }

.r-popover__arrow-left-top:before,
.r-popover__arrow-left-bottom:before,
.r-popover__arrow-right-top:before,
.r-popover__arrow-right-bottom:before {
  left: initial; }

.r-popover__arrow-left-top:before,
.r-popover__arrow-right-top:before {
  top: 16px; }

.r-popover__arrow-left-bottom:before,
.r-popover__arrow-right-bottom:before {
  bottom: 16px; }

.r-popover__arrow-right-top:before,
.r-popover__arrow-right-bottom:before {
  right: -8px; }

.r-popover--top-header:before {
  background-color: #F1F1F1; }

.r-popover-enter:before {
  background-color: #F1F1F1; }

.r-popover-enter {
  opacity: 0.01;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease; }

.r-popover-enter.r-popover-enter-active {
  opacity: 1; }

.r-popover-leave {
  opacity: 1;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease; }

.r-popover-leave.r-popover-leave-active {
  opacity: 0.01; }

/**
 * Third Party Imports
 */
/*
 * Variables
 */
@-webkit-keyframes reveal {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes reveal {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

body {
  background: #E5E5E4; }

table .tooltip--top {
  bottom: 20px !important;
  margin-left: -64px !important; }

table th, table td {
  vertical-align: top; }

/**
 * Project-specific UI Styles
 */
.link,
a {
  vertical-align: middle; }

.section {
  max-width: 1560px;
  margin: 0 auto; }

.section--fixed-bottom {
  position: fixed;
  bottom: 0;
  width: 1560px; }

.section--small {
  max-width: 1344px;
  margin: 0 auto; }

.section--tiny {
  max-width: 900px;
  margin: 0 auto; }

.shadow {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08); }

.line-height--small {
  line-height: 1.7; }

.line-height--large {
  line-height: 2; }

.text-overline {
  position: relative; }
  .text-overline:before {
    content: attr(data);
    position: absolute;
    top: -30px;
    font-size: 20px;
    color: #494949; }

.delayed-reveal {
  opacity: 0;
  -webkit-animation: reveal 0.6s linear 1s;
          animation: reveal 0.6s linear 1s; }

.top-left {
  position: absolute !important;
  top: 0;
  left: 0; }

.top-right {
  position: absolute !important;
  top: 0;
  right: 0; }

.bottom-left {
  position: absolute !important;
  bottom: 0;
  left: 0; }

.bottom-right {
  position: absolute !important;
  bottom: 0;
  right: 0; }

.center-center {
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.vertical-center {
  top: 50%; }

.overflow-y--scroll {
  overflow-y: scroll; }

.fullscreen {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.flexbox__item {
  vertical-align: top; }

.desk-layout--table {
  display: table; }
  @media only screen and (max-width: 768px) {
    .desk-layout--table {
      display: block; } }

.self-reveal:empty {
  max-height: 0; }

.self-reveal {
  overflow-y: hidden;
  max-height: 150px; }

.full-window-height {
  min-height: 100vh; }

.full-height {
  height: 100%; }

.absolute-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.overflow--hidden {
  overflow: hidden; }

.overflow-y {
  overflow-y: auto;
  overflow-x: hidden; }

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

.btn--inline-small {
  padding-top: 5px;
  padding-bottom: 5px; }

.btn--lowkey {
  border: none;
  color: #939393;
  background: #FFFFFF; }

.btn--lowkey:focus, .btn--lowkey:hover {
  color: #2473bd;
  background: #FFFFFF; }

.btn--lowkey:disabled {
  pointer-events: none; }

.tabs__link, .tabs__item a {
  border-bottom: solid 2px transparent; }

.hoverable {
  cursor: pointer; }
  .hoverable:hover {
    color: #2473bd; }
  .hoverable.disabled {
    color: #939393; }

.hoverable-box {
  cursor: pointer;
  box-shadow: none;
  -webkit-transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease; }
  .hoverable-box:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08); }

.border--right {
  border-right: 1px solid #D6D6D5; }

/* Nav */
.btn--hamburger {
  font-size: 24px;
  line-height: 58px;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  border: none; }

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1560px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 1px solid #F1F1F1;
  z-index: 10; }
  .navbar > nav {
    height: 59px !important; }
  .navbar a {
    line-height: 58px;
    vertical-align: middle;
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .navbar .text-link {
    margin: 0 0 0 36px !important;
    color: #000000;
    border-top: 3px solid transparent;
    display: inline-block;
    height: 100%; }
    .navbar .text-link:hover {
      border-bottom: none; }
    .navbar .text-link.active {
      color: #2473bd;
      border-top-color: #2473bd; }

.navbar--compact {
  width: 100%;
  max-width: 100%; }
  .navbar--compact > nav {
    height: 59px !important; }
  .navbar--compact a {
    line-height: 58px; }
  .navbar--compact .btn--hamburger {
    line-height: 58px; }

.navbar__logo {
  position: relative;
  top: 5px; }

.navbar-vertical .site-title {
  line-height: 58px; }

.navbar-vertical .text-link {
  border: none;
  display: block;
  color: #E5E5E4;
  margin-bottom: 12px; }

.navbar-vertical .text-link:hover {
  color: #2473bd; }

.navbar-shim {
  padding-top: 59px; }

.nav-toggle {
  background: rgba(0, 0, 0, 0.3);
  color: #FFFFFF; }

.nav-toggle:hover, .nav-toggle:focus {
  background: #000000; }

.page-title {
  line-height: 3.2em; }

/* Drawer */
.drawer-container {
  pointer-events: none;
  background: transparent;
  -webkit-transition: background 300ms;
  transition: background 300ms;
  z-index: 99; }

.drawer-container.drawer-modal {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.6); }

.drawer {
  max-width: 100%;
  max-height: 100%;
  pointer-events: all;
  overflow: hidden;
  position: absolute;
  -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }

/* Decorative Pattern and Illustrations */
.isvg > svg {
  width: 100%;
  height: auto;
  display: block; }

.decorative-pattern,
.decorative-pattern > svg {
  position: absolute;
  width: 100%;
  height: 100%; }

/* Cards */
@-webkit-keyframes clipping {
  from {
    overflow: hidden; }
  to {
    overflow: visible; } }
@keyframes clipping {
  from {
    overflow: hidden; }
  to {
    overflow: visible; } }

.card {
  position: relative; }

.card:not(:first-child) {
  border-top: 1px solid #D6D6D5; }

.card-shim {
  -webkit-transition: height 300ms ease;
  transition: height 300ms ease; }

.card-body {
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: height 300ms ease;
  transition: height 300ms ease; }

.card-body.focus {
  cursor: default;
  -webkit-animation-name: clipping;
          animation-name: clipping;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.big {
  font-size: 1.2em; }

.small .layout > .layout__item {
  font-size: 12px; }

.query-deck {
  pointer-events: all;
  width: 100%; }

/*
* form control styles
*/
label {
  margin-bottom: 0; }

input,
textarea {
  border: 1px solid #C6C6C6;
  line-height: 2;
  padding-left: 6px; }

.input-action-icon--right {
  position: absolute;
  right: 13px;
  top: 16px;
  line-height: 1;
  color: #939393;
  z-index: 1;
  cursor: pointer; }
  .input-action-icon--right:hover {
    color: #000000; }

/* Date Picker */
.date-picker-popup {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08); }

[class^="datepicker"] {
  width: 240px !important;
  line-height: 32px; }
  [class^="datepicker"] .gamma,
  [class^="datepicker"] h3 {
    font-size: 16px; }
  [class^="datepicker"] .epsilon,
  [class^="datepicker"] h5 {
    text-transform: uppercase;
    font-size: 14px; }
  [class^="datepicker"] span[class^="label"] {
    font-size: 12px;
    margin: 0 -12px;
    width: 100%;
    height: 100%; }
  [class^="datepicker"] span[class^="label"]:hover {
    color: #2473bd;
    background: inherit; }
  [class^="datepicker"] span[class*="activeLabel"] {
    color: #494949;
    background: #E5E5E4; }
  [class^="datepicker"] [class^="header"],
  [class^="datepicker"] [class^="title"] {
    background-color: transparent; }
  [class^="datepicker"] [class^="cell"] {
    padding: 0;
    width: 1%; }
  [class^="datepicker"] [class^="body"] {
    border-top: none;
    border-bottom: none; }

.date-picker--start span[class*="rangeStart"],
.date-picker--end span[class*="rangeEnd"] {
  color: #fff;
  background: #2473bd; }

.icon-input input {
  padding-left: 32px !important; }

.icon-input .focus {
  border-color: #2473bd; }

.icon-input .icon-input__icon {
  z-index: 9;
  color: #D6D6D5;
  position: absolute;
  left: 8px;
  top: 8px; }

.icon-input .focus + .icon-input__icon,
.icon-input input:focus + .icon-input__icon {
  color: #2473bd; }

.date-range-picker .layout__item.small {
  line-height: 32px;
  font-size: 12px; }

.compact-toggle {
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 16px; }
  .compact-toggle > input[type="checkbox"] {
    display: none; }
  .compact-toggle > label {
    position: relative;
    font-size: 12px;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    line-height: 16px;
    width: 32px;
    padding-bottom: 16px;
    margin: 0; }
  .compact-toggle > label:after {
    display: block;
    font-family: 'uber-icons';
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 16px;
    width: 16px;
    height: 16px;
    border: 1px solid #D6D6D5; }
  .compact-toggle > input[type="checkbox"]:checked + label:after {
    content: '\ea15';
    color: #2473bd; }

.disabled .compact-toggle > input[type="checkbox"]:checked + label {
  border-color: #939393;
  background: #939393; }

.select {
  margin-bottom: 0; }
  .select:after {
    color: #A6A5A5; }

.select.bg-black select {
  background: #000000;
  color: #FFFFFF; }

.select.bg-black select:not(:focus) {
  border-color: #939393; }

.select--small select,
input.text-input--small {
  height: 32px;
  padding: 6px 10px;
  margin-bottom: 12px;
  font-size: 12px; }

.select--small:after {
  line-height: 32px;
  z-index: 10; }

.select--minimal select {
  border: none;
  background: transparent; }

.select--minimal:after {
  color: #A6A5A5;
  right: 0; }

.disabled .select--small:after {
  color: #939393; }

.autocomplete__input input {
  padding: 7px 18px; }

.autocomplete__input.error input {
  border-color: #CA3B27; }

.autocomplete__input.disabled input {
  background: #F8F8F9;
  color: #C6C6C6; }

.hidden-dropdown {
  position: absolute;
  visibility: collapse; }

.input--joined--right input {
  margin-left: -1px;
  width: calc(100% + 1px) !important; }

.autocomplete input {
  position: relative;
  width: 100%;
  border: solid 1px #E5E5E4;
  font-weight: 500; }

.autocomplete input:focus {
  z-index: 9;
  border-color: #2473bd;
  outline: none; }

.autocomplete .result-list {
  width: 100%;
  margin: -12px 0 0;
  position: absolute;
  z-index: 99;
  background: #FFFFFF;
  border: solid 1px #D6D6D5;
  border-top: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0 4px 8px;
  list-style-type: none;
  overflow-x: hidden;
  overflow-y: auto; }
  .autocomplete .result-list li {
    padding: 6px 10px; }
  .autocomplete .result-list li.selected, .autocomplete .result-list li:hover {
    background: #2473bd;
    color: #FFFFFF; }

/*
 * Slider
 */
.slider .slider-track, .slider .slider-knob {
  position: absolute;
  cursor: pointer; }

.slider .slider-track {
  background: #C6C6C6;
  width: 100%;
  height: 100%; }

.slider .slider-knob {
  top: 50%;
  border: solid 1px #939393;
  background: white; }

.slider.disabled {
  opacity: 0.5;
  pointer-events: none; }
  .slider.disabled .slider-knob {
    border-color: #E5E5E4; }

.data-opacity-slider {
  font-size: 10.8px; }
  .data-opacity-slider .slider-track {
    background: #e5f4fa;
    /* Old browsers */
    /* FF3.6+ */
    background: -webkit-linear-gradient(left, #e5f4fa 0%, #1e94bb 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to right, #e5f4fa 0%, #1e94bb 100%);
    /* W3C */ }

.address-picker input {
  padding-left: 47px;
  padding-right: 35px; }

.address-picker__origin:before {
  content: '';
  position: absolute;
  height: 51px;
  width: 1px;
  background: #D6D6D5;
  z-index: 1;
  left: 26px;
  top: 25px; }

.address-picker__destination,
.address-picker__origin {
  position: relative; }
  .address-picker__destination:after,
  .address-picker__origin:after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 20px;
    left: 24px; }

.address-picker__origin:after {
  background: #629A41;
  border-radius: 50%; }

.address-picker__destination:after {
  background: #CA3B27; }

.bookmark {
  background: white;
  border: none;
  text-align: left;
  position: relative;
  outline: none;
  cursor: pointer; }

.bookmark:before, .bookmark:after {
  font-family: 'uber-icons';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #939393; }

.bookmark:before {
  content: '\ea51';
  left: 0; }

.bookmark:after {
  content: '\ea88';
  right: 4px;
  -webkit-transition: right 400ms ease;
  transition: right 400ms ease; }

.bookmark:hover:after {
  right: 0; }

.bookmark + .bookmark {
  border-top: solid 1px #E5E5E4; }

.curated-view {
  position: relative;
  z-index: 0; }

.bg-hero, .curated-view__header {
  background-image: url("/static/img/Movement_Hero.svg");
  background-position: bottom right;
  background-size: 695px;
  background-repeat: no-repeat; }

.curated-view__header {
  position: relative; }

.dot-nav {
  font-size: 0;
  position: relative;
  padding-left: 5px;
  display: inline-block; }

.dot-nav__item {
  cursor: pointer;
  display: inline-block;
  border: 1px solid #C6C6C6;
  border-radius: 10px;
  height: 10px;
  width: 10px; }
  .dot-nav__item:hover {
    background: #E5E5E4; }

.dot-nav:before,
.dot-nav__item.active {
  background: #226db5;
  border-color: #226db5; }

.dot-nav__item {
  margin: 0 20px;
  position: relative;
  background: #FFFFFF; }
  .dot-nav__item:first-child {
    margin-left: 0; }
  .dot-nav__item:last-child {
    margin-right: 0; }
  .dot-nav__item:not(:first-child):after {
    content: '';
    position: absolute;
    width: calc(100% + 40px);
    height: 1px;
    background: #C6C6C6;
    z-index: -1;
    top: 4px;
    left: -41px; }

.dot-nav__item.active:after {
  background: #226db5; }

.explore__sidebar {
  position: absolute;
  width: 480px;
  height: calc(100vh - 59px - 3px);
  top: 59px;
  left: 0;
  z-index: 2;
  background: #FFFFFF; }

.explore__sidebar-nav {
  background: #F8F8F9; }

.explore__sidebar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: calc(100vh - 59px); }

.explore__sidebar-body {
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  height: 100%; }

.explore__menu-icon {
  position: relative;
  right: 10px; }

.explore__save-icon,
.explore__menu-icon {
  cursor: pointer; }
  .explore__save-icon:hover,
  .explore__menu-icon:hover {
    color: #2473bd; }

@-webkit-keyframes explore-advanced-sidebar-open {
  0% {
    left: 0; }
  100% {
    left: 495px; } }

@keyframes explore-advanced-sidebar-open {
  0% {
    left: 0; }
  100% {
    left: 495px; } }

@-webkit-keyframes explore-advanced-sidebar-close {
  0% {
    left: 495px; }
  100% {
    left: 0; } }

@keyframes explore-advanced-sidebar-close {
  0% {
    left: 495px; }
  100% {
    left: 0; } }

@-webkit-keyframes delayed-entry {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes delayed-entry {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.explore-advanced-sidebar {
  -webkit-animation-name: explore-advanced-sidebar-open;
  animation-name: explore-advanced-sidebar-open;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  background: #FFFFFF;
  position: absolute;
  width: 480px;
  left: 0px;
  top: 74px;
  z-index: 1; }

.explore-advanced-sidebar--close {
  -webkit-animation-name: explore-advanced-sidebar-close;
  animation-name: explore-advanced-sidebar-close;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.explore__sidebar,
.explore-advanced-sidebar {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08); }

.explore-spinner {
  -webkit-animation-name: delayed-entry;
  animation-name: delayed-entry;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.save-screenshot {
  background-size: cover;
  background-position: center; }

/*
* icons
*/
@font-face {
  font-family: 'movement';
  src: url("/static/fonts/movement.ttf") format("truetype"), url("/static/fonts/movement.woff") format("woff"), url("/static/fonts/movement.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

.close-icon {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer; }

.movement-icon {
  font-family: 'movement' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none; }

.movement-icon.icon-menu:before {
  content: "\e90f"; }

.movement-icon.icon-origin:before {
  content: "\e90e"; }

.movement-icon.icon-destination:before {
  content: "\e90e"; }

.movement-icon.icon-area:before {
  content: "\e90c"; }

.movement-icon.icon-geofence:before {
  content: "\e902"; }

.movement-icon.icon-place:before {
  content: "\e903"; }

.movement-icon.icon-date_range:before {
  content: "\e900"; }

.movement-icon.icon-baseline_date_range:before {
  content: "\e901"; }

.movement-icon.icon-reverse:before {
  content: "\e90d"; }

.movement-icon.icon-share:before {
  content: "\e90b"; }

.movement-icon.icon-social:before {
  content: "\e90b"; }

.movement-icon.icon-star:before {
  content: "\e904"; }

.movement-icon.icon-dots-three-vertical:before {
  content: "\e905"; }

.movement-icon.icon-dots-three-horizontal:before {
  content: "\e906"; }

.movement-icon.icon-chevron-small-up:before {
  content: "\e907"; }

.movement-icon.icon-chevron-small-right:before {
  content: "\e908"; }

.movement-icon.icon-chevron-small-left:before {
  content: "\e909"; }

.movement-icon.icon-chevron-small-down:before {
  content: "\e90a"; }

.hanging-icon {
  position: relative; }

.hanging-icon .movement-icon {
  position: absolute;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%); }

.map-style-debugger {
  position: fixed;
  background: white;
  z-index: 99999; }

.panel {
  border-color: #E5E5E4; }

.panel--clickable {
  cursor: pointer; }
  .panel--clickable.active {
    color: #2473bd; }

.panel--active {
  border-color: #2473bd; }

.panel--with-icon {
  position: relative; }

.panel--disabled {
  background: #F8F8F9;
  color: #C6C6C6; }

.preloader-container {
  width: 300px;
  text-align: center;
  position: absolute;
  background: #FFFFFF;
  z-index: 99;
  left: 50%;
  -webkit-transform: translateX(-150px) translateY(-59px);
          transform: translateX(-150px) translateY(-59px); }

@-webkit-keyframes preloader-phase1 {
  0% {
    width: 25%; }
  100% {
    width: 50%; } }

@keyframes preloader-phase1 {
  0% {
    width: 25%; }
  100% {
    width: 50%; } }

@-webkit-keyframes preloader-phase2 {
  0% {
    width: 50%; }
  100% {
    width: 75%; } }

@keyframes preloader-phase2 {
  0% {
    width: 50%; }
  100% {
    width: 75%; } }

@-webkit-keyframes preloader-phase3 {
  0% {
    width: 75%; }
  100% {
    width: 95%; } }

@keyframes preloader-phase3 {
  0% {
    width: 75%; }
  100% {
    width: 95%; } }

.preloader__progress-bar-phase-1 {
  -webkit-animation-name: preloader-phase1;
  animation-name: preloader-phase1;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.preloader__progress-bar-phase-2 {
  -webkit-animation-name: preloader-phase2;
  animation-name: preloader-phase2;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.preloader__progress-bar-phase-3 {
  -webkit-animation-name: preloader-phase3;
  animation-name: preloader-phase3;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.select-field {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding-right: 15px;
  cursor: pointer; }
  .select-field:after {
    content: "▾";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    color: #A6A5A5; }
  .select-field.select-field--is-open:after {
    border-top-color: #2473bd; }

.select-field__options-container {
  position: absolute;
  top: 100%;
  z-index: 4;
  background: #f0f0f0;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  max-height: 250px;
  overflow-y: scroll;
  border: 1px solid #c5c5c5;
  border-radius: 4px; }
  .select-field__options-container::-webkit-scrollbar {
    width: 6px; }
  .select-field__options-container::-webkit-scrollbar-track {
    background-color: transparent; }
  .select-field__options-container::-webkit-scrollbar-thumb {
    background: #E5E5E4;
    border-radius: 6px;
    position: relative;
    right: 3px; }

.select-field__options {
  list-style: none;
  margin: 0; }

.select-field__option {
  cursor: pointer;
  padding: 2px 10px 2px 5px;
  margin: 0; }
  .select-field__option:hover {
    background: #3a98fe;
    color: #FFFFFF; }

.select-field__close-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; }

.select-field--disabled {
  opacity: 0.3; }

.home-video-hero {
  background-size: cover;
  position: relative;
  height: 600px;
  display: table;
  width: 100%; }
  @media only screen and (max-width: 575px) {
    .home-video-hero {
      height: 300px; } }
  .home-video-hero:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65); }

.home-video-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  -webkit-transition: opacity 700ms ease;
  transition: opacity 700ms ease; }

.home-video-hero__bg--loaded {
  opacity: 1; }

.home-video-hero__title {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
  z-index: 1; }

.home-video-hero__play-icon {
  color: white;
  background: #2473bd;
  padding: 10px;
  border-radius: 100px; }

@-webkit-keyframes modal-open {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes modal-open {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes modal-content-open {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes modal-content-open {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.modal {
  opacity: 0; }

.modal-open .modal {
  -webkit-animation-name: modal-open;
  animation-name: modal-open;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }
  .modal-open .modal .modal__content, .modal-open .modal .modal__content--container {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-animation-name: modal-content-open;
    animation-name: modal-content-open;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0ms;
    animation-animation-delay: 0ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-play-state: running;
    animation-play-state: running; }

.modal__content--hard {
  padding: 0; }

.modal__footer {
  border-top: 1px solid #D6D6D5;
  background: #F8F8F9; }

/* Mapbox GL override */
.overlays {
  width: 100%;
  height: 100%; }

.map-overlay {
  pointer-events: none;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .map-overlay > * {
    pointer-events: all; }
  .map-overlay > .mapboxgl-popup {
    pointer-events: none; }
  .map-overlay .hoverbox {
    width: 320px; }
    .map-overlay .hoverbox .close {
      top: 12px; }
    .map-overlay .hoverbox label {
      line-height: 16px; }
    .map-overlay .hoverbox .small {
      font-size: 11px;
      line-height: 14px; }
    .map-overlay .hoverbox .layout {
      margin-right: -20px; }
    .map-overlay .hoverbox .legend-scale-color {
      width: 12px;
      height: 12px;
      margin-right: 12px; }
  .map-overlay .attribution {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); }

.mapboxgl-popup-content {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }
  .mapboxgl-popup-content .btn, .mapboxgl-popup-content .input-group__addon-btn, .mapboxgl-popup-content a {
    pointer-events: all; }

.mapboxgl-popup.interactive .mapboxgl-popup-content {
  pointer-events: all; }

.mapboxgl-popup.x-center.y-top .mapboxgl-popup-content {
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%); }

.mapboxgl-popup.x-center.y-center .mapboxgl-popup-content {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.mapboxgl-popup.x-center.y-bottom .mapboxgl-popup-content {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }

.mapboxgl-popup.x-left.y-top .mapboxgl-popup-content {
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%); }

.mapboxgl-popup.x-left.y-center .mapboxgl-popup-content {
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%); }

.mapboxgl-popup.x-left.y-bottom .mapboxgl-popup-content {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0); }

.mapboxgl-popup.x-right.y-top .mapboxgl-popup-content {
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%); }

.mapboxgl-popup.x-right.y-center .mapboxgl-popup-content {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%); }

.mapboxgl-popup.x-right.y-bottom .mapboxgl-popup-content {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0); }

/* travel times origin-dest selection */
.reverse-selection {
  display: block;
  color: #FFFFFF;
  background: #226db5;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 12px;
  padding: 0; }

.reverse-selection:hover {
  color: #FFFFFF;
  background: #2473bd; }

.arrowhead {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 16px 10px;
  border-color: transparent transparent #226db5 transparent;
  -webkit-transform-origin: center;
          transform-origin: center; }

/* speed profile selection */
.add-pin {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
  border: dotted 1px #aaa;
  padding: 0;
  background: rgba(255, 255, 255, 0.8); }

.draggable-pin {
  position: relative;
  cursor: pointer;
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  .draggable-pin > i {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 24px;
    margin: -16px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px; }

.draggable-pin:active {
  z-index: 99;
  cursor: grabbing;
  cursor: -webkit-grabbing;
  width: 200vw;
  height: 200vh;
  opacity: 0.5;
  -webkit-transition: none;
  transition: none; }

/*
* Bar Chart
*/
.bar-chart-bar {
  cursor: pointer; }

.bar-chart-label {
  pointer-events: none;
  font-size: 11px;
  alignment-baseline: middle; }

.bar-chart-grid {
  -webkit-transform: translateX(0.5px);
          transform: translateX(0.5px);
  stroke: #000;
  stroke-width: 1px;
  stroke-opacity: 0.2;
  stroke-dasharray: 3 2; }

.bar-chart-tick {
  pointer-events: none;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  alignment-baseline: hanging;
  font-size: 11px;
  fill: #939393; }

.bar-chart-legend {
  width: 12px;
  height: 12px;
  display: block;
  margin-top: 4px;
  margin-right: 8px;
  vertical-align: top; }

.bar-chart-legend-text {
  line-height: 24px; }

/* Color Scale Legend */
.legend-scale-color-group,
.legend-scale-label-group {
  white-space: nowrap;
  margin-left: -2px;
  margin-right: -2px; }

.legend-scale-color,
.legend-scale-label {
  display: inline-block;
  text-align: center; }

.legend-scale-margins {
  margin-left: 2px;
  margin-right: 2px; }

/*
* Heatmap
*/
.heatmap-chart {
  font-size: 11px;
  display: table; }
  .heatmap-chart > div {
    display: table-row; }
  .heatmap-chart > div > div {
    text-align: center;
    cursor: pointer;
    display: table-cell;
    border: 2px solid #FFFFFF;
    width: 1%;
    min-width: 20px; }
  .heatmap-chart > div > div:first-child {
    width: 0.1%; }
  .heatmap-chart > div:not(:first-child) > div:not(:first-child):hover {
    border-color: #939393; }
  .heatmap-chart .heatmap-cell-na {
    background: #fff url("../static/hatch.png") repeat left top;
    background-size: 12%; }

/*
 * Time Series
 */
.time-series-knob text {
  display: none;
  font-size: 10px;
  fill: #fff; }

.time-series-knob rect {
  fill: #000;
  fill-opacity: 0.8;
  display: none; }

.time-series-knob:hover text, .time-series-knob:hover rect {
  display: block; }

.time-series-line {
  fill: none;
  stroke-width: 1; }

.time-series-knob circle {
  fill: white;
  stroke-width: 1; }

/*
 * Axis
 */
.axis line {
  stroke: #888;
  stroke-opacity: 0.5; }

.axis text {
  font-size: 10px; }

.axis .tick-label {
  fill: #000; }

.axis .tick-label-background {
  stroke: #fff;
  stroke-width: 20px; }

.axis.axis-y text {
  alignment-baseline: central; }

/*
 * Legend
 */
.legend-container label {
  text-transform: none;
  margin-bottom: 4px; }

.legend-container .legend-scale-label {
  font-size: 0.9em; }

.hover-tip {
  background: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 14px;
  pointer-events: none;
  padding: 8px; }
  .hover-tip p {
    margin: 0; }

.walk-through {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  -webkit-animation-name: modal-open;
  animation-name: modal-open;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.walk-through__content {
  background: white;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 600px;
  overflow: hidden; }

.walk-through__footer {
  border-top: 1px solid #ccc; }

.walk-through__panes {
  position: relative;
  height: 255px; }

.walk-through__pane {
  -webkit-transition: left 600ms ease;
  transition: left 600ms ease;
  position: absolute;
  width: 100%;
  top: 0; }

@-webkit-keyframes youtube-open {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes youtube-open {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

.youtube-player {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  top: 0%;
  -webkit-transform: scale(0.8);
  transform: scale(0.8); }

.youtube-player__playing {
  opacity: 1;
  -webkit-animation-name: youtube-open;
  animation-name: youtube-open;
  -webkit-animation-duration: 700ms;
  animation-duration: 700ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.youtube-player__close {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 10px;
  font-size: 58px;
  background: white;
  color: #000000;
  cursor: pointer;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease; }
  .youtube-player__close:hover {
    -webkit-transform: scale(1);
    transform: scale(1); }
