@charset "UTF-8";
/**
 * Override settings and variables here
 */
/**
 * Superfine CSS
 * @Deprecated PLEASE DONT USE ANY CLASSES, MIXINS, ETC FROM HERE
 */
/*------------------------------------*\
   #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.
 */
/*------------------------------------*\
    $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:
 */
/*------------------------------------*\
    $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-left, .tooltip--bottom-right, .tooltip--left, .tooltip--right, .tooltip--top, .tooltip--top-left, .tooltip--top-right {
  position: relative; }
  .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-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-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-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-left:before, .tooltip--bottom-right:before, .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--top:after {
  left: 50%;
  margin-left: -24px; }

.tooltip--top: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
## 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 {
  -moz-box-sizing: content-box;
  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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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] */
  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; }

/*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
 */
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 {
  font-size: 20px;
  font-size: 1.42857rem;
  line-height: 1.4; }

h6 {
  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 {
  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) {
  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 {
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.25; }
  h6 {
    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 {
    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) {
  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 {
    font-size: 18px;
    font-size: 1.28571rem;
    line-height: 1.33333; }
  h6 {
    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 {
    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) {
  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 {
    font-size: 18px;
    font-size: 1.28571rem;
    line-height: 1.33333; }
  h6 {
    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 {
    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>
```
*/
/**
 * 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, .nav: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; }

/*doc
### Display

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

```html
<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--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, .nav-link {
    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, .nav-vertical-link-cities {
    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--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--absolute {
  position: absolute !important; }

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

.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 {
  margin-right: 32px !important; }

.push--bottom, .push--ends {
  margin-bottom: 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 {
  margin-top: 52px !important; }

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

.push-huge--left {
  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--right, .palm-push-huge--sides {
    margin-right: 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--bottom, .palm-flush--ends {
    margin-bottom: 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 {
    margin-top: 16px !important; }
  .portable-push--right, .portable-push--sides {
    margin-right: 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--right, .soft-small--sides {
  padding-right: 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--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--right, .portable-soft--sides {
    padding-right: 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 {
  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 {
  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`

```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>
```
*/
.align--baseline {
  vertical-align: baseline !important; }

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

.align--middle {
  vertical-align: middle !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, .btn, .text-input, .select select, .text-input--borderless::placeholder, .select:after, .radio:before, .radio:after, .panel--hoverable, .preloader, .tabs__link, .tabs__item a {
  -webkit-transition: all 400ms ease !important;
  -moz-transition: all 400ms ease !important;
  -ms-transition: all 400ms ease !important;
  -o-transition: all 400ms ease !important;
  transition: all 400ms ease !important; }

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

.transition--fast, .switch:before, .switch:after {
  -webkit-transition: all 150ms ease !important;
  -moz-transition: all 150ms ease !important;
  -ms-transition: all 150ms ease !important;
  -o-transition: all 150ms ease !important;
  transition: all 150ms ease !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 {
  display: table;
  width: 100%; }

.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; }

/*------------------------------------*\
    #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 {
  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, .btn:hover, .btn:active, .btn:focus {
    text-decoration: none;
    /* [4] */
    color: #ffffff; }

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

/*------------------------------------*\
   #UBER.BASE DEPENDENCIES
\*------------------------------------*/
.clearfix:after, .nav:after, .tabs:after {
  content: '';
  display: table;
  clear: both; }

.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, .tabs {
  list-style: none;
  margin-left: 0; }
  .nav > li, .tabs > li,
  .nav > 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 {
  display: list-item; }
  .nav--stacked > 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 {
  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 {
  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, .btn, .text-input, .select select, .text-input--borderless::placeholder, .select:after, .radio:before, .radio:after, .panel--hoverable, .preloader, .tabs__link, .tabs__item a {
  transition: all 400ms ease !important; }

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

.transition--fast, .switch:before, .switch:after {
  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; }

.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; }

.btn {
  font-family: UberMoveText, "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, .btn:focus, .btn:active {
    background-color: #1d5c96;
    border-color: #1d5c96; }
  .btn .preloader {
    width: 18px;
    height: 18px; }
  .btn.btn--inactive:hover, .btn.btn--inactive:focus, .btn.btn--inactive:active, .btn.btn[disabled]:hover, .btn.btn[disabled]:focus, .btn.btn[disabled]: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.btn[disabled]:focus, .btn--secondary.btn[disabled]:active,
  .btn--outline.btn--inactive:hover,
  .btn--outline.btn--inactive:focus,
  .btn--outline.btn--inactive:active,
  .btn--outline.btn[disabled]:hover,
  .btn--outline.btn[disabled]:focus,
  .btn--outline.btn[disabled]: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.btn[disabled]:focus, .btn--tertiary.btn[disabled]: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.btn[disabled]:focus, .btn--reverse.btn[disabled]: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.btn[disabled]:focus, .btn--reverse-outline.btn[disabled]: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.btn[disabled]:focus, .btn--positive.btn[disabled]: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.btn[disabled]:focus, .btn--negative.btn[disabled]:active {
    background-color: #ca3b27;
    border-color: #ca3b27;
    color: #ffffff; }

.btn--arrow {
  text-align: left;
  padding: 11px 40px 11px 20px; }

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

.btn--link {
  background-color: transparent;
  font-family: UberMoveText, "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.btn[disabled]:focus, .btn--link.btn[disabled]: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: inline-flex;
  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.btn[disabled]:focus, .btn--cta.btn[disabled]:active {
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    color: #2473bd; }
  .btn--cta .icon_right-arrow,
  .btn--cta .icon_right-arrow-thin {
    transition: left 400ms ease;
    position: relative;
    left: 0px; }
  .btn--cta:hover .icon_right-arrow,
  .btn--cta:hover .icon_right-arrow-thin {
    left: 4px; }

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

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

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

.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-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, .btn--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; }

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

.extended-footer__hr {
  opacity: 0.3; }

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

.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, .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, .select select:hover {
    border-color: #d6d6d5; }
  .text-input:focus, .select select:focus, .focus.text-input, .select select.focus {
    border-color: #2473bd; }
  .text-input:disabled, .select select:disabled, .disabled.text-input, .select select.disabled {
    background: #f8f8f9;
    color: #c6c6c6;
    cursor: default; }
    .text-input:disabled:hover, .select select:disabled:hover, .disabled.text-input:hover, .select select.disabled:hover {
      border-color: #e5e5e4; }

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, .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--borderless {
  border: 0;
  padding: 0;
  background: transparent; }
  .text-input--borderless:hover::placeholder {
    color: #717171; }
  .text-input--borderless:disabled {
    background: transparent; }

.text-input--joined {
  position: relative; }
  .text-input--joined:focus, .text-input--joined:active {
    border-top-color: #2473bd; }
  .text-input--joined.error {
    border-top-color: #ca3b27; }

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

.select {
  margin-bottom: 24px;
  position: relative; }
  .select select {
    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; }

/**
 * [1]: Vertically align the checkbox and label text
 */
.radio-input {
  position: absolute;
  left: -500000px; }
  .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, .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, .radio {
      padding-left: 49px;
      line-height: 25px; } }

.radio.error {
  color: #ca3b27; }
  .radio.error:hover:before {
    border-color: #ca3b27; }

.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) {
    .radio:before {
      width: 25px;
      height: 25px; } }

.radio.error:before {
  border-color: #ca3b27; }

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

.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; } }

.radio:hover:before {
  border-color: #d6d6d5; }

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

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

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

input[type='radio']:disabled + .radio {
  cursor: default; }
  input[type='radio']:disabled + .radio:before, input[type='radio']:disabled + .radio:hover:before {
    background: #f8f8f9;
    border-color: #e5e5e4; }
  input[type='radio']:disabled + .radio:hover:after {
    opacity: 0; }

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

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;
  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; }

.list--unstyled, .tabs {
  margin-left: 0;
  list-style: none; }

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: 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; } }

.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); } }

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

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    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; }

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

.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; }

.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; }

.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-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 {
    margin-left: -10px; }
  @media only screen and (max-width: 575px) {
    .tooltip {
      display: none; } }

.tooltip--top:before {
  border-top-color: #000000 !important; }

.tooltip--top:after {
  border-top-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, .select select, .table thead th, .tabs__link, .tabs__item a, h3,
h4,
h5, h6, html {
  font-family: UberMoveText, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400; }

.primary-font--semibold, .text-input, .select select, .form-caption, .table thead th, .tabs__link, .tabs__item a, h6 {
  font-weight: 500; }

.primary-font--bold {
  font-weight: 600; }

.secondary-font {
  font-family: UberMoveText, "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; }

html {
  color: #000000; }

::selection {
  background: #47d3d9;
  color: #ffffff; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  text-align: none; }

h1 {
  margin-bottom: 48px; }

h2 {
  margin-bottom: 40px; }

h3 {
  margin-bottom: 24px; }

h4 {
  margin-bottom: 20px; }

h5 {
  margin-bottom: 16px; }

h6 {
  margin-bottom: 12px; }

p {
  letter-spacing: 0.005em; }

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

.small {
  font-size: 12px;
  font-size: 0.85714rem; }

.label {
  letter-spacing: 0.02em;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 0;
  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 {
    font-weight: 400; } }

/*
 * Variables
 */
/* NOTE: $nav-bar-height needs to be consistent with NAVBAR_HEIGHT */
/* NOTE: $nav-bar-height-compact needs to be consistent with NAVBAR_HEIGHT_COMPACT */
/* NOTE: $drop-shadow needs to be consistent with DROP_SHADOW */
body {
  background: white; }

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; }

.link--no-align {
  vertical-align: initial; }

.shadow {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 2px 5px rgba(0, 0, 0, 0.1); }

.line-height--small {
  line-height: 1.7; }

.line-height--large {
  line-height: 2; }

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

.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%;
  transform: translate(-50%, -50%); }

.fullscreen {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.flexbox__item {
  vertical-align: top; }

.full-window-height {
  min-height: 100vh; }

.full-height {
  height: 100%; }

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

.tabs__link, .tabs__item a {
  border-bottom: solid 2px transparent; }

.hoverable {
  cursor: pointer; }
  .hoverable:hover {
    color: #2473bd; }
  .hoverable.disabled {
    color: #939393; }

.border--right {
  border-right: 1px solid #d6d6d5; }

/* Download Modal Table */
.download__table__container td:last-child {
  border-left: 1px solid #d6d6d5; }

.download__table__container td:last-child,
.download__table__container th:last-child {
  width: 20%; }

.download__table__container th:first-child {
  width: 80%; }

/* Nav */
.page-title {
  line-height: 3.2em; }

/* Drawer */
.drawer-container {
  pointer-events: none;
  background: transparent;
  transition: background 300ms; }

.drawer-container.drawer-modal {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.4); }

.drawer {
  max-width: 100%;
  max-height: 100%;
  pointer-events: all;
  overflow: hidden;
  position: absolute;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }

/* Decorative Pattern and Illustrations */
.isvg > svg {
  width: 100%;
  height: auto;
  display: block; }

/* Cards */
@keyframes clipping {
  from {
    overflow: hidden; }
  to {
    overflow: visible; } }

@keyframes blinker {
  to {
    visibility: hidden; } }

.card {
  position: relative; }

.card:not(:first-child) {
  border-top: 1px solid #d6d6d5; }

.card-shim {
  transition: height 300ms ease; }

.card-body {
  cursor: pointer;
  overflow: hidden;
  transition: height 300ms ease; }

.card-body.focus {
  cursor: default;
  animation-name: clipping;
  animation-delay: 300ms;
  animation-fill-mode: forwards; }

.big {
  font-size: 1.2em; }

.small .layout > .layout__item {
  font-size: 12px; }

.query-deck {
  pointer-events: all;
  width: 100%; }

/* Colors used in certains SVGs */
.illustration-primary-fill {
  fill: #a3e9ec; }

.illustration-secondary-fill {
  fill: #1e96be; }

.illustration-tertiary-fill {
  fill: #0f4e65; }

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

.flex {
  display: flex; }

.flex-inline {
  display: inline-flex; }

.flex-column {
  flex-direction: column; }

.flex-align-center {
  align-items: center; }

.flex-align-end {
  align-items: flex-end; }

.flex-justify-start {
  justify-content: flex-start; }

.flex-justify-end {
  justify-content: flex-end; }

.flex-justify-center {
  justify-content: center; }

.flex-justify-around {
  justify-content: space-around; }

.flex-justify-between {
  justify-content: space-between; }

@font-face {
  font-family: 'UberMoveText';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMoveText-Light.woff");
  font-style: 'normal';
  font-weight: 100; }

@font-face {
  font-family: 'UberMoveText';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMoveText-Regular.woff");
  font-style: 'normal';
  font-weight: 400; }

@font-face {
  font-family: 'UberMoveText';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMoveText-Medium.woff");
  font-style: 'normal';
  font-weight: 500; }

@font-face {
  font-family: 'UberMoveText';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMoveText-Bold.woff");
  font-style: 'normal';
  font-weight: 700; }

@font-face {
  font-family: 'UberMove';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMove-Light.woff");
  font-style: 'normal';
  font-weight: 100; }

@font-face {
  font-family: 'UberMove';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMove-Regular.woff");
  font-style: 'normal';
  font-weight: 400; }

@font-face {
  font-family: 'UberMove';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMove-Medium.woff");
  font-style: 'normal';
  font-weight: 500; }

@font-face {
  font-family: 'UberMove';
  src: url("https://d1a3f4spazzrp4.cloudfront.net/fonts/UberMove-Bold.woff");
  font-style: 'normal';
  font-weight: 700; }

/*
* form control styles
*/
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;
  cursor: pointer; }
  .input-action-icon--right:hover {
    color: #000000; }

.date-time-picker .layout__item.small {
  line-height: 32px;
  font-size: 12px; }

.horizontal-divider {
  height: 1px;
  margin-top: 8px;
  margin-bottom: 0; }

.select {
  margin-bottom: 0; }
  .select:after {
    color: #a6a5a5;
    z-index: auto; }

.select.select--transparent:after {
  color: #ffffff; }

.select.select--transparent select {
  background: none;
  color: #ffffff;
  border-color: #ffffff; }
  .select.select--transparent select:after {
    color: #ffffff; }

.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; }

.curated-view {
  position: relative;
  z-index: 0; }

.bg-hero {
  background-image: url("/static/img/Movement_Hero.svg");
  background-position: bottom right;
  background-size: 695px;
  background-repeat: no-repeat; }

.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__menu-icon {
  position: relative;
  right: 10px; }

.explore__menu-icon {
  cursor: pointer; }
  .explore__menu-icon:hover {
    color: #2473bd; }

@-webkit-keyframes delayed-entry {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-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-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; }

.blurred > * {
  filter: blur(5px);
  transition: filter 0.4s ease; }

.navbar {
  position: fixed;
  color: white;
  top: 0;
  width: 100%;
  max-width: 1560px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; }
  .navbar:after {
    content: '';
    position: fixed;
    width: 150vw;
    height: 59px;
    background: black;
    left: -50vw;
    top: 0;
    z-index: -1; }
  .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: white;
    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-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; }

.nav-link .active {
  border-bottom: 3px solid #2473bd; }

.panel {
  border-color: #e5e5e4; }

@-webkit-keyframes modal-open {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-keyframes modal-open {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes modal-open {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.modal__footer {
  border-top: 1px solid #d6d6d5;
  background: #f8f8f9; }

/* Mapbox GL Popup overrides */
.mapboxgl-popup-content {
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 2px 5px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  user-select: text;
  cursor: auto;
  border-radius: 0; }

.mapboxgl-popup-close-button {
  font-size: 20px;
  line-height: 15px;
  padding: 10px; }

/* Custom overlays */
.map-overlay {
  pointer-events: none;
  overflow: hidden;
  user-select: none; }
  .map-overlay > * {
    pointer-events: all;
    cursor: auto; }

.map-element-centered {
  transform: translate(-50%, -50%); }

/* Travel times origin-dest selection */
.reverse-selection {
  cursor: pointer; }

.reverse-selection circle {
  fill: #226db5; }

.reverse-selection:hover circle {
  fill: #1a538a; }

.arrowhead {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 16px 10px;
  border-color: transparent transparent #226db5 transparent;
  transform-origin: center; }

.travel-times-marker:active {
  transition: opacity 0.3s;
  opacity: 0.5;
  transition: none; }

/*
 * Heatmap
 */
.heatmap-hovered {
  cursor: pointer;
  opacity: 0.6; }

/*
 * Time Series
 */
q.time-series-blank {
  opacity: 0.5; }
  q.time-series-blank:hover {
    opacity: 1; }

.time-series-blank svg {
  overflow: visible; }

/*
 * Axis
 */
.rv-xy-plot__axis__tick line {
  fill: #666; }

.rv-xy-plot__axis__tick text {
  fill: #666;
  font-size: 10px; }

.rv-xy-plot__axis--vertical line {
  display: none; }

.rv-xy-plot__axis__line {
  display: none; }

.rv-crosshair__line {
  background: #000;
  width: 1px; }

.rv-crosshair__inner--left {
  top: -65%;
  /* position the top  edge of the element at the middle of the parent */
  right: -50%;
  /* position the left edge of the element at the middle of the parent */
  transform: translate(50%); }

.rv-crosshair__inner--right {
  top: -65%;
  /* position the top  edge of the element at the middle of the parent */
  left: 50%;
  /* position the left edge of the element at the middle of the parent */
  transform: translate(-50%); }

.axis g line {
  stroke: #ccc;
  stroke-linecap: round;
  stroke-dasharray: 0 4; }

.axis text {
  font-size: 10px; }

.axis .tick-label {
  fill: #666;
  stroke-dasharray: none; }

.axis.axis-x text {
  text-anchor: middle; }

.axis.axis-y text {
  alignment-baseline: central; }

/*
 * Legend
 */
.legend-label {
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 500; }

.legend-scale {
  line-height: 1; }

.legend-scale-color-group,
.legend-scale-label-group {
  white-space: nowrap; }

.legend-scale-color,
.legend-scale-label {
  display: inline-block; }

.legend-container .legend-scale-label {
  font-size: 0.8em;
  line-height: 1;
  vertical-align: top;
  color: #636363;
  margin-top: 6px;
  padding-left: 1px; }

.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; }

.section, .section--small, .section--tiny, .section--micro {
  margin: 0 auto; }

.section {
  max-width: 1560px; }

.section--small {
  max-width: 1344px; }

.section--tiny {
  max-width: 680px; }

.section--tiny {
  max-width: 680px; }

.section--micro {
  max-width: 500px; }

.section--with-bg {
  position: relative; }
  .section--with-bg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 77%;
    bottom: 7%;
    background: #f8f8f9; }
    @media only screen and (max-width: 575px) {
      .section--with-bg:before {
        background: transparent; } }

@-webkit-keyframes youtube-open {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@-ms-keyframes youtube-open {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes youtube-open {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-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);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-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);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -ms-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease; }
  .youtube-player__close:hover {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.speeds-dist-chart-label {
  font-size: 13px; }

.speeds-dist-current-value-label {
  position: absolute;
  top: 0px;
  font-size: 16px; }

.speeds-gl-popup,
.speeds-gl-popup .mapboxgl-popup-content {
  pointer-events: none; }

.speeds-gl-popup .mapboxgl-popup-content {
  background-color: black;
  color: white;
  padding: 14px 18px; }

/**
 * Some overrides for urate to make sure it shows up above legend in explore tool
 */
.urate-widget-flyout {
  top: 12px !important;
  left: 424px !important; }

#urate-widget-parent.urate-widget-closed {
  display: none; }

#urate-widget-parent .urate-widget-frame.urate-widget-second .urate-widget-actions .urate-widget-send-button {
  background-color: #2473bd !important; }
  #urate-widget-parent .urate-widget-frame.urate-widget-second .urate-widget-actions .urate-widget-send-button:hover {
    background-color: #1d5c96 !important; }

.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; }

.btn--white {
  border-color: white; }
  .btn--white:hover {
    background: transparent;
    border-color: inherit; }

.btn--hamburger {
  font-size: 24px;
  line-height: 58px;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  border: none; }
